2010-06-17 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git] / mono / mini / ChangeLog
blobda4bb4102f324326355a209601fe5d80c0bbced1
1 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
3         * method-to-ir.c (mono_emit_wb_aware_memcpy): Handle nested valuetypes.
4         This eliminates 2% of mono_value_copy calls on ipy and 12% on fsharp.
6 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8         * method-to-ir.c (mini_emit_stobj): Don't call mono_value_copy for small
9         value types as the overhead is huge. Manually expand it up to 5 words to
10         avoid code bloat.
12         This improves gmcs times by 5% and unmodified binary-tree by 78%. The later
13         is an exception that performance is dominated by mono_value_copy.
15         This puts sgen about 5% ahead of boehm in terms of wall-clock on a Core2Quad.
17 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
19         * mini-llvm.c (process_call): Disable LLVM for calls to generic class init
20         trampolines on x86, since those have their own cconv.
22         * exceptions-x86.c (mono_arch_exceptions_init): Implement the llvm throw corlib
23         exception trampolines.
25         * tramp-x86.c: Add xdebug info for a few trampolines.
27         * mini-llvm.c: Set the name of the arguments.
29         * mini-llvm.c (emit_cond_system_exception): Pass the ip of to throw_corlib_trampoline
30         using a block address if using the LLVM mono branch.
32         * exceptions-amd64.c (mono_arch_exceptions_init): Add new LLVM throw corlib exception
33         trampolines.
35 2010-06-15  Zoltan Varga  <vargaz@gmail.com>
37         * mini-ppc.c (mono_arch_get_cie_program): Define this for powerpc too.
39         * mini-llvm.c (process_bb): Add a missing CHECK_FAILURE.
41         * mini.c (mini_init): Remove some of the llvm restrictions, they are no longer needed.
43         * method-to-ir.c (mono_method_to_ir): Enable fast virtual calls when using llvm.
45         * mini-trampolines.c (mono_llvm_vcall_trampoline): Rewrite this to use one vtable
46         trampoline per vtable slot index. The slot, along with the 'this' argument is enough
47         to identify the vtable slot address plus the method which needs to be compiled.
49         * mini.c (mini_get_vtable_trampoline): Use one vtable trampoline per vtable slot when
50         using llvm.
52         * mini-x86.c (get_call_info_internal): Change the managed calling convention so
53         'this' is always passed as the first argument, before the vtype ret arg. This
54         simplifies get_this_arg_reg () and LLVM integration.
56         * mini-amd64.c (get_call_info): Fix the handling of MONO_TYPE_TYPEDBYREF after
57         the latest changes.
59         * tramp-x86.c (mono_arch_create_generic_trampoline): Emit unwind info for
60         these trampolines.
62         * mini-x86.c (mono_arch_get_cie_program): Implement this for x86.
64         * mini-llvm.c: Fix compilation with llvm 2.6.
66         * mini-amd64.c (CallInfo): Fix the position of the vret_arg_index field.
68         * mini-llvm.c (mono_llvm_emit_method): Fix the build if LLVM_MONO_BRANCH is not
69         defined.
71         * mini-amd64.c (get_call_info): Change the managed calling convention so 'this'
72         is always passed as the first argument, before the vtype ret arg. This simplifies
73         get_this_arg_reg () and LLVM integration.
75 2010-06-14 Rodrigo Kumpera  <rkumpera@novell.com>
77         * method-to-ir.c (mono_method_to_ir): Add support for .ctor intrinsics.
79         * method-to-ir.c (mini_emit_inst_for_ctor): New function for .ctor intrinsics.
80         For now just call simd intrinsics. This makes "x[0] = new Vector4f (10)" 
81         translate into much nicer code.
83 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
85         * mini-llvm.c (sig_to_llvm_sig_full): Add a 'sinfo' out argument which returns
86         parameter index information. Use this to simplify a lot of code.
88         * unwind.c (mono_unwind_decode_fde): Handle augmentions using a loop.
90 2010-06-12  Zoltan Varga  <vargaz@gmail.com>
92         * aot-compiler.c (compile_method): Add a 'depth' parameter to add_generic_class too
93         to fix infinite generic recursion. Fixes #612702.
95 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
97         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
98         imt trampoline per imt slot when using LLVM.
100 2010-06-10  Jonathan Pryor  <jpryor@novell.com>
102         * mini.c (mini_cleanup): Call mono_runtime_shutdown(). Fixes #438454.
104 2010-06-09  Levi Bard  <levi@unity3d.com>
106         * debugger-agent.c: Clear unloaded types on appdomain unload.
108 2010-06-08  Zoltan Varga  <vargaz@gmail.com>
110         * liveness.c (visit_bb): Make the component vregs of long vars volatile as well.
111         Fixes #612206.
113         * exceptions.cs: Add a test.
115 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
117         * mini-llvm.c (mono_llvm_check_method_supported): Only disable llvm for nested clauses.
119         * mini.c (mini_method_compile): Move the LLVM checks to a function in mini-llvm.c.
121         * mini.c (mono_jit_runtime_invoke): Initialize *exc to NULL before calling the wrapper,
122         so it doesn't have to do it.
124         * helpers.c (mono_disassemble_code): Flush stdout, so the output from the spawned
125         process does not mix with ours.
127         * mini-llvm.c (mono_llvm_emit_method): Refactor this giant function into smaller
128         ones.
130         * mini-llvm.c method-to-ir.c ir-emit.h: When using the llvm mono branch, allow
131         loads/stores which can throw exceptions inside clauses.
133 2010-06-05  Zoltan Varga  <vargaz@gmail.com>
135         * mini-llvm.c (mono_llvm_emit_method): Fix support for finally clauses with more than
136         one ENDFINALLY.
138         * mini.c (mini_init): Register mono_resume_unwind as an icall.
140 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
142         * dwarfwriter.c: Update after the mono_debug_lookup_locals () changes.
144         * debugger-agent.c (method_commands_internal): Ditto. Return scope information for
145         locals.
147 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
149         * debugger-agent.c (appdomain_unload): Clear all breakpoint instances in the dying
150         appdomain.
152 2010-06-02  Zoltan Varga  <vargaz@gmail.com>
154         * method-to-ir.c (set_rgctx_arg): New helper function to remove some duplicate code.
155         Use a separate generic class init trampoline for llvm, since it needs a different
156         signature.
158         * unwind.c (mono_unwind_decode_fde): Make this decode the mono specific LSDA which
159         includes the location of this/rgctx.
161         * mini-llvm.c aot-runtime.c: Enable generic sharing for llvm if using the LLVM mono
162         branch.
164 2010-06-01  Zoltan Varga  <vargaz@gmail.com>
166         * mini.c (mini_method_compile): Enable llvm+exceptions on LLVM SVN.
168         * mini-llvm.c (emit_cond_system_exception): Disable llvm when this occurs in a
169         clause.
171 2010-05-31  Zoltan Varga  <vargaz@gmail.com>
173         * unwind.c (mono_unwind_decode_fde): The FDE only has an augmention if the CIE
174         says so.
176         * aot-runtime.c (decode_eh_frame): Fix an assert condition.
178         * aot-compiler.c (patch_to_string): New debugging helper function.
180 2010-05-30  Zoltan Varga  <vargaz@gmail.com>
182         * exceptions-amd64.c (get_throw_trampoline): Fix the xdebug name of the corlib
183         trampoline.
185         * exceptions-x86.c (mono_arch_exceptions_init): Create an llvm rethrow trampoline too.
187         * mini-llvm.c (mono_llvm_emit_method): Implement OP_RETHROW.
189         * method-to-ir.c (mono_method_to_ir): Emit a OP_NOT_REACHED after a rethrow.
191         * mini-llvm.c (emit_call): Compute the containing try clause correctly for nested
192         clauses.
194         * mini.c (create_jit_info): Print EH clause info for LLVM too.
196 2010-05-28  Mark Probst  <mark.probst@gmail.com>
198         * method-to-ir.c (mono_method_to_ir): Emit a write barrier for
199         cpobj with reference types.
201 2010-05-28  Mark Probst  <mark.probst@gmail.com>
203         * method-to-ir.c (mono_method_to_ir): Only explicitly add the
204         write barrier for reference types.
206 2010-05-27  Zoltan Varga  <vargaz@gmail.com>
208         * mini-s390x.c (mono_arch_output_basic_block): Applied patch from Aurelien Minvielle
209         . Fix OP_ATOMIC_EXCHANGE_I4 on s390x. Fixes #609023.
211 2010-05-31  Martin Baulig  <martin@ximian.com>
213         Fix #608271.
215         * debugger-agent.c (breakpoints_cleanup): Iterate over `event_requests', call
216         clear_breakpoint() on all breakpoint events and remove them from the list.
218 2010-05-27  Martin Baulig  <martin@ximian.com>
220         Fix #605698.
222         * debugger-agent.c (method_commands, type_commands): Temporarily
223         set the appdomain while executing this method; do all metadata
224         calls in the debuggee's appdomain where user assemblies are loaded.
226 2010-05-27  Zoltan Varga  <vargaz@gmail.com>
228         * mini-s390x.c (mono_arch_get_delegate_invoke_impls): Fix the s390x build.
230 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
232         * method-to-ir.c (mono_method_to_ir): Add missing write barrier to stobj.
234 2010-05-26  Zoltan Varga  <vargaz@gmail.com>
236         * method-to-ir.c: Instead of freeing method headers immediately, save them in a list in
237         MonoCompile, and free them in mono_destroy_compile (), since the MonoType's in them could
238         be referenced even after the header is freed.
240         * aot-runtime.c: Remove the half finished support for decoding the .arm_exidx
241         section.
243 2010-05-25  Zoltan Varga  <vargaz@gmail.com>
245 2010-05-25  Bill Holmes  <billholmes54@gmail.com>
247         * genmdesc.c (main): Fixing the detection of the nacl switch.
249         Code is contributed under MIT/X11 license.
251 2010-05-25  Zoltan Varga  <vargaz@gmail.com>
253         * exceptions-amd64.c (mono_arch_find_jit_info_ext): Adjust the ip for LMF frames too.
255         * mini-llvm.c aot-compiler.c: More LLVM 2.8 updates.
257         * mini.h (LLVM_CHECK_VERSION): New helper macro.
259 2010-05-25  Miguel de Icaza  <miguel@novell.com>
261         * genmdesc.pl (build_spec): Add support for nacl: keyword also to
262         the Perl program
264         * genmdesc.c: Added support for nacl: key on the machine
265         description files to support the extra space required by Google
266         Native Client.
268 2010-05-23  Zoltan Varga  <vargaz@gmail.com>
270         * mini.c (mono_jit_compile_method_inner): Propagate exceptions in one more place.
272 2010-05-23  Zoltan Varga  <vargaz@gmail.com>
274         * mini.c (mono_jit_compile_method_inner): Propagate exceptions from
275         mono_runtime_class_init_full ().
276         (mono_jit_runtime_invoke): Ditto. Fixes #608073.
278 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
280         * mini-llvm.c mini-llvm-cpp.cpp: Update after LLVM 2.8 changes.
282 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
284         * mini-ppc.c (mono_arch_output_basic_block): Use ins->inst_c1 instead of p1, the
285         two are not the same on ilp32.
287 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
289         * mini.c (mono_jit_compile_method_inner): Remove a DISABLE_JIT block which was
290         added by mistake.
292         * mini-ppc.c: Fix the DISABLE_JIT build.
294 2010-05-20  Zoltan Varga  <vargaz@gmail.com>
296         * aot-runtime.c (decode_resolve_method_ref): Rename this from decode_method_ref_2.
297         (make_writable): Remove this unused function.
299 2010-05-20  Zoltan Varga  <vargaz@gmail.com>
301         * aot-compiler.c: Collect all information about a PLT entry into a separate MonoPltEntry
302         structure. Make the labels to plt entries local symbols instead of assembler local
303         labels, since tha latter causes problems for the iphone linker.
305 2010-05-19  Zoltan Varga  <vargaz@gmail.com>
307         * mini-ppc.c (mono_ppc_is_direct_call_sequence): Handle one more case with ilp32.
309 2010-05-17  Zoltan Varga  <vargaz@gmail.com>
311         * mini-ppc.c (mono_ppc_is_direct_call_sequence): Handle ilp32.
312         (ppc_patch_full): Ditto.
314         * mini-arm.c (mono_arch_build_imt_thunk): Fix the fail_tramp case.
316         * method-to-ir.c (mono_method_to_ir): Use fast generic virtual method invocation
317         if gshared is enabled, to avoid asserts in the trampoline code.
319         * mini-ia64.c (mono_arch_build_imt_thunk): Implement generalized imt thunks
320         on ia64.
322 2010-05-15  Geoff Norton  <gnorton@novell.com>
324         * dwarfwriter.c, xdebug.c: Fix a pretty large leak when running in 
325         xdebug mode.
327 2010-05-14  Geoff Norton  <gnorton@novell.com>
329         * exceptions-x86.c: Fix the alignment of this trampoline so we dont get a 
330         misaligned stack on darwin.
332 2010-05-14  Zoltan Varga  <vargaz@gmail.com>
334         * mini-arm.c aot-compiler.c: Implement support for generalized imt thunks on
335         arm.
337 2010-05-14  Zoltan Varga  <vargaz@gmail.com>
339         * xdebug.c: Fix ARM support.
341 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
343         * exceptions-x86.c (mono_arch_handle_exception): Resume from the signal handler
344         and do most of the work on the normal stack.
345         (mono_x86_get_signal_exception_trampoline): New x86 specific trampoline function.
347 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
349         * aot-compiler.c: Put non-code data into the .rodata section on linux.
351 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
353         * exceptions-arm.c (mono_arch_handle_exception): Fix the cross-compile case.
355 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
357         * exceptions-arm.c (mono_arch_handle_exception): Resume from the signal handler
358         and do most of the work on the normal stack.
360 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
362         * exceptions-amd64.c (mono_arch_handle_exception): Resume from the signal handler
363         and do most of the work on the normal stack even if sigaltstack is disabled.
365 2010-05-12  Zoltan Varga  <vargaz@gmail.com>
367         * exceptions-amd64.c (mono_arch_sigctx_to_monoctx): Simplify this now that
368         UCONTEXT_REG_ constants are available on linux as well.
369         (mono_arch_monoctx_to_sigctx): Ditto.
370         (mono_arch_ip_from_context): Ditto.
372 2010-05-12  Zoltan Varga  <vargaz@gmail.com>
374         * debugger-agent.c (set_breakpoint): Fix setting of pending breakpoints in
375         other domains.
377 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
379         * aot-compiler.c (emit_plt): Don't align the plt to a pagesize on x86, it is
380         no longer needed.
382 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
384         * debugger-agent.c (insert_breakpoint): Print a more descriptive error message
385         if a breakpoint cannot be inserted.
387 2010-05-08  Zoltan Varga  <vargaz@gmail.com>
389         * aot-compiler.c (emit_and_reloc_code): Fix a warning.
391 2010-05-07  Zoltan Varga  <vargaz@gmail.com>
393         * debugger-agent.c (frame_commands): Return an error instead of asserting if
394         no JIT info is found for the method.
396 2010-05-05 Jonathan Chambers  <joncham@gmail.com>
398         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Protect against a NULL sigctx
399         in debug printf.
401 2010-05-05  Zoltan Varga  <vargaz@gmail.com>
403         * mini-amd64.c (mono_arch_get_trampolines): New arch specific function returning
404         a list of arch specific trampolines.
406         * aot-compiler.c (emit_trampolines): Use it.
408 2010-05-05  Zoltan Varga  <vargaz@gmail.com>
410         * tramp-<ARCH>.c exceptions-<ARCH>.c mini-trampolines.c mini-exceptions.c
411         aot-compiler.c: Use the _full trampoline creation functions on all platforms,
412         get rid of the _full from their name.
414 2010-05-05  Zoltan Varga  <vargaz@gmail.com>
416         * tramp-x86.c (mono_arch_create_generic_trampoline): Call
417         get_nullified_class_init_trampoline to remove some code duplication.
419 2010-05-03  Zoltan Varga  <vargaz@gmail.com>
421         * mini-x86.c (mono_arch_emit_prolog): Fix full-aot support for thread
422         attach.
424 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
426         * mini-amd64.c (mono_arch_emit_load_aotconst): New arch-specific function.
428         * tramp-amd64.c: Use emit_load_aotconst to remove some code duplication.
430         * aot-runtime.c (init_plt): Make the default entries point to the AOT trampoline,
431         there is no need to jump through the first plt entry.
433         * aot-runtime.c (mono_aot_get_named_code): Rename to mono_aot_get_trampoline.
435         * aot-runtime.c (mono_aot_get_plt_entry): Move the arch specific parts to an
436         arch-specific function.
437         (mono_aot_get_plt_info_offset): Ditto.
439         * aot-runtime.c (mono_aot_register_jit_icall): New helper function called from
440         mono_arch_init () to register jit icalls called from full-aot trampolines.
441         (load_function): Get rid of the arch specific #ifdefs, move the relevant code
442         to mini-<ARCH>.c.
444         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception_full): Get rid of
445         the specialized throw corlib exception trampoline, use a variant of the normal
446         trampoline along with a new C function which does the call to
447         mono_exception_from_token (), just like on x86.
449 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
451         * mini-trampolines.c aot-compiler.c tramp-<ARCH>.c exceptions-<ARCH>.c:
452         Reorganize the full aot trampoline creation functions, instead of taking a bunch
453         of out arguments, they will now take a MonoTrampInfo** out argument. Simplify
454         some code in aot-compiler.c because of this. Remove the non-full aot trampoline
455         creation functions on architectures which have the full-aot ones.
457 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
459         * mini-ppc.c (mono_arch_decompose_long_opts): Fix LNEG.
461 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
463         * mini-ppc.c (mono_arch_emit_exceptions): Initialize exc_throw_pos/found
464         explicitly, this seems to be required by some gcc versions at -O2.
466         * mini-arm.c: Ditto.
468 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
470         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Fix full-aot support for
471         has_target delegate invokes.
473 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
475         * mini.h (MonoAotTrampInfo): Rename this to MonoTrampInfo, add patches/unwind
476         info fields.
478         * aot-compiler.c (mono_aot_tramp_info_create): Rename to mono_tramp_info_create,
479         add patches/unwind info arguments, move to mini.c.
481         * mini-<ARCH>.c aot-compiler.c: Update after the above changes.
483 2010-04-30  Zoltan Varga  <vargaz@gmail.com>
485         * debugger-agent.c (type_commands): Add a new CMD_TYPE_GET_SOURCE_FILES_2
486         command which returns full path names.
488 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
490         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline_full): Set the
491         code_size output variable.
493         * mini-x86.c (mono_arch_emit_prolog): Compute the GOT addr before calling
494         mono_get_lmf_addr.
495         
496 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
498         * mini-x86.c (mono_arch_emit_prolog): Remove a disable_aot which is not needed.
499         (mono_arch_cpu_optimizazions): Make this a no-op when running with full aot.
500         (mono_arch_cpu_enumerate_simd_versions): Ditto.
502 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
504         * image-writer.c (asm_writer_emit_alignment): Use ilog2 for alignments for the
505         apple assembler.
507 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
509         * mini-x86.c (mono_arch_emit_prolog): Avoid an assert in full-aot mode.
511 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
513         * aot-runtime.c (load_function): Use TARGET_X86 instead of __i386__.
515 2010-04-28  Zoltan Varga  <vargaz@gmail.com>
517         * aot-compiler.c (emit_got_info): Double the buffer size to avoid an assert.
519 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
521         * dwarfwriter.c (emit_line_number_info): Get rid of the usage of GArray, so
522         line number support works with eglib.
524 2010-04-27  Miguel de Icaza  <miguel@novell.com>
526         * driver.c, mini.c: Since linking with LLVM makes the default Mono
527         dirty an extra 70kb pages on startup we are now going to choose a
528         different strategy: ship mono and mono-llvm binaries, with the
529         second being the one that links with LLVM and defaults to LLVM
530         being enabled.
532 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
534         * tramp-x86.c exceptions-x86.c mini-x86.c aot-compiler.c aot-runtime.c: 
535         Implement full-aot support on x86.
537         * method-to-ir.c: Always use a got var on x86 too, just like on ppc, because the
538         trampolines depend on it. Use MONO_ARCH_GOT_REG as the got register, instead of
539         the first register returned by get_global_int_regs ().
541         * cpu-x86.md: Fix the length of insertx_u1_slow.
543         * iltests.il.in: Disable tail call tests when running with full-aot.
545 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
547         * method-to-ir.c (mono_op_to_op_imm_noemul): Fix a warning.
549 2010-04-24  Mark Probst  <mark.probst@gmail.com>
551         * mini.c, driver.c: Initialize mono_use_llvm in mono_main(), not
552         in the initializer, because it's non-constant.
554 2010-04-23  Miguel de Icaza  <miguel@novell.com>
556         * mini.c: Use MONO_USE_LLVM as an environment flag to turn the use
557         of LLVM on by default.   Used for buildbots and other setups.
559 2010-04-24  Zoltan Varga  <vargaz@gmail.com>
561         * mini.c: Set mono_use_llvm to FALSE even if mono is compiled with LLVM.
563 2010-04-23  Kornel Pal  <kornelpal@gmail.com>
565         * method-to-ir.c (mono_method_to_ir): Enable inlining of pointer-sized unmanaged
566         initonly static fields when using moving GC.
568         Contributed under MIT/X11 license.
570 2010-04-23  Geoff Norton  <gnorton@novell.com>
572         * mini-amd64.h: Darwin x86_64 support.
574 2010-04-20  Jonathan Pryor  <jpryor@novell.com>
576         * exceptions-arm.c: Remove platform checks in favor of configure checks.
578 2010-04-19  Jonathan Pryor  <jpryor@novell.com>
580         * exceptions-arm.c: Add Android support for sigcontext structure.
582 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
584         * mini.c (mono_jit_compile_method_inner): Implement the check for native func
585         wrappers correctly now that their wrapper info is NULL.
587 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
589         * mini.c (mono_jit_compile_method_inner): Avoid calling
590         mono_marshal_method_from_wrapper () for native func wrappers. Fixes #597189.
592 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
594         * genmdesc.c (inst_name): Define this as a copy of mono_inst_name in helpers.c,
595         so the latter can be #ifndef DISABLE_JIT-ed.
597         * helpers.c: Comment out the opstr array if DISABLE_JIT is set.
599 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
601         * method-to-ir.c driver.c: Disable a few more things when DISABLE_JIT is set.
603 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
605         * mini-llvm.c (emit_entry_bb): Fix support for simd arguments passed on the
606         stack.
608 2010-04-15  Zoltan Varga  <vargaz@gmail.com>
610         * debugger-agent.c (type_commands): Call mono_class_setup_methods () before
611         calling mono_class_num_methods (). Fixes #592244.
613 2010-04-14  Zoltan Varga  <vargaz@gmail.com>
615         * mini-x86.c (mono_arch_get_llvm_call_info): Handle empty structures correctly.
617         * mini-llvm.c: Disable LLVM for calls with non-default calling conventions.
619 2010-04-14  Zoltan Varga  <vargaz@gmail.com>
621         * method-to-ir.c (handle_box_inst): Merge into handle_box, simplify the merged
622         version.
623         * (handle_alloc): Ditto.
624         (mono_method_to_ir): Remove the constrained call restriction added by a previous
625         change, its not needed anymore.
627 2010-04-12  Zoltan Varga   Kumpera  <rkumpera@novell.com>
629         * mini-posix.c (sigusr1_signal_handler): Fix build on
630         non x86/amd64 systems.
632 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
634         * method-to-ir.c (mono_method_to_ir): Disable generic sharing for constrained
635         calls where the constrained class needs a context. Fixes #595863.
637         * iltests.il.in: Add a test.
639 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
641         * mini.c (mini_method_compile): Disable llvm+methods with clauses again, llvm
642         2.6/SVN seems to have broken support for them.
644 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
646         * mini-llvm.c: Fix support for LLVM 2.6.
648 2010-04-10  Zoltan Varga  <vargaz@gmail.com>
650         * debugger-agent.c (thread_commands): Add a GET_ID command to get the
651         MonoInternalThread belonging to the thread.
653 Fri Apr 9 15:28:01 CEST 2010 Paolo Molaro <lupus@ximian.com>
655         * driver.c, optflags-def.h, ir-emit.h: introduce an unsupported
656         unsafe optimization that will remove bound checks.
658 2010-04-08  Kornel Pal  <kornelpal@gmail.com>
660         * method-to-ir.c (mini_emit_inst_for_method): Fix a typo that caused
661         CompareExchange not to be inlined for I8.
663         Contributed under MIT/X11 license.
665 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
667         * array.cs: Add tests for cast between primitive array types.
669 2010-04-07 Andreia Gaita  <avidigal@novell.com>
671         * Makefile.am: create a convenience library for moon to link with
673 2010-04-07 Paolo Molaro <lupus@ximian.com>
675         * method-to-ir.c: optimize array accesses from generic interfaces.
677 2010-04-06  Zoltan Varga  <vargaz@gmail.com>
679         * mini-llvm.c: Update after the memset/memcpy intrinsics changes in LLVM SVN.
681 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
683         * method-to-ir.c (mono_method_to_ir): Handle call to virtual final methods
684         of marshalbyref classes.
686         Fixes #515884.
688 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
690         * aot-compiler.c (emit_exception_debug_info): Encode try holes
691         information.
693         * aot-runtime.c (decode_exception_debug_info): Decode try holes
694         information.
696         * mini.h: Increase AOT version.
698 2010-04-04  Andreas Faerber  <andreas.faerber@web.de>
700         * mini-x86.h: Only enable soft debugger when using sigaction or on
701         Windows. Fixes build on Haiku (lacks siginfo_t).
703         Code is contributed under MIT/X11 license.
705 2010-04-02  Andreas Faerber  <andreas.faerber@web.de>
707         * mini.h, mini-x86.h: Suppress sigaction for Haiku, add support for
708         BeOS-style signal handlers.
710         Code is contributed under MIT/X11 license.
711         
712 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
714         * mini-posix.c (sigusr1_signal_handler): Fix openbsd support.
716 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
718         * mini-exceptions.c: Fix win32 build.
720 2010-04-01  Mark Probst  <mark.probst@gmail.com>
722         * mini.c, driver.c: Call mono_gc_base_init() before
723         mono_debug_init().
725 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
727         * method-to-ir.c (ensure_method_is_allowed_to_[access_field|
728         call_method]): Delegate the actual work in security-core-clr.c
729         to ease code sharing.
731 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
733         * decompose.c (mono_decompose_opcode): Set the cfg exception if the unsupported
734         float conv.ovf.un opcodes are encountered, instead of asserting later.
735         Fixes #566296.
737 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
739         * decompose.c (mono_decompose_opcode): Add OP_ICONV_TO_U4_UN as a no-op.
741         * iltests.il.in: Add a test.
743 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
745         * mini-amd64.c (mono_arch_emit_call): Fail compilation if an argument is too
746         large. Fixes #567040.
748         * method-to-ir.c: Call CHECK_CFG_EXCEPTION after emitting a call.
750 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
752         * method-to-ir.c (handle_ccastclass): Call save_cast_details (). Fixes
753         #592711.
755 2010-03-31 Rolf Bjarne Kvinge <RKvinge@novell.com>
757         * mini-trampolines.c: Surround mono_handler_block_guard_trampoline and
758         mono_create_handler_block_trampoline with the proper #ifdef so that it
759         compiles on amd64.
761 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
763         * mini-exceptions.c: Introduce mono_walk_stack_full, which
764         allows to select if it's new or old context that is passed to 
765         the callback.
767         * mini-exceptions.c (mono_handle_exception_internal): Handle the
768         case when executing a guarded handler from the EH machinery.
770         * mini-exceptions.c (mono_install_handler_block_guard): New function
771         responsible for checking for handler blocks, installing the guard and
772         clearing abort state.
774         * mini-posix.c (sigusr1_signal_handler): Call mono_install_handler_block_guard
775         to check for handler blocks and skip interruption logic if one was found.
777         * mini-trampolines.c (mono_handler_block_guard_trampoline): Function called
778         by the handler block guard trampoline. Resumes interruption by raising the
779         pending ThreadAbortException.
781         * mini.c (create_jit_info): Calculate the end address of a finally block.
783         * mini-x86.c (mono_arch_install_handler_block_guard): Patch the return address
784         of a finally block to a specified address and return the old one.
786         * tramp-x86.c (mono_arch_create_handler_block_trampoline): The handler block
787         trampoline patches the original return address and calls the trampoline function.
789 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
791         * mini-trampolines.c (mono_aot_trampoline): Remove some dead code.
793         * aot-runtime.c (mono_aot_patch_plt_entry): New helper function, which only
794         does the patching if the callee is in the same domain.
796         * aot-runtime.c mini-trampolines.c: Call mono_aot_patch_plt_entry instead
797         of mono_arch_patch_plt_entry ().
799 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
801         * mini.c (create_jit_info): Fix try block hole length encoding.
803 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
805         * mini.c (create_jit_info): Emit saner debug spew. Now it doesn't
806         duplicate information and print offsets instead of absolute addresses.
808 2010-03-29  Zoltan Varga  <vargaz@gmail.com>
810         * debugger-agent.c (jit_end): Send type loads for types loaded before the VMStart
811         event is sent. Fixes #591733.
813 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
815         * mini-posix.c (SIG_HANDLER_SIGNATURE): Handle the case when ctx is NULL on
816         OpenBSD.
818 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
820         * debugger-agent.c (mono_debugger_agent_init): Set the GC type of the
821         thread_to_tls hash table.
823         * image-writer.c (bin_writer_emit_writeout): Fix the size of the got.plt
824         section. Fixes #591000.
826 2010-03-26  Andreas Faerber  <andreas.faerber@web.de>
828         * Makefile.am (version.h): Check for pure .git directory only,
829         fixes SVN revision when using git without git-svn.
831         Contributed under MIT/X11 license.
833 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
835         * aot-runtime.c: Apply some openbsd changes from openbsd ports.
837 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
839         * basic-simd.cs: Test for vector x scalar binary operators.
841 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
843         * simd-intrincs.c (simd_intrinsic_emit_binary): Support binary
844         intrinsics with expanded scalar arguments.
846 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
848         * mini-exceptions.c (get_exception_catch_class): Non catch clauses
849         don't have an exception class, so don't decode it. This would crash
850         with filter clauses.
852 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
854         Make sure that trunk builds with DISABLE_JIT, an update to the
855         PlayStation 3 port.
856         
857         * mini.c (mini_get_shared_method): this code seems to be necessary
858         regardless of whether DISABLE_JIT has been defined.
860         (mono_jit_compile_method_inner): it seems that this method is
861         required even in full AOT mode, so ifdef out only the pieces that
862         try to genrate code (the body of code that applies patches to the
863         code).  
865         (mini_method_compile): do not compile when using DISABLE_JIT.
867         * mini-ppc.c (mono_arch_get_allocatable_int_vars)
868         (mono_arch_output_basic_block, mono-arch_emit_exceptions): Do not
869         compile when DISABLE_JIT is set.
871 2010-03-24  Mark Probst  <mark.probst@gmail.com>
873         * mini.c (mono_create_tls_get): Only create a TLS operation if the
874         arch really supports it.
876 2010-03-24  Mark Probst  <mark.probst@gmail.com>
878         * mini-x86.c, mini-x86.h, mini.c: CEE_MONO_TLS support for Darwin/x86.
880 2010-03-23  Neale Ferguson <neale@sinenomine.net>
882         * exceptions-s390x.c: Add support for
883         mono_arch_get_throw_corlib_exception and fix throw by name.
885         * mini-s390x.c: Add IMT support; Fix stack parameter passing
886         logic (especially for varargs); Correct localloc sizing; Add
887         mono_arch_get_this_arg_from_call and
888         mono_arch_get_this_arg_from_call.
890         * mini-s390x.h: Add support for facility list extraction;
891         Correct/update MONO_ARCH_xxx settings.
893         * mini-s390.c: Minor corrections to instruction output for
894         varargs. No IMT implementation - I think it's time to deprecate
895         s390 and just leave s390x.
897         * tramp-s390x.c: Correct creation of trampoline instruction
900         * cpu-s390x.md: Update some instruction lengths
902 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
904         * mini-generic-sharing.c (fill_in_rgctx_template_slot): Remove an assert which
905         can be hit with partial sharing.
907         * mini-generic-sharing.c (get_shared_class): Handle partially shared methods
908         in non-shared classes correctly.
909         (generic_inst_is_sharable): Allow all primitive types in partial sharing.
910         Turn on partial sharing.
912 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
914         * mini-amd64.h: Put back MONO_ARCH_NOMAP32BIT for OpenBSD which was removed
915         by mistake.
917 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
919         * method-to-ir.c (mono_method_to_ir): Handle the failure of
920         mono_method_signature ().
922         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
924         * mini.c (mini_method_compile): Get the signature of cfg->method early with
925         error checking, so later calls do not need error checking.
927 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
929         * exceptions-amd64.c: Add support for OpenBSD which has no UCONTEXT_GREGS.
931         * mini-amd64.h: Enable MONO_ARCH_USE_SIGACTION on OpenBSD as well.
933 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
935         * mini-exceptions.c (mono_handle_exception_internal): Don't
936         check try_end for archs different than s390. 
938         * mini.c (create_jit_info): Don't crash if the finallt block is the
939         last one.
941 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
943         * driver.c (mono_main): Don't free global codeman under linux since
944         glic now peeks at code on stack for more archs than just amd64.
946 Mon Mar 22 18:09:09 CET 2010 Paolo Molaro <lupus@ximian.com>
948         * mini.c, method-to-ir.c: changes to support compressed interface
949         bitmaps.
951 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
953         * mini-x86.h: Applied patch from Robert Nagy (Robert@openbsd.org).
954         Use sigaction on OpenBSD too.
956 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
958         * debugger-agent.c (event_req_matches_assembly): Handle request modifiers too.
960 2010-03-21  Andreas Faerber  <andreas.faerber@web.de>
962         * debugger-agent.c: #include sys/select.h for fd_set.
964         Code is contributed under MIT/X11 license.
966 2010-03-21  Zoltan Varga  <vargaz@gmail.com>
968         * mini.c (SIG_HANDLER_SIGNATURE): Fix the build on platforms without sigaction
969         (openbsd+amd64 ?).
971 2010-03-21  Zoltan Varga  <vargaz@gmail.com>
973         * mini-ppc.c (mono_arch_emit_exceptions): Avoid an assert in ppc_patch () for
974         some large methods with lots of exception handlers. Fixes #440924.
976 Sat Mar 20 11:56:24 CET 2010 Paolo Molaro <lupus@ximian.com>
978         * method-to-ir.c: remove code duplication for interface checks.
980 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
982         * debugger-agent.c (clear_event_requests_for_assembly): New helper function.
983         (assembly_unload): Clear all event requests referencing the to-be unloaded
984         assembly.
987 Fri Mar 19 16:45:20 CET 2010 Paolo Molaro <lupus@ximian.com>
989         * mini.h, mini-exceptions.c: restore the state of the stack
990         guard page permissions.
992 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
994         * mini-trampolines.c (common_call_trampoline): Remove the condition guarding the
995         call site patching code, it doesn't appear to be needed.
997 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
999         * mini-generic-sharing.c: Add infrastructure for partial sharing, ie.
1000         sharing generic methods whose type arguments are a mix of reference and
1001         non-reference types. Not yet turned on.
1003         * mini.c (mini_get_shared_method): New helper function to return
1004         the method which will be compiled/registered in the JIT tables when doing
1005         generic sharing.
1006         (mono_domain_lookup_shared_generic): Moved to mini.c from mini-generic-sharing.c,
1007         use mini_get_shared_method ().
1009         * mini.c (mini_method_compile): Register the same method which is compiled when
1010         doing generic sharing.
1012         * mini.c aot-compiler.c aot-runtime.c: Add support for partial sharing.
1014         * generics.cs: Add partial sharing tests.
1016 2010-03-17 Jerry Maine  <crashfourit@gmail.com>
1018         * mini.h : Changed the SIMD_VERSION* enum values to match those in Mono.Simd.AccelMode.
1019                    Add an enum value that or's all possable values together. Add an enum value
1020                    that marks the end of the used bit indexes.
1022         * mini-amd64.c : Make changes to match the changes in mini.h 
1024         * mini-x86.c : Make changes to match the changes in mini.h
1026         * simd-intrinsics.c : Reorder the SimdIntrinsc struct to add more bits to
1027                    simd_version to support more simd versions. Changed the name of
1028                    simd_version to simd_version_flags to make it more intuitive that
1029                    it now contains bit flags. Reordered the *_intrinsics arrays to
1030                    match the changes above. Changed emit_intrinsics() to use the new
1031                    setup mentioned above.
1033         Code is contributed under MIT/X11 license.
1035 2010-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
1037         * mini-*.c (mono_arch_output_basic_block): Record try block holes on all
1038         remaining archs. Alpha and hppa maintainers, please stand up.
1040 2010-03-17  Zoltan Varga  <vargaz@gmail.com>
1042         * mini-ppc.c (mono_arch_build_imt_thunk): Always save and restore r11 since it
1043         is needed even when fail_tramp!=NULL.
1045 2010-03-17  Zoltan Varga  <vargaz@gmail.com>
1047         * debugger-agent.c (insert_breakpoint): Write a log message.
1049 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1051         * iltests.il.in: Add a few tests for LEAVE going over multiple
1052         finally clauses.
1054 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1056          * mini-x86.c (mono_arch_output_basic_block): Record try block holes.
1058 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1060         * mini.h (MonoBasicBlock): Add native_length field.
1061         * mini.h (MonoCompile): Add try_block_holes field.
1062         * mini.h (MonoInst): Add exception_clause pointer to
1063         the data union.
1065         * mini.c (mono_codegen): Calculate MonoBasicBlock::native_length.
1066         * mini.c (mono_cfg_add_try_hole): New function to register possible
1067         holes in try blocks.
1068         * mini.c (create_jit_info): Fill in the holes information.
1070         * mini-exceptions.c: Verify for holes when checking if an IP is covered
1071         by a try block.
1073         * method-to-ir.c: Add the EH clause to the CALL_HANDLE instruction.
1075 Tue Mar 16 13:16:16 CET 2010 Paolo Molaro <lupus@ximian.com>
1077         * jit-icalls.c: adjusted for the array API changes.
1079 2010-03-16  Zoltan Varga  <vargaz@gmail.com>
1081         * iltests.il.in: Disable the fconv_to_i test on sparc too.
1083 2010-03-16  Zoltan Varga  <vargaz@gmail.com>
1085         * debugger-agent.c: Simplify the way breakpoints are processed by removing
1086         the 'pending' flag. This fixes support for appdomains too.
1089 Mon Mar 15 18:25:49 CET 2010 Paolo Molaro <lupus@ximian.com>
1091         * mini-amd64.c, mini-ia64.c: remove direct access to method->header.
1093 2010-03-12  Zoltan Varga  <vargaz@gmail.com>
1095         * simd-intrinsics.c (simd_intrinsic_emit_getter): Don't emit shuffle opcodes
1096         when using LLVM, LLVM generates it itself when needed.
1098         * mini-llvm-cpp.cpp (mono_llvm_build_aligned_load): New helper function.
1100         * mini-llvm.c: Use an unaligned load for OP_LOADX_MEMBASE. Add zero extension
1101         to some OP_EXTRACT_ opcodes. Fix the naming of some sse intrinsics. Fix
1102         OP_ANDNPS/OP_ANDNPD.
1104 2010-03-11  Zoltan Varga  <vargaz@gmail.com>
1106         * tramp-x86.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code' for
1107         the pc instead of 'buf'. Fix the call to mono_arch_flush_icache ().
1108         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
1110 2010-03-11  Martin Baulig  <martin@ximian.com>
1112         * debugger-agent.c (type_commands): Add NULL check to
1113         `CMD_TYPE_GET_SOURCE_FILES'.
1115 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1117         * mini-ppc.c (mono_arch_decompose_opts): Fix OP_ICONV_TO_R_UN when cross-compiling.
1119 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1121         * mini-codegen.c (mono_peephole_ins): Fix the OP_FMOVE optimization. Fixes
1122         #586664.
1124         * iltests.il.in: Add a test.
1126 2010-03-05  Martin Baulig  <martin@ximian.com>
1128         Add support for aborting invocations.
1130         * debugger-agent.c
1131         (InvokeData): Added `InvokeData *last_invoke'.
1132         (DebuggerTlsData): Renamed `invoke' into `pending_invoke' and
1133         added a new `invoke' field to keep the `InvokeData *' throughout
1134         the invocation.
1135         (ErrorCode): Added `ERR_NO_INVOCATION'.
1136         (CmdVM): Added `CMD_VM_ABORT_INVOKE'.
1137         (mono_debugger_agent_handle_exception): Don't report any exception
1138         if an abort was requested.
1139         (invoke_method): Store the `InvokeData *' in `tls->invoke'; reset
1140         a thread abort if necessary.
1141         (vm_commands): Implement `CMD_VM_ABORT_INVOKE'.
1143 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1145         * method-to-ir.c: Store the initial basic block returned by mono_basic_block_split
1146         so we can release the whole list and not just the first one. Free
1147         it in more places as well.
1149 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1151         * method-to-ir.c: Revert r153222 as it doesn't belong here.
1153 Mon Mar 8 17:58:26 CET 2010 Paolo Molaro <lupus@ximian.com>
1155         * mini.h, *.c: prepare for MonoMethodHeader to become a transient entity.
1157 Mon Mar 8 17:35:26 CET 2010 Paolo Molaro <lupus@ximian.com>
1159         * driver.c: report also other misc build options.
1161 2010-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
1163         * method-to-ir.c: Generate better code for the NewObject
1164         intrinsic.
1165         
1166 2010-03-07  Zoltan Varga  <vargaz@gmail.com>
1168         * branch-opts.c (mono_if_conversion): Disable one of the cases when deadce
1169         is disabled. Fixes #582322.
1171         * iltests.il.in: Add a test.
1173 2010-03-06  Zoltan Varga  <vargaz@gmail.com>
1175         * tramp-amd64.c (mono_arch_create_monitor_exit_trampoline_full): Delegate
1176         the handling of obj->synchronization == null and owner != current thread to
1177         mono_monitor_exit ().
1179         * tramp-x86.c (mono_arch_create_monitor_exit_trampoline_full): Ditto.
1182 Sat Mar 6 18:14:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1184         * mini.c: change the way emulated opcode info is stored and save about
1185         4 KB of runtime memory.
1187 2010-03-04  David S. Miller  <davem@davemloft.net>
1189        * mini-sparc.h: Always use MONO_ARCH_USE_SIGACTION.  Linux kernels
1190        that don't provide the siginfo in the second signal handler argument
1191        are buggy, and this has been fixed for years.
1192        * mini.h (GET_CONTEXT): Remove __sparc__ special case.
1193        (SIG_HANDLER_SIGNATURE, SIG_HANDLER_PARMS): Likewise.
1195 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
1197         * aot-runtime.c (find_symbol): Fix a leak.
1198         (decode_patch): Ditto.
1200 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
1202         * mini.h (MONO_INST_IS_TEMP): Kill this unused define.
1204 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
1206         * mini.c (mono_resolve_patch_target): Fix an uninitialized variable.
1208 Wed Mar 3 19:19:21 CET 2010 Paolo Molaro <lupus@ximian.com>
1210         * method-to-ir.c: MONO_PROFILE_STRING_ALLOC is dead.
1212 2010-03-03  Rodrigo Kumpera  <rkumpera@novell.com>
1214         * method-to-ir.c (mono_method_to_ir): Don't create a runtime vtable
1215         to check for errors, it's enough to create the metadata open.
1217         Fixes #562150
1219 2010-03-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1221         * trace.c|h:
1222         * mini-exceptions.c: Add support for printing stack traces when handling
1223         exceptions, and when printing exceptions thrown while tracing also print
1224         the exception message.
1226 2010-03-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1228         * trace.c: We need to parse exclude tokens ('-') before string tokens,
1229         since the exclude token is a valid string character.
1231 2010-03-02  Levi Bard  <levi@unity3d.com>
1233         * debugger-agent.c: Invalidate thread stacks on domain unload.
1235 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1237         * method-to-ir.c: Emit dummy_use for stored reference after write
1238         barriers to make sure the object is pinned if the GC interrupts
1239         before the write barrier is done.
1241 2010-03-02  Zoltan Varga  <vargaz@gmail.com>
1243         * cpu-<ARCH>.md: dummy_use was missing src1:i.
1245 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1247         * debugger-agent.c: Add a log message printing the protocol version.
1249 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1251         * debugger-agent.c: Add a new command to communicate the protocol version used
1252         by the client. This could be used to allow newer runtimes to communicate with
1253         older clients.
1255 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1257         * debugger-agent.c (domain_commands): Add a new command to create a boxed value.
1259 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1261         * debugger-agent.c (type_commands): Fix the setting of fields with a reference
1262         type.
1264 Mon Mar 1 15:20:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1266         * mini-arm.c: make the arm cpu arch configurable with the
1267         MONO_CPU_ARCH env var (for example: "armv4 thumb").
1268         Bug #584198.
1270 Mon Mar 1 14:48:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1272         * mini.c, mini.h, driver.c: added the --jitmap option to enable
1273         support for the perf tool on Linux.
1275 Mon Mar 1 14:43:55 CET 2010 Paolo Molaro <lupus@ximian.com>
1277         * method-to-ir.c: make string.InsertenalSetChar() specialization
1278         effective.
1280 2010-03-01  Robert Jordan  <robertj@gmx.net>
1282         * Makefile.am: fix the non-static build.
1284 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1286         * mini-generic-sharing.c: Move the contents of ../metadata/generic-sharing.c
1287         here.
1289 2010-02-26  Robert Jordan  <robertj@gmx.net>
1291         * tasklets.c (continuation_store): Return from an error condition
1292         immediately.
1294 2010-02-26  Martin Baulig  <martin@ximian.com>
1296         * debug-debugger.c (MonoDebuggerInfo): Added `abort_runtime_invoke'.
1298         * debug-mini.c
1299         (MonoDebuggerThreadInfo): Added `internal_flags'.
1300         (MonoDebuggerInternalThreadFlags): New enum.
1301         (_mono_debugger_throw_exception): Don't signal the debugger if a
1302         type abort was requested.
1303         (_mono_debugger_unhandled_exception): Likewise.
1304         (mono_debugger_abort_runtime_invoke): New method to abort an invocation.
1305         (mono_debugger_runtime_invoke): If the debugger requested a thread
1306         abort during the invocation, reset it here.
1308 2010-02-26  Martin Baulig  <martin@ximian.com>
1310         * debug-mini.c (MonoDebuggerThreadInfo): Use `MonoInternalThread *'
1311         instead of `MonoThread *'.
1313 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1315         * aot-runtime.c (mono_aot_find_jit_info): Use a merge sort for sorting the
1316         code offsets table, as it is mostly sorted.
1318 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1320         * debugger-agent.c (do_invoke_method): Fix invoking of static methods on vtypes.
1321         Fixes #582991.
1323 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1325         * driver.c (mono_main): Get rid of mono_setup_vtable_in_class_init.
1327 Wed Feb 24 15:58:03 CET 2010 Paolo Molaro <lupus@ximian.com>
1329         * Makefile.am: build the new ABI version of the libmono library.
1330         * debugger-agent.c, mini.c: fix warnings with the new API.
1331         * jit.h: don't depend on glib.h being included.
1333 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
1335         * method-to-ir.c (mono_method_to_ir): Implement AOT support for fast TLS access.
1337 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
1339         * method-to-ir.c (mono_method_to_ir): Implement support for fast access to
1340         ThreadStatic variables.
1342 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
1344         * debugger-agent.c (notify_thread): Skip terminated threads, since their tls
1345         data is not freed yet. Fixes #582460.
1347 2010-02-23  Zoltan Varga  <vargaz@gmail.com>
1349         * debugger-agent.c: Add support for the caught/uncaught flags on exception
1350         event requests. Bump protocol minor version.
1352 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
1354         * decompose.c (mono_decompose_long_opts): Handle OP_LCONV_TO_OVF_I8 here too.
1356 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
1358         * decompose.c (mono_decompose_opcode): Handle OP_LCONV_TO_OVF_I8. Fixes
1359         #581950.
1361         * iltests.il.in: Add a test.
1363 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1365         * mini.c (inline_method): Check for loader errors.
1367 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1369         * mini.c (mono_method_check_inlining): Use !mono_method_get_header_summary
1370         instead of mono_method_get_header as it doesn't decode locals
1371         so the called method can have unresolved dependencies that will only
1372         be satisfied after the current method is JIT'd.
1374         Fixes #550968.
1376 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
1378         * basic.cs (test_0_div_opt): Speed this up a bit.
1380 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
1382         * mini-amd64.c: Fix DISABLE_JIT support after the latest changes.
1384         * mini.c (mono_jit_create_remoting_trampoline): Call
1385         mono_create_specific_trampoline () instead of
1386         mono_arch_create_specific_trampoline ().
1388         * mini-trampolines.c tramp-arm.c: Disable more stuff when DISABLE_JIT is set.
1390 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
1392         * unwind.c (mono_unwind_get_cie_program): New function, moved here from
1393         aot-compiler.c, so it can be found even if DISABLE_JIT is set.
1395         * aot-compiler.c xdebug.c: Update callers of mono_arch_unwind_get_cie_program ().
1397         * mini-amd64.c: Fix DISABLE_JIT support.
1399 2010-02-20  Geoff Norton  <gnorton@novell.com>
1401         * aot-runtime.c: Ensure we dont leak a held lock when unwinding exceptions.
1403 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
1405         * debugger-agent.c (mono_debugger_agent_handle_exception): Receive two contexts,
1406         one for the throw and one for the catch. Mark uncaught exceptions by a NULL
1407         CATCH_TXT. Send normal exception events for unhandled exceptions too.
1408         (mono_debugger_agent_handle_unhandled_exception): Remove this, merged into
1409         handle_exception.
1411 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1413         * exceptions-x86.c (mono_arch_get_restore_context): Changes this so it restores
1414         edx/ecx too. This is needed to support OP_SEQ_POINT.
1416 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1418         * exceptions-amd64.c (get_throw_trampoline): Add xdebug info.
1420         * method-to-ir.c (mono_method_to_ir): Fix SIZEOF in dynamic methods.
1422 2010-02-16  Zoltan Varga  <vargaz@gmail.com>
1424         * mini-llvm.c aot-compiler.c aot-runtime.c unwind.c: Finish support
1425         LLVM+AOT+exceptions, not enabled yet.
1427 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1429         * mini.c (SIG_HANDLER_SIGNATURE): Fix the windows build.
1431 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1433         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Emit
1434         xdebug info for these.
1436         * mini-trampolines.c (common_call_trampoline): Use mini_jit_info_table_find ()
1437         in a few places.
1439         * mini.c (mini_get_vtable_trampoline): Make this take a 'slot_index' argument,
1440         not used yet.
1442 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1444         * aot-compiler.c (load_profile_files): Update after the profiler changes.
1446 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1448         * mini.c (mono_jit_compile_method_inner): Avoid passing icall wrappers to
1449         mono_profiler_method_end_jit, since the profiler has no way to process wrappers.
1451         * aot-runtime.c mini.c: Resurrect the aot pagefault profiling stuff, it is useful
1452         for mtouch.
1454 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1456         * debugger-agent.c: handle incomplete reads and EINTR in
1457         recv()/send(). This could have been causing random
1458         disconnections.
1460 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1462         * aot-runtime.c (decode_exception_debug_info): Fix aot support for sequence
1463         points.
1465         * mini-arm.c (mono_arch_allocate_vars): Allocate the seq point related vars first
1466         so they have small offsets. Fixes #566311.
1468 2010-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
1470         * method-to-ir.c (mono_method_check_inlining): Check for loader errors.
1472 2010-02-11  Zoltan Varga  <vargaz@gmail.com>
1474         * mini-amd64.c: Remove the special casing of byref in a few places now that
1475         mini_type_get_underlying_type () handles it.
1477         * mini-generic-sharing.c (mini_type_get_underlying_type): Handle byref as well
1478         by returning native int. Fixes #577984.
1480 2010-02-11  Zoltan Varga  <vargaz@gmail.com>
1482         * method-to-ir.c (handle_isinst): Factor out the is_complex_isinst check into
1483         a macro.
1485         * mini-llvm.c (exception_cb): Put the clause index into the type info instead
1486         of putting the clause itself.
1488         * mini-arm.c mini.c linear-scan.c: Disable more stuff when DISABLE_JIT is used.
1490 2010-02-09  Zoltan Varga  <vargaz@gmail.com>
1492         * unwind.c (mono_unwind_frame): Use read32 for reading a 32 bit value, since it
1493         might be unaligned.
1495 2010-02-10  Geoff Norton  <gnorton@novell.com>
1497         * aot-compiler.c: Make the number of IMT trampolines configurable as well.
1499 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1501         * aot-compiler.c (emit_code): Create the ut trampolines here, so they work for
1502         llvm methods too.
1504         * aot-compiler.c (emit_code): Don't add the llvm label prefix to 'methods', since
1505         it is not an LLVM generated symbol.
1507         * mini-llvm.c (emit_entry_bb): Fix the handling of simd types.
1509         * method-to-ir.c (handle_castclass): Turn off the more efficient isinst/castclass
1510         implementation in gshared mode because it causes regressions.
1512         * mini-trampolines.c: Add a stat for the number of calls to trampolines.
1514         * image-writer.c (asm_writer_emit_global): Don't prepend the global prefix, it
1515         should be done by the caller.
1517         * mini-llvm.c (mono_llvm_emit_method): Don't make the debug symbols global.
1519         * aot-compiler.c (emit_code): Add the llvm label prefix before 'methods'.
1521         * mini-exceptions.c (mini_jit_info_table_find): Search the root domain as well,
1522         since mono_jit_info_table_find () doesn't do it anymore.
1524         * mini-generic-sharing.c debugger-agent.c: Call mini_jit_info_table_find ()
1525         instead of mono_jit_info_table_find ().
1527 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1529         * aot-compiler.c aot-runtime.c: Add support for MONO_WRAPPER_WRITE_BARRIER.
1531         * aot-compiler.c (encode_method_ref): Update after the removal of
1532         mono_gc_get_managed_allocator_type ().
1534         * method-to-ir.c (mono_method_to_ir): Place a seq point just before a RET.
1535         Fixes #564538.
1537 2010-02-06  Zoltan Varga  <vargaz@gmail.com>
1539         * method-to-ir.c (handle_castclass): Use the icall for classes with variant
1540         generic params as well.
1541         (handle_isinst): Ditto.
1543         * method-to-ir.c: Make isninst/castclass checks in gshared code more efficient
1544         instead of always calling an icall.
1546         * aot-compiler.c (emit_llvm_file): Take into account trampolines etc when
1547         computing the size of the got.
1549         * aot-compiler.c (emit_code): Change the way the 'methods' symbol is emitted
1550         when using LLVM. Instead of emitting it as an LLVM method, emit it using
1551         the assembly directive '.set' so it points to the first LLVM emitted method.
1553 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1555         * mini.c (mini_method_verify): Report the method which failed to verify.
1557 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1559         * method-to-ir.c (mono_method_to_ir): Use the new basic block formation pass
1560         to avoid JIT'ng dead basic blocks. This is the same behavior as the
1561         runtime MS verifier.
1563 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1565         * debugger-agent.c (decode_value): Fix decoding of vtype instances. Fixes
1566         #561962.
1568 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1570         * mini-llvm.c: Init the jit module only when first JITting.
1572         * aot-compiler.c (emit_plt): Fix the naming of plt entries of llvm+darwin.
1574         * mini-llvm.c (get_plt_entry): Make the plt entries have hidden visibility.
1576         * mini-llvm.c (mono_llvm_emit_aot_module): Remove the dummy got after it is
1577         replaced with the real got.
1579         * debugger-agent.c (type_commands): Return the enumness if the type as well.
1581         * image-writer.c: Reduce the amount of #ifdefs a bit.
1583         * aot-compiler.c: Reduce the amount of #ifdefs. Add beginnings of support for
1584         llvm on darwin/arm.
1586         * aot-compiler.c (mono_compile_assembly): Handle asmonly+llvm mode.
1588         * mini-llvm.c (mono_llvm_emit_method): Don't make the 'type_info' symbols
1589         global.
1591 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1593         * mini-llvm.c (mono_llvm_emit_method): Add support for unaligned loads.
1594         (mono_llvm_emit_method): Fix unaligned stores too.
1596         * mini-amd64.c (mono_arch_emit_prolog): Initialize lmf->rsp in the prolog too
1597         so async stack walks don't crash.
1599 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1601         * mini-trampolines.c (common_call_trampoline): Fix a problem where the callsite
1602         was not patched if the callee needed an rgctx trampoline.
1604 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1606         * mini-ppc.c (mono_arch_get_global_int_regs): Reserve r29 for holding the
1607         vtable address in AOT code.
1609 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1611         * mini-codegen.c: Remove support for CEE_ opcodes which cannot occur in
1612         MonoInst's.
1614 Mon Feb 1 16:29:10 CET 2010 Paolo Molaro <lupus@ximian.com>
1616         * genmdesc.pl: remove dependency on external cpp.
1618 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1620         * method-to-ir.c (mini_emit_ldelema_1_ins): Avoid emitting an OP_SEXT_I4 when
1621         using LLVM, its not needed, and abcrem can't handle it.
1623 Mon Feb 1 14:29:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1625         * genmdesc.c, genmdesc.pl, cpu-x86.md: introduced templates to make
1626         it easier to group instructions and reduce duplication.
1628 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1630         * decompose.c: Move the array/soft float decompose routines here from
1631         method-to-ir.c.
1633         * method-to-ir.c: Export a few functions so they can be used from decompose.c.
1635 2010-01-31  Zoltan Varga  <vargaz@gmail.com>
1637         * mini-llvm.c (mono_llvm_emit_method): Add a call to llvm.invariant.start
1638         to tell LLVM that the got is constant, not used yet.
1640         * aot-compiler.c: Pass more optimization flags to llvm's 'opt'.
1642 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1644         * mini-ppc.c (mono_arch_emit_prolog): Fix full aot support for native to
1645         managed wrappers.
1647 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1649         * aot-compiler.c (add_wrappers): Commit the hack which generates
1650         native-to-managed wrappers for methods decorated with the MonoPInvokeCallback
1651         custom attribute.
1653 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1655         * mini.h (MONO_INST_FAULT): New instruction flag for loads which can cause
1656         a fault, only used by the LLVM backend.
1658         * ir-emit.h: Add _FAULT variants of the LOAD_MEMBASE macros. Mark
1659         OP_CHECK_THIS with OP_IMPLICIT_EXCEPTION.
1661         * method-to-ir.c: Use the new LOAD_MEMBASE_FAULT opcodes, get rid of the
1662         calls to MONO_EMIT_NULL_CHECK which is automatically done by the new macros.
1664         * mini-llvm.c: Only generate volatile loads from load instructions which have
1665         the MONO_INST_FAULT flag set.
1667 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1669         * unwind.c (mono_unwind_decode_fde): Fix the decoding of the LSDA offset on
1670         64 bit platforms.
1672 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1674         * mini.c (mono_save_seq_point_info): Fix the handling of bblocks without
1675         sequence points. Fixes #571236.
1677 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1679         * debugger-agent.c (mono_debugger_agent_init): Call appdomain_unload at the
1680         end of the appdomain unload process, after assemblies have been unloaded.
1681         Fixes #574842.
1683 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1685         * abcremoval.c (process_block): Fix the if (region) check so abcrem actually
1686         works.
1688         * mini-amd64.c: Make the soft debugger work on platforms without MAP_32BIT.
1689         Fixes #573988.
1691 2010-01-26  Zoltan Varga  <vargaz@gmail.com>
1693         * dwarfwriter.c (emit_type): Treat MONO_TYPE_PTR as 'I' not 'I4'.
1695 2010-01-26  Geoff Norton  <gnorton@novell.com>
1697         * aot-compiler.c: Fix a logic error introduced when guarding against enums
1698         with struct marshalability.
1700 2010-01-24  Zoltan Varga  <vargaz@gmail.com>
1702         * mini.c (mini_method_compile): Improve the processing MONO_VERBOSE_METHOD so
1703         it supports class names as well.
1705         * mini.h (MonoCompile): Add a few flags to control JIT behavior which are
1706         needed by the GC map code.
1708         * mini.c (mini_method_compile): Call a function in mini-gc.c to set the new
1709         flags if needed.
1711         * method-to-ir.c (mono_method_to_ir): Emit initialization code for ref variables
1712         if cfg->init_ref_vars is set.
1714         * liveness.c (optimize_initlocals): Disable the initlocals opt for ref vars if
1715         cfg->disable_initlocals_op_refs is set.
1717         * method-to-ir.c (mono_spill_global_vars): Compute more precise live ranges
1718         using liveness info if cfg->compute_precise_live_ranges is set.
1720         * mini-gc.c: Ongoing work. Improve logging and debugging support. Handle
1721         volatile variables correctly. Add comments about the live ranges. Not enabled
1722         yet.
1724 2010-01-24  Zoltan Varga  <vargaz@gmail.com>
1726         * mini.h (MonoDebugOptions): Add an option to init stack frames by writing
1727         0x2a into them in method prologs.
1729         * mini-amd64.c (mono_arch_emit_prolog): Implement it.
1731 2010-01-22  Zoltan Varga  <vargaz@gmail.com>
1733         * mini-llvm-cpp.cpp: Remove uses of dynamic_cast, it no longer works with llvm
1734         classes, since llvm is compiled with -fno-rtti.
1736         * mini.h (COMPILE_SOFT_FLOAT): New macro, similar to COMPILE_LLVM.
1738         * method-to-ir.c ir-emit.h: Use if (COMPILE_SOFT_FLOAT) in a few places since
1739         llvm does not require it.
1741         * aot-runtime.c (load_method): Print the full name of the last aot method.
1743 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
1745         * exceptions-amd64.c (mono_arch_notify_pending_exc): Avoid a crash if the
1746         thread has not fully started yet.
1748 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
1750         * aot-compiler.c (can_marshal_struct): Allow marshalling enums.
1752 2010-01-21  Miguel de Icaza  <miguel@novell.com>
1754         * driver.c: Do not abort if LLVM is not supported, print a
1755         warning and add the information to the Mono JIT information.
1757 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
1759         * ir-emit.h (MONO_EMIT_NULL_CHECK): Don't emit an OP_IMPLICIT_EXCEPTION when
1760         using explicit null checks.
1762 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1764         * xdebug.c: New file extracted from aot-compiler.c, containing the XDEBUG
1765         related code.
1767         * aot-compiler.c (encode_method_ref): Use mono_marshal_wrapper_info_from_wrapper
1768         () in one place.
1769         (mono_aot_wrapper_name): Remove the special handling of delegate invoke wrappers,
1770         its no longer needed.
1772         * method-to-ir.c (mono_method_to_ir): Fix a warning.
1774         * exceptions-<ARCH>.c: Introduce a MONO_ARCH_HAVE_THROW_EXCEPTION_BY_NAME
1775         define for platforms still using it (s390). Get rid of the
1776         mono_arch_get_throw_exception_by_name () routines on all other platforms.
1778         * exceptions-x86.c: Rework the throw trampolines so there is only one function
1779         which can generate throw/rethrow/corlib trampolines for llvm/not llvm code.
1781         * exceptions-x86.c: Add LLVM specific throw trampolines which doesn't assume
1782         the caller pushed the arguments.
1784         * mini-llvm.c: Enable throwing exceptions on x86.
1786         * mini-posix.c (SIG_HANDLER_SIGNATURE): Avoid
1787         "Thread (nil) may have been prematurely finalized" messages if this is called
1788         on a thread not registered with the runtime.
1790         * mini-exceptions.c (mono_handle_native_sigsegv): Ditto.
1792 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1794         * jit-icalls.c (mono_array_new_3): New jit icall.
1796         * aot-compiler.c aot-runtime.c: Add support for ElementAddr wrappers.
1798         * arrays.cs: Add a test for 3 dimensional arrays.
1800 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1802         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Emit xdebug info.
1803         (mono_arch_find_jit_info_ext): Disable the popping of arguments when LLVM is
1804         used.
1806         * mini-llvm.c (emit_cond_system_exception): Abort when an implicit exception is
1807         thrown on x86.
1809         * unwind.c (mono_unwind_decode_fde): Fix an assert on x86.
1811         * mini-x86.h (MONO_CONTEXT_SET_LLVM_EXC_REG): Define this for x86.
1813         * mini-llvm.c: Disable OP_THROW on x86, it doesn't work yet.
1815 2010-01-18  Bill Holmes  <billholmes54@gmail.com>
1817         * debugger-agent.c : Changing the PLATFORM_WIN32 preprocessor check to
1818           HOST_WIN32.  Also including winsock2. to define struct in_addr.
1820         * mini-amd64.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
1822         * mini-x86.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
1824         Code is contributed under MIT/X11 license.
1826 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1828         * mini.h (MonoCompile): Add 'disable_out_of_line_bblocks' flag.
1830         * branch-opts.c (mono_optimize_branches): Honor the new flag.
1832         * mini.c (mini_method_compile): Set the new flag when running under the
1833         debugger.
1835 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1837         * mini-gc.c: Change the GC map to use a ref/noref/pin value instead of just
1838         a ref/noref value + a global pin flag, so parts of stack frames can still be
1839         precisely marked even if they include stuff which needs pinning. Improve logging.
1840         Fix many bugs. Not enabled yet.
1842         * gc-test.cs: Add a few tests.
1844         * liveness.c (mono_analyze_liveness): Make the debug output controllable by
1845         the normal -v options. Avoid propagating liveness information through bblocks
1846         which end with a NOT_REACHED opcode.
1848         * mini.c (mono_jit_compile_method_inner): Avoid reading cfg->prof_options
1849         after cfg has been freed.
1851 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1853         * branch-opts.c (mono_branch_optimize_exception_target): Stop the optimization
1854         if a clause is skipped because it uses the exception object, since it could
1855         have caught the exception.
1857         * exceptions.cs: Add a test.
1859 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1861        * mini-trampolines.c (mono_create_static_rgctx_trampoline): Add an assert.
1863         * aot-runtime.c (mono_aot_get_method): Handle ftnptr's correctly for the
1864         ICollection<T> wrappers.
1866 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1868         * debugger-agent.c (decode_value): Fix the decoding of I/U/PTR.
1870 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1872         * mini-amd64.c (emit_call_body): Always use near calls when AOTing even if
1873         NOMAP32BIT or optimize_for_xen is set.
1875 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1877         * aot-compiler.c aot-runtime.c: Get rid of mono_aot_str_hash (), use
1878         mono_metadata_str_hash () instead.
1880 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1882         * ir-emit.h (MONO_EMIT_NEW_ICOMPARE_IMM): Use sizeof (mgreg_t) instead of
1883         sizeof (void*).
1885         * unwind.c (mono_unwind_frame): Use mgreg_t instead of gssize.
1887 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1889         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): Emit an explicit null check if the
1890         flag is set.
1892         * mini-ppc.c (mono_arch_emit_exceptions): Compute the size of the exception
1893         throwing code correctly.
1895         * mini.h (MONO_AOT_FILE_VERSION): Bump this because of the IMT hashing changes.
1897 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1899         * aot-runtime.c (mono_aot_plt_resolve): Reenable the previous assert for
1900         ftnptrs created by us, handle RGCTX_FETCH correctly.
1901         (mono_aot_get_lazy_fetch_trampoline): Add an ftnptr.
1903         * mini-trampolines.c (mono_create_generic_class_init_trampoline): Remove the
1904         ftnptr added by mono_aot_get_named_code ().
1906 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1908         * mini-arm.c: Fix a few LLVM problems.
1910         * mini-llvm.c (simd_class_to_llvm_type): Fix compilation on !x86/amd64.
1912 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1914         * method-to-ir.c (mini_emit_stobj): Use EMIT_NEW_CLASSCONST when
1915         AOT compiling.
1917 Wed Jan 13 15:54:53 CET 2010 Paolo Molaro <lupus@ximian.com>
1919         * jit.h, method-to-ir.c: added ability to set the policy for
1920         inserting breakpoints from the break IL instruction or the
1921         Debugger.Break () API call.
1923 2010-01-13  Zoltan Varga  <vargaz@gmail.com>
1925         * aot-runtime.c (load_aot_module): Add more comments to explain why referenced
1926         assemblies need to be eagerly loaded.
1928 2010-01-12  Zoltan Varga  <vargaz@gmail.com>
1930         * dwarfwriter.c (emit_line_number_info): Fix the eglib case so it doesn't crash.
1932 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1934         * debugger-agent.c (mono_debugger_agent_parse_options): Allow onthrow without
1935         an argument which matches any exception.
1937 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
1939         * method-to-ir.c (mono_emit_method_call_full): Avoid the virt->nonvirt
1940         optimization if the called method is gshared and marshalbyref, since gshared
1941         methods can' have wrappers. Fixes #569390.
1943         * generics.cs: Add a test.
1945 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
1947         * mini-exceptions.c (mono_print_thread_dump_from_ctx): New helper function
1948         callable from gdb.
1950 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
1952         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
1954 2010-01-09  Zoltan Varga  <vargaz@gmail.com>
1956         * debugger-agent.c (transport_connect): comment out freeaddrinfo calls under win32,
1957         since it is not supported in win2000.
1959 2010-01-08  Zoltan Varga  <vargaz@gmail.com>
1961         * aot-runtime.c (load_image): Add a SET_ERROR argument to set the loader
1962         error if loading an assembly fails.
1963         (mono_aot_plt_resolve): Return NULL instead of asserting if loading fails.
1965         * mini-trampolines.c (mono_aot_plt_trampoline): Throw a pending loader error
1966         if exists.
1968         * aot-runtime.c (decode_exception_debug_info): Set jinfo->from_llvm for LLVM
1969         compiled methods.
1971         * mini-llvm-cpp.cpp: Remove the unused ctx variable.
1973         * mini-llvm.c (mono_llvm_emit_method): Add some comments about why aot+clauses
1974         is not supported yet.
1976         * unwind.c (DW_EH_PE_absptr): Add more DW_EH_PE_ constants.
1978 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1980         * method-to-ir.c: All types with variant arguments must fallback to the
1981         slow path. This makes cast of variant delegates work.
1983         * mini-trampolines.c (mono_get_vcall_slot_addr): Add new variance_used out
1984         argument that is set to TRUE is the returned vtable slot is for a variant
1985         interface. Changed a g_print + g_assert_not_reached to a g_error.
1987         * mini-trampilines.c (common_call_trampoline): Handle variant interfaces in
1988         a similar fashion of generic virtual methods.
1990 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1992         * helpers.c (mono_disassemble_code): Fix a g_hash_table warning
1993         when cfg is null.
1995         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Convert a given
1996         method using a variance aware function.
1998         * mini-x86.c: Add support for dumping IMT thunks if DEBUG_IMT is defined.
2000 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2002         * method-to-ir.c (mono_method_to_ir): Casts to variant interfaces
2003         do an icall for now.
2005 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
2007         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add an ugly hack to fix #564695.
2008         If LLVM decides to set the code model to Large, reset it to Default.
2010 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
2012         * aot-compiler.c (mono_xdebug_flush): Export it so it is present in
2013         stripped binaries as well.
2015 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
2017         * mini-trampolines.c (common_call_trampoline): Add an rgctx trampoline if a shared
2018         method is called from LLVM compiled code, as that code can't pass an rgctx arg.
2020         * mini-llvm.c (mono_llvm_emit_method): Enable calls to methods needing an rgctx
2021         reg.
2023 2010-01-06  Zoltan Varga  <vargaz@gmail.com>
2025         * mini.c (mini_method_compile): Extract the JIT info creation code into a
2026         separate function.
2028         * mini-llvm.c (mono_llvm_emit_method): Pass the info in MonoExceptionClause
2029         as the type info to llvm.eh.selector.
2030         (exception_cb): Use the type info for filling out some fields of
2031         MonoJitExceptionInfo like the flags and the exception class. This is needed
2032         because the LLVM produced exception handling clauses might not match the original
2033         IL clauses, i.e. there might be more than one LLVM clause for one IL clause.
2035         * unwind.c (mono_unwind_decode_fde): Extract the LSDA decoding code into a
2036         separate function. Add an extra argument which returns the type infos
2037         corresponding to the exception clauses.
2039         * mini.c (mini_method_compile): Enable LLVM compilation of methods having
2040         exception handling clauses.
2042 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2044         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
2045         mono_method_get_vtable_slot () instead of accessing imt_method->slot directly,
2046         to fix an AOT case.
2048 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2050         * mini.c (mono_compile_is_broken): Skip methods from serialization's
2051         internal assembly.
2053 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2055         * mini.c (mini_method_compile): Fix a few memory leaks introduced by the
2056         llvm code.
2058 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2060         * mini.c (mini_method_compile): Verify the method before calling
2061         mono_compile_create_vars as this might crash since it uses method
2062         information.
2064         Fixes #560196.
2066 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2068         * method-to-ir.c (mono_method_to_ir): Avoid calling mono_class_vtable () in
2069         one case if AOTing, since the class might not be a concrete class.
2071 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2073         * mini-codegen.c abcremoval.c: Remove the duplicate g_slist_append_mempool
2074         functions which are now defined in mempool-internals.h.
2076         * mini.c (mini_free_jit_domain_info): Free the seq point hash tables.
2078         * mini-llvm.c (mono_llvm_emit_method): Handle OP_ABS.
2080 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2082         * mini.c:
2083         * method-to.ir.c:
2084         * mini-*.c: Properly handle generic enums.
2086         Fixes #566294
2088 2009-12-28  Zoltan Varga  <vargaz@gmail.com>
2090         * method-to-ir.c (mono_method_to_ir): Handle the failure of mono_class_vtable ()
2091         in a few more places.
2093 2009-12-27  Zoltan Varga  <vargaz@gmail.com>
2095         * aot-compiler.c (add_wrappers): Don't use dyn runtime invoke for methods with
2096         nullable parameters. Fixes #567351.
2098 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2100         * mini-trampolines.c (common_call_trampoline): Add assert for NULL resolved generic method.
2102 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2104         * mini-trampolines.c: Use mono_arch_get_this_arg_from_call () to avoid the slow
2105         mono_get_generic_context_from_code () call.
2107         * mini-<ARCH>.c: Get rid of mono_arch_find_this_arg (), it is no longer used.
2109 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
2111         * aot-runtime.c (decode_klass_ref): Don't call mono_class_init (), its not
2112         needed.
2114 2009-12-24  Sebastien Pouliot  <sebastien@ximian.com>
2116         * method-to-ir.c (mono_method_to_ir): Avoid SIGSEGV when
2117         mono_method_get_signature returns NULL. Fix #567084
2119 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
2121         * aot-runtime.c (find_extra_method): Call mono_aot_wrapper_name only once,
2122         instead of once for each module.
2124 2009-12-22  Zoltan Varga  <vargaz@gmail.com>
2126         * debugger-agent.c (ss_start): Implement step over for the last sequence
2127         point in methods.
2129         * mini.c (mono_save_seq_point_info): Don't link sequence points which don't
2130         have the STEP_LOC flag set.
2132         * aot-runtime.c (decode_klass_ref): Avoid a crash if a decode_klass_ref () call
2133         fails. Fixes #566689.
2135 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
2137         * mini.c (mono_add_seq_point): New helper function.
2138         (mono_save_seq_point_info): New function to save sequence point info, extracted
2139         from mini_method_compile ().
2141         * mini-<ARCH>.c: Call mono_add_seq_point to remember sequence points.
2143         * mini.h (MonoSeqPointInfo): New structure containing information about
2144         the sequence points of a JITted method.
2145         (MonoBasicBlock): Add 'seq_points' and 'last_seq_point' fields. Remove unused
2146         'bucket' field.
2148         * mini.c debugger-agent.c aot-compiler.c aot-runtime.c: Change the way sequence
2149         point information is stored, use a MonoSeqPointInfo structure instead of a
2150         GPtrArray. For each seq point, compute a list of successor seq points.
2152         * debugger-agent.c: Use the successor list to implement step-over more
2153         efficiently: instead of single stepping until a different line/IL offset is
2154         reached, place breakpoints into all successor seq points.
2156         * mini.h: Bump AOT file format version.
2158 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
2160         * Makefile.am (AM_CFLAGS): Include LLVM_CFLAGS.
2162         * mini-llvm.c: Avoid defining the __STDC_... macros if already defined.
2164 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
2166         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): Fix the cross-compiler
2167         build.
2169 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2171         * mini-x86.c (mono_arch_get_argument_info): Allocate memory for CallInfo using
2172         alloca as g_malloc is not signal safe.
2174 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2176         * tramp-x86.c (mono_arch_patch_callsite): Fix the call to
2177         VALGRIND_DISCARD_TRANSLATIONS.
2179         * *.c: Include mono/utils/memcheck.h, and remove #ifdef HAVE_VALGRIND_MEMCHECK_H
2180         checks, they are no longer needed.
2182         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): New helper function to set
2183         a function into a sigctx which can handle function pointers.
2185         * mini-ppc.c: Implement soft debugger support on ppc64.
2187         * mini-ppc.c: Implement soft debugger support.
2189 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2191         * mini-llvm.c: Handle OP_LADD_OVF_UN. Place all alloca's into the entry bb.
2193 2009-12-17  Marek Habersack  <mhabersack@novell.com>
2195         * mini.c (mono_get_runtime_build_info): include Mono version in
2196         the returned value.
2198         * driver.c (mono_main): VERSION is now included in the string
2199         returned from mono_get_runtime_build_info()
2201 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2203         * method-to-ir.c (mono_method_to_ir): Add support for CALLI with unmanaged
2204         signatures. Fixes #565143.
2206         * jit-icalls.c (mono_get_native_calli_wrapper): New JIT icall.
2208 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2210         * aot-compiler.c (arch_emit_autoreg): Align code to 4 in the ppc case.
2212 2009-12-16 Rodrigo Kumpera  <rkumpera@novell.com>
2214         * mini-x86.h: Forgot to add a 0x to MONO_ARCH_MAX_FRAME_SIZE define
2215         making max stack 10x smaller.
2217 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2219         * mini.c (mono_resolve_patch_target): Comment out an assert which could be hit.
2221 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
2223         * method-to-ir.c (mini_emit_memcpy): Assert if size is too big.
2225 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
2227         * mini-x86.c (mono_arch_allocate_vars): Fail compilation if the frame size is
2228         bigger than MONO_ARCH_MAX_FRAME_SIZE.
2230         * mini-x86.c (mono_arch_emit_prolog): Handle huge frames.
2232         * mini-x86.h: Define MONO_ARCH_MAX_FRAME_SIZE to be 1Mb.
2234         * mini-amd64.c / mini-amd64.h: Same fixes as of above.
2236         * mini.c (mini_method_compile): Check if mono_arch_allocate_vars failed
2237         the compilation.
2239 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2241         * method-to-ir.c (mono_method_to_ir): CEE_UNUSUED opcodes now
2242         raise an invalid program exception.   
2244         For other opcodes that we might not handle use a g_warning and
2245         raise the exception.   Beats termination.
2247         Fixes #561724
2249 2009-12-14  Zoltan Varga  <vargaz@gmail.com>
2251         * method-to-ir.c (mono_emit_rgctx_method_call_full): Fix a warning.
2253         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix the LLVM support
2254         by merging the LLVM and !MAP_32BIT cases.
2256 2009-12-13 Jonathan Chambers <joncham@gmail.com>
2258         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Handle a NULL
2259         sigctx being passed in, as we have no CONTEXT available in the APC.
2261         (mono_debugger_agent_cleanup): Use explicit cond wait implementation
2262         for now.
2264         Code contributed under MIT/X11 license.
2266 2009-12-13  Zoltan Varga  <vargaz@gmail.com>
2268         * method-to-ir.c mini-llvm.c: Fix support for monitor enter/exit trampolines
2269         in the LLVM backend on AMD64.
2271         * aot-runtime.c (decode_eh_frame): Initialize the clauses from the info in the
2272         FDE.
2274         * unwind.c (mono_unwind_decode_fde): Implement decoding of a couple more formats.
2276         * mini-llvm.c: Export mono_personality for AOT.
2278         * mini.c (mini_method_compile): Fix some problems with llvm+aot+clauses.
2280         * mini-ops.h (OP_IMPLICIT_EXCEPTION): New opcode marking the place where an
2281         implicit exception can occur.
2283         * ir-emit.h (MONO_EMIT_NEW_IMPLICIT_EXCEPTION): New macro to emit an
2284         OP_IMPLICIT_EXCEPTION instruction.
2286         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): New macro.
2288         * method-to-ir.c: Use MONO_EMIT_NEW_CHECK_THIS in a few places.
2290         * mini-llvm.c: Handle OP_IMPLICIT_EXCEPTION by disabling llvm if it occurs
2291         inside a protected block.
2293         * mini-llvm.c: Revert the last change, the signature of monitor entry/exit
2294         trampolines doesn't include the argument.
2296         * mini-llvm.c (mono_llvm_emit_method): Enable calls to monitor entry/exit
2297         trampolines on amd64.
2299         * mini-amd64.h (MONO_ARCH_MONITOR_OBJECT_REG): Use MONO_AMD64_ARG_REG1 instead
2300         of RDI.
2302         * mini.c (mini_method_compile): Add some comments as to why LLVM is currently
2303         disabled for methods with clauses.
2305         * mini-llvm.c: Enable support for catch clauses.
2307         * mini-exceptions.c (mono_resume_unwind): New function to resume unwinding at the
2308         end of an LLVM compiled finally clause.
2309         (mono_handle_exception_internal): Save the exception handling state in TLS
2310         before calling an LLVM compiled finally clause, so mono_resume_unwind () can
2311         resume unwinding from that point.
2313         * unwind.c (mono_unwind_get_ops_from_fde): Rename this to
2314         mono_unwind_decode_fde, decode the Language Specific Data Area (LSDA) too,
2315         to obtain the addresses of the exception handling regions.
2317         * mini-llvm.c: Add beginnings of support for exception handling, currently only
2318         finally clauses are supported.
2320         * mini.c (mini_method_compile): Add support for LLVM code with exception
2321         handlers.
2323 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
2325         * mini-llvm.c (mono_llvm_emit_method): Allocate the 'pindexes' array with the
2326         proper size.
2328 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
2330         * debugger-agent.c: Encode the this argument of vtype methods as a struct, not
2331         as a primitive type.
2333 2009-12-11  Zoltan Varga  <vargaz@gmail.com>
2335         * driver.c: Applied patch from Matt McClellan (matt@mc-c.net). Add a check
2336         for 2 parameter sched_setaffinity in older glibc versions. Fixes
2337         #564000.
2339 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2341         * method-to-ir.c (mini_redirect_call): do not redirect the
2342         InternalAllocateStr internal call if string profiling is enabled.
2344 2009-12-10  Zoltan Varga  <vargaz@gmail.com>
2346         * aot-compiler.c (add_wrappers): Avoid generating synchronized wrappers for
2347         generic methods.
2349         * unwind.h: Rename this to mini-unwind.h to avoid conflicts with the gcc
2350         unwind.h header file.
2352         * tramp-x86.c (mono_arch_patch_callsite): Patch the code when using valgrind,
2353         newer valgrind versions seems to handle this fine.
2355 2009-12-09  Zoltan Varga  <vargaz@gmail.com>
2357         * debugger-agent.c (start_runtime_invoke): Fix a crash if this is called
2358         on the debugger thread.
2360 2009-12-08  Zoltan Varga  <vargaz@gmail.com>
2362         * mini-llvm.c (mono_llvm_emit_method): Add more SIMD opcodes.
2364         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
2366         * mini-codegen.c (mono_local_regalloc): Allow non-call opcodes with cloc:c.
2368         * cpu-<ARCH>.md: Make call_handler clob:c.
2370         * mini.c: Reenable SSA for methods with clauses.
2372         * mini.c (mini_method_compile): Disable SSA for now for methods with clauses,
2373         as it causes failures on x86.
2375 2009-12-08  Sebastien Pouliot  <sebastien@ximian.com>
2377         * driver.c: Fail gracefully with --compile-all if mono_method_signature
2378         returns NULL (e.g. a bad assembly).
2380 2009-12-08  Geoff Norton  <gnorton@novell.com>
2382         * debugger-agent.c:  Refactor the mono_runtime_invoke guarding against
2383         stepping out into native code.  There were issues with nested invokes
2384         like .cctors.
2386 2009-12-07  Zoltan Varga  <vargaz@gmail.com>
2388         * mini.c (mini_method_compile): Do the disable_llvm checks early
2389         and avoid the LLVM compile pass if the checks fail.
2391         * mini.c ssa.c abcremoval.c: Enable SSA for methods with exception clauses.
2393         * mini-llvm.c: Put our methods/globals into the 'llvm.used' array, so the
2394         LLVM optimizations don't try to remove them.
2396         * aot-compiler.c (emit_llvm_file): Save the result of opt into a
2397         different file so the original remains.
2399 2009-12-06  Zoltan Varga  <vargaz@gmail.com>
2401         * mini-llvm.c mini.c: Fix alignment issues with SIMD vars.
2403         * aot-runtime.c (decode_arm_exidx): Handle most descriptors created by gas.
2405         * aot-runtime.c (decode_arm_exidx): Refactor this into two functions, add
2406         support for non-inline unwind descriptors.
2408 2009-12-07  Geoff Norton  <gnorton@novell.com>
2410         * debugger-agent.c:  Darwin can colesce signals, so we need to handle
2411         the interrupt_count slightly differently.  Native threads were never
2412         marked as resumed.
2414 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2416         * aot-runtime.c (decode_arm_exidx): New function to initialize a MonoJitInfo
2417         based on the contents of the ARM .exidx section. Not yet used since llvm doesn't
2418         yet generate this info.
2420         * mini-llvm.c: Fix the conversion of call results if they are unsigned.
2422         * debugger-agent.c (buffer_add_value): Treat I/U as a valuetype, so the
2423         client can distinguish between intptrs and longs.
2425 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2427         * aot-compiler.c (emit_trampoline): Emit the trampoline info into the global
2428         blob.
2430         * aot-runtime.c (load_function): Update after the change above.
2432         * mini.h: Bump AOT file format version.
2434         * method-to-ir.c (mono_method_to_ir): Disallow the delegate optimization
2435         if the delegate class is dynamic.
2437         * method-to-ir.c (handle_delegate_ctor): Allow the method_code optimization
2438         in gshared code too using the new rgctx info type
2439         MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2441 2009-12-04  Geoff Norton  <gnorton@novell.com>
2443         * debugger-agent.c: When doing a func-eval invoke on a suspended runtime,
2444         we need to track the original suspend count so the thread properly
2445         wakes up in resume_thread.
2447 2009-12-04  Zoltan Varga  <vargaz@gmail.com>
2449         * method-to-ir.c (handle_delegate_ctor): Add support for using this from gshared
2450         code.
2452         * generics.cs: Add a test.
2454         * method-to-ir.c (emit_get_rgctx_method): Make this work even if context_used
2455         is 0. Simplify a lot of code using this.
2457         * mini-trampolines.c (mono_delegate_trampoline): Call
2458         mono_create_static_rgctx_trampoline () before saving the final address in
2459         delegate->method_code, to avoid calling it each time a delegate is first called.
2461         * method-to-ir.c (mono_method_to_ir): Allow fast delegate creation for methods
2462         which need static rgctx trampolines.
2464         * mini-trampolines.c (mono_create_static_rgctx_trampoline): Use a cache
2465         keyed on the method+addr pair, since addr could be either the method addr or
2466         an unbox trampoline in the AOT case. Fixes #560246.
2468 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2470         * mini.c (mini_method_compile): Call handle_exception_clauses () in the same
2471         place it was called before too.
2473 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2475         * mini.c (mono_jit_runtime_invoke): Avoid the call to mono_class_setup_vtable ()
2476         if no security manager is present, to speed up the AOT case. Call
2477         mono_class_vtable () full with raise_on_error == TRUE instead.
2479 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2481         * mini.c (mini_method_compile): Call handle_exception_clauses earlier so
2482         the local optimization passes can take its result into account. Fixes
2483         #559876.
2485         * exceptions.cs: Add a test.
2487 2009-01-24  Steven Munroe  <munroesj@us.ibm.com>
2489         This patch is contributed under the terms of the MIT/X11 license
2491         * cpu-ppc64.md (load_memindex): Add loadi8_memindex.
2493 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2495         * mini.h (MonoInst): Remove unused 'ssa_op' field.
2497         * debugger-agent.c: Rework the handling of stack traces of running threads to
2498         avoid crashes if compute_frames () tries to walk the stack of running thread.
2500         * mini.c (mono_print_method_from_ip): Use mini_jit_info_table_find.
2502         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): Set frame->lmf.
2504         * mini.h (StackFrameInfo): Add an 'lmf' field.
2506 2009-12-02  Zoltan Varga  <vargaz@gmail.com>
2508         * debugger-agent.c (suspend_current): Always set really_suspended.
2510         * debugger-agent.c (clear_event_request): Clear method entry/exit requests too.
2512         * exceptions-x86.c (mono_arch_get_restore_context): Restore EAX too.
2514 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
2516         * debugger-agent.c (vm_commands): Don't allow invokes on threads which are not
2517         really suspended.
2519 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
2521         * cpu-ppc64.md (store_memindex): Add storei8_memindex.
2523 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
2525         * mini-trampolines.c: Fix MSVC build.
2527 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
2529         * mini-trampolines.c: Check for mono_method_get_vtable_slot failures.
2531 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
2533         * mini-arm.c (mono_arch_lowering_pass): Fix an assert which is hit when
2534         the instruction following an OP_FCOMPARE is optimized away.
2536 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
2538         * aot-compiler.c (arch_emit_autoreg): Extract the auto-registration code from
2539         emit_autoreg () into this arch-specific function.
2541         * aot-compiler.c (emit_exception_debug_info): Don't emit the length of the
2542         code, it is no longer needed.
2544         * aot-runtime.c (decode_exception_debug_info): Don't read the code length.
2546         * mini.h: Bump AOT file format version.
2548         * aot-runtime.c (mono_aot_find_jit_info): Compute the length of the method
2549         using the sorted_code_offsets array, instead of reading it from the
2550         exception debug info.
2551         (load_method): Call mono_aot_find_jit_info instead of
2552         decode_exception_debug_info ().
2554         * aot-compiler.c (emit_exception_debug_info): Emit whenever the method was
2555         LLVM compiled as a flag.
2557 2009-11-29  Zoltan Varga  <vargaz@gmail.com>
2559         * debugger-agent.c (resume_thread): Fix a warning.
2561         * aot-compiler.c: Add an option to set the number of static rgctx trampolines
2562         generated.
2564 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2566         * aot-compiler.c aot-runtime.c: Get rid of a few global symbols, move their
2567         contents to MonoAotFileInfo.
2569 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2571         * aot-compiler.c aot-runtime.c: Reorganize the AOT file format once again.
2572         Put all binary data into a giant blob, similarly to the way .net assemblies
2573         store binary data. Emit offset tables in a compact form to reduce their size.
2575         * mini.h: Bump AOT file format version.
2577         * aot-compiler.c (emit_globals_table): Use temp_prefix instead of .L in a few
2578         places.
2580         * aot-compiler.c (emit_globals_table): Emit a hash table for the globals, to
2581         avoid linear searches at runtime.
2583         * aot-runtime.c (find_symbol): Update this to use the hash.
2585         * mini.h: Bump AOT file format version.
2587 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2589         * aot-compiler.c (emit_klass_info): Save whenever the class has a generic
2590         container.
2592         * aot-runtime.c (decode_cached_class_info): Set the is_generic_container field
2593         too.
2595         * aot-compiler.c (mono_compile_assembly): Add a 'stats' option to print out
2596         the distribution of got slot types.
2598         * mini.h (MonoDebugOptions): Add 'explicit_null_checks' option.
2600         * method-to-ir.c: Add support for generating explicit null checks.
2602 2009-11-25  Zoltan Varga  <vargaz@gmail.com>
2604         * debugger-agent.c (vm_commands): Implement EXIT by invoking Environment.Exit ()
2605         on a random thread if possible.
2607         * aot-runtime.c (mono_aot_plt_resolve): Clean up the handling of function
2608         descriptors a bit, add comments, handle RGCTX_FETCH/GENERIC_CLASS_INIT_TRAMPOLINE
2609         correctly.
2611         * exceptions-ppc.c (mono_arch_find_jit_info_ext): Use mgreg_t as the type of
2612         regs. Pass the real size of the regs array to mono_unwind_frame ().
2614         * unwind.c (mono_unwind_frame): Remove an incorrect assert, add more correct
2615         ones instead.
2617 2009-11-24  Geoff Norton  <gnorton@novell.com>
2619         * mini-darwin.c: Work around apple bug rdar://7209349  See
2620         http://openradar.appspot.com/7209349 for details.  Synopsis,
2621         CoreFoundation SIGTRAP's if you dlopen it off the main thread if its
2622         never been initialized before.
2624 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2626         * tramp-arm.c: Use blx instead of mov pc, reg to improve support for thumb.
2628         * mini-arm.c (mono_arm_thumb_supported): New helper function.
2630 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2632         * cfold.c (mono_constant_fold_ins): Fix a problem in the previous change,
2633         OP_SHL_IMM is not 32 bit.
2635 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2637         * aot-compiler.c (encode_patch): Fix the encoding of R8 on big-endian systems.
2639 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2641         * aot-compiler.c: Avoid infinite recursion when generic virtual recursion is
2642         encountered.
2644         * debugger-agent.c (resume_vm): Signal the suspend_cond even if suspend_count
2645         > 0 since some threads can resume if their resume_count is > 0.
2646         (invoke_method): Avoid reading freed memory.
2648         * debugger-agent.c (process_suspend): Extract the suspend code from
2649         process_single_step_inner () to a separate function. Rework the code to prevent
2650         races between this function and thread interrupts.
2652         * debugger-agent.c (suspend_current): Check the resume_count field instead
2653         of resume_one so suspends+resumes during single threaded invokes work
2654         correctly.
2656 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2658         * aot-compiler.c (emit_llvm_file): Enable some llvm optimizations which seem
2659         to make the generated code smaller.
2661         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Add a code
2662         sequence generated by recent LLVM versions.
2664         * mini-llvm.c: Add support for a few simple cases which weren't supported
2665         before.
2667         * mini-trampolines.c (mono_magic_trampoline): Don't call
2668         mono_arch_get_vcall_slot () when llvm is enabled.
2670         * aot-compiler.c (emit_llvm_file): Add code to run the 'opt' llvm tool.
2672         * mini-trampolines.c (mono_magic_trampoline): Extract the bulk of this function
2673         into a new function called common_call_trampoline () which is used by the
2674         llvm vcall trampoline as well.
2676         * debugger-agent.c: Implement single threaded invokes.
2678         * debugger-agent.c: Revert change which broke the agent on linux.
2680         * method-to-ir.c (inline_method): Prevent infinite recursion. Fixes
2681         #557606.
2683         * generics.cs: Add a test.
2685 2009-11-22  Zoltan Varga  <vargaz@gmail.com>
2687         * debugger-agent.c: Fix the cygwin build.
2689 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
2691         * cprop.c: Remove this unused file.
2693 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
2695         * cfold.c (mono_constant_fold_ins): Fix constant folding of shr_imm. Fixes
2696         #557262.
2698         * basic.cs: Add a test.
2700 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
2702         * method-to-ir.c (mono_method_to_ir): Use mono_use_llvm instead of ENABLE_LLVM
2703         in one more place.
2705 2009-11-20  Zoltan Varga  <vargaz@gmail.com>
2707         * mini.c mini-trampolines.c driver.c: Add a 'mono_use_llvm' flag to control
2708         whenever the runtime uses LLVM code. Add a '--llvm' command line option to set
2709         it. Use this flag to control llvm related code paths instead of #ifdef
2710         ENABLE_LLVM, so a runtime configured without --enable-llvm can use LLVM compiled
2711         AOT code.
2713         * aot-runtime.c aot-compiler.c: Add a 'flag' field to MonoAotFileInfo.
2715         * mini.h: Bump AOT file format version.
2717         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline_full): These
2718         receive their argument in MONO_ARCH_VTABLE_REG, not in the first argument reg.
2720         * debugger-agent.c (create_event_list): Fix a crash if an empty assembly list
2721         was used as an assembly filter.
2723 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
2725         * unwind.c: Fix support for ppc.
2727         * exceptions-ppc.c (mono_arch_find_jit_info): Change this to use dwarf frame
2728         unwind info. Change to the mono_arch_find_jit_info_ext () interface.
2730 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
2732         * mini-ppc.c (mono_arch_emit_prolog): Fix a copy-paste error to fix the ppc64
2733         port.
2734         (mono_arch_cpu_init): Don't set cpu_hw_flags to 0 at the end, this was somehow
2735         added by the ps3 changes.
2737 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
2739         * mini-gc.c: Resurrect this, so at least it compiles.
2741         * debugger-agent.c (assembly_commands): Implement GET_NAME command.
2743 2009-11-18  Zoltan Varga  <vargaz@gmail.com>
2745         * debugger-agent.c (mono_debugger_agent_handle_exception): Pass a MonoJitInfo to
2746         create_event_list () so assembly filters can be used.
2748         * exceptions-ppc.c (mono_arch_find_jit_info): Fix the restoration of registers
2749         from the LMF.
2751 2009-11-17  Zoltan Varga  <vargaz@gmail.com>
2753         * debugger-agent.c (mono_debugger_agent_breakpoint_hit): Fix a warning.
2754         (mono_debugger_agent_thread_interrupt): Make this return FALSE if the agent
2755         is disabled.
2757         * aot-compiler.c (add_generic_instances): Emit instances of common generic
2758         classes for char/bool too.
2760         * debugger-agent.c (DebuggerTlsData): Honor the DISABLE_SOFT_DEBUG option.
2762         * debugger-agent.c (DebuggerTlsData): Add a 'really_suspended' flag, not yet
2763         used.
2765         * debugger-agent.c: Add some definitions to make backporting to 2.6 easier.
2766         Fix warnings.
2768 2009-11-15  Andreas Faerber  <andreas.faerber@web.de>
2770         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Signature fix.
2771         
2772         Code contributed under MIT/X11 license.
2774 2009-11-14  Zoltan Varga  <vargaz@gmail.com>
2776         (mono_debugger_agent_thread_interrupt): Save the context so stacktraces for
2777         threads in native code work.
2779         * debugger-agent.c: Pass the 'flags' argument to VM_INVOKE_METHOD earlier in
2780         the parameter list, so it can be acted upon by vm_commands (). Bump protocol
2781         version.
2783 2009-11-13 Jonathan Chambers <joncham@gmail.com>
2785         * debugger-agent.c: Implementation for Windows platform.
2787         * mini-x86.c: Add support for Windows. Use mono-* synchronization
2788         primitives. Use SEH to implement breakpoints and single stepping.
2790         * mini-x86.h: Enable soft debugger on Windows.
2792         Code contributed under MIT/X11 license.
2794 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
2796         * mini-amd64.c (emit_call_body): Disable usage of near calls when running
2797         under XEN. Fixes #522894.
2799         * patch-info.h: Add LLVM_IMT_TRAMPOLINE.
2801         * mini-llvm.c aot-compiler.c aot-runtime.c mini.c: Add support for making
2802         interface calls in LLVM AOT code.
2804         * aot-compiler.c mini-llvm.c: Abort llvm compilation if a non-encodable patch
2805         is found.
2807         * mini-llvm.c: Add support for OP_VPHI.
2809         * objects.cs: Add a test.
2811 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
2813         * debugger-agent.c (mono_debugger_agent_single_step_event): Avoid a crash if
2814         this is called on the debugger thread.
2816 2009-11-12  Zoltan Varga  <vargaz@gmail.com>
2818         * mini-llvm.c: Add soft-float support.
2820         * method-to-ir.c (mono_decompose_soft_float): Restart after decomposing an
2821         FCALL which returns an R4.
2823         * driver.c (mono_main): Add a missing '\n'.
2825         * mini-trampolines.c (mono_create_llvm_imt_trampoline): Fix the build on
2826         platforms which doesn't support the LLVM IMT trampoline.
2828 2009-11-11  Zoltan Varga  <vargaz@gmail.com>
2830         * mini-llvm.c (mono_llvm_emit_method): Fix LOCALLOC.
2832         * mini-llvm-cpp.cpp: Update to latest LLVM SVN.
2834         * mini-llvm.c (mono_llvm_emit_method): Avoid creating plt entries for
2835         virtual calls.
2837         * aot-runtime.c: Don't define HAVE_DL_ITERATE_PHDR, configure now does that.
2839 2009-11-10  Zoltan Varga  <vargaz@gmail.com>
2841         * aot-compiler.c aot-runtime.c: Change how mono_arch_find_jit_info () works.
2842         Instead of emitting a method_order table, sort the contents of the code_offsets
2843         table and do a binary search in the sorted table. The previous approach doesn't
2844         work with LLVM which emits methods in a arbitrary order.
2846         * aot-runtime.c: Add support for creating MonoJitInfo structures by searching
2847         in the .eh_frame section in ELF files.
2849         * mini.h: Bump corlib file format version.
2851         * mini-llvm.c aot-compiler.c: Add support for AOT to the LLVM back end.
2853         * exceptions-arm.c (mono_arch_get_call_filter_full): Update after the
2854         LDMIA->LDM macro name change.
2856 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2858         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Fix and enable this for
2859         x86.
2861         * mini-llvm-cpp.cpp (JITMemoryManager): Fix compilation with LLVM 2.7
2862         SVN.
2864         * aot-compiler.c: Ditto.
2866         * mini-arm.c (mono_arch_allocate_vars): Fix the previous change by passing
2867         &align to mini_type_stack_size_full ().
2869         * mini-arm.c (mono_arch_emit_prolog): Implement support for varargs.
2871         * mini-ops.h: Add documentation for the OP_ARGLIST opcode.
2873 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
2875         * mini-arm.c: Compute the stack space used by arguments using
2876         mini_type_stack_size_full ().
2878 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
2880         * optflags-def.h: Remove dead TREEPROP optimization.
2882 2009-11-08  Rodrigo Kumpera  <rkumpera@novell.com>
2884         * mini-ppc.h: Make mono compiler under FreeBSD/ppc64. 
2886         Patch by Justin Hibbits <chmeeedalf@gmail.com>.
2888 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
2890         * driver.c (mono_jit_parse_options): New public API function to parse options
2891         as done by the runtime executable.
2893         * debugger-agent.c (buffer_add_cattrs): Fix reading an uninitialized variable
2894         when handling named arguments.
2896 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
2898         * mini-arm.c: Implement support for returning vtypes in registers, fix support
2899         for passing small vtypes in registers, make the CallInfo structures more
2900         similar to the code on the other platforms.
2902         * mini-arm.c (mono_arch_allocate_vars): Align small vtypes to 4 bytes too since
2903         the code in the prolog requires it.
2905 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
2907         * mini-arm.c debugger-agent.c: Android changes from Koushik K. Dutta
2908         (koush@koushikdutta.com).
2910         * mini-arm.c (handle_thunk): Add a domain argument to control the domain
2911         where the thunk memory should be allocated from. Fixes appdomain unloading
2912         on arm.
2914 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
2916         * mini-arm.c exceptions-arm.c: Make ctx->regs map directly to the 16 hardware
2917         registers, instead of r4..r11,ip,lr. Make restore_context () restore r0..r3 too.
2919 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2921         * mini-amd64.c (mono_arch_output_basic_block): Don't allow OP_SEQ_POINT in
2922         AOT, as it is not implemented yet.
2924         * mini-x86.c (mono_arch_output_basic_block): Ditto.
2926 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2928         * debugger-agent.c: Fix windows build.
2930 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2932         * debugger-agent.c (debugger_thread): Call mono_set_is_debugger_attached ()
2933         after the client connects/disconnects.
2935         * debugger-agent.c: Add an 'onthrow' option to start the debugger agent
2936         when an exception of a given type is thrown.
2938         * debugger-agent.c: Add a 'onuncaught' option to start the debugger agent
2939         only on an uncaught exception.
2941         * mini-exceptions.c: Notify the debugger agent on an uncaught exception.
2943         * debugger-agent.c: Add a 'launch' option.
2945 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2947         * debugger-agent.c: Add a 'timeout' option.
2949 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2951         * debugger-agent.c: Implement the 'server' and 'suspend' options supported by
2952         the JDWP agent.
2954 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2956         * debugger-agent.c (set_breakpoint): Emit a log message.
2958 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2960         * mini-arm.c: Fix the arm build.
2962 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2964         * aot-compiler.c: don't leak the value returned from
2965         mono_type_full_name().
2967 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2969         * debugger-agent.c: defer including mono-mutex.h until we know the
2970         agent is supported.
2972 2009-11-04 Jonathan Chambers <joncham@gmail.com>
2974         * debugger-agent.c: Changes to build on windows. Use mono-mutex instead
2975         of pthreads directly.
2977         * mini.c (mono_sigfpe_signal_handler): Changed signature of Windows
2978         exception handlers. Pass info argument.
2980         * mini.h: Adjust signatures of soft debugger functions to pass void*
2981         instead of siginfo_t. Adjust SIG_HANDLER_SIGNATURE on Windows.
2983         * mini-amd64.c (mono_arch_is_single_step_event): Adjust signature to pass void*
2984         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2985         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
2986         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2988         * mini-amd64.h: Adjust MonoW32ExceptionHandler signature.
2990         * mini-x86.c (mono_arch_is_single_step_event): Adjust signature to pass void*
2991         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2992         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
2993         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2995         * mini-x86.h: Adjust MonoW32ExceptionHandler signature.
2997         * exceptions-x86.c: Adjust W32_SEH_HANDLE_EX for new signature.
2999         * exceptions-amd64.c: Adjust W32_SEH_HANDLE_EX for new signature.
3001         * mono-semaphore.h: Skeleton implementation for Windows.
3003         Code contributed under MIT/X11 license.
3005 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3007         * simd-intrinsics.c (simd_intrinsic_emit_setter): Unfix my fix.
3009         Code contributed under MIT/X11 license.
3011 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3013         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix windows build.
3015         Code contributed under MIT/X11 license.
3017 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3019         * aot-compiler.c (mono_save_xdebug_info): Bump the threshold for flushing
3020         debug info to 100 because 10 still slows down gdb too much.
3022         * method-to-ir.c (mono_method_to_ir): Avoid rethrowing thread abort exceptions
3023         inside runtime invoke wrappers. This avoids the need to call ResetAbort () on
3024         them in the wrappers.
3026 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3028         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
3030         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix a warning.
3032         * aot-runtime.c (mono_aot_get_method): Refactor some code into a new helper
3033         function mono_aot_get_array_helper_from_wrapper ().
3035         * aot-compiler.c (add_generic_class): Refactor the code a bit, really emit
3036         array helper methods.
3038 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3040         * simd-intrinsics.c (load_simd_vreg): Add extra argument to signal if
3041         the value was loaded from memory.
3043         * simd-intrinsics.c (simd_intrinsic_emit_setter): Store back to memory if
3044         the value was loader from there.
3046         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Fail correctly for Shuffle
3047         without constant swizzle.
3049 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3051         * mini-amd64.c: Put soft debugger functions behind a
3052         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
3054         * mini-amd64.h: disable the soft debugger in windows.
3056         Code contributed under MIT/X11 license.
3058 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3060         * mini-x86.c: Put soft debugger functions behind a
3061         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
3063         Code contributed under MIT/X11 license.
3065 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3067         * exceptions-x86.c (win32_handle_stack_overflow): Fix parameters
3068         to mono_arch_find_jit_info_ext.
3070         Code contributed under MIT/X11 license.
3072 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3074         * debugger-agent.c: Include netinet/in.h to fix the bsd build.
3076         * debugger-agent.c: Add support for filtering events by assemblies.
3078         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Return false if
3079         the agent is not enabled.
3081 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3083         * exceptions-x86.c: hopefully last change to fix the windows build.
3084         This one courtesy of Jonathan Chambers.
3086 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3088         * debugger-agent.c: remove unused function.
3090 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3092         * debugger-agent.c: add #ifdefs for a few header files.
3093         * mini-x86.h: disable the soft debugger in windows.
3094         Step 1 of 2 to make this compile on windows with gcc.
3096 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3098         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Comment this out for now
3099         as it breaks the build.
3101 2009-07-01  Zoltan Varga  <vargaz@gmail.com>
3103         Merge the soft debugger branch.
3105         * debugger-agent.h debugger-agent.c: New files containing the soft
3106         mode debugger module.
3108         * method-to-ir.c (mono_method_to_ir): Generate OP_SEQ_POINT opcodes
3109         at the appropriate locations.
3111         * mini-<ARCH>.c (mono_arch_output_basic_block): Handle OP_SEQ_POINT
3112         opcode.
3114         * mini-<ARCH>.c: Add new arch-specific functions to set/clear breakpoints,
3115         enable/disable single stepping.
3117         * exceptions-<ARCH>.c (mono_arch_find_jit_info_ext): New stack unwinding api
3118         which returns all information in a StackFrameInfo structure, and can handle the
3119         LMF frames added by the debugger.
3121         * mini-<ARCH>.h (MonoLMFExt): New structure containing additional information
3122         about an LMF frame.
3124         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): New stack
3125         walker function which works on a specific thread and passes a StackFrameInfo
3126         structure to its callback.
3128         * mini.c (mini_init): Initialize the debugger agent.
3130         * aot-compiler.c aot-runtime.c: Add soft-debug support.
3132         * mini-ops.h: Add OP_SEQ_POINT opcode.
3134         * driver.c (mono_main): Add new '--debugger-agent' option for passing
3135         arguments to the debugger agent.
3137 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3139         * mini.c (mini_method_compile): Disable llvm for methods with an lmf here to
3140         speed things up.
3142         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOCALLOC.
3144         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Implement this for x86.
3146         * mini.c (mini_init): Avoid using the IMT trampoline in the LLVM case.
3148         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add a static rgctx trampoline
3149         if needed.
3150         (mono_create_llvm_imt_trampoline): New function to create a trampoline which
3151         sets the IMT argument and makes a virtual call.
3153         * mini-llvm.c: Enable interface calls using the llvm imt trampoline.
3155 2009-11-01  Zoltan Varga  <vargaz@gmail.com>
3157         * Makefile.am (llvm_sources): Enable the llvm option since it no longer breaks
3158         the windows build.
3160 2009-10-30  Zoltan Varga  <vargaz@gmail.com>
3162         * mini.c (mini_cleanup): Call profiler shutdown before shutting down the
3163         runtime. Fixes #551228.
3165 2009-10-29  Zoltan Varga  <vargaz@gmail.com>
3167         * mini-x86.c (mono_arch_output_basic_block): Fix % 1. Fixes #550970.
3169         * basic.cs: Add a test.
3171         * method-to-ir.c (mono_method_to_ir): Use EMIT_NEW_LOAD_MEMBASE_TYPE to
3172         load vtypes instead if OP_LOADV_MEMBASE in the implementation of
3173         CONSTRAINED. Fixes #550964.
3175         * generics.cs: Add a test.
3177 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3179         * mini-posix.c (add_signal_handler): Use
3180         mono_gc_get_suspend_signal() instead of GC_get_suspend_signal().
3182 2009-10-28 Jerry Maine <crashfourit@gmail.com>
3184         Contributed under the terms of the MIT/X11 license by
3185         Jerry Maine <crashfourit@gail.com>.
3187         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
3188         sse4a for simd intrinsics.
3190         * mini-amd64.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
3191         sse4a for simd intrinsics.
3193 2009-10-27  Zoltan Varga  <vargaz@gmail.com>
3195         * ir-emit.h method-to-ir.c: Change a few _IMM macros to assign to inst_imm
3196         instead of inst_p1 which is not the same on ILP32 platforms.
3198 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3200         * mini-ppc.c (mono_arch_emit_prolog): Load the current got address,
3201         not the mscorlib one before calling mono_get_lmf_addr.
3203         * tramp-ppc.c (mono_arch_create_trampoline_code_full): Fix the storing
3204         of the ip to the LMF.
3206         * method-to-ir.c (mono_method_to_ir): Fix the handling of the
3207         immediate in the op->op_imm optimization.
3209         * mini-ppc.c: Add a 'vtregs' field to ArgInfo to make the code easier to
3210         understand. VTypes now work, but are not abi compliant, as they are
3211         split into 4 byte parts instead of 8.
3212         (emit_memcpy): Fix the unrolled case to work on the PS3.
3214         * mini-ppc.c (get_delegate_invoke_impl): Fix this for the PS3.
3216         * aot-compiler.c (mono_compile_assembly): Make the autoreg option
3217         the default when static linking.
3219         * mini-ppc.c (mono_arch_emit_prolog): Fix handling of I8 arguments.
3221         * aot-compiler.c: Add an autoreg option to automatically register
3222         statically linked aot modules using ELF .ctors.
3224         * genmdesc.pl: Add __ppc64__ to allowed defines.
3226 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3228         * mini-posix.c (add_signal_handler): Delay the GC suspend signal while
3229         executing a SIGSEGV handler on an altstack, since libgc can't handle that.
3231 2009-10-24  Mark Probst  <mark.probst@gmail.com>
3233         * exceptions-x86.c (mono_arch_find_jit_info): Fix build.
3235 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3237         * mini-exceptions.c (mini_jit_info_table_find): Add an 'out_domain' argument
3238         which will contain the domain where the method was found.
3240         * exceptions-<ARCH>.c mini-exceptions.c: Update callers of
3241         mini_jit_info_table_find ().
3243         * aot-compiler.c (xdebug_end_emit): Remove so stray debug code.
3245         * branch-opts.c (mono_if_conversion): Avoid running deadce if it is disabled.
3247 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3249         * mini-x86.c (mono_arch_emit_prolog): Disable aot for methods with save_lmf
3250         set, its not supported yet.
3252 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3254         * aot-runtime.c (mono_aot_get_method): Avoid asserting if a array generic
3255         iface wrapper is not found.
3256         (mono_aot_get_method): Ditto for GetGenericValueImpl.
3258 2009-10-21  Zoltan Varga  <vargaz@gmail.com>
3260         * aot-runtime.c (mono_aot_get_method): Fix support for the IList<T> wrappers,
3261         which have a different name.
3263         * aot-runtime.c (mono_aot_get_method): Special case the array generic iface
3264         wrappers and Array.GetGenericValueImpl ().
3266         * aot-compiler.c: Avoid emitting some wrappers which are not needed anymore
3267         because of the change above.
3269         * generics.cs: Add a test for full aot + generic array ifaces.
3271 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3273         * aot-compiler.c (emit_plt): Remove duplicate 'debug_sym' variable 
3274         that hides the previous one.
3276 2009-10-18  Zoltan Varga  <vargaz@gmail.com>
3278         * aot-compiler.c (can_marshal_struct): Allow some System.dll structs to be
3279         marshalled. Fixes #541623.
3281 2009-10-16  Zoltan Varga  <vargaz@gmail.com>
3283         * aot-compiler.c (emit_extra_methods): Remove some asserts which are not needed.
3285 2009-10-15  Zoltan Varga  <vargaz@gmail.com>
3287         * mini.c (mono_op_imm_to_op): Handle OP_AND/OR/XOR_IMM.
3289 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3291         * mini-posix.c (sigprof_signal_handler):
3292         Implemented support for building stat call chans in different ways.
3294 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3296         * mini-exceptions.c (mono_find_jit_info):
3297         Also check that a jit info has been found (fixes a profiler crash).
3299 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3301         * mini.c (mono_codegen):
3302         Call mono_profiler_code_buffer_new with correct code address.
3304 2009-10-14  Zoltan Varga  <vargaz@gmail.com>
3306         * driver.c (mono_main): Change the date in the copyright.
3308 2009-10-14  Mark Probst  <mark.probst@gmail.com>
3310         * method-to-ir.c (mono_method_to_ir): Don't use a managed array
3311         allocator in shared generic code for open classes, because we
3312         can't get those classes' vtables.  We need to make managed
3313         allocators not depend on the vtable at compile-time to solve this.
3315 2009-10-13  Martin Baulig  <martin@ximian.com>
3317         * debug-mini.c (mono_debugger_trampoline_compiled): Add
3318         `const guint8 *trampoline' argument; send both the old and the new
3319         notification.
3321 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3323         * aot-compiler.c (add_wrappers): Add a runtime invoke wrapper which is used by
3324         mono_runtime_capture_context () without calling mono_runtime_invoke ().
3325         (can_marshal_struct): Skip structures with auto layout.
3327         * tramp-arm.c (GEN_TRAMP_SIZE): Increase this by 4.
3329 2009-10-02  Zoltan Varga  <vargaz@gmail.com>
3331         * mini-sparc.c (mono_arch_emit_setret): Emit long return values using OP_LMOVE.
3332         (mono_arch_create_vars): Instead of allocating a stack slot by hand, allocate
3333         a variable to hold the stack slot used by the int<->float conversion opcodes.
3335         * mini-sparc.c (mono_arch_build_imt_thunk): Implement support for fail_tramp.
3337 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3339         * aot-compiler.c (add_generic_class): Only add GetGenericValueImpl wrappers
3340         when using full-aot.
3342 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3344         * aot-compiler.c (add_generic_class): Add an instance of GenericComparer<T> for
3345         each instance of Comparer<T>.
3347         * generics.cs: Add a new test.
3349 2009-10-09  Zoltan Varga  <vargaz@gmail.com>
3351         * driver.c (parse_debug_options): Add a 'gdb' option.
3353         * mini.c (mini_parse_debug_options): Add a 'gdb' option.
3355         * image-writer.c: Add support for emitting the image into a memory buffer.
3357         * dwarfwriter.c: Add support for sharing one IL file between multiple images.
3359         * aot-compiler.c: Add support for registering debug info with GDB using the
3360         new JIT debugging interface in GDB 7.0. It can be turned on by setting
3361         MONO_XDEBUG to 'gdb'.
3363 2009-10-10  Zoltan Varga  <vargaz@gmail.com>
3365         * aot-compiler.c (mono_save_trampoline_xdebug_info): Implement this for the
3366         gdb mode.
3368 2009-10-11  Zoltan Varga  <vargaz@gmail.com>
3370         * aot-compiler.c (mono_save_xdebug_info): Emit a symbol for the method which
3371         can be used to set breakpoints in gdb.
3373         * image-writer.c (bin_writer_emit_writeout): Add support for setting the text
3374         segment to an absolute address.
3376 2009-10-13  Mark Probst  <mark.probst@gmail.com>
3378         * method-to-ir.c: Use the managed array allocator method if
3379         available.
3381 2009-10-13  Bill Holmes  <billholmes54@gmail.com>
3383         * aot-compiler.c : Fix the MSVC builds
3385         Code is contributed under MIT/X11 license.
3387 2009-10-13  Zoltan Varga  <vargaz@gmail.com>
3389         * aot-compiler.c (mono_save_xdebug_info): Group methods into groups of 10 to
3390         avoid registering 1 symbol file per method with gdb.
3392 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3394         * mini-sparc.c: Fix the handling of enums with base type long.
3396         * mini-sparc.c (mono_arch_output_basic_block): Fix IREM_UN_IMM.
3398         * mini-sparc.c (mono_arch_allocate_vars): Use mono_class_from_mono_type ()
3399         instead of using type->data.klass as the later doesn't work with generics.
3401 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3403         * method-to-ir.c, mini.h, mini-alpha.c, mini-amd64.c, mini-arm.c,
3404         mini-hppa.c, mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c,
3405         mini-s390x.c, mini-sparc.c, mini-x86.c: Thread.get_CurrentThread
3406         works differently now and we don't handle it in the JIT anymore.
3408         * mini.c, mini-exceptions.c, mini-posix.c, debug-debugger.c,
3409         debug-mini.c, tramp-amd64.c, tramp-x86.c: Changes resulting from
3410         the Thread class split.
3412 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3414         * driver.c: Don't run tests with the obsolete treeprop optimization.
3416         * mini-sparc.c (mono_arch_create_vars): Make the component vars of a long ret
3417         variable volatile. Fixes #541577.
3419         * basic-calls.cs: Add a new test.
3421         * basic-long.cs: Remove tests which are now in basic-calls.cs.
3423 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3425         * dwarfwriter.c (emit_debug_info_end): Disable this as it doesn't seem to
3426         work/required with recent iphone sdk versions.
3428         * aot-compiler.c (add_wrappers): Generate PtrToStructure wrappers for more
3429         structures.
3431         * decompose.c (mono_decompose_vtype_opts): Avoid reading uninitialized memory
3432         in the VCALL decomposition code.
3434 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3436         * mini-ia64.c (mono_arch_output_basic_block): Fix ISHR/ISHR_IMM.
3438         * basic.cs: Add a test.
3440         * mini-ia64.c (mono_arch_build_imt_thunk): Implement support the virtual
3441         generic invokes.
3443         * mini-exceptions.c (mini_jit_info_table_find): New helper function which
3444         searches all the domains of the current thread.
3446         * exceptions-<ARCH>.c: Use it. Fixes #539394.
3448 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3450         * exceptions-arm.c (mono_arm_throw_exception): Set ctx->ebp to fp instead of sp
3451         so catching exceptions thrown in the same method works. Fixes exception17.exe.
3453         * tramp-arm.c (mono_arch_create_trampoline_code_full): Store NULL into lmf->method
3454         for non-jit trampolines.
3456         * mini.c (mono_jit_runtime_invoke): Allow string ctors with dyn runtime invoke.
3458         * aot-compiler.c (add_wrappers): Ditto.
3460         * mini-arm.c: Implement support for passing vtypes and floats, and increase
3461         the size of the param area used by dyn_call to 6 which covers the majority of
3462         methods.
3464         * mini.c aot-compiler.c: Allow dyn_call for string methods except ctors.
3466         * mini-arm.c: Implement support for passing/receiving
3467         longs and receiving floats in the dyn_call code.
3469         * mini-amd64.c: Implement support for receiving vtypes in registers in
3470         the dyn_call code.
3472         * mini.c mini-amd64.c: Implement partial support for passing vtypes in
3473         the dyn_call code.
3475 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3477         * mini-arm.c (get_call_info): Return more precise information in
3478         ArgInfo->regtype.
3479         (dyn_call_supported): Use the information in CallInfo.
3481         * mini-arm.c: Enable support for returning vtypes in the dyn_call code.
3483         * mini.c mini-amd64.c: Enable support for returning vtypes in the dyn_call
3484         code.
3486         * mini-arm.c: Update after the dyn_call api changes.
3488         * mini.c (mini_create_jit_domain_info): Register a destructor function
3489         for the runtime_invoke_hash.
3491         * mini-amd64.c (mono_arch_get_dyn_call_args): Rename this to
3492         'mono_arch_dyn_call_start'. Pass the pointer to the return value buffer to
3493         this function.
3494         (mono_arch_get_dyn_call_ret): Rename this to 'mono_arch_dyn_call_finish'.
3495         (dyn_call_supported): Simplify this by using get_call_info ().
3496         (mono_arch_dyn_call_free): New destructor function.
3498         * generics.cs: Remove a printf.
3500         * method-to-ir.c (mono_method_to_ir): Allocate some param area for DYN_CALL.
3502         * mini-arm.c: Add support for enum return values and passing a few arguments
3503         on the stack.
3504         
3505         * mini.c (mono_jit_runtime_invoke): Add support for enum return values to
3506         dyn invoke.
3508         * mini-amd64.c (mono_arch_get_dyn_call_ret): Ditto.
3510         * aot-compiler.c (add_wrappers): Add a few restrictions for the use of
3511         the dynamic invoke wrappers.
3513         * mini-arm.c: Implement OP_DYN_CALL for arm.
3515         * aot-compiler.c (add_wrappers): Avoid aot-ing runtime invoke wrappers
3516         supported by the dynamic runtime invoke wrapper.
3518         * aot-compiler.c aot-runtime.c: Add support for encoding the dynamic
3519         runtime invoke wrapper.
3521         * mini.c (mono_jit_runtime_invoke): Use the dynamic runtime invoke wrappers
3522         if possible when running with full-aot.
3524         * mini-ops.h: Add OP_DYN_CALL opcode.
3526         * mini-amd64.c method-to-ir.c: Add infrastructure for making method calls
3527         with dynamic arguments lists similar to libffi.
3529 2009-09-19  Zoltan Varga  <vargaz@gmail.com>
3531         * method-to-ir.c: Fix the previous change on 64 bit platforms.
3532         
3533         * method-to-ir.c: Applied patch from Rodrigo Kumpera. Allow an i8 argument
3534         to NEWARR.
3536         * iltests.il.in: Add a new test.
3537         
3538 2009-09-18  Zoltan Varga  <vargaz@gmail.com>
3540         * aot-compiler.c (add_generic_instances): Add more instances of
3541         GenericEqualityComparer.
3543 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3545         * mini.c: Add asserts for mono_class_vtable calls that are not meant to fail.
3547 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3549         * method-to-ir.c: Handle failures from mono_class_vtable. Added some
3550         comments on some functions that now can fail.
3552 2009-09-17  Andrew Jorgensen  <ajorgensen@novell.com>
3554         * Makefile.am: Add Info.plist to EXTRA_DIST
3556 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3558         * method-to-ir.c (mono_method_to_ir): Allow AOT for CEE_LDTOKEN in
3559         static synchronized wrappers. Fixes #539500.
3561 2009-09-14  Rodrigo Kumpera  <rkumpera@novell.com>
3563         * jit-icalls.c (mono_class_static_field_address): handle vtable failure
3564         properly.
3566 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3568         * mini-exceptions.c (mono_handle_exception_internal): Store the computed
3569         lmf before calling filter clauses as well. Fixes #539550.
3571         * exceptions.cs: Add a test.
3572         
3573 2009-09-14  Zoltan Varga  <vargaz@gmail.com>
3575         * aot-compiler.c (add_generic_class): Add instances of
3576         Array.GetGenericValueImpl as well.
3578         * Makefile.am (fullaotcheck): Copy and aot more assemblies so linq
3579         can be tested too.
3581         * generics.cs: Add a fullaot linq test.
3583 2009-09-10  Zoltan Varga  <vargaz@gmail.com>
3585         * aot-compiler.c (arch_emit_static_rgctx_trampoline): Don't clobber argument
3586         reg r1 on arm.
3588 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3590         * mini-trampolines.c (mono_delegate_trampoline) : Call
3591           mono_cominterop_get_invoke if the delegate target object
3592           is a COM object.
3594         Code is contributed under MIT/X11 license.
3596 2009-09-09  Sebastien Pouliot  <sebastien@ximian.com>
3598         * method-to-ir.c: For CoreCLR throw a SecurityException if an 
3599         internal call is defined outside platform code. Reduce code 
3600         duplication with existing [Method|Field]AccessException
3602 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3604         * mini-x86.c (mono_arch_emit_call): Don't reduce stack usage by 4
3605         if the return value is a small struct passed on regs.
3607 2009-09-09  Zoltan Varga  <vargaz@gmail.com>
3609         * cpu-arm.md mini-arm.c: Remove unused opcodes.
3611         * mini-codegen.c: Enable the cpu description validation for arm.
3613 2009-09-08  Zoltan Varga  <vargaz@gmail.com>
3615         * basic-calls.cs: Move the test_0_float_load_and_store_with_big_offset ()
3616         test which depends on structs to objects.cs.
3617         
3618         * basic-calls.cs: Remove calls to Console.WriteLine and throws, since those
3619         require object model related stuff working.
3621         * cpu-x86.md mini-x86.c: Remove more unused opcodes.
3623         * mini-ops.h: Fix OP_BIGMUL instruction descriptions.
3625         * mini-codegen.c (mono_local_regalloc): Validate the cpu description 
3626         against the instruction metadata in mini-ops.h. amd64 only for now.
3628         * mini-ops.h: Fix some instruction descriptions.
3630         * mini-ops.h mini-x86.c mini-amd64.c cpu-<ARCH>.md: Remove some
3631         unused instructions.
3633 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
3635         * exceptions.cs: Add a new test.
3637 2009-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
3639         * mini-x86.c (needs_stack_frame): OSX requires full frames to keep proper alignment.
3641 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
3643         * mini-llvm.c (mono_llvm_emit_method): Add a few more missing casts,
3644         skip empty phi opcodes.
3645         
3646         * mini-llvm.c (mono_llvm_emit_method): Handle unsigned volatile variables
3647         correctly by zero extending after loads. Skip methods containing calls
3648         to the monitor enter/exit trampolines.
3650         * tramp-x86.c (mono_arch_create_trampoline_code): Align the stack
3651         when calling mono_thread_force_interruption_checkpoint ().
3653         * mini.c (mini_method_compile): Disable llvm when AOT compiling.
3655         * tramp-amd64.c (mono_arch_patch_callsite): Add support for 32 bit ->
3656         64 bit thunks.
3657         (mono_arch_nullify_class_init_trampoline): Read 'buf' instead of 'code'.
3659         * mini-llvm.c (mono_llvm_emit_method): Add a few missing conversions so a 
3660         bootstrap could run.
3662 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3664         * mini.c (mini_init): Set callbacks.get_runtime_build_info ().
3666 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3668         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass the start
3669         of the method to
3670         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
3671         LLVM might be very short.
3673         * mini-x86.c (mono_arch_output_basic_block): Maintain stack alignment
3674         in OP_THROW/RETHROW.
3676         * exceptions-x86.c: Rewrite the throw trampolines so they maintain stack
3677         alignment on osx.
3679 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3681         * mini-amd64.c (mono_arch_get_vcall_slot): Pass the start of the method to
3682         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
3683         LLVM might be very short.
3685 2009-09-01  Zoltan Varga  <vargaz@gmail.com>
3687         * exceptions-x86.c (throw_exception): Fix the previous change by substracting
3688         the alignment for the value of sp.
3690 2009-09-01  Geoff Norton  <gnorton@novell.com>
3692         * mini.c (mono_get_lmf_addr): Fix jit_thread_attach for native to 
3693         managed wrappers in full aot.
3695 2009-08-31  Zoltan Varga  <vargaz@gmail.com>
3697         * exceptions-x86.c (get_throw_exception): Align the stack on osx.
3699 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3701         * mini-llvm-cpp.cpp mini-llvm.c: Update to latest llvm api.
3703 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
3705         * aot-compiler.c (emit_exception_debug_info): Emit ei->flags too.
3707         * aot-runtime.c (decode_exception_debug_info): Decode ei->flags from the
3708         saved info.
3710         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3712         * aot-runtime.c aot-compiler.c: Emit exception causes fully so we don't
3713         depend on the info MonoMethodHeader which could be missing in IL stripped
3714         assemblies.
3716 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
3718         * mini-arm.c (add_general): Fix the passing of 64 bit values on darwin, where
3719         they are only 4 byte aligned.
3721 2009-08-21  Zoltan Varga  <vargaz@gmail.com>
3723         * mini-arm.c (mono_arch_allocate_vars): Use FP as the frame pointer as
3724         was done previously, since using SP causes too many problems.
3726         * exceptions-arm.c: Fix the handling of sp/fp so unwinding through
3727         frames without a frame pointer works.
3729         * mini-arm.c (mono_arch_get_global_int_regs): Avoid using V5 as a
3730         global register in methods with calls, since the calls can go through
3731         a static rgctx trampoline which doesn't save it.
3733 2009-08-19  Zoltan Varga  <vargaz@gmail.com>
3735         * mini-arm.c (mono_arch_context_get_int_reg): Handle SP as well.
3737 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3739         * aot-compiler.c (add_generic_instances): Fix the net 1.1 build.
3741 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3743         * method-to-ir.c: Fix warnings for uninitialized variables.
3745 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3747         * mini-exceptions.c:
3748         * aot-compiler.c: Fix printf warnings.
3750 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3752         * aot-compiler.c (add_generic_instances): Add string[] wrapper methods.
3753         Add GetGenericValueImpl<string>.
3754         
3755         * aot-compiler.c (add_generic_instances): Add instances of
3756         GenericEqualityComparer<T> for primitive types. Only emit the array
3757         wrappers into the mscorlib image.
3759 2009-08-15  Zoltan Varga  <vargaz@gmail.com>
3761         * aot-runtime.c (load_method): Rename 'aot_module' -> 'amodule'. Allocate
3762         the methods_loaded array using amodule->info->nmethods.
3764         * mini.h (MonoAotFileInfo): Add an 'nmethods' field.
3765         (MONO_AOT_FILE_VERSION): Bump this.
3767         * aot-compiler.c: Emit more generic instances allowing some parts of linq
3768         to work.
3770         * aot-runtime.c (mono_aot_get_unwind_info): Handle the case when the
3771         MonoJitInfo doesn't belong to its methods aot image.
3773 2009-08-14  Zoltan Varga  <vargaz@gmail.com>
3775         * mini-arm.c (mono_arch_allocate_vars): Use SP as the default frame reg.
3777         * mini-arm.c: Fix warnings.
3778         
3779         * mini-arm.c (mono_arm_emit_load_imm): Only emit a movt if needed.
3781         * mini-arm.c (mono_arm_emit_load_imm): Use movt/movw if the cpu
3782         supports it.
3784 2009-08-12  Zoltan Varga  <vargaz@gmail.com>
3786         * aot-compiler.c (arch_emit_imt_thunk): Rework the arm code to
3787         avoid clobbering IP.
3789         * mini-trampolines.c (mono_magic_trampoline): Allocate a local to
3790         hold the trampoline argument, so its initial value is available during
3791         debugging.
3793 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3795         * exceptions-arm.c:
3796         * exceptions-hppa.c:
3797         * mini.c:
3798         * exceptions-s390x.c:
3799         * exceptions-mips.c:
3800         * exceptions-ppc.c:
3801         * exceptions-sparc.c:
3802         * exceptions-alpha.c:
3803         * aot-runtime.c:
3804         * mini-trampolines.c:
3805         * exceptions-x86.c:
3806         * exceptions-s390.c: add and use #define's instead of sizeof()
3807         for MonoJitInfo and MonoJitInfoTable.
3809 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3811         * tramp-arm.c:
3812         * tramp-amd64.c:
3813         * tramp-ppc.c:
3814         * tramp-x86.c: use a #define instead of sizeof() for a few
3815         structures that use a zero-length array.
3817 2009-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
3819         * method-to-ir.c (mono_method_to_ir/CEE_CONSTRAINED_): Handle the
3820         case when the method is dynamic. Fixes #529238.
3822 2009-08-06  Zoltan Varga  <vargaz@gmail.com>
3824         * mini.c (mono_jit_compile_method_inner): Throw an exception instead
3825         of asserting when a method is JIT compiled in full-aot mode.
3827 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
3828         
3829         Contributed under the terms of the MIT/X11 license by
3830         Jerry Maine <crashfourit@gail.com>.
3831         
3832         * fixed wrong dates in changelog.
3834 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
3835         
3836         Contributed under the terms of the MIT/X11 license by
3837         Jerry Maine <crashfourit@gail.com>.
3839         * basic-simd.cs: added test for packed double square root.
3840         * cpu-amd64.md: added opcode info for packed double square root.
3841         * cpu-x86.md: added opcode info for packed double square root.
3842         * mini-ops.h: added IR opcode for packed double square root.
3843         * mini-x86.c: added IR to native translation code for packed double square root.
3844         * mini-amd64.c: removed todo for packed double square root.
3845         * simd-intrinsics.c: added method to IR opcode converstion for
3846         packed double square root.
3848 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3850         Contributed under the terms of the MIT/X11 license by
3851         Jerry Maine <crashfourit@gail.com>.
3853         * mini-amd64.c: Added a change to help tell the difference as 
3854         to what perpose the xmm register is being used--mainly to help
3855         with debuging.
3856         * mini-amd64.h: Changed callee regs to use 15 out of 16 
3857         (one used for special cases) xmm registers for both fp
3858         and simd ops. Added define to turn on new feature in the regalloc
3859         that allows fp and simd ops to share the xmm regs happily.
3860         * codegen.c: Added code to detect for which perpose an xmm reg is
3861         being used (fp or simd) and to translate back and forth to the
3862         correct logical reg bank (fp or simd) for 'spill load's.
3864 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3866         Contributed under the terms of the MIT/X11 license by
3867         Jerry Maine <crashfourit@gail.com>.
3869         * basic-simd.cs: Added tests for stressing the regalloc when running with
3870         16 simd regs and when simd and fp ops share the same reg bank.
3872 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3874         * method-to-ir.c (mini_emit_stobj): If we call mono_value_copy()
3875         in shared generic code, we might have to look up the class in the
3876         RGCTX.  If we use the class directly, compute its GC descriptor.
3878 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3880         * mini.c (mono_jit_runtime_invoke): Fix a warning.
3882 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3884         * mini.c (mono_jit_runtime_invoke): Initialize the class and
3885         check for errors. Fixed the case when the class with the Main
3886         method is broken.
3888 2009-07-31 Jerry Maine <crashfourit@gmail.com>
3890         Contributed under the terms of the MIT/X11 license by
3891         Jerry Maine <crashfourit@gail.com>.
3893         * cpu-amd64.md: Fixed simple bug in machine discrition file.
3895 2009-07-31  Zoltan Varga  <vargaz@gmail.com>
3897         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_IREM_UN_IMM.
3899 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
3901         * method-to-ir.c: Fix naming of stelem and ldelem.
3903 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
3905         * driver.c (main_thread_handler): Check that the assembly loaded
3906         matches the filename when doing AOT.
3908 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3910         * mini.c: get_ip_from_sigctx installer has been removed, so don't
3911         call it anymore.
3913         * mini-x86.h, mini-amd64.h, mini-ppc.h: UCONTEXT macros moved (to
3914         utils/mono-sigcontext.h).
3916         * exceptions-amd64.c: Use the UCONTEXT_GREGS macro instead of an
3917         #ifdef.
3919 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
3921         * mini.c (mono_codegen):
3922         Call profiler hook to keep track of method code buffers.
3924 2009-07-27  Mark Probst  <mark.probst@gmail.com>
3926         * method-to-ir.c: Invoke write barriers for the
3927         Interlocked.(Compare)Exchange JIT intrinsics.
3929 2009-07-26  Raja R Harinath  <harinath@hurrynot.org>
3931         * Makefile.am (version.h): Fix issues when built out of tree.
3932         Remove some redundant 'grep's piped through 'sed's.
3934 Fri Jul 24 17:28:37 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
3936         This patch is contributed under the terms of the MIT/X11 license
3938         * mini-ppc.c (mono_arch_output_basic_block):
3939         (OP_STOREI1_MEMBASE_REG): Handle 32-bit offsets combining addis
3940         for bits 32-47 with signed load/store diplacements for bits
3941         48-63.  Use prefered base/offset order for indexed form.
3942         (OP_STOREI2_MEMBASE_REG, OP_STORE_MEMBASE_REG): Same.
3943         (OP_LOAD_MEMBASE, OP_LOADI4_MEMBASE, OP_LOADU4_MEMBASE,
3944         OP_LOADI1_MEMBASE, OP_LOADU1_MEMBASE, OP_LOADU2_MEMBASE,
3945         OP_LOADI2_MEMBASE): Same.
3946         (OP_STORER8_MEMBASE_REG, OP_LOADR8_MEMBASE,
3947         OP_STORER4_MEMBASE_REG, OP_LOADR4_MEMBASE): Same.
3948         (OP_STOREI1_MEMINDEX): Use prefered base/offset order for
3949         indexed form.
3950         (OP_STOREI2_MEMINDEX, OP_STORE_MEMINDEX): Same.
3951         (OP_LOAD_MEMINDEX, OP_LOADI4_MEMINDEX, OP_LOADU4_MEMINDEX,
3952         OP_LOADU2_MEMINDEX, OP_LOADI2_MEMINDEX, OP_LOADU1_MEMINDEX,
3953         OP_LOADI1_MEMINDEX): Same
3954         (OP_LOADR4_MEMINDEX, OP_LOADR8_MEMINDEX, OP_STORER4_MEMINDEX,
3955         OP_STORER8_MEMINDEX): Same
3956         (OP_JMP): Use addis/addi sequence for int cfg->stack_usage
3957         computations.
3958         (mono_arch_emit_prolog): Handle 32-bit offsets combining addis
3959         for bits 32-47 with signed load/store diplacements for bits
3960         48-63.  Use prefered base/offset order for indexed form.
3962 Fri Jul 24 16:57:12 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
3964 This patch is contributed under the terms of the MIT/X11 license
3966         * mini-ppc.c: Define PPC_MOVE_FPR_GPR and PPC_ISA_64.
3967         (mono_arch_get_vcall_slot): Fx pointer to int cast warning.
3968         (mono_arch_decompose_opts): Make OP_ICONV_TO_R4 and
3969         OP_ICONV_TO_R8 decompose conditional on !PPC_ISA_64.
3970         (mono_arch_output_basic_block) [OP_JMP]: Use ppc_load32 for
3971         cfg->stack_usage to avoid size warnings.
3972         (mono_arch_output_basic_block) [__mono_ppc64__]: Replace
3973         store/load sequence with mffgpr if PPC_MOVE_FPR_GPR is true.
3974         (mono_arch_output_basic_block) [!__mono_ppc64__]: For
3975         OP_ICONV_TO_R4 or OP_ICONV_TO_R8 and PPC_ISA_64 use fcfid
3976         to convert.
3977         (mono_arch_emit_prolog): Move mono_emit_unwind_op_def_cfa 
3978         after code varible is initialized.
3979         Add g_assert ppc_is_imm16 for ainfo->offset. Handle
3980         ainfo->size == 8 when ainfo->offset !ppc_is_imm16.
3981         (mono_arch_emit_epilog): 
3982         Move Use ppc_load32 for cfg->stack_usage to avoid size
3983         warnings.
3985 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3987         * method-to-ir.c: The write barrier doesn't do the store anymore,
3988         so we have always to emit it.  Also, emit the wbarrier after the
3989         store.
3991 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
3993         * mini-arm.c (mono_arch_get_delegate_invoke_impls): Add a trampoline
3994         for argument count 3 too.
3996 2009-07-23  Zoltan Varga  <vargaz@gmail.com>
3998         * mini.c (mono_jit_compile_method_with_opt): Add an 'ex' argument to let
3999         the caller handle the exceptions.
4000         (mono_jit_runtime_invoke): Handle exceptions thrown while compiling the
4001         method. Fixes #524498.
4003 2009-07-22  Geoff Norton  <gnorton@novell.com>
4005         * mini-exceptions.c: Fix build on ia64.
4007 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4009         * mini-exceptions.c (ves_icall_get_frame_info): Use write
4010         barriers.
4012 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4014         * mini-arm.c (mono_arch_emit_prolog): Fix thread attaching in aot
4015         code.
4017 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
4019         * basic-simd.cs (Main): Pass args to the test driver.
4021 2009-07-20  Geoff Norton  <gnorton@novell.com>
4023         * mini-x86.h: Fix the x86 version guards to use Apple's
4024         properly defined macros.
4026 2009-07-20  Geoff Norton  <gnorton@novell.com>
4028         * mini-x86.c: Fix --trace on darwin-x86 and other systems which require
4029         aligned access.
4031 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
4033         * mini.c (mono_jit_runtime_invoke): Speed this up by adding a hash to
4034         MonoJitDomainInfo which maps MonoMethod's to a structure containing all
4035         the information which is needed for invokes, so only one locking+hash table
4036         lookup is needed.
4038         * aot-compiler.c: Add a 'tool-prefix' option to be used when cross-compiling.
4039         
4040         * aot-compiler.c (add_generic_instances): Emit instances of 
4041         GenericComparer<T> for primitive types.
4043 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4045         * mini-posix.c: Fix linux build.
4047 2009-07-19  Geoff Norton  <gnorton@novell.com>
4049         * mini.h: Add prototypes for mono_runtime_syscall_fork and
4050         mono_gdb_render_native_backtraces
4051         * mini-darwin.c: Apple's syscall(SYS_fork) is very weird on x86,
4052         so we implement the sane semantics to the runtime here
4053         (mono_gdb_render_native_backtraces).  Apple also uses an ancient gdb
4054         so we need to call it differently (mono_gdb_render_native_backtraces)
4055         * mini-posix.c: Move the old semantics from mini.c to the prototypes
4056         here for default implementations.
4057         * mini.c: Refactor mono_handle_native_sigsegv so that we can properly
4058         support Apple's weird syscall (SYS_fork) implementation and not busy
4059         loop in abort() on native crashes on OSX anymore.
4061 2009-07-18  Zoltan Varga  <vargaz@gmail.com>
4063         * aot-runtime.c (load_method): Change the handling of the
4064         MONO_LASTAOT env variable so MONO_LASTAOT=0 means that no aot methods
4065         are used.
4067         * mini.c (mono_patch_info_equal): Really fix the handling of RGCTX_FETCH.
4069 2009-07-17  Zoltan Varga  <vargaz@gmail.com>
4071         * mini.c (mono_patch_info_equal): Revert the last change for now as it
4072         seems to break the aot tests.
4073         
4074         * mini.c (mono_patch_info_equal): Fix the handling of 
4075         MONO_PATCH_INFO_RGCTX_FETCH.
4077 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
4079         * unwind.c: Use TARGET_AMD64 instead of __x86_64__.
4081         * mini.c (mono_patch_info_hash): Fix the handling of 
4082         MONO_PATCH_INFO_INTERNAL_METHOD.
4083         (mono_patch_info_equal): Ditto.
4085 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
4087         * mini-llvm.c (mono_llvm_emit_method): Use module instead of ctx->module
4088         in a few places.
4089         
4090         * mini-llvm.c: Add some infrastructure for AOT support.
4092 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
4094         * mini-llvm-cpp.c: Update to the latest llvm api.
4095         
4096         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Set the EnablePrettyStackTrace
4097         option to false to prevent llvm from installing signal handlers which
4098         trip up the gc.
4099         
4100 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4102         * cpu-x86.md:
4103         * cpu-amd64.md: Revert previous change as those instructions
4104         take 2 separate arguments. Remember to read the arch docs more
4105         carefully next time.
4107 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
4109         * mini-llvm-cpp.cpp (mono_llvm_build_alloca): Update to latest llvm api.
4111 Wed Jul 15 17:20:27 CEST 2009 Paolo Molaro <lupus@ximian.com>
4113         * mini-ppc.c: exploit multiple load/store units if available (rest of
4114         the change from Steven Munroe (<munroesj@us.ibm.com>) first patch at 
4115         http://bugzilla.novell.com/show_bug.cgi?id=487846).
4117 Wed Jul 15 16:24:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4119         * mini-ppc.c: integrate most of Steven Munroe (<munroesj@us.ibm.com>)
4120         first patch at http://bugzilla.novell.com/show_bug.cgi?id=487846.
4122 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4124         * cpu-x86.md: Fix missing clobbering from trancendental simd
4125         ops.
4127         * cpu-amd64.md: Same.
4129 2009-07-14 Jerry Maine <crashfourit@gmail.com>
4131         Contributed under the terms of the MIT/X11 license by
4132         Jerry Maine <crashfourit@gail.com>.
4134         * basic-simd.cs: Added tests for single and doulble indexers.
4136         * cpu-amd64.md: Added simd opcode information.
4138         * mini-amd64.c: Added IR to native simd generation code.
4139         Added simd register names and function that returns them.
4141         * mini-amd64.h: Added marcos to turn on simd code compilation in
4142         amd64. Added max simd register count marco. Added caller/callee
4143         register mask marcos. Added marcos to use simd register bank.
4145         * mini.h: Added helper marco for shufling dwords and simple
4146         floats.
4148 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4150         * mini-llvm-cpp.cpp: Update to latest llvm SVN api.
4152         * Makefile.am (mono_LDADD): Pass LLVM_LDFLAGS to the linked.
4154         * unwind.c (mono_unwind_get_ops_from_fde): Make this return
4155         the length of the native code as well.
4157         * basic-simd.cs: Add a test for #521662.
4159 Mon Jul 13 17:58:50 CEST 2009 Paolo Molaro <lupus@ximian.com>
4161         * mini-ppc.c: fixed bug introduced by Steven's TLS changes.
4163 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4165         * mini.c: Register function for getting the IP from a signal
4166         context with metadata.
4168 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4170         * method-to-ir.c (mono_method_to_ir): When calling a gshared method,
4171         call a generic class init trampoline if needed. Fixes #519336.
4173         * generics.cs: Add a test.
4174         
4175 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4177         * method-to-ir.c: When doing a call which might be remote from
4178         shared generic code to other shared code with open type arguments,
4179         get the remoting invoke wrapper from the RGCTX and do an indirect
4180         call to it.
4182 2009-07-03  Zoltan Varga  <vargaz@gmail.com>
4184         * mini-trampolines.c (get_unbox_trampoline): Add an rgctx trampoline
4185         after the unbox trampoline in the full-aot case.
4187 2009-07-02  jonas echterhoff <jonas@unity3d.com>
4188         
4189         * mini.c: Move initialization of jit_mutex before debugger initialization
4190         
4191         to avoid crashes.
4192         
4193         
4194         * Info.plist: added Info.plist and link flag to enable the mono executable
4195         to access other processes. Requires codesigning of the executable to work.
4196         
4197         * mdb-debug-info32-darwin.s: The same as mdb-debug-info32.s, changed to 
4198         
4199         compile on OS X.
4200         
4202 2009-06-30  Zoltan Varga  <vargaz@gmail.com>
4204         * driver.c (mini_regression): Handle loading errors. Fixes #508869.
4206 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4208         * mini-exceptions.c (get_generic_context_from_stack_frame): Fix the case
4209         when the generic instance is an instantiation of a subclass of the
4210         methods class. Fixes #517166.
4212 2009-06-26  Zoltan Varga  <vargaz@gmail.com>
4214         * mini-amd64.c (mono_arch_emit_prolog): Fix thread attaching in AOTed
4215         code.
4217         * mini.c (mono_jit_thread_attach): Allow domain to be NULL for calls from
4218         AOTed code.
4220         * CMakeLists.txt: Add minimal support for installation.
4222 2009-06-25  Zoltan Varga  <vargaz@gmail.com>
4224         * aot-compiler.c (emit_and_reloc_code): Factor out the code to
4225         determine whenever a method is directly callable to a separate function.
4227         * mini-<ARCH>.c tramp-<ARCH>.c: Remove needless casts and add new
4228         needed ones as a result of the previous change.
4230         * mini-<ARCH>.c tramp-<ARCH>.c: Use mgreg_t* as the
4231         type of register arrays.
4233         * mini-trampolines.c tramp-<ARCH>.c aot-runtime.c: Use mgreg_t* as the
4234         type of register arrays.
4236 2009-06-24  Jerry Maine  <crashfourit@gmail.com>
4237         
4238         Contributed under the terms of the MIT/X11 license by
4239         Jerry Maine <crashfourit@gail.com>.
4241         * mini-amd64.c: Added code to convert simd IR to native amd64 sse.
4243 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4245         * aot-compiler.c (emit_plt): Define debug labels for most plt entries.
4247 2009-06-24  Neale Ferguson <neale@sinenomine.net>
4249         * mini-s390x.c: Correct LCONV_TO_Ix and ICONV_TO_Ix routines. Fix leave_method
4250         dump of structure return value. Fix some formatting.
4251         * cpu-s390x.md: Fix lengths of instruction sequences.
4252         * mini-s390.c: Minor formatting changes.
4254 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4256         * mini-x86.h: Applied patch from Romain Tartiere (romain@blogreen.org).
4257         Use sigaction on freebsd as well.
4259 2009-06-23  Zoltan Varga  <vargaz@gmail.com>
4261         * mini.h: Don't define MONO_ARCH_HAVE_TLS_GET to 0, as some code
4262         uses #ifdef on it.
4263         
4264         * mini.c (mini_init): Revert a change which breaks cross-compilation.
4266 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4268         * mini-ppc.c, cpu-ppc.md: Enable TLS on Darwin/G4.
4270 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4272         * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
4274 2009-06-20  Martin Baulig  <martin@ximian.com>
4276         * debug-mini.c
4277         (MonoDebuggerThreadFlags): New enum typedef.
4278         (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
4279         (mono_debugger_thread_created): Added `gpointer func' argument;
4280         initialize the new `thread_flags' field.
4282 2009-06-18  Martin Baulig  <martin@ximian.com>
4284         * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
4285         (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
4287         * debug-debugger.c
4288         (mini_debugger_set_attach_ok): New function; sets the attach-ok
4289         flag in `MONO_DEBUGGER__info.runtime_info'.
4291         * driver.c
4292         (mono_main): Call mini_debugger_set_attach_ok() if generics
4293         sharing is disabled.
4295 2009-06-22  Zoltan Varga  <vargaz@gmail.com>
4297         * aot-compiler.c (add_wrappers): Fix a warning.
4299         * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
4300         the ppc load/store macro changes.
4302 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4304         * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
4306         * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
4307         not just the got symbol.
4309         * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
4310         on ppc.
4312         * aot-compiler.c unwind.c: Add infrastructure for unwind support on
4313         ppc.
4314         
4315         * aot-compiler.c: Remove some fixmes.
4317         * driver.c (mono_main): Print a helpful message when cross-compiling.
4319         * mini.c (mini_init): Disable signal handlers when cross-compiling.
4321         * method-to-ir.c (initialize_array_data): Do the optimization if the
4322         target byte order is little endian, instead of the host byte order.
4324         * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
4325         wrappers into the mscorlib image, Emit a unique plt symbol for each
4326         image, emit symbols for plt entries.
4328         * image-writer.c (img_writer_emit_symbol_size): New function to emit
4329         a .size directive.
4330         
4331 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
4333         * aot-compiler.c (add_wrappers): Avoid calling 
4334         mono_marshal_get_type_info () since it can assert for some types.
4336         * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of 
4337         ldtoken are used inside wrappers.
4339         * helpers.c: Add support for prefixing tools with the arch name.
4341         * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
4342         quantities when using ilp32.
4344         * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
4345         spill slots. Use sizeof(mgreg_t) for the spill slot size.
4347         * image-writer.c: Use .long on ilp32.
4349         * aot-compiler.c: Use 32 bit loads on ilp32.
4350         
4351 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4353         * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
4355         * mini-ops.h: Use TARGET_POWERPC define for consistency.
4357         * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
4359         * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the 
4360         second got slot of every aot image.
4361         
4362         * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
4363         aot on platforms with function pointers.
4365         * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
4366         support for aot/full aot on ppc/ppc64.
4367         
4368         * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
4369         arguments which are needed on ppc.
4371         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
4372         argument.
4374         * mini-trampolines.c aot-runtime.c: Update after the above changes.
4375         
4376         * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
4378         * regalloc2.c (BITS_PER_CHUNK): Ditto.  
4380         * aot-compiler.c (emit_got_info): Fix reading unused memory.
4382         * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
4384 2009-06-17  Geoff Norton  <gnorton@novell.com>
4386         * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
4388 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4390         * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
4391         to control whenever the dwarf writer is in xdebug or aot mode.
4392         (emit_class_dwarf_info): Use a separate abbrev for structures without
4393         children.
4395         * aot-compiler.c: Pass the appending parameter to 
4396         mono_dwarf_writer_create ().
4398         * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
4399         falls through to its next bblock. Fixes #513931.
4401         * iltests.il: Add a test.
4403         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
4404         infor even if emit_line is FALSE, as the apple linker seems to require it.
4406         * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
4408         * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
4409         gcc does.
4410         (emit_fde): Ditto.
4412 2009-06-15  Zoltan Varga  <vargaz@gmail.com>
4414         * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
4415         mips build.
4417 2009-06-13  Zoltan Varga  <vargaz@gmail.com>
4419         * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and 
4420         'has_call_handler' fields.
4422         * method-to-ir.c (mono_method_to_ir): Set them if needed.
4424         * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
4425         first bblock if not needed. Fixes #512790.
4426         
4427 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4429         * aot-compiler.c (mono_compile_assembly): Fix a warning.
4430         
4431         * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
4432         wrappers.
4434         * aot-runtime.c (mono_aot_get_method): Use the original method's code for
4435         remoting-invoke-with-check wrappers, which are not needed when running with
4436         full-aot, since it doesn't support remoting.
4437         
4438 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4440         * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
4442         * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
4443         method info, it is not used anymore.
4445         * mini.h: Bump AOT file format version.
4446         
4447         * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
4448         word smaller.
4450         * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
4451         change above.
4452         
4453         * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
4455         * mini.h: Bump AOT file format version.
4456         
4457 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4459         * image-writer.c (asm_writer_emit_symbol_diff): Disable the 
4460         TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
4461         iphone.
4463         * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
4464         of CKFINITE and FBGE for VFP.
4466 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4468         * aot-compiler.c: Don't align code to 16 bytes on arm.
4469         
4470         * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
4471         before the methods they belong to.
4473         * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
4474         the full-aot case if possible, since the trampoline will be called right 
4475         away.
4477         * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
4478         trampolines to 1024 after the change above.
4480         * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
4481         trampoline to save 8 bytes per trampoline.
4483         * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
4484         change above.
4486 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
4488         * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
4490 2009-06-08  Martin Baulig  <martin@ximian.com>
4492         * debug-mini.c
4493         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
4494         (_mono_debugger_throw_exception): Don't make this static.
4495         (_mono_debugger_unhandled_exception): Likewise.
4496         (mono_debugger_handle_exception): Moved to mini-exceptions.c
4498         * debug-mini.c
4499         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
4500         (_mono_debugger_throw_exception): Add function prototype.
4501         (_mono_debugger_unhandled_exception): Likewise.
4503         * mini-exceptions.c
4504         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
4505         arg; return the first exception handler if the exception is caught
4506         and we're running inside the debugger.
4507         (mono_debugger_handle_exception): Moved here from debug-mini.c;
4508         improve exception handle inside runtime-invoke, check whether the
4509         exception is actually caught in the method being invoked and not
4510         by the runtime-invoke-wrapper.
4512 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
4514         * image-writer.c: Improve support for the osx assembler.
4516         * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
4517         support them.
4519 2009-06-08  Martin Baulig  <martin@ximian.com>
4521         * debug-mini.c
4522         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
4523         (_mono_debugger_throw_exception): Don't make this static.
4524         (_mono_debugger_unhandled_exception): Likewise.
4525         (mono_debugger_handle_exception): Moved to mini-exceptions.c
4527         * debug-mini.c
4528         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
4529         (_mono_debugger_throw_exception): Add function prototype.
4530         (_mono_debugger_unhandled_exception): Likewise.
4532         * mini-exceptions.c
4533         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
4534         arg; return the first exception handler if the exception is caught
4535         and we're running inside the debugger.
4536         (mono_debugger_handle_exception): Moved here from debug-mini.c;
4537         improve exception handle inside runtime-invoke, check whether the
4538         exception is actually caught in the method being invoked and not
4539         by the runtime-invoke-wrapper.
4541 2009-06-07  Zoltan Varga  <vargaz@gmail.com>
4543         * image-writer.c (append_subsection): Don't align subsections of the
4544         debug_line section as a workaround.
4546         * dwarfwriter.c: Emit line number info in the AOT case as well.
4548 2009-06-06  Steven Munroe  <munroesj@us.ibm.com>
4550         This patch is contributed under the terms of the MIT/X11 license
4552        * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
4553        code_len <= code_size
4555 2009-06-06  Zoltan Varga  <vargaz@gmail.com>
4557         * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
4559 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4561         * aot-compiler.c aot-runtime.c: Delete references to static rgctx
4562         invoke wrappers, we now use trampolines instead.
4564 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4566         * mini-darwin.c: The exception thread must not be registered with
4567         the GC.
4569 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4571         * mini-gc.c: Disable the code because it makes SGen crash.
4573 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4575         * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
4576         instead of asserting.
4578 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4580         * aot-compiler.c (mono_compile_assembly): Move the creation of the
4581         output file after the code has been compiled.
4583 2009-05-30  Zoltan Varga  <vargaz@gmail.com>
4585         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
4587 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4589         * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
4590         entries distinction to simplify the code.
4592         * mini.h: Bump AOT file format version.
4593         
4594 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4596         * objects.cs: Fix the signature of one of the tests.
4598         * mini.c (mini_create_ftnptr): New helper function, moved here from
4599         object.c.
4600         (mini_get_addr_from_ftnptr): Ditto.
4601         (mini_init): Install the new helpers.
4603 2009-05-28  Martin Baulig  <martin@ximian.com>
4605         Correctly initialize the debugger when embedding Mono.
4607         * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
4608         `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
4609         see documentation in mini_debug_running_inside_mdb().
4611         * debug-debugger.c
4612         (mini_debug_running_inside_mdb): New function to check whether
4613         we're running inside mdb.
4615         * mini.c (mini_init): Call mini_debugger_init() if we're running
4616         inside the debugger.
4618         * driver.c (mono_main): Moved the call to mini_debugger_init()
4619         into mini_init() to make this work when embedding Mono.
4621         * debug-debugger.c (mini_debugger_init): Warn about duplicate
4622         calls to mini_debugger_init().
4624         * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
4625         mono_debugger_main() -> mini_debugger_main() and put them inside a
4626         `MONO_DEBUGGER_SUPPORTED' conditional.
4628 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
4630         * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
4631         this is no longer in use.
4632         * mini.h: Same.
4634 2009-05-26  Zoltan Varga  <vargaz@gmail.com>
4636         * mini-sparc.c (add_outarg_load): Fix the sparc build.
4638         * aot-compiler.c (emit_method_code): Always write out C style symbols for
4639         methods.
4641 2009-05-27  Martin Baulig  <martin@ximian.com>
4643 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4645         * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
4646         long_conv_to_r_un to 64 bits.
4648         * cpu-x86.md: Increase the instruction size due to the changes.
4650         * iltests.il.in: Add regression test.
4652         Fixes #467201.
4654 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4656         * objects.cs: Move the previous test from basic.cs to here.
4658 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4660         * basic.cs: Add regression test for #506915.
4662 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4664         * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
4665         optimization we must check the bb of the first byte of stobj as
4666         it's the only one set in cil_offset_to_bb.
4668         Fixes #506915.  
4670 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
4672         * image-writer.c: Fix pointer directive on ppc64.
4674 2009-05-24  Zoltan Varga  <vargaz@gmail.com>
4676         * image-writer.c (asm_writer_emit_section_change): Avoid using
4677         .bss subsections on ppc too.
4679 2009-05-23  Zoltan Varga  <vargaz@gmail.com>
4681         * image-writer.c: Fix the definition of TARGET_ASM_....
4682         
4683         * image-writer.c: Fix the emission of assembler directives in the last
4684         change.
4686         * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
4687         exception throwing code to accomodate ppc64.
4689         * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
4690         size to work on ppc64 too.
4692         * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
4693         too.
4695         * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
4696         the assembler dialect instead of using platform specific defines.
4698 2009-05-22  Geoff Norton  <gnorton@novell.com>
4700         * mini-arm.c (get_call_info): If a structure is split between the stack
4701         and argument registers, we should not advance the stack pointer by the entire
4702         native size, but just by the amount that spilled.
4704 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
4706         * mini-arm.c (get_call_info): Handle structures with alignment requirements
4707         correctly.
4709 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4711         * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
4712         wrappers normally.
4713         
4714         * aot-compiler.c (add_extra_method): Fix up the collection of extra
4715         methods so wrapper don't get added twice.
4716         (add_generic_instances): Don't add methods of arrays.
4718         * generics.cs: Mark one test as !FULLAOT.
4720 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
4722         * mini-x86.c (emit_move_return_value): Remove unused vars.
4724 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
4726         * mini-x86.c (mono_arch_emit_call): The decompose code now supports
4727         decomposing 8 bytes structs into a LCALL.
4729         * mini-x86.c (emit_move_return_value): We no longer push the vtype
4730         pointer for where to store the returned regs.
4732         * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
4733         state the concern.
4735         Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
4737 2009-05-20  Miguel de Icaza  <miguel@novell.com>
4739         * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
4740         without getenv.
4742 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4744         * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
4746         * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
4747         generics.
4749 2009-05-20 Rodrigo Kumpera  <rkumpera@novell.com>
4751         * local-propagation.c (mono_local_cprop): Avoid local propagation
4752         across paired add/sub if the first instruction dest reg is it's
4753         source reg. For example:
4755         int_add_imm R12 <- R12 [1] clobbers: 1
4756         int_sub_imm R42 <- R12 [1] clobbers: 1
4758         The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
4759         maintain the math identify.
4761         Fixes #505375.
4763 2009-05-20  Andreia Gaita  <avidigal@novell.com>
4765         * Makefile.am: avoid going on the network just to get the revision,
4766         use git log instead
4768 2009-05-19  Massimiliano Mantione  <massi@ximian.com>
4770         Fixed estimate for short branches on amd64 (they were off mark, and
4771         enabling call prolog-epilog instrumentations caused assertions).
4772         * mini.h (struct MonoBasicBlock): added max_length field to hold the
4773         estimate for the maximum length of this basic block.
4774         * mini-amd64.c:
4775         - mono_arch_emit_prolog: compute max_length for each basic block
4776           (instead of max_offset), and inflate size estimate also for entry bb
4777           in case of code instrumentation.
4778         - mono_arch_output_basic_block: get rid of "cpos" (the current
4779           estimated "position" in the code), and always use "offset" instead,
4780           which is accurate; at the beginning of the function quickly recompute
4781           max_offset for all the remaining blocks, starting from the current
4782           cfg->code_len (which is correct, and not estimated) and using the
4783           estimated block lengths computed previously.
4785 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
4787         * exceptions-ppc.c: Remove the caching from the trampoline creation 
4788         functions, it is already done in the caller.
4790         * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
4792         * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add 
4793         MONO_ARCH_GSHARED_SUPPORTED define.
4795         * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
4797         * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
4798         function.
4800 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
4802         * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the 
4803         call to mono_marshal_get_rgctx_invoke ().
4805         * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
4806         mono_marshal_get_static_rgctx_invoke (), all platforms which support
4807         gshared use the static rgctx trampolines now.
4808         
4809         * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
4810         platform supports it.
4812 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4814         * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
4816         * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
4818 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4820         * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
4822         * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
4823         for ppc.
4825 2009-05-15  Massimiliano Mantione  <massi@ximian.com>
4827         Made it possible for mono_arch_instrument_epilog to preserve
4828         argument registers, otherwise instrumenting the "epilogue" before
4829         a tail call would clobber them.
4830         * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
4831         if like mono_arch_instrument_epilog but with an additional parameter
4832         that states if argument registers must be preserved.
4833         * mini.c: implemented mono_arch_instrument_epilog as a call to
4834         mono_arch_instrument_epilog_full without asking to preserve argument
4835         registers (this makes the existing code work as usual).
4836         * mini-amd64.c:
4837         - mono_arch_instrument_epilog: add parameter to transform it into
4838         mono_arch_instrument_epilog_full, and preserve argument registers
4839         when required.
4840         - mono_arch_output_basic_block, OP_TAILCALL case: call
4841         mono_arch_instrument_epilog_full.
4842         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
4843         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
4844         only transformed mono_arch_instrument_epilog into
4845         mono_arch_instrument_epilog_full.
4847 2009-05-15  Geoff Norton  <gnorton@novell.com>
4849         * mini-darwin.c: This works on arm now.
4851 2009-05-14  Geoff Norton  <gnorton@novell.com>
4853         * jit.h, driver.c: Allow full-aot to be decided programatically by the
4854         embedding api.
4856 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4858         * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
4859         label names.
4861         * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
4862         wrappers during full aot mode correctly.
4864         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
4865         methods correctly.
4867         * aot-compiler.c (mono_aot_method_hash): Use our internal version of
4868         mono_metadata_type_hash ().
4870 2009-05-14  Massimiliano Mantione  <massi@ximian.com>
4872         * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
4873         mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
4874         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
4875         Removed MONO_INST_BRLABEL from the instruction flags, and the
4876         remaining code that used it, because we do not support branches inside
4877         basic blocks (and branch target labels) anymore.
4878         * Makefile.am: As part of the above cleanup, remove reference to
4879         BURG files which don't exist anymore.
4881 2009-05-14  Zoltan Varga  <vargaz@gmail.com>
4883         * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
4884         osx.
4886         * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
4887         to use mono_arch_throw_corlib_exception.
4889         * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use 
4890         mono_arch_throw_corlib_exception for throwing corlib exceptions.
4892         * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
4893         domain mempool.
4895         * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
4897         * aot-compiler.c: Emit a local symbol prefixed with the assembly name 
4898         for the got to make debugging easier and to avoid confusing it with the
4899         system got.
4900         
4901         * aot-compiler.c (emit_method_code): Emit a C style symbol for each
4902         method so a breakpoint can be set when using gdb.
4904 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
4906         * aot-compiler.c (mono_aot_method_hash): Implement this properly based
4907         on mono_method_get_imt_slot ().
4909         * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
4910         num_decodes variables.
4912         * aot-compiler.c (mono_aot_method_hash): Revert part of the last
4913         change as it doesn't seem to work.
4914         
4915         * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
4916         wrappers.
4918 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4920         * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill 
4921         MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
4923         * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
4924         builder when using full aot.
4926         * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
4927         here, it is already handled.
4928         
4929         * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
4930         correctly for IMT.
4932         * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
4934         * mini-arm.h: Enable IMT for full aot.
4935         
4936         * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
4937         arch doesn't support it.
4939         * mini.c (mini_init): Don't disable IMT for full aot if the
4940         architecture supports it.
4942         * mini.h (MonoAotTrampoline): New enum containing the different types
4943         of 'numerous' trampolines.
4944         (MONO_AOT_FILE_VERSION): Bump this.
4946         * aot-compiler.c aot-runtime.c: Unify the handling of specific and
4947         static rgctx trampolines. Add support for full-aot IMT thunks.
4949         * mini-amd64.h: Enable IMT for full aot.
4951         * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
4952         to exclude tests belonging to a category.
4954         * generics.cs: Mark some tests with a !FULLAOT category.
4956         * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
4957         generics tests.
4959 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
4961         * aot-compiler.c (emit_and_reloc_code): Move the implementation of
4962         MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
4963         (emit_plt): Fix a warning.
4965 2009-05-10  Zoltan Varga  <vargaz@gmail.com>
4967         * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
4968         back into aot-compiler.c to a place where the other functions shared by
4969         the runtime and aot compiler are.
4970         
4971         * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
4972         as done previously, instead of in MonoAotFileInfo, since pointers might have
4973         alignment requirements.
4975         * mini.h: Bump AOT file format version.
4977 2009-05-10  Miguel de Icaza  <miguel@novell.com>
4979         * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
4980         that is used at runtime from the aot-compiler.c, this makes it
4981         work on setups that remove the AOT compiler from the output
4982         image. 
4984 2009-05-09  Zoltan Varga  <vargaz@gmail.com>
4986         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
4987         PPC.
4989         * mini-ppc.h: Enable static rgctx trampolines for ppc.
4991         * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
4993         * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific 
4994         stuff to mono_arch_decompose_long_opts ().
4995         (mono_decompose_opcode): Remove some dead code.
4997 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
4999         * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
5000         cmethod can be null for quite a some reasons.
5002 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
5004         * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
5006 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5008         * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
5010 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5012         * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
5013         (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
5014         whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
5015         calls returning structures by addr on amd64.
5017         * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
5019         * iltests.il.in: Restructure the tail call tests a bit.
5020         
5021 2009-05-07  Zoltan Varga  <vargaz@gmail.com>
5023         * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
5024         for virtual methods too.
5026 2009-05-06  Raja R Harinath  <harinath@hurrynot.org>
5028         * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
5029         due to regression in verifying System.dll.
5031 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5033         * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
5034         in dynamic methods.
5036         * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
5037         instances.
5039         * aot-compiler.c aot-runtime.c: Use our own hash function instead of
5040         g_str_hash () which can change.
5042         * driver.c (mini_regression): Disable optimizations not supported by
5043         the cpu. Fixes #500019.
5045         * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
5046         build.
5048 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5050         * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
5051         to the latest LLVM code.
5053 2009-05-05  Zoltan Varga  <vargaz@gmail.com>
5055         * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
5057 2009-05-04  Zoltan Varga  <vargaz@gmail.com>
5059         * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on 
5060         x86/amd64.
5062         * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
5063         no longer saving offsets, so just save the patch types along with the other
5064         info.
5065         * aot-runtime.c (load_patch_info): Update after the changes to 
5066         encode_patch_list ().
5067         (decode_got_entry): Removed, merged into load_patch_info ().
5068         (is_shared_got_patch): Removed, call the same function from
5069         aot-compiler.c.
5071         * mini.h: Bump aot file format version.
5072         
5073         * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
5074         half-finished no-dlsym code.
5076         * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
5077         option.
5079         * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the 
5080         MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
5082 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5084         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
5085         buffer length to work with AOT code.
5087         * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
5088         ldfld/stfld opcodes.
5090         * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
5091         as it is not used.
5093         * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
5095         * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
5097         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
5098         LLVM API.
5100         * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
5101         if needed. Don't decompose long operations when using llvm.
5103 2009-05-01  Zoltan Varga  <vargaz@gmail.com>
5105         * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
5106         PAGESIZE constant.
5108         * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
5110 2009-05-03  Martin Baulig  <martin@ximian.com>
5112         * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
5113         mono_debugger_insert_method_breakpoint() since the class init
5114         handler we're inserting at the top of the method already gives us
5115         a notification.
5117 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5119         * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
5120         to mono_arch_decompose_long_opts () for x86 and arm.
5122 2009-04-29  Zoltan Varga  <vargaz@gmail.com>
5124         * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
5125         TARGET_AMD64 here.
5127 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5129         * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
5130         JIT code.
5132 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
5134         * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
5135         number of trampolines used in full-aot mode.
5137         * aot-compiler.c: Add an ntrampolines option to set the number of 
5138         trampolines emitted in full-aot mode.
5140 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5142         * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
5143         a volatile load. Get rid of get_tempname (), llvm assigns names
5144         automatically.
5146         * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
5147         builder function.
5149         * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
5150         a value.
5152         * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
5153         level 1.
5155         * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
5156         to the same register as a fixed sreg2. Fixes #497271.
5158         * iltests.il.in: Add a new test.
5160 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
5162         * mini-amd64.c: Use moves instead of pushes for passing arguments on the
5163         stack, since pushes complicate exception handling.
5165         * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
5166         the stack if they are passed using moves.
5168         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
5170         * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
5171         when using llvm.
5173         * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the 
5174         icalls themselves. Convert arguments of FCOMPARE. Convert the destination
5175         of FMOVE if it is an R4.
5177 2009-04-25  Zoltan Varga  <vargaz@gmail.com>
5179         * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
5181         * mini.h (LLVMCallInfo): New structure to store calling convention 
5182         information for the LLVM back end similar to the CallInfo structures in 
5183         the back-ends.
5185         * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
5186         call information in a format usable by LLVM.
5187         (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
5189         * method-to-ir.c (mono_emit_call_args): Emit calls using 
5190         mono_llvm_emit_call () when compiling using LLVM.
5192         * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
5193         comments to all functions. Fix memory leaks. Add a public init/cleanup
5194         function.
5196         * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
5198         * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
5199         mono_array_new_va () jit icall.
5200         
5201 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
5203         * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
5204         multiple machine description files to be specified.
5205         * mini-ops.h: fixes for cross-compilation.
5207 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5209         * aot-runtime.c (make_writable): Use mono_mprotect to simplify
5210         some porting work.
5212 2009-04-22  Zoltan Varga  <vargaz@gmail.com>
5214         * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
5215         to prevent asserts in various passes. Fixes #497220.
5217 2009-04-21  Zoltan Varga  <vargaz@gmail.com>
5219         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
5220         a racy assert.
5222         * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
5223         table to avoid duplicates.
5225         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5226         
5227         * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
5228         option is used.
5230 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5232         * mini.c (mini_method_verify): Fail fulltrust code if the exception
5233         is for method or field access.
5235 2009-04-20  Zoltan Varga  <vargaz@gmail.com>
5237         * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
5238         a Value to stdout.
5240         * mini-llvm.c (mono_llvm_emit_method): Use it.
5241         
5242         * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
5243         (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
5244         on volatile values.
5246         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for 
5247         synchronized methods.
5249         * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
5251         * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
5253         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
5254         OP_LOADI8_MEM.
5256         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
5257         allowing some options to be set dynamically.
5259 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5261         * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
5262         unconditional branch.
5264         * mini.h (MonoTrampolineType): Add new trampoline type 
5265         'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
5266         compiled code.
5268         * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline 
5269         function.
5271         * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
5272         creation function.
5274         * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
5275         is enabled. Instead, use the llvm vcall trampoline.
5276         
5277         * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
5279         * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
5280         
5281         * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
5282         functions.
5284         * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of 
5285         MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
5287         * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
5288         OP_IA64_CSET opcode.
5290         * mini.c: Fix a warning.
5292         * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
5293         THROW to the appropriate llvm type.
5295 2009-04-18  Zoltan Varga  <vargaz@gmail.com>
5297         * mini.c (mini_method_compile): Add statistics for methods JITted
5298         with/without LLVM.
5300 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
5302         * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
5303         OP_IA64_CMP_<cond>_IMM opcodes.
5305 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
5307         * mini-llvm.c (emit_cond_system_exception): Implement throwing of
5308         corlib exceptions.
5310         * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
5311         correctly.
5313         * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
5314         GENERICINST.
5316 2009-04-17  Atsushi Enomoto  <atsushi@ximian.com>
5318         * mini-exceptions.c : add thread id to EXCEPTION trace message.
5320 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
5322         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
5323         support.
5325         * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
5326         rgctx invoke trampolines for x86.
5328         * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
5329         indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
5330         (mono_arch_get_vcall_slot): Simplify this.
5332 2009-04-16  Zoltan Varga  <vargaz@gmail.com>
5334         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
5335         mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
5337 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5339         * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx 
5340         trampolines for ARM. Add full-aot support for delegate invokes for ARM.
5342         * mini-trampolines.c (mono_magic_trampoline): Fix the build.
5344         * liveness.c (visit_bb): Remove a needless assert.
5346 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5348         * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
5349         full aot support to the arch specific code.
5351         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
5353         * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
5355         * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
5356         
5357         * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
5358         collect information about the delegate invoke impl trampolines.
5360         * mini.h (MonoAotTrampInfo): New structure collecting the information needed
5361         to save trampolines during full-aot mode.
5363         * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
5364         creation function which returns a trampoline which sets the rgctx
5365         argument.
5366         (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
5367         wrapper if possible.
5368         (mono_delegate_trampoline): Ditto.
5370         * mini.c (mono_jit_runtime_invoke): Ditto.
5372         * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
5373         
5374         * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
5376         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5377         
5378 2009-04-12  Zoltan Varga  <vargaz@gmail.com>
5380         * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
5381         just setting the opcode to OP_NOP.
5383 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5385         * mini.c (mini_method_compile): Put the last change inside an 
5386         #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
5387         
5388         * mini.c (mini_method_compile): Disable sharing of stack slots/registers
5389         and extend live ranges to cover the whole method when using xdb.
5391         * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
5392         do it in the trampolines.
5394         * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
5395         needed.
5397         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
5398         
5399         * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
5400         call code in full-aot mode since IMT is disabled there.
5401         (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
5402         new JIT no longer has that restriction.
5404         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5406         * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
5407         a more compact format.
5408         (mono_aot_wrapper_name): New function to return a unique name for a
5409         wrapper method, also used by the AOT runtime.
5411         * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
5412         aot-compiler.c.
5414         * aot-compiler.c (add_generic_class): Add the helper methods from T[]
5415         when a ICollection<T> etc is encountered.
5416         (add_generic_instances): Process method arguments/locals too.
5417         (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
5418         trampoline names.
5420         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
5421         
5422 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
5424         * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
5426         * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
5428         * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
5429         representing the result of the decomposition. Nullify instructions
5430         instead of setting them to OP_NOP since nops can't have registers
5431         set.
5433 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5435         * aot-compiler.c (mono_compile_assembly): Split this huge function into
5436         smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
5437         info. Strip 'mapping symbols' on ARM.
5439         * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
5440         
5441         * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
5442         this with the native genmdesc.
5444 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5446         * aot-runtime.c:  Fixing the MSVC build.
5448         Code is contributed under MIT/X11 license.
5450 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
5452         * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since 
5453         JITted code depends on it.
5455 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5457         * aot-compiler.c: Use new MonoGenericParam accessors.
5459 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5461         Reduce memory usage and improve correctness wrt MonoGenericParam
5462         * aot-runtime.c (decode_klass_ref): Simplify generic parameter
5463         handing.  Avoid allocating MonoGenericParams, but use the ones in
5464         the container itself.
5466 2009-04-07  Miguel de Icaza  <miguel@novell.com>
5468         * tasklets.c: Return exceptions in the out argument.
5470 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
5472         * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
5473         opcode. Use pointer types in more places instead of casting them to 
5474         integers.
5476         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
5477         optimizations.
5478         (mono_llvm_optimize_method): New helper function to optimize a method.
5480         * method-to-ir.c (mono_emit_widen_call_res): Extract the call result 
5481         widening code so it could be called from more places.
5482         (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
5483         code paths in the call opcodes.
5485 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
5487         * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
5489 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5491         * dwarfwriter.c: Use _ to separate class name 
5492         components as gdb can't handle '.'. Represent reference variables
5493         as 'class <NAME>&'.
5494         
5495         * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
5497         * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
5498         
5499         * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
5501         * gc-test.cs: New file with GC stack marking tests.
5502         
5503         * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
5504         negative numbers for vfp.
5506         * basic-float.cs: Add a test.
5507         
5508 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
5510         * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
5512 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
5514         * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
5515         part of tasklet/continuation support.
5517 2009-04-05  Zoltan Varga  <vargaz@gmail.com>
5519         * mini-llvm.c (mono_llvm_emit_method): Move the handling of
5520         amd64 opcodes inside an ifdef.
5522         * dwarfwriter.c: Emit inheritance information for classes, emit fields
5523         of complex types.
5524         
5525         * dwarfwriter.c (emit_type): Emit the class info for classes.
5527 2009-04-04  Zoltan Varga  <vargaz@gmail.com>
5529         * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
5531         * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
5533         * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
5535         * ssa.c (mono_ssa_compute): Fix some memory leaks.
5537 2009-04-03  Zoltan Varga  <vargaz@gmail.com>
5539         * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
5541         * mini-llvm.c: Update comments.
5543         * mini.h (COMPILE_LLVM): New macro.
5545         * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
5547         * ssa.c (mono_ssa_compute): Ditto.
5548         
5549         * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
5550         the unwind ops from a DWARF FDE.
5552         * mini-llvm.c: Implement generation of unwind info for LLVM compiled
5553         methods by extracting the dwarf unwind ops from the unwind info generated
5554         by LLVM.
5555         
5556         * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
5557         calls.
5559         * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
5560         addressing modes.
5562 2009-04-02  Zoltan Varga  <vargaz@gmail.com>
5564         * Makefile.am (llvm_sources): Enable this.
5566         * mini.c (mini_method_compile): Add support for compiling with LLVM, 
5567         failing back to the JIT if something cannot be handled.
5569         * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
5570         compiling with LLVM.
5572         * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
5573         compiling with LLVM.
5575         * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when 
5576         compiling with LLVM.
5578         * mini-ops.h: Add a few opcodes needed by LLVM.
5580         * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
5581         has no unwind info.
5583         * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
5584         backend.
5586         * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
5588         * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
5590 2009-04-01  Mark Probst  <mark.probst@gmail.com>
5592         * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
5593         ridiculously large methods.
5595 2009-03-31  Martin Baulig  <martin@ximian.com>
5597         * debug-debugger.c (debugger_remove_breakpoint): Call
5598         mono_debugger_remove_class_init_callback ().
5600 2009-03-31  Zoltan Varga  <vargaz@gmail.com>
5602         * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
5603         right before emitting code, not at the start.
5605         * mini.c (mono_postprocess_patches): Extract this into a separate function
5606         from mono_codegen ().
5608         * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
5609         byref types correctly.
5611 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
5613         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
5614         by the last change.
5616 2009-03-29  Zoltan Varga  <vargaz@gmail.com>
5618         * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before 
5619         indirect calls, this avoids problems where get_vcall_slot () would get
5620         confused by the native code for the instruction preceeding the call.
5621         (mono_arch_get_vcall_slot): Simplify this.
5622         (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
5624         * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
5625         register allocator now seems to depend on them instead of the data in
5626         cpu-<ARCH>.md.
5628         * mini.c (mini_method_compile): Throw the correct type of exception if
5629         mono_method_get_header () fails because of a loading error.
5631 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
5633         * mini.c (mini_method_compile): Clear the loader error if the method
5634         header cannot be decoded.
5636         * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual 
5637         interface methods on proxies correctly.
5639         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
5640         this argument for vtype methods. Add precise liveness info for arguments.
5642         * mini-codegen.c (mono_print_ins_index): Print the vreg of the
5643         LIVERANGE_START/END opcodes.
5645         * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
5646         for arguments and values in registers.
5648 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
5650         * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
5651         return a valuetype. Fixes #487518.
5653         * iltests.il: Add a test.
5654         
5655         * aot-compiler.c: Use mono_thread_create () to create helper threads.
5657         * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
5658         closed over a null reference correctly.
5660 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5662         * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
5664 2009-03-25  Mark Probst  <mark.probst@gmail.com>
5666         * mini-codegen.c (mono_local_regalloc): Don't let sregs get
5667         allocated to the same registers as fixed sregs.
5669 2009-03-24  Mark Probst  <mark.probst@gmail.com>
5671         * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
5672         ATOMIC_CAS_IMM ops.
5674         * method-to-ir.c: Handle more cases for
5675         Interlocked.CompareExchange.
5677         * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
5678         mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
5679         ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
5681 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5683         * aot-runtime.c (decode_method_ref): Fix a warning.
5685         * unwind.c (mono_unwind_frame): Ditto.  
5687 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
5689         * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
5690         (mono_compile_assembly): Enable the binary writer for full-aot as well.
5692         * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
5693         fix the handling of large values in the ALU_PC_G0_NC relocation.
5695 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
5697         * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
5699 2009-03-22  Mark Probst  <mark.probst@gmail.com>
5701         * method-to-ir.c (mono_spill_global_vars): Support for ternary
5702         ops.
5704 2009-03-22  Mark Probst  <mark.probst@gmail.com>
5706         * method-to-ir.c: MINI_OP3 needs a comma.
5708         * method-to-ir.c, mini.h, mini.c: Remove
5709         mono_init_op_sreg_counts ().
5711 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
5713         * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
5714         OP_JMP.
5715         
5716         * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
5717         assertion.
5719         * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
5721         * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
5722         code somewhat.
5724 2009-03-21  Mark Probst  <mark.probst@gmail.com>
5726         * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
5727         liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
5728         mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
5729         operations.
5731 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5733         * driver.c: Change location of gc_wrapper.h.
5735         * method-to-ir.c (mono_find_block_region): Handle try clauses nested
5736         inside finally clauses correctly. Fixes #485721.
5738         * mini.c (mono_find_spvar_for_region): This needs to handle try regions
5739         after the change above.
5741         * exceptions.cs: Add a test.
5742         
5743 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5745         * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
5747         * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
5748         into cfg->used_int_regs, it is not needed with the dwarf unwinder.
5749         (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
5751         * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
5752         the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
5754 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
5756         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
5757         Simplify logic for ensure_method_is_allowed_to_call_method. 
5758         Handle wrappers on callers.
5760 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5762         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
5763         them don't run yet.
5765         * basic-simd.cs: Fix the names of some test methods.
5767 2009-03-18  Geoff Norton  <gnorton@novell.com>
5769         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
5771 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5773         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
5775 2009-03-17  Jb Evain  <jbevain@novell.com>
5777         * driver.c: remove now uneeded call to mono_gc_base_init before
5778         mono_profiler_load.
5780 2009-03-17  Jb Evain  <jbevain@novell.com>
5782         * dwarfwriter.c (token_handler): handle more cases.
5784 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
5786         * method-to-ir.c: Remove more dead code (that was required only
5787         because of method_is_safe). Fix compiler warnings.
5789 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5791         * method-to-ir.c: Remove unneeded/useless method_is_safe
5792         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
5794 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5796         * mini.c (mini_method_compile): Print the method been compiled with
5797         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
5798         for people not familiar with the runtime.
5800 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5802         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
5803         a managed object which is later put into a GList. Return its class instead.
5805         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
5806         stack slots when using sgen.
5808 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
5810         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
5812 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
5814         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
5815         > so it works on the first vreg as well.
5817 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
5819         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
5820         trigger randomly.
5822         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
5823         
5824         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
5825         implement GArray.
5827 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5829         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
5830         native->IL offset mapping.
5832 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
5834         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
5836         * basic.cs: Add a test.
5838 2009-03-11  Mark Probst  <mark.probst@gmail.com>
5840         * mini-x86.c (mono_arch_output_basic_block): Use different
5841         registers in case the ones we want to overwrite are used by the
5842         other operand.  Fixes regression in #480807.
5844 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5846         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
5848         * dwarfwriter.c (emit_line_number_info): The line number info for
5849         IL code was off by one. Fix that.
5851         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
5852         stack.
5854 2009-03-09  Mark Probst  <mark.probst@gmail.com>
5856         Contributed under the terms of the MIT/X11 license by Steven
5857         Munroe <munroesj@us.ibm.com>.
5859         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
5860         Fixes #483462.
5862 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5864         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
5865         as well.
5867 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5869         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
5870         the delegate ctor handling code. Fixes #482638.
5871         
5872         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
5873         #481458.
5875         * iltests.il.in: Add a test.
5876         
5877         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
5878         mini-posix.c.
5880 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5882         * mini-trampolines.c (mono_create_jump_trampoline): If the method
5883         is shared generic code, return the trampoline, even if the method
5884         has already been compiled.  Fixes #479763.
5886         * mini.c, mini.h: New function
5887         mono_jit_find_compiled_method_with_jit_info() which is the same as
5888         mono_jit_find_compiled_method() but also returns the jit info.
5890 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5892         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
5893         for methods which actually have one.  For all other methods, make
5894         sure the this argument var is live the whole method.
5896         * mini.c (mini_method_compile): Every shared method has a
5897         this/vtable/mrgctx info.  Fixes #480807.
5899 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5901         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
5902         generic/imt thunks where some entries branch through the vtable,
5903         while other entries branch directly.
5905 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5907         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
5909         * mini-windows.c: Ditto.
5910         
5911         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
5912         ctors.
5914 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
5916         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
5917         down an assert.
5919 2009-03-04  Mark Probst  <mark.probst@gmail.com>
5921         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
5922         #481403.
5924 2009-03-04  Mark Probst  <mark.probst@gmail.com>
5926         * exceptions-x86.c: Include debug-mini.h - fixes build.
5928 2009-03-04  Martin Baulig  <martin@ximian.com>
5930         * debug-mini.c: Clean up the exception API and add documentation.
5931         (mono_debugger_handle_exception): New public method; this is
5932         called when throwing an exception or encountering an unhandled one.
5933         (mono_debugger_call_exception_handler): Formerly known as
5934         mono_debugger_handle_exception(); this is used to tell the
5935         debugger that we're about to invoke an exception handler.
5937 2009-03-04  Martin Baulig  <martin@ximian.com>
5939         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
5940         ../metadata/mono-debug-debugger.c; save and reset exception state.
5942 2009-03-02  Martin Baulig  <martin@ximian.com>
5944         * debug-mini.c: Moved the debugger exception handling here from
5945         ../metadata/mono-debug-debugger.c.
5947         * debug-mini.h
5948         (MonoDebuggerExceptionAction): New exception typedef.
5950         * debug-mini.c
5951         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
5953         * exceptions-amd64.c
5954         (mono_amd64_throw_exception): Use the new debugger exception
5955         handling code.
5957         * mini-exceptions.c
5958         (mono_handle_exception_internal): Don't call
5959         mono_debugger_unhandled_exception() here.
5961 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5963         * mini.c aot-compiler.c: Update after the changes to 
5964         mono_marshal_get_runtime_invoke ().
5966         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
5967         Virtual generic methods might not have method->slot set, work around
5968         that.
5970         * generics.cs: Add a test.
5972 2009-03-02  Geoff Norton  <gnorton@novell.com>
5974         * mini.c:
5975         * driver.c: Allow signal chaining of SIGFPE as well.
5977 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5979         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
5980         this since it now receives the method not its generic context in the
5981         IMT reg.
5983         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
5984         generic/imt thunks where some entries branch through the vtable, while
5985         other entries branch directly.
5987         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
5989         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
5990         support for interface methods as well.
5992         * mini-trampolines.c: Add support for virtual generic methods in interfaces
5993         using the normal IMT thunks.
5995         generics.cs: Add new tests.
5996         
5997         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
5998         the generic inst to the generic imt thunks. This fixes AOT support, 
5999         improves consistency with the normal IMT thunks, and makes it easier to
6000         add support for interface generic virtual methods later.
6002         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
6003         
6004 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
6006         * driver.c (mono_set_signal_chaining): New public API function to enable
6007         signal chaining on POSIX platforms.
6009         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
6010         (si@lindenlab.com) to implement signal chaining. The original patch was
6011         contributed under the MIT X/11 license:
6012         https://bugzilla.novell.com/show_bug.cgi?id=318894
6014 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6016         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
6017         too until it can be made to run on amd64.
6019 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6021         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
6022         to  get_generic_context_from_code () + get_call_info () if possible.
6024 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6026         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
6027         suspend-on-sigsegv functionality.
6029         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
6030         to suspend when a native SIGSEGV is received. This is useful for debugging
6031         crashes which don't happen under gdb, since a live process contains more
6032         information than a core file.
6034         * mini-exceptions.c (mono_print_thread_dump): Use 
6035         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
6037         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
6039         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
6040         
6041         * basic-float.cs: Disable the tests which currently fail on amd64.
6043         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
6044         value to mono_arch_patch_callsite () to fix crashes.
6045         
6046         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
6048 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6050         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
6051         nop code by patching the call address to point to the nullified class init
6052         trampoline, as the former does not seem to be safe on SMP machines.
6054 2009-02-23  Mark Probst  <mark.probst@gmail.com>
6056         * mini-ops.h: Fix the argument types for a few x86 opcodes where
6057         they were wrong.
6059 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6061         * basic-float.cs basic-calls.cs: Fix warnings.
6063 2009-02-22  Mark Probst  <mark.probst@gmail.com>
6065         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
6066         correct frame pointer in the LMF.  Should fix #478394.
6068 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6070         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
6072         * image-writer.c: Make the binary writer less verbose.
6074 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6076         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
6077         are called from runtime invoke wrappers.
6079 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6081         * cpu-ppc.md (store_memindex): Increase the size of this.
6083 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6085         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6087         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
6089         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
6090         OP_LCONV_TO_R_UN.
6092         Last fix for of #467201.
6095 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6097         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6099         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
6100         and long_conv_to_r8_2:
6102         Fixed part of #467201.
6104 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6106         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6108         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
6109         conversion to 32 bits.
6111         * cpu-x86.md: Increase the size of int_conv_to_r4.
6113         * basic-float.cs: Add a test for this.
6115         Fixed part of #467201.
6117 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6119         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6121         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
6122         conversion to 64 bits.
6124         * basic-float.cs: Add a test for this.
6126         Fixed part of #467201.
6128 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6130         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6132         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
6133         This behavior is compatible with MS.
6135         * iltest.il.in: Add a test for this.
6137         Fixed part of #467201.
6139 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6141         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6143         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
6144         change the precision of the value.
6146         * cpu-x86.md: Define len for float_conv_to_r4.
6148         * basic-float.cs: Add a test for this.
6150         Fixed part of #467201.
6152 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6154         * mini.c: Adjust locking order to the new semantics where the loader lock
6155         comes first.
6157 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
6159         * aot-runtime.c:
6160         * mini-amd64.c:
6161         * mini-arm.c:
6162         * mini-ia64.c:
6163         * mini-mips.c:
6164         * mini-ppc.c:
6165         * mini-sparc.c:
6166         * mini-trampolines.c:
6167         * mini-x86.c:
6168         * mini.c:
6169         * tramp-alpha.c:
6170         * tramp-amd64.c:
6171         * tramp-arm.c:
6172         * tramp-hppa.c:
6173         * tramp-ia64.c:
6174         * tramp-mips.c:
6175         * tramp-ppc.c:
6176         * tramp-s390.c:
6177         * tramp-s390x.c:
6178         * tramp-sparc.c:
6179         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
6181 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6183         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
6184         as it is incorrect.
6186 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6188         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
6189         for cctors if needed.
6191 2009-02-17  Mark Probst  <mark.probst@gmail.com>
6193         * mini-ppc.c: Fix build on Darwin.
6195 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6197         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
6198         version instead of 3 as valgrind doesn't like version 3.
6200         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
6202         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
6203         usable for hashing methods.
6204         (emit_extra_methods): Use the new hash to avoid putting every method in the
6205         same hash bucket.
6207         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
6209         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
6210         whenever a method ref could match a method.
6211         
6212         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
6213         test to fail.
6214         
6215         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
6216         methods refs.
6218         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
6220         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
6221         the encoding buffer.
6223         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
6224         mono_method_get_header () on inflated methods as an optimization.
6226 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6228         * ssa.c (fold_ins): Fix another crash if the instruction following the
6229         switch was optimized away.
6231 2009-02-16  Mark Probst  <mark.probst@gmail.com>
6233         Contributed under the terms of the MIT/X11 license by Steven
6234         Munroe <munroesj@us.ibm.com>.
6236         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
6238 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6240         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
6241         around the mono_domain_alloc calls, it is now done by the functions
6242         themselves.
6244         * aot-compiler.c (compile_method): Only add wrappers referenced by
6245         the method if compiling with full AOT.
6246         (mono_compile_assembly): Error out if --aot=full is specified on
6247         a platform where it is not supported.
6249         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
6250         on ARM too.
6252         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
6253         AOT support.
6255         * aot-runtime.c (load_named_code): Handle 
6256         mono_arm_throw_exception_by_token.
6258         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
6260         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
6261         unaligned.
6263         * Makefile.am (fullaotcheck): Exit if a test fails.
6265         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
6266         on ARM.
6267         (mono_compile_assembly): Handle the assembler failing.
6269         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
6270         accepting subsections of .bss.
6272         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
6273         was optimized away.
6275         * aot-compiler.c: Remove some unused includes.
6276         
6277         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
6278         now in MonoImageWriter.
6280         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
6281         code sequence which matches a non-virtual call. Fixes #472654.
6283 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6285         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
6286         xdebug code.
6287         
6288         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
6289         use the image/dwarf writers directly.
6291         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
6292         field.
6294         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
6295         MonoDwarfWriter.
6297         * image-writer.h: Fix some typos.
6299         * dwarfwriter.h dwarfwriter.c: New files.
6300         
6301         * aot-compiler.c: Extract the DWARF info writing functionality into a 
6302         separate module.
6304         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
6305         argument to return unwind info.
6307         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
6309         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
6310         
6311         * aot-runtime.c (decode_method_ref): Add a case for 
6312         MONO_AOT_METHODREF_WRAPPER_NAME.
6314         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
6315         for AOT.
6317         * aot-compiler.c (encode_method_ref): Use the new constants.
6319         * aot-runtime.c (decode_method_ref): Ditto.
6321         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
6322         be compiled, not the icall itself.
6324 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
6326         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
6327         using decode_method_ref ().
6329         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
6330         convert it to an in32. Fixes #475859.
6332         * arrays.cs: Add a test.
6334 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
6336         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
6337         OP_LCONV_TO_U2.
6339         * basic-long.cs: Add a test.
6341 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6343         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
6344         remove the frame pointer in leaf methods which don't receive any
6345         arguments, don't throw exceptions and don't do dynamic stack
6346         allocations.
6348 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
6350         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
6351         the fail_tramp changes. Hopefully fixes #475132.
6353 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
6355         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
6356         instead of mono_metadata_signature_dup_full.
6358 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
6360         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
6361         for processing jump tables. Fixes #473787.
6363 2009-02-11  Mark Probst  <mark.probst@gmail.com>
6365         * mini-generic-sharing.c: mini_method_get_context() just calls
6366         mono_method_get_context_general() now.
6368         * mini.c, mini.h: Moved get_object_generic_inst(),
6369         construct_object_context_for_method() and
6370         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
6372 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
6374         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
6375         basic block fell through to its successor bblock without a branch. Fixes
6376         #474718.
6378         * iltests.il.in: Add a test.
6379         
6380         * aot-compiler.c (encode_method_ref): Encode methods of array types.
6381         (can_encode_patch): We can now handle arrays of generic parameters and
6382         array methods.
6384         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
6386         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
6387         the AOT file to avoid some #ifdefs in aot-runtime.c
6389         * mini.h: Bump AOT file format version.
6391 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6393         * Makefile.am (fullaotcheck): Make this run the tests.
6395         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
6397 2009-02-10  Mark Probst  <mark.probst@gmail.com>
6399         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
6400         individually.  Fixes #473482.
6402 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6404         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
6406 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
6408         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
6409         (mono_compile_assembly): Hush compile warnings about
6410         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
6411         code path.
6413 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6415         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
6417         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
6419         * aot-compiler.c: Fix arm support.
6421         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
6422         img_writer_emit_unset_mode () function.
6424         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
6425         (mono_unwind_get_dwarf_pc_reg): Ditto.
6427         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
6428         Move almost all platform specific code to a set of arch_ functions, 
6429         and document them to ease porting.
6430         
6431         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
6433         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
6435         * aot-compiler.c: Extract the image writing functionality into a separate
6436         module to reduce the size of this file.
6438 2009-02-09  Geoff Norton  <gnorton@novell.com>
6440         * mini-s390.c: Fix the signature of emit_sig_cookie.
6442 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
6444         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
6446         * aot-runtime.c (is_shared_got_patch): Ditto.
6448         * aot-runtime.c (load_named_code): Cope with the fact that 
6449         decode_got_entry () won't decode the patch fully if its corresponding got
6450         entry is already filled.
6451         
6452         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
6453         Initialize *ji.
6454         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
6456         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
6457         as the moving pointer instead of 'buf' for consistency with the rest of the
6458         codebase.
6459         (mono_arch_create_monitor_exit_trampoline): Ditto.
6461         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
6462         generic_class_init trampolines.
6463         (add_generic_class): Extract some code from add_generic_instances () into a
6464         separate function so it can be called from other places too.
6465         (compile_method): Call add_generic_class () for the classes of inflated methods
6466         referenced by the method.
6467         (can_encode_patch): Allow references to generic parameters.
6469         * aot-runtime.c: Add support the patches required by the new trampolines.
6470         
6471         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
6472         support.
6474         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
6475         full-aot support.
6477         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
6478         this from get_throw_pending_exception, make the signature full aot compatible.
6480         * Makefile.am (fullaotcheck): New target to run full-aot tests.
6482         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
6484         * exceptions.cs: Add a test.
6486 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6488         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
6489         use the DWARF_DATA_ALIGN constant instead.
6491         * exception-<ARCH>.c: Update after the above change.
6493         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
6494         dwarf unwinder.
6496         * mini-arm.c: Enable the dwarf unwinder.
6498         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
6499         instead of mono_class_setup_vtable ().
6501 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6503         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
6504         dwarf unwinder.
6506         * mini-x86.h: Enable the dwarf unwinder.
6508 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
6510         Fix mcs/tests/test-7.cs
6511         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
6512         2009-02-03.
6514 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6516         * mini.c (print_jit_stats): Remove some unused statistics.
6518 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6520         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
6522 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6524         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
6525         the method we get from mono_object_get_virtual_method() because
6526         that function does it properly, now.
6528 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6530         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
6531         opcodes. Fixes #472775.
6533 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6535         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
6536         fact that mono_find_jit_info() sometimes returns the context
6537         corresponding to the jit info in new_ctx.  Fixes #472600.
6539 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6541         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
6542         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
6543         klass->enum_basetype directly.
6545         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
6546         enum subtypes.
6548         * unwind.c: Avoid 0 sized arrays.
6550 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6552         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
6553         size on systems with 64k pages. Fixes #471389.
6555 2009-02-04  Mark Probst  <mark.probst@gmail.com>
6557         Contributed under the terms of the MIT/X11 license by Steven
6558         Munroe <munroesj@us.ibm.com>.
6560         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
6561         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
6562         necessary.
6564 2009-02-04  Mark Probst  <mark.probst@gmail.com>
6566         Contributed under the terms of the MIT/X11 license by Steven
6567         Munroe <munroesj@us.ibm.com>.
6569         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
6570         comparison fix.
6572         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
6573         The trampoline can be longer on PPC64.
6575 2009-02-04  Mark Probst  <mark.probst@gmail.com>
6577         Contributed under the terms of the MIT/X11 license by Steven
6578         Munroe <munroesj@us.ibm.com>.
6580         * mini-ppc.c: Compiler warning fixes and trivial code
6581         simplifications.
6583 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6585         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
6586         ins->dreg which could be a hardware register, not a vreg.
6588         * aot-compiler.c (emit_method_dwarf_info): Ditto.
6589         
6590         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
6591         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
6593         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
6594         
6595         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
6596         ->dreg, that is not the vreg we are looking for.
6598         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
6600         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
6601         LIVERANGE_END.
6603         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
6604         strange crashes.
6606 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6608         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
6610         * aot-compiler.c (emit_line_number_info): Fix line number emission when
6611         the line diff is 0.
6613         * aot-compiler.c: Add xdebug support on x86.
6615         * unwind.c: Add x86 support.
6616         
6617         * aot-compiler.c (emit_exception_debug_info): Control the emission of
6618         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
6620         * mini.c (mini_method_compile): Ditto.
6621         
6622         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
6623         the variable index.
6625         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
6626         which mimic .push_section/.pop_section in GAS.
6627         
6628         * aot-compiler.c: Emit precise live range information for variables.
6630         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
6632         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
6633         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
6634         them.
6636         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
6637         the live ranges of variables.
6639         * mini.h (struct MonoMethodVar): Add two fields containing the live range
6640         of the variable in terms of native offsets.
6642 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
6644         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
6645         
6646 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6648         Contributed under the terms of the MIT/X11 license by Steven
6649         Munroe <munroesj@us.ibm.com>.
6651         * exceptions-ppc.c (restore_regs_from_context): Correct operand
6652         order (offset then base reg) for ppc_load_multiple_regs.
6653         (emit_save_saved_regs) Correct operand order for
6654         ppc_store_multiple_regs.
6655         (mono_arch_get_call_filter): Correct operand order for
6656         ppc_load_multiple_regs.
6658         * mini-ppc.c (emit_memcpy): Fix operand order for
6659         ppc_load_reg_update and ppc_store_reg_update.
6660         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
6661         (mono_arch_emit_epilog): Correct operand order for
6662         ppc_load_multiple_regs.
6664         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
6665         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
6667 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6669         * cpu-ppc64.md: Fixed storer4_memindex length.
6671 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6673         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
6674         line number info.
6675         
6676         * aot-compiler.c (emit_line_number_info): Optimize this.
6678 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6680         * aot-compiler.c: Disassemble tokens in the IL disassembly.
6681         
6682         * aot-compiler.c: Add debug info for methods without debug info by
6683         emitting an IL file and having the line number info referencing that file.
6685         * aot-compiler.c: Optimize the size of the generated line number info.
6687         * aot-compiler.c: Emit line number info in xdebug mode.
6689         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
6690         million arguments.
6692 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6694         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
6696         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
6697         is used.
6699 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
6701         * basic-calls.cs: Test for the weird crash found on arm.
6702         
6703 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
6705         * cpu-arm.md: Increase the size of storer8_membase_reg and
6706         loadr8_membase_reg to 24 bytes to accomodate the extra add.
6708         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
6709         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
6710         reg to LR otherwise we'll be loading/storing from just the offset.
6712 2009-01-30  Miguel de Icaza  <miguel@novell.com>
6714         Question: if we are storing gint32's inside the "*native_offset",
6715         should we change the signature to "gint32 *native_offset" to
6716         ensure that we do not have type definition problems?
6717         
6718         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
6719         an int * as this is what the other function expects, causes
6720         problems with Freescale's compiler that defined int32_t to be a
6721         long and makes int incompatible 
6723 2009-01-30  Miguel de Icaza  <miguel@novell.com>
6725         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
6726         filename conflict with bjam.
6728 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6730         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
6731         as it might use decomposed ops.
6733 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6735         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
6737         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
6738         is defined.
6740         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
6742         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
6743         offsets.
6745         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
6746         way registers are stored in MonoContext on arm.
6748         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
6749         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
6751         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
6753         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
6755         * mini.c (mini_init): Register mono_isfinite.
6757         * jit-icalls.c (mono_isfinite): New jit icall.
6759         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
6760         
6761         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
6762         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
6763         the parent frame.
6765 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6767         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
6768         separate frame and stack pointers, so we must use FP to find the register
6769         spill area.
6770         The FP reg is retrieved from the MonoContext::regs array.
6772 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6774         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
6775         as FPA requires it.
6777 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6779         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
6780         return R4 and R8 when not running under softfloat.
6782         Fixes basic-calls.exe
6784 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6786         * mini-arm.c: Implement some overflow opcodes.
6788 2009-01-29  Miguel de Icaza  <miguel@novell.com>
6790         * ssa.c: handle another alloca.h
6792         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
6793         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
6794         MONO_ARCH_USE_SIGACTION. 
6796         * aot-runtime.c, mini-exceptions.c: Replace platform define with
6797         capability defines.
6799         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
6801         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
6802         PPC targets as sigaction does not exist on all platforms, define
6803         this on a per-platform basis.
6805         Instead of erroring out if the platform is not defined, include
6806         mini-ppc-os.h, and expect that the OS specific setting provides
6807         the required information.   
6809 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6811         * aot-compiler.c: Fix --enable-minimal=aot.
6813 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6815         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
6816         previous change.
6818 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6820         * exceptions-arm.c: Fix warnings.
6822         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
6823         ARM.
6825         * mini-x86.c: Fix --enable-minimal=jit build.
6827         * mini.c: Really fix --enable-minimal=jit build.
6828         
6829         * mini.c (construct_object_context_for_method): Move this outside
6830         the DISABLE_JIT block to fix the --enable-minimal=jit build.
6832         "Backported" of r124984 from 2.0 branch.
6833         
6834         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
6836         "Backport" of r124977 + r124978 from 2.0 branch.
6837         
6838         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
6839         to avoid calling mono_exception_from_token () from the throw trampoline.
6840         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
6841         for throwing corlib exceptions, this fixes full-aot support for corlib
6842         exceptions.
6844         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
6846 2009-01-29  Miguel de Icaza  <miguel@novell.com>
6848         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
6849         part of the changes to split the code in mini into operating
6850         system specific files.
6852         This patch was done by copying mini.c to the respective files to
6853         preserve SVN history.
6855 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6857         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
6859 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6861         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
6862         remoting-invoke-with-check wrappers of shared methods.
6864         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
6866 2009-01-27  Mark Probst  <mark.probst@gmail.com>
6868         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
6869         optimization if the top of stack is the last instruction in the
6870         bblock.  Otherwise it might have been used after its definition.
6871         Fixes #469742.
6873 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6875         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
6876         method as well when get_vcall_slot () fails to match a code sequence.
6878         * mini-arm.c: Fix the android build, which doesn't have
6879         __aeabi_read_tp.
6881 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6883         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
6884         the s390x build.
6886 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
6888         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
6890 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6892         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
6893         and put its id into jinfo->used_regs. This is only used on amd64,
6894         which is currently the only platform generating unwind info.
6896         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
6897         the dwarf unwinder. This is required to correctly handle async exceptions
6898         like thread abort and stack overflows, which can happen while a method
6899         is in the middle of its prolog or epilog.
6900         
6901         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
6902         the unwind info belonging to an AOTed method.
6904         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
6905         into cfg->unwind_ops.
6906         
6907         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
6909         * mini.c (mini_init): Call mono_unwind_init ().
6910         (mini_cleanup): Call mono_unwind_cleanup ().
6912         * unwind.c: Add functions for managing a set of unwind info entries, allowing
6913         unwind info to be shared between methods.
6915         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
6916         saved in the LMF.
6918         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
6919         get_throw_pending_exception () to avoid initialization races.
6921         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
6922         mono_arch_exceptions_init () function.
6924         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
6926 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
6928         * mini.c (mono_get_domain_intrinsic): New helper function.
6929         (mono_get_thread_intrinsic): Ditto.
6931         * mini-arm.c mini-ia64.c: Use the new helper functions.
6932         
6933         * method-to-ir.c (mono_method_to_ir): Fix the comment for
6934         the last constrained_call change, since it is needed in the non-AOT
6935         case as well.
6937         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
6938         
6939         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
6940         mono_get_lmf_addr () on arm eabi linux.
6942 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
6944         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
6945         code sequence which matches a non-virtual call.
6947 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6949         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
6950         stack pointer (r1).
6952 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6954         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
6955         runtime-invoke wrappers, since they are also shared based on signature.
6957 2009-01-22  Mark Probst  <mark.probst@gmail.com>
6959         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
6960         info from the (correct) context.
6962 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
6964         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
6965         
6966         * unwind.c (mono_unwind_frame): New function to unwind through a frame
6967         using dwarf unwinding info. Not yet used.
6969         * mini.c (mini_init): When using xdebug, disable freeing of domains.
6971 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6973         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
6974         descriptors.
6976         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
6977         special case and handle mono_arch_delegate_invoke_impl() returning
6978         function descriptors.
6980         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
6981         trampolines return function descriptors, too.
6983 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6985         * method-to-ir.c (handle_alloc): Avoid generic instances in the
6986         out_of_line optimization.
6988 2009-01-21  Martin Baulig  <martin@ximian.com>
6990         * mini.h
6991         (MonoCompile): Added `disable_deadce_vars' to disable removing
6992         unused variables.
6994         * mini.c
6995         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
6996         inside the debugger.
6998         * liveness.c (mono_analyze_liveness): Don't remove any unused
6999         variables if `cfg->disable_deadce_vars' is set.
7001 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7003         * method-to-ir.c: Only apply exception constructor optimization if
7004         the the method actually belongs to an exception class.  Fixes
7005         #467456.
7007 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7009         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
7010         change inside a #ifdef __mono_ppc64__.
7012         * aot-compiler.c (compile_method): Remove the previous limitation.
7014         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
7015         on type variables in AOTed code.
7016         
7017         * aot-compiler.c (compile_method): Skip generic methods having type 
7018         constraints on their generic parameters.
7020         * aot-compiler.c (compile_method): Check for methods which cannot be
7021         encoded inside RGCTX_FETCH patches as well.
7023         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
7024         build.
7026 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7028         * method-to-ir.c: Force the vtable variable in shared generic code
7029         for the case that they might show up on a stack trace where they
7030         are needed.
7032         * mini-exceptions.c: Save and use generic sharing info as well as
7033         IP in stack traces to resolve shared generic instantiations.
7035 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
7037         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
7038         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
7040 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7042         * method-to-ir.c: Do generic sharing for array constructors.
7044 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
7046         * mini-exceptions.c (mono_print_thread_dump): Add information
7047         about the thread state using wapi_current_thread_desc.
7049 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
7051         * basic-simd.cs: Tests for the new constructors. 
7053 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
7055         * mini-ops.h: Added OP_EXPAND_*
7057         * cpu-x86.md: Same.
7059         * mini-x86.c (mono_arch_output_basic_block): Same.
7060         
7061         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
7063 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7065         * iltests.il.in: Add a test for #467385.
7067 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7069         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
7070         thread been cleaned up is not the same currently in execution.
7072         Fixes appdomain-unload crashes on windows, osx and linux variants
7073         without the __thread keyword.
7075 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7077         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
7078         (koush@koushikdutta.com). Implement this for android.
7080         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
7081         begins with a digit.
7083         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
7084         mono_marshal_get_write_barrier ().
7086 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
7088         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
7089         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
7090         that pass them on a register pair.
7092         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
7093         test was crashing due to that.
7095 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
7097         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
7098         trampoline code. Include ucontext.h only if available.
7100 2009-01-15  Mark Probst  <mark.probst@gmail.com>
7102         * mini.c: mono_domain_lookup_shared_generic() takes an open method
7103         and doesn't check whether it's sharable, like it was before
7104         removing the shared generics hash.  This brings IronPython
7105         performance back to what it was before that change.
7107 2009-01-14  Mark Probst  <mark.probst@gmail.com>
7109         * method-to-ir.c: Handle delegate invocation optimization earlier,
7110         otherwise it would be handled (much more slowly) by the
7111         final/sealed optimization.
7113 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7115         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
7116         domain is not set. Fixes #465864.
7118 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7120         * method-to-ir.c: Don't stop sharing of generic methods with catch
7121         clauses - we already handle those.
7123 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7125         * mini.c, mini.h: lookup_generic_method() is now
7126         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
7127         making the shared_generics_hash obsolete.
7129 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7131         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
7132         use the red zone.  Make room on the stack first and then use it,
7133         not the other way around.
7135 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7137         * mini.c (mini_init): Call mono_xdebug_init ().
7139         * aot-compiler.c (mono_xdebug_init): Make this non-static.
7141 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
7143         * TestDriver.cs: Add an --iter argument to run tests multiple times.
7145         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
7146         trampolines.
7148         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
7149         debug+unwind info for trampolines.
7151         * mini.c (mono_create_unwind_op): New helper function.
7153         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
7155 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7157         * aot-compiler.c: Fix the build.
7159 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7161         * Makefile.am: Update dtrace-prelink.sh location.
7163 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
7165         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
7166         optimization. Fixes #464520.
7168 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
7170         * mini-amd64.c : Adding code to save/restore non-volatile registers
7171            on Winx64.
7173         * exceptions-amd64.c : Adding code to save/restore non-volatile 
7174           registers on Winx64.
7176         Contributed under MIT/X11 license.
7178 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
7180         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
7181         __GNUC_MINOR__ which can break when the major version changes.
7183 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
7185         * basic-simd.cs: Add tests for usage of the sizeof opcode.
7187 2009-01-07  Geoff Norton  <gnorton@novell.com>
7189         * helpers.c:  Allow mono -v -v -v to work on darwin.
7191 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
7193         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
7194           pattern. 
7196         Contributed under MIT/X11 license.
7198 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
7200         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
7201         instead of directly accessing type->data.klass. Fixes #462016.
7202         (mono_allocate_stack_slots_full): Ditto.
7204         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
7205         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
7207         * aot-compiler.c (emit_plt): Fix ARM build.
7209 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
7211         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
7212         
7213         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
7214         change.
7216         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
7217         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
7218         #463357.
7220         * iltests.il.in: Add a regression test.
7222 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7224         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
7226 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7228         * basic-simd.cs: Add a regression test for #462457.
7230 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7232         * mini-ops.h: Add a definition of XPHI.
7234         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
7236         * ssa.c (op_phi_to_move): Handle XPHI.
7238         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
7240         Fixes #462457
7242 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7244         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
7246 2008-12-31  Geoff Norton  <gnorton@novell.com>
7248         * mini-ppc.c: The prolog size allocated can be too small for darwin
7249         ppc32 under certain circumstances.  Also fix a small logic bug.
7251 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
7253         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
7254         while loading AOT methods.
7256         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
7257         since only the former is nulled out after a successful cast. This prevents
7258         crashes with rethrown exceptions when using --debug=casts.
7260 2008-12-24  Mark Probst  <mark.probst@gmail.com>
7262         * mini.h: New macro for checking whether a method is final,
7263         i.e. whether the method or its class is marked final.
7265         * method-to-ir.c: Use the new macro for all final-checks
7266         consistently.  Fixes the crash in the System.ServiceModel tests.
7268 2008-12-23  Mark Probst  <mark.probst@gmail.com>
7270         * mini-exceptions.c (get_exception_catch_class): Corrected another
7271         overly strict assertion.
7273 2008-12-23  Mark Probst  <mark.probst@gmail.com>
7275         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
7276         Clobbering it is not allowed because the caller might use it as
7277         the vtable register in the interface call.
7279 2008-12-19  Mark Probst  <mark.probst@gmail.com>
7281         * mini-exceptions.c (get_exception_catch_class): Corrected an
7282         overly strict assertion.
7284 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
7285         
7286         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
7288         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
7290         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
7292         * cpu-mips.md: correct lengths for certain long_ opcodes.
7294         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
7296         * 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().
7297         
7298 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
7300         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
7301         
7302 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
7303         
7304         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
7305         
7306 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
7308         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
7309         next basic block.
7310         
7311 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
7313         * 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
7315         * 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)
7316         
7317 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
7318         
7319         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
7320         
7321 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
7323         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
7324         gshared code. Fixes #458947.
7326         * generics.cs: Add a test.
7328 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
7329         
7330         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7331         
7332         * mini-mips.c: first pass n32 code generation.
7334         * mini-mips.h: datatypes and defines for n32 support.
7336         * exceptions-mips.c: first pass n32 code generation.
7337         
7338         * tramp-mips.c: first pass n32 code generation.
7339         
7340         * cpu-mips.md: add long_ opcodes.
7341         
7342 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
7344         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7346         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7347         
7348         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7349         
7350         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7352         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7354         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7356         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7358         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7360         * helpers.c: for mips/n32, don't pass -mips32 to objdump
7362 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
7364         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
7366 2008-12-12  Andres G. Aragoneses  <aaragoneses@novell.com>
7368         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
7370 2008-12-12  Mark Probst  <mark.probst@gmail.com>
7372         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
7373         descriptors for helper functions directly in front of the code.
7375 2008-12-11  Mark Probst  <mark.probst@gmail.com>
7377         * method-to-ir.c: Removed an unnecessary assertion.
7379 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7381         * method-to-ir.c: Merge SGEN changes from the old JIT.
7383 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7385         * driver.c (compile_all_methods_thread_main): Handle failure of
7386         mono_get_method ().
7388 2008-12-10  Mark Probst  <mark.probst@gmail.com>
7390         * mini-ppc.c: Merged with mini-ppc64.c.
7392         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
7394         * Makefile.am: Use the same sources for PPC and PPC64.
7396         * mini-ppc64.c: Removed.
7398 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
7400         * branch-opts.c (remove_block_if_useless): Extract fall through detection
7401         code to mono_bb_is_fall_through.
7402         
7403         * branch-opts.c (mono_remove_critical_edges): Same.
7405 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
7407         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
7408         expect that an OP_BR_REG will be there.
7410 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
7412         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
7413         for the many branch ops. The original check miss OP_BR_REG.
7415         Fixes #457574.
7416         
7417 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
7419         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
7421 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7423         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
7424         while holding the aot lock.
7426 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
7428         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
7429         
7430 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7432         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
7433           to release all runtime callable wrappers held by the runtime.
7435         Contributed under MIT/X11 license.
7437 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7439         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
7440           for Winx64.
7442         Contributed under MIT/X11 license.
7444 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7446         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
7447         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
7449 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
7451         * cpu-mips.md: fix ckfinite length
7453         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
7454         (mono_arch_lowering_pass): cleanup, rearrange for clarity
7455         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
7456         
7457 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
7459         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
7460         
7461 2008-12-08  Geoff Norton  <gnorton@novell.com>
7463         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
7464         size by 8 bytes as well.
7466 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7468         * basic-simd.cs: Fix method names for Vector16b.
7469         
7470 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7472         * basic-simd.cs: Fix method names for Vector16sb.
7474 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7476         * basic-simd.cs: Fix method names for Vector8us.
7477         
7478 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7480         * basic-simd.cs: Fix method names for Vector8s.
7481         
7482 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7484         * basic-simd.cs: Fix method names for Vector4ui.
7486 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7488         * basic-simd.cs: Fix method names for Vector2l.
7490 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7492         * basic-simd.cs: Fix method names for Vector2d.
7494 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7496         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
7497         that are extension methods.
7499 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7501         * basic-simd.cs: Fix method names for Vector4f.
7503 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
7505         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
7506         as such. Fixes #456669.
7508 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
7510         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
7511         
7512 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
7514         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
7515         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
7516         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
7517         (mips_adjust_stackframe): handle FP spills
7518                 
7519         * mini-ops.h: add mips_mtc1_s2
7520         
7521         * cpu-mips.md: add mips_mtc1_s2
7522         
7523 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
7525         * unwind.c: New file, move the unwind info encoding functions here from
7526         aot-compiler.c, so they could be used at runtime too.
7528 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
7530         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
7531         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
7532         
7533 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
7535         * mini-mips.c: cleanup warnings
7536         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
7537         (mips_adjust_stackframe): handle case of taking the address of stack locals
7538         
7539 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
7541         * aot-compiler.c: Implement a few functions missing from the asm writer.
7542         (emit_method_code): Only write symbols for methods when using the bin
7543         writer, since the assembler can't deal with the characters in our method
7544         names.
7546         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
7548         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
7549         call.
7551         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
7552         a bit to also restore %rax.
7554 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7556         * mini-ppc.c: Some simple merges from mini-ppc64.c.
7558 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
7560         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
7561         arguments.
7563 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7565         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
7567         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
7568         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
7570         * exceptions-ppc64.c: Removed.
7572         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
7574 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7576         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
7577         tramp-ppc64.c.
7579         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
7581         * tramp-ppc64.c: Removed.
7583 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
7585         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
7586         the TYPESPEC table.
7588 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7590         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
7592         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
7593         mini-ppc.h instead of mini-ppc64.h.
7595         * mini-ppc64.h: Removed.
7597 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7599         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
7600         
7601         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
7602         
7603 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7605         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
7606         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
7607         code easier.
7609 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7611         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
7613 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7615         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
7617 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7619         * basic-simd.cs: Tests for operator == and != on Vector4f.
7621 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7623         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
7625         * simd-intrinsics.c: Kill useless enum.
7627 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7629         * cpu-mips.md: add long_conv_to_ovf_i4_2
7630         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
7632 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7634         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
7635         
7636         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
7638 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7640         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
7641         
7642 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
7644         * basic-simd.cs: Add tests for new methods.
7646 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
7648         * simd-intrinsics.c: Add support for operator == and !=
7649         on Vector4(u)i.
7651         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
7653 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
7655         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
7657 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
7659         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
7661         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
7662         MONO_PATCH_INFO_ICALL_ADDR.
7664         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
7666         * aot-compiler.c: Resurrect full-aot support.
7668 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7670         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
7671         
7672 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7674         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
7675         
7676 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
7678         * basic-simd.cs: Fix tests to work under ppc.
7679         Remove tests for methods that will be removed.
7681 2008-12-03  Mark Probst  <mark.probst@gmail.com>
7683         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
7684         generic type (via a typedef or typeref) correctly.
7686 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
7688         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
7689         diagnose an assertion failure.
7691 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7693         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
7694         Fix trampoline size.
7696         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
7697         conversion opcodes are implemented natively instead via emulation.
7699 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
7701         * cpu-mips.md: remove mips_xori
7703         * mini-ops.h:  remove mips_xori
7705         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
7707         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
7708         
7709         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
7710         
7711 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
7713         * cpu-mips.md: fix instruction lengths.
7715         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
7717         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
7719         * mini-ops.h: fix slti / sltiu op profiles.
7720         
7721 2008-12-02  Martin Baulig  <martin@ximian.com>
7723         * method-to-ir.c (mono_method_to_ir): Disable debugging
7724         information for the init locals block to make the debugger stop
7725         after all locals have been initalized.
7727 2008-12-02  Martin Baulig  <martin@ximian.com>
7729         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
7730         running inside the debugger.
7732 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
7734         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
7735         is enabled.
7737         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
7738         alu->alu imm optimization which only shows if deadce is disabled.
7740         * aot-compiler.c: Rename the function names for the binary and asm writers
7741         so they can coexist in the same process. Rework the xdebug code to use the
7742         asm writer. This avoids the need to call into the runtime to dump the
7743         debugging info. Add more debugging info for types.
7745         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
7747         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
7748         cpu description tables, they can't occur in cpu-<ARCH>.md.
7750         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
7751         the stack in CEE_LDFLDA. Fixes #450542.
7753         * generics.cs: Add a new test.
7755 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
7757         * mini-ops.h: updated MIPS opcodes
7758         * mini-mips.c: decompose long opts
7759         * mini-mips.h: decompose long opts
7760         
7761 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
7763         * cpu-mips.md: fix length on int_rem_un
7764         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
7765         
7766 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
7768         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
7770         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
7772 2008-11-29  Martin Baulig  <martin@ximian.com>
7774         * mini-exceptions.c (mono_handle_native_sigsegv): Check
7775         mono_debug_using_mono_debugger() in addition to the
7776         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
7778 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
7780         * mini-ops.h: updated more MIPS opcodes
7781         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
7782         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
7783         
7784 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7786         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
7788 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
7790         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
7791         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
7792         * mini-ops.h: correct selected mips opcode entries
7793         
7794 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7796         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
7797         make them work.
7799 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7801         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
7803 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
7805         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
7806         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
7807         * mini-mips.h: disable IMT
7808         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
7809         
7810 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7812         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
7814 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7816         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
7818 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
7820         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
7821         consistency.
7823 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
7825         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
7826         for Set/GetVector aligned versions.
7828 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
7830         * basic-simd.cs: Add tests for Get/SetVector.
7832 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7834         * mini.c: Removed g_slist_append_mempool().  Now in
7835         metadata/mempool.c.
7837 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
7839         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
7840         size properly and make the bounds check optional.
7842         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
7843         for SetVector and IsAligned.
7845 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
7847         * mini.c: Remove unused mono_normalize_opcodes () function.
7849 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7851         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
7852         using the new atomic add ops now.
7854         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
7855         add.
7857 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7859         * mini-ppc64.c: Several fixes.
7861 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7863         * cpu-mips.md: added jump_table
7864         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
7866 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7868         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
7870 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7872         * mini-ops.h: corrected a handful of MIPS opcodes.
7874 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7876         * aot-compiler.c: MIPS to use ELF writer
7878 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7880         * mini-codegen.c: remove MIPS specific assert.
7882 2008-11-25  Mark Probst  <mark.probst@gmail.com>
7884         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
7885         fixes.  PPC64 now passes most of the runtime regressions.
7887 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
7889         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
7890         volatile intervals a bit.
7892 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7894         * basic-long.cs: New test case.
7896 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
7898         * mini.c (mini_method_compile): Disable globalra for large methods for 
7899         now.
7901         * regalloc2.c (order_moves): Add fp support.
7903         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
7904         source bblock ends with an OP_BR_REG.
7906         * ratests.cs: Add a new test.
7908 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7910         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
7911         sharing.  PPC64 now passes generics.exe.
7913 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7915         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
7917 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
7919         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
7920         memory when mono_jit_info_table_find () can't find the method in the
7921         LMF case.
7923         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
7924         AOTed code too.
7925         
7926         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
7927         writer too.
7929 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7931         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
7932         Several fixes.  PPC64 now runs exceptions.exe and
7933         devirtualization.exe.
7935 2008-11-22  Mark Probst  <mark.probst@gmail.com>
7937         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
7938         arrays.exe and basic-math.exe.
7940 2008-11-22  Mark Probst  <mark.probst@gmail.com>
7942         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
7943         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
7945 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
7947         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
7949 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
7951         * method-to-ir.c: Move bounds checking macros to ir-emit.h
7953         * ir-emit.h: Move macros from method-to-ir.c to here.
7955 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
7957         * mini-ops.h: Correct the long simd ops to use LREG.
7959 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
7961         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
7962         
7963         * mini-ops.h: Correct the dreg type of a few long opcodes.
7965         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
7966         Add netbsd support.
7968 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
7970         * mini-ppc.c: remove negative stack references in epilog
7971         for platforms that don't support the red zone.
7973 2008-11-21  Mark Probst  <mark.probst@gmail.com>
7975         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
7976         point regs.  Now PPC64 passes basic-calls.exe.
7978 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7980         * basic-simd.cs: Add tests for accessors of Vector2l.
7982 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7984         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
7986         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
7987         
7988         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
7990 2008-11-21  Mark Probst  <mark.probst@gmail.com>
7992         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
7993         PPC64 passes basic-long.exe.
7995 2008-11-20  Mark Probst  <mark.probst@gmail.com>
7997         * decompose.c: Decompose carry and overflow add on PPC64 like on
7998         other 64 bit archs.  Don't decompose sub at all on PPC64.
8000         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
8001         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
8002         basic-long.exe.
8004 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8006         * basic-simd.cs: Add tests for accessors of Vector2d.
8008 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8010         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
8012         * cpu-x86.md: Same.
8014         * mini-x86.c (mono_arch_output_basic_block): Same.
8015         
8016         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
8018 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8020         * basic-simd.cs: Add tests for accessors of Vector4f.
8022 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8024         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
8026         * cpu-x86.md: Same.
8028         * mini-x86.c (mono_arch_output_basic_block): Same.
8029         
8030         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
8032 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8034         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
8036 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8038         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
8040         * cpu-x86.md: Same.
8042         * mini-x86.c (mono_arch_output_basic_block): Same.
8043         
8044         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
8046 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8048         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
8050 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8052         * simd-intrinsics.c: Enable setters for Vector16sb.
8054 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8056         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
8058         * cpu-x86.md: Same.
8060         * mini-x86.c (mono_arch_output_basic_block): Same.
8061         
8062         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
8064 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
8066         * simd-intrinsics.c: Implement setter for Vector8us.
8068 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
8070         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
8071         for dead variables.
8073 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8075         * mini-ppc.c: remove references to the red zone in the prolog
8076         (for systems that don't support it).
8078 2008-11-19  Mark Probst  <mark.probst@gmail.com>
8080         * cpu-ppc64.md: Fixed a few instruction lengths.
8082         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
8083         now.
8085 2008-11-19  Mark Probst  <mark.probst@gmail.com>
8087         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
8088         basic.exe now.
8090 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
8092         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
8094 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
8096         * mini-ops.h: Added OP_INSERT_I2.
8098         * cpu-x86.md: Same.
8100         * mini-x86.c (mono_arch_output_basic_block): Same.
8101         
8102         * simd-intrinsics.c: Implement setter for Vector8s.
8104         * simd-methods.h: Add the names of get setters of Vector8s.
8106 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8108         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
8109         
8110         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
8111         parameters.
8113         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
8115 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8117         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
8118         for PPC64.  An empty program runs now.
8120 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8122         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
8124         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
8125         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
8126         info for JITted code is emitted into a shared library, loadable into gdb.
8128 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8130         * Makefile.am: Changes to build PPC64.
8132         * mini-arch.h: Include mini-ppc64.h on PPC64.
8134 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8136         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
8137         in PPC code up to r119147.
8139 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8141         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
8142         cpu-ppc64.md: Changes for PPC64.
8144         Based on code submitted by andreas.faerber@web.de at
8145         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
8146         X11/MIT license.
8148 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8150         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
8151         cpu-ppc64.md: Copied from the corresponding PPC files from
8152         r118846.
8154 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
8156         * mini-ops.h: Added OP_ROUND.
8158         * cpu-x86.md: Added round.
8160         * mini-x86.c: Added support for intrinsicing Math.Round (double).
8162         * basic-math.cs: Added test_0_round to test rounding.
8164         Contributed under MIT/X11 license.
8166 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8168         * aot-compiler.c : Fix the Winx64 build.
8170         Contributed under MIT/X11 license.
8172 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
8174         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
8175         in OP_EXTRACT_R8 to avoid possible stack corruption.
8177 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
8179         * mini-ops.h: Added OP_EXTRACT_R8/I8.
8181         * cpu-x86.md: Added extract_r8.
8183         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
8184         
8185         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
8186         a couple of OP_EXTRACT_I4.
8188         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
8190         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
8192 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
8194         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
8195         and not 4.1. 
8197 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
8199         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
8200         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
8202         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
8203         are not needed any more.
8205         * mini.h: Remove the unused INS_LIST macros.
8207         * mini.c (mini_method_compile): Remove a disable globalra case which is no
8208         longer needed.
8210         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
8211         ir-emit.h.
8213         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
8214         mono_alloc_ireg () instead.
8216         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
8217         macros.
8219         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
8220         on amd64.
8222         * aot-runtime.c (load_aot_module): Disable AOT when running under
8223         CAS.
8225         * mini-amd64.h: Change the monitor fastpath defines to check for
8226         !PLATFORM_WIN32 so they work on *bsd too.
8228         * mini.h mini.c mini-hhpa.c: Remove more unused code.
8230         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
8232         * mini.h (MonoCompile): Remove new_ir flag.
8234         * regalloc.h regalloc.c: Remove unused code.
8236         * cpu-*.md: Remove more unused opcodes.
8238         * simple-cee-ops.h simple-mini-ops.h: Removed.
8240         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
8241         
8242 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
8244         * aliasing.h: Removed.
8246         * *.c: Remove references to aliasing.h and inssel.h.
8248         * mini.c: Remove additional unused functions.
8250         * mini-ops.h cpu-*.md: Remove unused opcodes.
8252 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
8254         Remove the old JIT code.
8256         * inssel*.brg: Removed.
8258         * ssa.c abcremoval.c aliasing.c: Removed.
8260         * ssa2.c: Renamed to ssa.c.
8262         * abcremoval2.c: Renamed to abcremoval.c.
8264         * *.c: Removed all !cfg->new_ir code.
8266         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
8267         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
8269         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
8270         
8271 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
8273         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
8274         to simplify the code and cut back on the number of global symbols in the AOT
8275         file.
8276         
8277         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
8279 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
8281         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
8282         with the got/got_info tables.
8284         * mini.h: Bump AOT file format version.
8285         
8286         * unwind.h: New file, contains definitions for stack unwinding.
8288         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
8289         to cfg->unwind_ops.
8290         
8291         * aot-compiler.c: Generalize the emitting of unwind information to use the
8292         information in cfg->unwind_ops.
8294         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
8296         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
8297         AOT method frames. Enable writing symbols for methods by default.
8299 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
8301         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
8302         and make it work with vectors of element sizes 1, 2 and 4.
8304         * simd-intrinsics.c: Enable getter for all vectors with element size
8305         1, 2 or 4.
8307         * simd-methods.h: Add the names of other getters.
8309         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
8311         * cpu-x86.md: Same.
8313         * mini-x86.c: Same.
8315 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
8317         * mini-ppc.h: portability fix.
8319 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
8321         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
8322         buggy and will overwrite it.
8324 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8326         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
8327         Use it to emit local symbols for all methods so AOTed methods show up with
8328         their full name in gdb/valgrind output.
8330 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
8332         * mini-ppc.c: portability fixes.
8334 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8336         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
8337         entries out of the if (!generic_shared...) code so it is always done.
8338         (mono_class_init_trampoline): Do the patching when running under valgrind
8339         too, newer versions of valgrind have no problems with it.
8341 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
8343         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
8344         further sections.
8346 2008-11-13  Mark Probst  <mark.probst@gmail.com>
8348         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
8349         filters.
8351 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8353         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
8355 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8357         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
8359         * cpu-x86.md: Same.
8361         * mini-x86.c: Same.
8363         * simd-intrinsics.c: Same.
8365 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8367         * simd-intrinsics.c: Enable constructor intrinsics for all types.
8369 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8371         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
8372         to work with more Vector types.
8374 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8376         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
8377         store the elemens directly instead of using and intermediate.
8379 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
8381         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
8383         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
8384         to preserve %eax for aot plt trampolines.
8386         * aot-compiler.c (compile_method): Don't skip synchronized methods.
8387         (encode_method_ref): Flag synchronized methods so they won't go through
8388         the AOT trampoline.
8390         * aot-compiler.c: Additional work to support AOTing synchronized methods/
8391         wrappers.
8393         * cpu-ia64.md (jmp): Increase max length.
8395 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
8397         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
8398         open generic classes.
8400         * aot-compiler.c: Enable the ELF writer on ELF platforms.
8402         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
8403         box+brtrue optimization since it causes test failures on x86.
8405 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8407         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
8409         * cpu-x86.md: Same.
8411         * mini-x86.c: Same.
8413         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
8414         for simd ctor values. 
8416         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
8417         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
8419 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8421         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
8422         LogicalRightShift.
8424         * simd-instrincs.c: Same.
8426         * basic-simd.cs: Same.
8428 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
8430         * ratests.cs: Add more tests.
8432         * regalloc2.c (add_spill_code): Handle more corner cases.
8434 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
8436         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
8437         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
8438         both the source an destination of an instruction.
8440 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
8442         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
8443         wapihandles.c: more portability changes.
8445 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
8447         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
8448         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
8449         safe to execute in a signal handler and the kernel provides better
8450         the info in /proc/self/smaps. Avoid the assert on sigaction during
8451         cleanup.
8453 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
8455         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
8456         do the bblock linking hack if it is actually needed.
8458         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
8459         up linking.
8461         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
8462         crash problem is fixed.
8464         * branch-opts.c (mono_remove_critical_edges): Link up newly added
8465         bblocks.
8467         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
8468         for catch clauses.
8469         (mini_method_compile): Set the starting value of next_vreg to 
8470         MAX_IREGS + MAX_FREGS when using globalra.
8472         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
8473         filter clauses with BB_EXCEPTION_HANDLER.
8475         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
8477 2008-11-10  Mark Probst  <mark.probst@gmail.com>
8479         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
8480         space for stdcall.  Fixes regressions on Win32.
8482 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
8484         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
8485         bblocks.
8486         (linear_scan): Remove an assert which doesn't seem to be needed.
8488         * local-propagation.c (mono_local_deadce): Avoid a call to
8489         MONO_DELETE_INS which would screw up the instruction linking.
8491         * mini.c (mono_decompose_op_imm): Make this work with globalra.
8493         * regalloc2.c: Upgrade to work the current JIT code.
8495 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
8497         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
8498         case.
8500         * aot-runtime.c: Remove some dead code.
8502         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
8503         consistency.
8504         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
8506         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
8507         trampolines using sscanf since atoi doesn't work on large unsigned values.
8509         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
8510         Initialize code_size.
8512 2008-11-08  Mark Probst  <mark.probst@gmail.com>
8514         * method-to-ir.c (mini_emit_inst_for_method): Make
8515         Interlocked.CompareExchange work for Int arguments on 32 bit
8516         archs, as well.
8518 2008-11-07  Mark Probst  <mark.probst@gmail.com>
8520         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
8522 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
8524         * main.c Fix MSVC build.
8526         Contributed under MIT/X11 license.
8528 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8530         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
8531         alignment larger than 8 bytes are aligned correctly, too.
8533         * mini.c: Honor the min_align field of MonoClass when laying out
8534         the stack.
8536 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
8538         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
8540         * aot-compiler.c (emit_plt): Fix a warning.
8541         
8542         * aot-compiler.c: Implement ARM support in the binary writer.
8544 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8546         * basic-simd.cs: Add test for getter with byref arg.
8547         Fix the naming of a few tests.
8548         Add missing checks to a test.
8550 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
8552         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
8554         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
8555         most of the full-aot support for monitor enter/exit trampolines.
8557         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
8558         enter/exit trampoline creation functions.
8560         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
8561         make dist.
8563 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
8565         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
8566         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
8567         implement the needed functionality without adding crap to the runtime.
8569 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
8571         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
8572         non-x86 builds.
8574         * mini.c (mono_build_date): New global version holding the build date in
8575         string format.
8576         
8577         * Makefile.am (buildver.c): Generate a file containing the build date.
8579         * main.c: Set the build date from the generated file.
8581         * mini.c (mono_get_runtime_build_info): New helper function returning build
8582         information in a string format.
8583         
8584         * driver.c (mono_main): Print the build date in --version.
8586         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
8587         file when the bind-to-runtime-version option is used.
8589 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8591         * simd-intrinsics.c: Fix bug when using getters and byref args. 
8593 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8595         * simd-methods.h: Rename prefetch methods.
8597         * simd-intrinsics.c: Same.      
8599 2008-11-05  Mark Probst  <mark.probst@gmail.com>
8601         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
8602         sizes.
8604 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8606         * aot-compiler.c: Use the bundled elf header files instead of depending on
8607         the system one.
8608         
8609         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
8610         mempool.
8612         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
8613         on every call.
8615 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
8617         * cpu-x86.md: Add store nta ops.
8619         * mini-ops.h: Same.
8621         * mini-x86.c: Same.
8623         * mini.h: Add an enum for simd prefetch modes.
8625         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
8626         of store. Use the changed code to support store nta.
8628         * simd-intrinsics.c: Add prefetch ops for all vector types.
8630 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8632         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
8633         threads.
8634         
8635         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
8636         names.
8638         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
8639         trampolines.
8641 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8643         * mini-x86.c: Fixed commit.
8645 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8647         * aot-compiler.c (emit_plt): Align the plt section only on x86.
8649 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8651         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
8652         and MONITOR_EXIT, for the ASM fastpaths.
8654         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
8655         available.
8657         * mini.c, patch-info.h: Signature and patch infos for
8658         Monitor.Enter/Exit trampolines.
8660         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
8662         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
8663         Monitor.Enter/Exit ASM fastpath for Linux.
8665 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8667         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
8669         * objects.cs: Add a new test.
8670         
8671         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
8673         * aot-runtime.c (load_method): Run class initialization in the PLT case even
8674         if MONO_LOG_LEVEL is set.
8676         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
8678         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
8680         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
8681         
8682         * aot-compiler.c: Change the relocation code to use virtual addresses instead
8683         of file offsets. Align the sections belonging to the data segment to 
8684         PAGESIZE.
8686 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
8688         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
8689         elf.h. Port it to amd64.
8691 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
8693         * driver.c: Enable SIMD by default.
8695 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
8697         * cpu-x86.md: Add prefetch op.
8699         * mini-ops.h: Same.
8701         * mini-x86.c: Same.
8703         * mini.h: Add an enum for simd prefetch modes.
8705         * simd-methods.h: Add prefetch function names.
8707         * simd-intrinsics.c: Add prefetch ops for all vector types.
8709 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
8711         * aot-compiler.c (emit_bytes): Speed this up a little.
8713 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8715         * aot-compiler.c: Add JIT time etc. statistics.
8716         
8717         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
8719         * mini.h (MonoCompile): Add 'got_offset' field.
8721         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
8722         method_got_offsets array.
8724         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
8725         wrappers.
8727         * aot-compiler.c (compile_method): Add generic method instances referenced
8728         by the method to the list of methods to be compiled, this is required so if
8729         A<T> references B<T>, and another assembly references A<int>, then it will
8730         also get a copy of B<int>.
8732         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
8733         when checking for monitor enter/exit.
8735 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8737         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
8738         for Monitor.Enter and Monitor.Exit if enabled.
8740         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
8741         Solaris.
8743 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
8745         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
8746         of an OP_MOVE. Fixes #440046.
8748         * basic-long.cs: Add a new test.
8750 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
8752         * mini.h: Add synchronization note for the managed counter-part.
8754         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
8755         returns the simd caps of the current cpu.
8757 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
8759         * basic-simd.cs: Remove Console.WriteLine.
8761 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8763         * basic-simd.cs: New tests for Vector2ul.
8765 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8767         * simd-intrinsics.c: Add new vector type Vector2ul.
8769 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8771         * basic-simd.cs: New tests for Vector2l.
8773 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8775         * cpu-x86.md: Add long version of most packed int ops.
8777         * mini-ops.h: Same.
8779         * mini-x86.h: Same.
8781         * simd-intrinsics.c: Add new vector type Vector2l.
8783 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8785         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
8787         * simd-methods.h: Remove SN_op_BitwiseXor.
8789 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
8791         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
8792         alignment.
8794 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8796         * basic-simd.cs: Test for Vector2d.
8798         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
8799         value.
8801 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8803         * cpu-x86.md: Add double version of all packed float ops.
8805         * mini-ops.h: Same.
8807         * mini-x86.h: Same.
8809         * simd-intrinsics.c: Add new vector type Vector2d.
8811         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
8813         * simd-methods.h: Add Duplicate.
8815 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8817         * basic-simd.cs: Test for packing with signed saturation.
8819 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
8821         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
8822         found in the TYPESPEC table.
8824 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8826         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
8827         too.
8829         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
8831         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
8832         instead of the RVA, since the RVA can be changed by tools like the cil 
8833         stripper.
8835         * method-to-ir.c (mono_method_to_ir2): Ditto.
8837         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
8838         (deserialize_variable): Ditto.
8840 2008-10-25  Martin Baulig  <martin@ximian.com>
8842         * debug-mini.c (write_variable): Use
8843         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
8845 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8847         * cpu-x86.md: Add unsigned variants of packd and packw.
8849         * mini-ops.h: Same.
8851         * mini-x86.h: Emit the right instruction for packd and packw.
8852         Add unsigned variants of packd and packw.
8854         * simd-intrinsics.c: Packd and packw were used in place of their
8855         unsigned variants. Change that.
8856         Add intrinsics for (Signed)PackWithSignedSaturation.
8858         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
8860 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8862         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
8864 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8866         * mini-ops.h: Remove dword packed add/sub with saturation ops.
8868         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
8870         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
8871         sse instructions.
8873         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
8875 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8877         * method-to-ir.c, mini.c: Special casing for the synchronized
8878         wrapper for the ldtoken+GetTypeFromHandle case.
8880 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
8882         * mini.c (mono_replace_ins): Move this to branch-opts.c.
8884         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
8885         created/split bblocks.
8887 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8889         * mini-ops.h: Add packed signed mul high.
8890         
8891         * cpu-x86.md: Same.
8893         * mini-x86.c (mono_arch_output_basic_block): Same.
8895         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
8897         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
8899 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8901         * basic-simd.cs: Tests for Vector16sb.
8903 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
8905         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
8907 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8909         * mini-ops.h: Add packed signed min, max and compare greater.
8910         
8911         * cpu-x86.md: Same.
8913         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
8914         saturation.
8916         * simd-methods.h: Add CompareGreaterThan.
8918         * simd-methods.h: Remove CompareEquals.
8920         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
8922         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
8924         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
8925         CompareEqual.
8927 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8929         * basic-simd.cs: Fix tests due to change in the API.
8931 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8933         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
8935 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8937         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
8939         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
8940         inst_offset as this has invalid values for LDADDR.
8942 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8944         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
8946         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
8948 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8950         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
8951         for accessing field->data.
8953 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8955         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
8957 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8959         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
8961         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
8963 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8965         * dominators.c (mono_compute_natural_loops): Allocate GList enties
8966         from the cfg mempool.
8968 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
8970         * basic-simd.cs: Tests for new methods in Vector8us.
8972 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
8974         * mini-ops.h: Add multiply and store high.
8975         
8976         * cpu-x86.md: Same.
8978         * mini-x86.c (mono_arch_output_basic_block): Same.
8980         * simd-methods.h: Same.
8982         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
8983         and CompareEqual.
8985 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8987         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
8988         mono_class_setup_vtable ().
8990         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
8991         mono_class_get_vtable_entry () for accessing klass->vtable.
8993         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
8995         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
8996         found.
8998         * method-to-ir.c (mono_save_token_info): Don't save references made from
8999         wrappers.
9001         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
9002         of generic instances.
9004         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
9006 2008-10-19  Mark Probst  <mark.probst@gmail.com>
9008         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
9009         OP_JMP depends on the method signature.  Calculate it properly.
9011 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9012         
9013         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
9014         called directly.
9016         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
9017         instances.
9018         (emit_extra_methods): Add another table mapping method indexes to 
9019         offsets in the extra_method_info table.
9021         * mini.h: Bump AOT file format version.
9022         
9023         * aot-runtime.c: Merge most of the code from mono_aot_get_method
9024         and mono_aot_get_method_from_token () into one function.
9026 2008-10-19  Mark Probst  <mark.probst@gmail.com>
9028         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
9029         separate counter.
9031 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
9033         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
9034         methods.
9036         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
9037         disable_aot.
9039         * mini.c (mono_patch_info_equal): Compare the generic context as well.
9041         * mini.h: Bump aot file format version.
9043         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
9044         AOT file can contain native code for methods which are not in the METHOD
9045         table. Generate code for non-sharable generic instances of generic methods
9046         found in the METHODSPEC table.
9047         
9048         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
9049         encoding generic type handles.
9051         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
9052         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
9054         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
9055         macros + MONO_ADD_INS.
9057         * mini.c (mono_jump_info_token_new2): New function which takes a generic
9058         context as well.
9060         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
9062         * mini.h: Bump aot file format version.
9064         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
9066 2008-10-17  Mark Probst  <mark.probst@gmail.com>
9068         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
9069         platforms, with definable stack alignment value.  Set to 16 now
9070         for all platforms.
9072         * mini.c, mini.h, driver.c: Command line option for disabling
9073         stack alignment.
9075 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
9077         * basic-simd.cs: Tests for new methods in Vector4ui.
9079 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
9081         * mini-ops.h: Add packed int shuffle.
9082         
9083         * cpu-x86.md: Same.
9085         * mini-x86.c (mono_arch_output_basic_block): Same.
9087         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
9088         extract mask, max, min, shuffle.
9090         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
9092 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
9094         * basic-simd.cs: Tests for new methods in Vector8us.
9096 2008-10-17  Mark Probst  <mark.probst@gmail.com>
9098         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
9099         RuntimeTypeHandle, not a TypedReference.
9101 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
9103         * simd-intrinsics.c: remove relocations.
9105 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
9107         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
9108         optimizations from the x86 backend.
9110 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
9112         * simd-methods.h, simd-intrinsics.c: debloat method names and
9113         prepare for no relocations.
9115 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9117         * mini-ops.h: Add packed min/equal and sum of absolute differences.
9118         
9119         * cpu-x86.md: Same.
9121         * mini-x86.c (mono_arch_output_basic_block): Same.
9123         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
9124         extract mask, max, min and sum of absolute differences.
9126         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
9127         method name.
9129 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9131         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
9132         Renamed one test for consistency.
9134 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9136         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
9137         fix to the code that deal with other blocks.
9139 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9141         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
9143 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9145         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
9146         that deals with vreg interference. Explicitly check for OP_LDADDR to be
9147         able to process the source reg.
9149 2008-10-16  Martin Baulig  <martin@ximian.com>
9151         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
9153         * inssel.brg: Add `OP_HARD_NOP'.
9155         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
9157         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
9158         `OP_HARD_NOP' instruction when running inside the debugger.
9160         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
9161         `OP_HARD_NOP' instruction when running inside the debugger.
9163 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9165         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
9166         now works. The issue with the regalloc tripping up no longer
9167         happens.
9169         * simd-intrinsics.c (load_simd_vreg): Same.
9171 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9172         
9173         * basic-simd.cs: Tests for new Vector8ui methods.
9175 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9177         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
9178         only for type. This fixes crashes where MonoInst::klass is checked
9179         for ops of type != VTYPE or OBJ.
9181         * simd-intrinsics.c (load_simd_vreg): Same.
9183 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9185         * mini-ops.h: Add ops for packed shuffle/max/avg and
9186         extract mask.
9187         
9188         * cpu-x86.md: Same.
9190         * mini-x86.c (mono_arch_output_basic_block): Same.
9192         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
9193         extract mask.
9195         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
9196         to emit extract mask op.
9198         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
9199         to emit word shuffles.
9201 2008-10-15  Mark Probst  <mark.probst@gmail.com>
9203         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
9204         the largest alignment needed by a variable, but at least
9205         sizeof(gpointer).
9207 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9209         * basic-simd.cs: Tests for the fixes in the last commit.
9211 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9213         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
9214         no longer handles STACK_PTR input.
9216         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
9218         * simd-intrinsics.c (load_simd_vreg): New function that works like 
9219         get_simd_vreg   but handles STACK_PTR input.
9221         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
9222         as the input can be an arbitrary pointer.
9224         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
9225         LDADDR local optimization directly otherwise use a store op.
9227 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9229         * basic-simd.cs: Tests for dup low and dup high.
9231 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9233         * mini-ops.h: Add dup low and dup high ops.
9234         
9235         * cpu-x86.md: Same.
9237         * mini-x86.c (mono_arch_output_basic_block): Same.
9239         * simd-intrinsics.c (vector4f_intrinsics): Same.
9241 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
9243         * basic-simd.cs: Tests for recently added functionality.
9245 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
9247         * mini-ops.h: Add remaining sse1 fp ops.
9248         
9249         * cpu-x86.md: Add remaining sse1 fp ops.
9251         * mini-x86.c (mono_arch_output_basic_block): Same.
9253         * mini.h: Add enum for simd FP compare conditions.
9255         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
9257         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
9258         so the backed can generate the appropriate op.
9260 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
9261         This patch squeese one more byte from the SimdIntrinsc struct.
9263         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
9264         a a shift amount intead of simply or'ing it.
9266         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
9268         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
9269         byte so we can have an aditional flags field without increasing struct size.
9271         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
9272         against the simd_supported_versions bitmask.
9274         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
9276 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
9278         * mini.c: remove rawbuffer code (the only use here is unsafe because
9279         it takes locks during signal handling and the kernel now provides much
9280         better info in proc/pid/smaps these days).
9282 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9284         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
9285         OP_X86_PUSH_OBJ. Fixes #434620.
9287         * objects.cs: Add a test.
9288         
9289 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
9291         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
9292         that the packuswb/packusdw don't work with unsigned numbers for what
9293         would be negative numbers in signed format.
9295         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
9296         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
9298         * mini-ops.h: Add doubleword forms of many ops and packing ones.
9300         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
9302         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
9304         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
9306         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
9307         add more ops.
9309         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
9310         version as the enum in mini.h.
9312         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
9313         for sse3 ops, check the simd_version field if present. This way the code
9314         works with all versions of sse.
9316 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9318         * simd-intrinsics.c: Fixed intrinsic name typo.
9320         * mini.h: Added missing simd exported function.
9322         * basic-simd.cs: Added tests for Vector4ui.
9323         Fixed broken test for Vector16b.
9325 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9327         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
9328         the max length to 64.
9330 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9332         * method-to-ir.c: Only do the fast virtual generic method call for
9333         non-wrapper methods.
9335         * mini.h, mini-trampolines.c: The new generic virtual remoting
9336         trampoline handles virtual method calls via the vtable (as done by
9337         the fast virtual generic method calls) to remoting proxies.
9339         * mini.c (mono_jit_create_remoting_trampoline): For generic
9340         methods reate a generic virtual remoting trampoline.
9342         * mini-amd64.h: Enable fast virtual generic method calls again.
9344 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9346         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
9347         restore registers when doing tail calls.
9349 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9351         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
9352         Vector4ui.
9354 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9356         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
9358 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9360         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
9362 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9364         * basic-simd.cs: Retrofit for API changes.
9366 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9368         * mini-ppc.c: Handle integer stack arguments for tail calls.
9370 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9372         * optflags-def.h: Removed sse3 optimization.
9374         * driver.c: Same.
9376         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
9377         sse3.
9379         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
9381         * mini.h: Added enumeration with simd versions.
9383         * simd-intrinsics.c (emit_intrinsics): Use the new static var
9384         for detecting SSE3.
9386         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
9388         * mini.c (mini_init): Call mono_simd_intrinsics_init.
9390 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9392         * basic-simd.cs: Added tests for Vector8u and Vector16u.
9394         * basic-simd.cs: Fixed test naming.
9396 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9398         * mini-ops.h: Added ops for packed and saturated math, shifts
9399         and packing/unpacking.
9401         * cpu-x86.md: Added descriptors for the above ops.
9403         * mini-x86.c: Added code to emmit the above ops.
9405         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
9407 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9409         * aot-compiler.c (compile_method): Enable AOT for generic code.
9411         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
9413 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
9415         * mini.c: add a workaround for a common screwup that ends up blamed
9416         to mono (other processes blocking signal delivery).
9418 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9420         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
9421         in the LDFLD/STFLD opcodes. Fixes #432673.
9423         * iltests.il.in: Add a new test.
9425 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
9427         * mini-arm.c: attach the thread in unmanaged->managed transitions
9428         using delegates (bug #433148).
9430 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
9432        * basic-simd.cs: Use new ShuffleSel constants.
9434 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
9436         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
9438         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
9439         only disable simd intrinsics if no sse2 is detected.
9441         * optflags-def.h: Added sse3.
9443         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
9444         is disabled.
9446 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9448         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
9449         when adding delegate-invoke wrappers.
9451 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9453         * Makefile.am: Reenable the simd tests.
9455 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9457         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
9458           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
9459           other vreg is allocated to that hreg.
9461         Contributed under MIT/X11 license.
9463 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9465         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
9466         yet checked in.
9468 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
9470         * basic-simd.cs: New test suite for SIMD intrinsics.
9472         * Makefile.am: Added new tests.
9474 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
9476         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
9478         * mini-ops.h: Same.
9480         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
9482         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
9483         using SSE2 aware opcodes.
9485         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
9486         is enabled, this code path is only reachable if conversion ops are emmited after
9487         mono_method_to_ir.
9489         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
9491         This optimization saves 6 bytes per conversion against the old version.
9493 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9495         * aot-compiler.c (compile_method): Don't skip methods referencing 
9496         generic methods without a corresponding entry in token_info_hash, since
9497         encode_method_ref () can handle all generic methods now.
9499         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
9500         generic context is set.
9501         
9502         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
9503         generic sharing of LDTOKEN.
9505 2008-10-06  Mark Probst  <mark.probst@gmail.com>
9507         * mini-amd64.h: Temporarily disabled fast virtual generic method
9508         calls because it breaks the System.Runtime.Remoting tests.
9510 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9512         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
9514         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
9515         so inlining actually works.
9516         (check_inline_caller_method_name_limit): Ditto.
9518 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
9520         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
9521         64 bit safety (from Olaf Hering and Andreas Farber).
9523 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9524         
9525         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
9526         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
9527         unused virtual call support code.
9529         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
9530         
9531         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
9532         which can't use aot trampolines.
9533         (decode_patch): Don't create aot trampolines for methods which can't use
9534         them.
9536         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
9537         use aot trampolines.
9539         * mini.h: Bump AOT image format version.
9540         
9541 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
9543         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
9544         to save_token_info () since cmethod is inflated for constrained calls.
9546         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
9548 2008-10-04  Andreas Farber  <andreas.faerber@web.de>
9550         * Makefile.am: Add build rules for ppc64.
9551         This avoids the build failing at pedump with unresolved symbols
9552         due to lack of arch_sources. Instead it will now fail earlier
9553         due to lack of cpu-ppc64.md.
9555         Contributed under MIT/X11 license.
9557 2008-10-04  Mark Probst  <mark.probst@gmail.com>
9559         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
9560         tail calls.
9562         * iltests.il.in: Add test case for tail call with many arguments.
9564 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9566         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
9567         to the fast virtual generic method code until the aot case is fixed.
9569 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9571         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
9573 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9575         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
9576         thunks.
9578 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9579         
9580         * simd-intrinsics.c: Forgot to add this one.
9582         * mini-codegen.c: Fix macro in case SIMD is not supported.
9584 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9585         
9586         This patch land initial JIT support for simd intrinsics.
9588         * mini-x86.h: Added new define to make --enable_minimal work on x86.
9590         * Makefile.am: Added simd-intrinsics.c
9592         * simd-intrinsics.c: New file with simd instrinsic related
9593         code.
9595         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
9597         * cpu-x86.md: Add simd related instructions.
9599         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
9601         * driver.c: Added two new --regression variants.
9603         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
9605         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
9607         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
9608         extract some complicated logic to helper functions.
9610         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
9612         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
9614         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
9615         the specialized simplification pass.
9617         * method-to-ir.c (mono_spill_global_vars): Use new macro.
9619         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
9621         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
9622         table.
9624         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
9625         if MONO_ARCH_NEED_SIMD_BANK is defined.
9627         * mini-ops.h: Added the new simd ops.
9629         * mini-x86.c: Added mono_arch_xregname.
9631         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
9633         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
9635         * mini-x86.h: Define simd related MONO_ARCH macros.
9637         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
9639         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
9641         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
9642         MONO_CLASS_IS_SIMD to deal with simd related IR.
9644         * mini.h (MonoInst): Added spill_var to the backend union.
9646         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
9648         * mini.h: Added forward declarations of the new simd fuctions.
9650         * optflags-def.h: Added new optimization names SIMD.
9652         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
9654         * regalloc.h: Added support for working with 3 register banks.
9656         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
9658         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
9660 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
9662         * mini-exceptions.c: remove 64 bit related ifdef clutter.
9664 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9666         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
9667         instead of one on 64 bit systems.
9669         * method-to-ir.c: Remove unused includes.
9671 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
9673         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
9674         cfg->used_int_regs, since the two are different on arm.
9676 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9678         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
9679         mono_method_get_vtable_index() to get the vtable index.
9681 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9683         * method-to-ir.c (mono_method_to_ir2): Don't create native
9684         wrappers for array methods, because they're never called (and if
9685         they were called they wouldn't work).
9687 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9689         * method-to-ir.c (mono_method_to_ir2): Array methods are
9690         special-cased and must not be invoked indirectly via the (M)RGCTX
9691         when generic sharing is turned on.  Fixes #431413.
9693 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9695         * method-to-ir.c: When generic sharing is active, call
9696         non-interface virtual generic methods via the standard trampoline.
9698         * mini-trampolines.c: Handle virtual generic shared methods.
9700         * mini.h, mini-x86.c, mini-x86.h: New argument for
9701         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
9702         method thunks and which is the trampoline to call if the lookup
9703         fails.  Enable the virtual generic method thunk for x86.
9705         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
9706         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
9707         argument but assert that it's NULL, because these archs don't yet
9708         implement the virtual generic method thunk.  Changes in the IMT
9709         thunk data structures.
9711 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9713         * aot-compiler.c (emit_globals): Avoid invalid characters in
9714         the static linking symbol.
9716         * objects.cs: Add a test for the range check optimization. Fix warnings.
9718         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
9719         optimization from the current JIT.
9721         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
9722         later in decompose_array_access_opts () to allow more optimizations.
9724         * method-to-ir.c (mono_handle_soft_float): Rename this to 
9725         mono_decompose_soft_float () for consistency.
9727         * mini-ops.h: Fix arguments of OP_STRLEN.
9729         * method-to-ir.c (save_cast_details): Extract the cast details saving code
9730         into a separate function.
9731         (reset_cast_details): Ditto.
9732         (handle_unbox): Save cast details. Fixes #431254.
9734         * method-to-ir.c: Remove some obsolete FIXMEs.
9736 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9738         * ir-emit.h (alloc_dreg): Write a warning before crashing.
9740 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9742         * mini-codegen.c: More work on macros to make them
9743         ready for multiple regbanks.
9745 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9747         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
9749         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
9751 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9753         * mini-codegen.c (mono_spillvar_offset): Proper support for
9754         multiple regbanks.
9756 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
9758         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
9759         the stack overflow changes.
9761 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9763         * mini-codegen.c: Make all bank macros depend on reg_bank.
9765         * mini-codegen.c (mono_local_regalloc): Make free mask
9766         initialization regbank aware.
9768 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9770         * mini-codegen.c (mono_local_regalloc): Extract callee
9771         mask selection to a function and make it regbank aware.
9773 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9775         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
9776         code to deal with many regbanks.
9778 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
9780         * mini-codegen.c: More fp->regbank changes.
9782 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
9784         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
9785         of a hardcoded constant.
9787 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
9789         * method-to-ir.c (type_from_stack_type): Fix typo.
9791 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9793         * mini-ia64.c (emit_move_return_value): Convert float return values to
9794         double.
9796         * objects.cs: Add a new test.
9797         
9798         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
9799         VARARG methods to fix an assert later.
9801         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
9802         end so it at least compiles.
9804 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
9806         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
9808 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
9810         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
9811         optimization to a new function (emit_optimized_ldloca_ir) and enable
9812         it for both ldloca and ldloca_s.
9814 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
9816         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
9817         gshared CASTCLASS code.
9819         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
9820         amd64, where the libc stack unwinder encounters stack frames referring to
9821         native code in unmapped memory.
9823         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
9824         sharing.
9826         * generics.cs: Add new test.
9828 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9830         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
9831         add a check that one of the ARM_FPU_ constants is defined.
9833         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
9834         
9835         * mini-exceptions.c: Fix build on non-altstack platforms.
9837         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
9838         sharing of vtypes.
9840         * ir-emit.h: Add a comment to NEW_PCONST.
9842         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
9844         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
9846         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
9847         after the changes to MonoJitDomainInfo.
9849 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9851         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
9853 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9855         * mini-ppc.c: Compiler warning fixes.
9857 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9859         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
9860         for pinvokes.
9862 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9864         * exceptions-ppc.c, mini-ppc.h: Compile
9865         mono_arch_handle_altstack_exception() on Darwin, too.
9867 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9869         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
9870         work on archs which don't have generic sharing implemented, only
9871         without the vtable_arg.
9873 2008-09-26  Mark Probst  <mark.probst@gmail.com>
9875         * mini.c: Added comment explaining why delegate ctor icall
9876         wrappers are compiled.
9878 2008-09-26  Mark Probst  <mark.probst@gmail.com>
9880         * mini.c: Don't produce trampolines to delegate ctor icall
9881         wrappers but compile them upfront.
9883 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9885         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
9886         runtime-set function when going back to managed code. Currently this
9887         is used to set back the protection on the soft ovf pages and/or to
9888         throw the stack overflow exception that happened in unmanaged code.
9890 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9892         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
9893         runtime-set function when going back to managed code. Currently this
9894         is used to set back the protection on the soft ovf pages and/or to
9895         throw the stack overflow exception that happened in unmanaged code.
9897 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
9899         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
9900         the support code for restoring stack protection after stack overflows
9901         that happen in unmanaged code. Don't set the exec permission on the
9902         soft overflow area.
9904 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
9906         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
9907         delegate->method_ptr is set. Fixes #428054.
9909 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9911         * tests.cs: Rename to ratests.cs.
9913         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
9914         emit_get_rgctx_... functions.
9916 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9918         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
9920 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9922         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
9923         before asserting that method is sharable.
9925 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9927         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
9928         whether method needs a static RGCTX wrapper used instead of
9929         complex conditions.
9931         * generic-sharing.c, mini.h: A few functions moved to
9932         metadata/generic-sharing.c.
9934 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9936         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
9937         Generic code sharing for value types, which essentially means
9938         treating value type methods like static methods.  The RGCTX is
9939         passed in the same way.
9941 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9943         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
9944         opcode when creating multi-dimensional arrays of open types.
9946         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
9947         open generic types.
9949         * generics.cs: Add a test.
9951         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
9953 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9955         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
9957         * mini.c (mini_method_compile): Set it when running under the debugger. 
9959         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
9960         vreg optimization if the flag is set.
9962         * driver.c (mono_main): Add --attach= option to pass options to
9963         the attach agent.
9965         * mini.c (sigquit_signal_handler): Start the attach agent.
9967         * ssapre.c: Disable this to save space since it is not yet ported to
9968         linear IR.
9970         * regalloc2.c: Disable this to save space.
9972         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
9974 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9976         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
9977         the -v option useful again.
9979 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9981         * mini-amd64.c (mono_arch_output_basic_block): Add support for
9982         --break-at-bb.
9984         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
9985         arrays of arrays. Fixes #428406.
9987         * method-to-ir.c (mini_emit_castclass): Ditto.
9989         * objects.cs: Add new test.
9990         
9991 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
9993         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
9994         was wrong at it choked against target_type_is_incompatible for byref types.
9996 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
9998         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
9999         places.
10001 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
10003         * mini-exceptions.c: update a few more exceptions-related counters.
10005 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
10007         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
10008         new functions to allocate from persistent mempools.
10010 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
10012         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
10013         multiple register banks in the future.
10015         * mini-codegen.c (mono_local_regalloc): Fix a warning.
10017 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
10019         * mini.c (type_to_eval_stack_type): Remove duplicated function.
10021         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
10023         * mini.h: Export type_to_eval_stack_type.
10025         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
10026         is only ins->klass of byref types.
10028 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10030         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
10031         (mini_emit_memcpy2): Ditto.
10033         * mini-amd64.c: Fix a warning.
10035 2008-09-21  Mark Probst  <mark.probst@gmail.com>
10037         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
10038         linking.
10040 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
10042         * method-to-ir.c: Extract stloc micro-optimization to a
10043         function and apply it to all cases.
10045 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10047         * method-to-ir.c: Don't fail generic code sharing in cases we
10048         already support.
10050 2008-09-18  Mark Probst  <mark.probst@gmail.com>
10052         * mini-ppc.c: Handle structs in tailcalls on Darwin.
10054 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
10056         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
10057         implementation.
10059 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
10061         * trace.c: make tracing more useful and correct, with per-thread
10062         id and indent info.
10064 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10066         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
10067         doing a method call and the argument is an R4.
10069 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
10071         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
10072         generic methods.
10074 2008-09-13  Mark Probst  <mark.probst@gmail.com>
10076         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
10078 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
10080         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
10081         (MONO_JUMP_TABLE_FROM_INS): Ditto.
10083 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
10085         * driver.c: Add a --agent argument (not supported yet) to load managed
10086         agent assemblies before loading the main assembly, similarly to how the
10087         Java VM handles agents.
10089 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10091         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
10092         function to do stack layout of local variables.
10094 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10096         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
10097         calculation.
10099 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
10101         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
10102         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
10103         JIT if DISABLE_JIT is defined.
10105         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
10106         defined.
10108 2008-09-10  Mark Probst  <mark.probst@gmail.com>
10110         * iltests.il.in: Disable the fconv test on PPC (the result is
10111         undefined according to ECMA).
10113 2008-09-10  Mark Probst  <mark.probst@gmail.com>
10115         * iltests.il.in: Enable tail call tests for PPC.
10117         * mini.h: Add variable for storing incoming valuetype argument
10118         addresses for tail calls.
10120         * mini-ppc.c: Implement valuetype arguments and return values for
10121         tailcalls on Linux.
10123 2008-09-09  Mark Probst  <mark.probst@gmail.com>
10125         * mini-ppc.c: Partially implement tail calls (struct arguments and
10126         return values not supported).
10128         * method-to-ir.c: Enable tail calls on PPC.
10130 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
10132         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
10133         runtime-invoke wrappers to work around the problem of them getting
10134         assigned to a random class.
10136         * aot-runtime.c (mono_aot_get_method): Ditto.
10137         
10138 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
10140         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
10141         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
10143 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10145         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
10146         until they're implemented properly.
10148         * exceptions-ppc.c: Use arch-independent exception-handling code
10149         instead of custom one.
10151         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
10152         for Linear IR.
10154         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
10156         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
10157         applies when __powerpc__ is defined.
10159 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
10161         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
10162         methods to their code to avoid computing the full name of wrappers and
10163         doing a lookup in a string hash table.
10165 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
10167         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
10168         we identify bblocks before method_to_ir () is ran.
10170         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
10171         Also avoid optimizing branches pointing to themselves.
10173         * mini.c (mini_method_compile): Ditto. Fixes #422947.
10175 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
10177         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
10179 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
10181         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
10182         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
10183         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
10184         'buf'.
10186         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
10187         jumped to the same entry in plt_jump_table.
10189 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
10191         * method-to-ir.c (initialize_array_data): Handle field with RVA from
10192         dynamic images.
10194 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10196         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
10197         other assignment can be if converted. Saves 1.5% on corlib size and fixes
10198         #421807.
10200 2008-08-29  Geoff Norton  <gnorton@novell.com>
10202         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
10203         segment, and doesn't properly handle .space as .text.  Fixes
10204         AOT Mach/ARM
10206 2008-08-29  Geoff Norton  <gnorton@novell.com>
10208         * mini.c: Disable the mach exception handler when running on 
10209         ARM
10211 2008-08-29  Geoff Norton  <gnorton@novell.com>
10213         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
10214         globals on Darwin/ARM
10216 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10218         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
10219         since too many things depend on it. Instead, call 
10220         mono_runtime_set_no_exec ().
10221         
10222         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
10223         the new JIT.
10225         * aot-compiler.c: Add an 'asm-only' AOT option.
10227         * mini.c: Avoid initializing the runtime when doing AOT compilation.
10228                 
10229         * aot-compiler.c (compile_method): Disable gshared support for now as it
10230         doesn't yet work.
10232 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
10234         * mini-amd64.h : Fix a compiler warning.
10236         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
10237           Changed to use a callback function to retrieve the unwind info.
10238           This avoids problems observed when code blocks were removed by
10239           unloading an app domain.
10241         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
10242           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
10243           to work properly.
10245         Contributed under MIT/X11 license.
10247 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
10249         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
10250           case to keep the stack aligned to 8.
10252         Contributed under MIT/X11 license.
10254 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
10256         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
10257         avoid repeated linear searches.
10259 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10261         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
10262         methods it can't handle.
10263         
10264         * aot-compiler.c (add_method): Avoid adding a method twice.
10265         (add_wrappers): Add runtime invoke wrappers for all methods.
10267         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
10268         function to create an aot-compatible version of this trampoline.
10270         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
10272 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10274         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
10276         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
10277         with a generic sharing failure.
10279         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
10281         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
10282         CEE_RETHROW. Fixes #419634.
10284         * mini.c (mono_method_to_ir): Ditto.
10286         * exceptions.cs: Add a new test.
10287         
10288         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
10289         to mono_type_stack_size_internal () since some callers might not pass in
10290         an rgctx.
10292         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
10293         instrument_prolog. Fixes #419878.
10295         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
10296         doubles in soft float mode volatile.
10298 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10300         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
10302         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
10303         to handle soft float correctly.
10305         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
10306         the fast path.
10308         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
10310         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
10311         to sp, since the generics catch code requires it.
10313         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
10314         copying.
10316         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
10317         mono_arch_emit_imt_argument ().
10319         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
10321         * mini-arm.c tramp-arm.c: Generic sharing updates.
10323 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10325         * mini-arm.c: Fix the arm build.
10327         * generic-sharing.c (mini_type_get_underlying_type): New helper function
10328         handling enums, generic instances and generic sharing.
10329         (mini_type_stack_size_full): Ditto.
10331         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
10332         
10333         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
10335         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
10337         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
10338         trampolines.
10340         * mini-arm.c: Various small generic sharing changes.
10342         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
10343         this for x86.
10344         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
10345         custom code.
10347         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
10348         helper function to return a generic class init trampoline.
10350         * method-to-ir.c mini.c: Use it.
10351         
10352         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
10353         arch-specfic function to return a generic class init trampoline.
10355         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
10356         the GENERIC_CLASS_INIT custom code.
10358         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
10359         a fatal error, not a sharing failure.
10361         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
10362         needed.
10364         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
10365         trampoline argument from MONO_ARCH_VTABLE_REG.
10367         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
10368         order of the arguments to the C trampoline: pass 'slot' as the trampoline
10369         argument, and pass the vtable in VTABLE_REG.
10371         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
10372         order of the arguments to the C trampoline: pass 'slot' as the trampoline
10373         argument, and pass the vtable in VTABLE_REG.
10374         (mono_arch_create_trampoline_code_full): Remove some special casing for
10375         the rgctx fetch trampoline.
10377         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
10378         Fixes #419273.
10380         * iltests.il: Add a test for it.
10382 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10384         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
10386         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
10387         no longer needed.
10389         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
10390         use mono_jit_info_table_find () to avoid recursion.
10391         (mono_delegate_trampoline): Add a sync wrapper here.
10393         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
10394         here.
10396         * mini.c (mono_method_to_ir): Ditto.
10397         
10398         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
10399         add_sync_wrapper argument. Don't add a sync wrapper here.
10400         (mono_create_jump_trampoline): Don't add a sync wrapper here.
10402         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
10403         
10404 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10406         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
10407           of nonvolatile registers back from MonoContext to CONTEXT.
10409         Contributed under MIT/X11 license.
10411 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10413         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
10414           arguments on Winx64 there are only 4 argument registers.  For this
10415           logic to work the last argument must be pulled from the stack.  
10417         Contributed under MIT/X11 license.
10419 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10421         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10423         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
10424         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
10425         encode/decode_method_ref ().
10427         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
10429         * aot-runtime.c (decode_patch): Ditto.  
10431         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
10432         MONO_PATCH_INFO_METHOD.
10434         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
10435         MonoGenericJitInfo.
10437         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
10438         MonoGenericJitInfo.
10440         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
10442         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
10443         one from the caller.
10445         * aot-runtime.c (decode_generic_inst): New function to decode and
10446         return a interned generic inst.
10447         (decode_klass_ref): Use it.
10448         (decode_method_ref): Ditto.
10450         * aot-compiler.c (emit_exception_debug_info): Save 
10451         jinfo->has_generic_jit_info too.
10453 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
10455         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
10457         * iltests.il.in: Add a test for fconv_to_i.
10459         * liveness.c: Disable the liveness2 pass for now to save space.
10461         * regalloc2.c: Include mempool-internals.h to fix warnings.
10463         * aot-compiler.c (encode_method_ref): Encode the context of generic
10464         instance methods.
10466         * aot-runtime.c (decode_method_ref): Inflate generic methods using
10467         the context saved in the aot file.
10469         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10471         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
10473         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
10474         volatile so they won't be optimized away.
10476 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
10478         * ssa.c:
10479         * ssa2.c:
10480         * mini.c:
10481         * regalloc2.c:
10482         * dominators.c: Remove duplicated functions that now are in
10483         mempool-internals.h.
10485 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
10487         * aot-compiler.c: Fix warnings.
10489         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
10491         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
10493         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
10494         as the patch type.
10496         * mini.c (mono_resolve_patch_target): Ditto.
10497         
10498         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
10499         (encode_klass_ref): Add support for encoding VARs/MVARs.
10501         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
10503         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
10504         the handling of the got entries into a separate 'decode_got_entry' function.
10505         Add support for RGCTX_FETCH.
10507         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
10508         clobbered by the trampoline code.
10510         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
10511         not clobbered by the indirect calling code.
10513 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
10515         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
10516         to fix the build.
10518 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
10520         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
10521         signature using the compilation mempool otherwise we would leak it.
10523 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
10525         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
10526         mono_emit_abs_call ().
10528         * patch-info.h: Add GENERIC_CLASS_INIT.
10530         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
10532         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
10533         as their target as a near call.
10535         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
10536         ABS handling code.
10537         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
10539         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
10540         call to a runtime function described by a patch.
10542         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
10543         mono_emit_abs_call, this has the advantage that the ABS handling code in
10544         mono_codegen () can handle them both, and can handle other stuff in the
10545         future without additional code.
10547         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
10548         entry.
10549         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
10550         abs addresses.
10552         * mini.h: Add missing bblock related prototypes.
10554         * mini.h (MonoCompile): Remove unused reverse_inst_list and
10555         reverse_inst_list_len fields.
10557         * mini.c: Refactor this file a bit by moving branch optimizations to 
10558         branch-opts.c.
10560         * method-to-ir.c: Merge generic sharing changes missed earlier.
10562         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
10564         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
10565         shared patches. Process METHODCONST as a shared patch.
10567         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
10568         as it crashes on the 2.0 mscorlib.
10570         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
10571         to cause crashes.
10572         
10573         * aot-compiler.c: Use is_plt_patch () in a few additional places.
10574         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
10575         by IMT.
10577         * aot-compiler.c: Reorganize the got handling code to be a bit more
10578         understandable.
10580 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
10582         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
10583         mono_patch_info_equals/hash, and use it to massively simplify
10584         get_plt_index ().
10586         * mini.c (mono_patch_info_hash): Simplify this and add support for
10587         more patch types.
10589         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
10591         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
10592         handling code, since an offset is not enough to identify a trampoline.
10594         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
10596 2008-08-17  Mark Probst  <mark.probst@gmail.com>
10598         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
10600         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
10602         * mini-ops.h: Argument and result types for OVF_CARRY ops.
10604         * decompose.c: PPC decompositions for various ops.
10606         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
10608 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
10610         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
10611         call the generic trampoline code using a call, instead of a jump, to
10612         remove some special casing from the generic trampoline code.
10614         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
10615         (mono_codegen): Ditto.
10617         * aot-compiler.c aot-runtime.c: Ditto.
10619         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
10621         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
10622         helper function to find the offset corresponding to a lazy fetch trampoline.
10624         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
10625         when doing generic sharing.
10627         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
10628         places.
10629         
10630         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
10631         mini-trampolines.c to be with the other trampoline creation functions.
10633         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
10634         as it is equal to method->signature in most cases, add a 
10635         mono_emit_method_call_full variant which takes a signature and an imt
10636         argument as well.
10638 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10640         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
10641         to this function, since it could be computed easily from the method 
10642         argument.
10643         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
10644         more.
10646         * method-to-ir.c mini.c: Remove references to 
10647         compile_generic_method_wo_context.
10649         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
10650         generic method calls.
10651         
10652         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
10653         dimensional non-szarrays.
10655         * mini.c (mini_init): Register mono_array_new_1.
10657         * jit-icalls.c (mono_array_new_1): New jit icall.
10659         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
10660         pointing to the method.
10662         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
10663         method addresses belonging to METHOD_JUMP patches in the 
10664         jump_target_got_slot_hash.
10665         (mono_aot_load_method): Ditto.
10667         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
10668         METHOD_JUMP patches.
10670         * mini.c (mini_create_jit_domain_info): New helper function which 
10671         initializes/frees domain->runtime_info.
10672         (mini_free_jit_domain_info): Ditto.
10673         (mini_init): Install the domain hook functions with the runtime.
10675         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
10676         information maintained by the JIT.
10678         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
10679         insertion into jump_table_hash into mono_codegen (), also implement proper
10680         locking.
10682         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
10683         tail calls, it is already done by the aot code.
10684         
10685         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
10686         mechanism on amd64.
10688         * iltests.il.in: Make the jmp test a bit more complex.
10690         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
10691         generic instances which doesn't have a token.
10693         * aot-runtime.c (decode_method_ref): Ditto.
10694         
10695         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
10696         can handle this case now.
10697         (handle_box): Ditto.
10699 2008-08-15  Geoff Norton  <gnorton@novell.com>
10701         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
10702         debugging check.
10704 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10706         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
10707         calling generic methods.
10709         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
10711         * aot-runtime.c (decode_patch_info): Ditto.
10713         * mini.c (mono_resolve_patch_target): Ditto.
10714         
10715         * patch-info.h: Add METHOD_RGCTX.
10717         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
10719 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
10721         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
10722         arguments in registers.
10724         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
10725         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
10727         * mini.c (mini_method_compile): Abort aot compilation for generic
10728         methods if generic sharing is disabled.
10729         
10730         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
10731         an mrgctx.
10733         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
10734         requiring an mrgctx.
10736         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
10737         store instructions when converting a vcall to a normal call.
10739         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
10740         mono_arch_find_jit_info.
10742 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
10744         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
10745         avoid calling mono_method_full_name () for every method even if the
10746         env var is not set.
10747         (check_inline_caller_method_name_limit): Ditto.
10749 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10751         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
10752         assemblies in one run.
10754         * aot-compiler.c (mono_compile_assembly): Only print out a count of
10755         skipped methods if it is not 0.
10757         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
10759 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
10761         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
10762           MONO_ARCH_HAVE_UNWIND_TABLE.
10764         Contributed under MIT/X11 license.
10766 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
10768         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
10769           from default optimizaton list on Winx64.
10771         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
10773         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
10774           the LMF from the MonoJitTlsData structure.
10776         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
10778         Contributed under MIT/X11 license.
10780 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10782         * mini.c (sigsegv_signal_handler): Fix the build.
10784         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
10785         assembly->aot_module.
10787         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
10788         hash table. This simplifies and speeds up a lot of code, and fixes support
10789         for .netmodules.
10791         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
10792         with the runtime.
10794         * mini-exceptions.c: Ditto.
10795         
10796         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
10797         'native_offset' argument, since these are computed in the 
10798         mono_find_jit_info () function.
10800         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
10801         is used by exceptions-ppc.c.
10803         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
10804         mono_arch_find_jit_info ().
10805         
10806         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
10807         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
10808         generic code in mini-exceptions.c.
10810 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
10812         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
10814         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
10815         
10816         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
10817         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
10818         called while holding the loader lock. Fixes #415608.
10819         (mono_aot_get_method_from_token_inner): Ditto.
10821 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
10823         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
10824         to reduce differences between this and the generic implementation in
10825         mini-exceptions.c.
10826         (ves_icall_get_frame_info): Ditto.
10828         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
10830         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
10831         longer neccesarry.
10833         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
10834         mono_arch_get_call_filter () and make it non-static, for consistency with the
10835         other architectures.
10837 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
10839         * mini.c:
10840         * local-propagation.c:
10841         * mini-x86.c: Correct the name of arch defines.
10843 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
10845         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
10846         NO_EMULATE_LONG_SHIFT_OPS define.
10848 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10850         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
10851         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
10853         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
10854         MACH fixes. Merged from the 2.0 branch.
10856         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
10858         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
10859         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
10861         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
10863         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
10864         mono_marshal_get_native_wrapper () signature changes.
10866 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
10868         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
10869         conversion bug under arm.
10871 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
10873         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
10875         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
10876         with overflow checking.
10878 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10880         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
10881         to the genmdesc.pl file
10883 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
10885         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
10886         arg_array in the soft-float versions of the LOAD/STORE macros.
10888         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
10889         implementation.
10891         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
10893 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
10895         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
10896         a float HFA. Fixes #413621.
10898 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
10900         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
10901         frame_size to args_size. Fixes build.
10903 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
10905         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
10906         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
10908         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
10909         the stack are not unaligned. Fixes #413247.
10910         
10911 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10913         * mini.c: update jitted methods performance counters.
10915 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
10917         * mini-exceptions.c: increase the exceptions thrown performance
10918         counter in mono_handle_exception ().
10920 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10922         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
10923         can work with netmodules.
10925 2008-07-28  Geoff Norton  <gnorton@novell.com>
10927         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
10928         regression tests.
10930 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
10932         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
10933         correct place.
10935 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
10937         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
10938           The float param registers and other param registers must be the 
10939           same index on Windows x64.
10941         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
10942           ArgValuetypeAddrInIReg argument case.  Setting the argument
10943           op to OP_VTARG_ADDR (OP_REGOFFSET)).
10945         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
10946           variable computed above as the copy length for arguments of storage
10947           type ArgValuetypeAddrInIReg.
10949         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
10950           ArgValuetypeAddrInIReg argument case.  This case will rely on
10951           mono_arch_emit_outarg_vt to emit the correct code later in the process.
10953         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
10954           a 32 byte stack allocation for all calls.  We will omit the adjustment for
10955           jump and tail call instructoins as they do not follow the typical call behavior.
10957         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
10958           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
10959           local variable and pass the local variable by reference to the called method.
10961         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
10962           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
10963           of a struct is passed in a register it must be saved with the other
10964           volatile argument on the stack.
10966         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
10967           frame pointer the stack adjustment value must be saved to the unwind 
10968           info structure.
10970         Contributed under MIT/X11 license.
10972 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
10974         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
10975         which got lost in the merge.
10977 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10979         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
10980         build.
10982         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
10983         
10984         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
10985         icalls, since they won't be patched.
10987         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
10988         different code sequence when running under valgrind to prevent some valgrind
10989         errors.
10991         * iltests.il.in: Add new regression test.
10993         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
10994         end with a throw.
10996         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
10997         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
10999         * iltests.il.in: Add new test.
11001         * aot-compiler.c: Fix some warnings.
11003         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
11004         Fixes #412494.
11006 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
11008         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
11009         (mini_usage_jitdeveloper): Add a missing --wapi option.
11011 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
11013         * mini-codegen.c: Simplify the is_fp macros.
11014         (free_up_ireg): Remove, use free_up_reg instead.
11015         (free_up_reg): Fix the fp case.
11017 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
11019         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
11020         lowered earlier.
11022         * exceptions-x86.c: Merge some changes which seemed to have got lost
11023         in the linear-ir merge.
11025         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
11027         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
11028         long vreg volatile even if the variable was already created.
11030         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
11031         volatile variables.
11033 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
11035         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
11037         * mini.c (mono_jit_compile_method_inner): Add support for 
11038         MONO_EXCEPTION_BAD_IMAGE.
11040         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
11041         mini_method_get_context () returns NULL. Fixes #356531.
11043         * mini.c (mono_method_to_ir): Ditto.
11044         
11045         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
11046         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
11048 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
11050         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
11051         in the LDFTN implementation.
11053 2008-07-25  Mark Probst  <mark.probst@gmail.com>
11055         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
11056         code, patch calls to icalls, too, even if they're not in the
11057         shared generic code hash.  Fixes #411962.
11059 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
11061         * cpu-x86.md: Increase the length of the fcall opcodes.
11063         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
11064         calls returning floats.
11066         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
11067         on NEWARR.
11068         
11069         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
11070         missed earlier.
11072         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
11073         into the domain->method_code_hash.
11075         * aot-compiler.c: Fix win32 build.
11077         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
11078         
11079         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
11080         gshared NEWARR implementation.
11082         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
11084         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
11085         can be used outside of method_to_ir.
11087         * mini.h (MonoCompile): Add arg_types field.
11089         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
11090         
11091         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
11092         the values of the local arg_array and param_types array.
11094 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
11096         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
11097         got accesses might only get generated later when NEWOBJ is decomposed.
11098         
11099         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
11100         looking up the native code of the target method when a delegate is called
11101         for the first time.
11103         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
11104         optimization.
11106         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
11108         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
11109         AOT work on platforms without a working dlsym implementation.
11111         * mini.h: Bump AOT image format version.
11112         
11113 2008-07-24  Mark Probst  <mark.probst@gmail.com>
11115         * mini-exceptions.c: Free a MonoType with
11116         mono_metadata_free_type() instead of g_free().
11118         * aot-runtime.c: Free a MonoType.
11120 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
11122         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
11123         optimization.
11125         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
11126         fp stack on x86.
11128 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
11129         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
11130         profiler hook.
11132 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
11134         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
11135         NEWOBJ calls on valuetypes.
11137         * iltests.il.in: Add new test.
11139         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
11141 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
11143         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
11144         is no longer needed.
11146         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
11147         non register sized integer arguments.
11148         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
11149         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
11150         emit_memcpy2 ().
11152         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
11153         CEE_MONO_RETOBJ.
11154         
11155         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
11156         two a binop with different sized arguments is emitted.
11158         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
11159         instruction in the ins==NULL case.
11161 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
11163         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
11165         * mini-x86.c: Fix osx build.
11167         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
11168         opcodes as well.
11170         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
11171         instruction for non int sized variables.
11173         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
11174         implementation.
11176 2008-07-23  Robert Jordan  <robertj@gmx.net>
11178         * method-to-ir.c: Fix MSVC build.
11180 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
11182         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
11183         a non int sized type, widen it to an int since newer versions of gcc seem to
11184         generate code which needs this.
11186         * ssa2.c abcremoval2.c: Fix warnings.
11188         * *: Merge the Linear IR branch.
11190         The original branch is at trunk/branches/vargaz/mini-linear-il, and
11191         the ChangeLog file there describes all the changes done over the years. 
11192         Further documentation can be found at www.mono-project.com/Linear_IL.
11194 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
11196         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
11197           The float param registers and other param registers must be the 
11198           same index on Windows x64.
11200         Contributed under MIT/X11 license.
11202 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
11204         * mini.c: Make the previous fix GC safe.
11206 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
11208         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
11210 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
11212         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
11213           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
11214           ArgValuetypeAddrInIReg instead.
11216         Contributed under MIT/X11 license.
11218 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
11220         * mini-codegen.c (get_register_spilling): Fix a warning.
11222 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
11224         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
11225         for types which the initialization fails. Raises the provided exception
11226         at the right stop after cleanup.
11228 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
11230         * aot-compiler.c: Free most of the memory allocated during compilation.
11232         * mini.c (mini_parse_debug_options): Fix a leak.
11233         
11234         * mini.c (mini_method_compile): Don't add the method to the jit info tables
11235         during aot compilation.
11237 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
11239         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
11240         it has too much register pressure.
11242 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
11244         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
11246 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
11248         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
11249         on x86.
11251         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
11252         on amd64 similar to the way it is done on arm.
11254         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
11256         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
11257         consistency, normalize error messages, avoid loading aot-only modules in
11258         normal mode.
11260         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
11261         for consistency.
11263         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
11265 2008-07-11  Martin Baulig  <martin@ximian.com>
11267         * debug-debugger.h
11268         (MonoDebuggerInfo): Add `interruption_request'.
11270 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
11272         * aot-compiler.c (emit_plt): Remove some dead code.
11274         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
11276         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
11277         return the plt info offset belonging to a given plt entry.
11279         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
11280         mono_aot_get_plt_info_offset.
11281         
11282         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
11283         similar to the amd64 code by makeing jumps through a separate jump table 
11284         instead of embedding the jump addresses into the code.
11286 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
11288         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
11289         method.
11291 2008-07-10  Martin Baulig  <martin@ximian.com>
11293         * mini.c (mini_method_compile): Disable generics sharing when
11294         running in the debugger.
11296 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
11298         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
11300         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
11301         the local register allocator from running out of registers on x86 when 
11302         using aot.
11304 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
11306         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
11307         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
11308         C4146.
11310         Contributed under MIT/X11 license.
11312 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
11314         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
11315         speed up the assembler.
11317 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
11319         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
11320         support.
11322         * mini.c: Move the soft float handling macros a bit earlier, add 
11323         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
11324         place.
11326         * mini.h: Add prototype for mono_arch_fixup_jinfo.
11328         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
11329         read-only to help catch code allocation requests.
11330         
11331         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
11332         and turn it off when using --aot-only or when compiling with --aot=full.
11334         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
11335         jump table for switches from the normal domain mempool, not the code
11336         manager.
11338         * mini-trampolines.c (get_unbox_trampoline): New function to return an
11339         unbox trampoline which handles aot-only mode too.
11341         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
11342         an AOTed unbox trampoline.
11344         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
11346 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
11348         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
11349         ""
11351         Contributed under MIT/X11 license.
11353 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
11355         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
11356           the unwind information for the method at the end of the allocated block.
11357           
11358         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
11359           MonoCompileArch to hold the unwind info for SEH on Winx64
11360         
11361         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
11362           frame pointer info for the method being compiled.
11363           
11364         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
11365           the call to mono_exception_from_token.
11366           
11367         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
11368           storing the method prolog information in a format that the Winx64 SEH can understand.  This
11369           information is stored a the end of the method block because it is all 32-bit offset based.
11371         Contributed under MIT/X11 license.
11373 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
11375         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
11377         * wapihandles.c: Fix warnings.
11379         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
11380         mode.
11382         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
11383         mono_jit_compile_method in aot-only mode since that calls the type 
11384         initializer.
11385         
11386         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
11387         get_delegate_invoke_impl in aot-only mode.
11389         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
11391 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
11393         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
11395         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
11396         is on by default.
11398         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
11400         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
11401         init trampoline from the AOT file as well.
11403         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
11404         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
11405         code.
11407         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
11408         mono_init.
11410         * exceptions-amd64.c: Add _full variants for the remaining exception code
11411         creation functions as well, allow emission of relocatable code, remove
11412         caching since that is now done by the caller.
11414         * mini-exceptions.c: Add _full variants for the remaining exception code
11415         creation functions as well, add aot-only support.
11417         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
11418         if we can determine a proper token for them.
11419         (add_wrappers): Add a few more wrappers.
11420         (emit_method_code): Remove some dead code.
11421         (emit_trampolines): Emit exception code too.
11423         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
11425         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
11426         mono_array_new_va which avoids varargs.
11428         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
11430         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
11431         mono_arch_create_specific_trampoline () in all places.
11433         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
11434         a bit so it can be used for other things as well.
11435         
11436         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
11437         on demand as well.
11439         * exceptions-amd64.c: Rename the caching from the exception code creation
11440         functions, it is done by the caller instead.
11441         
11442         * exceptions-amd64.c: Change the signature of the exception code creation 
11443         functions to allow the creation of relocatable code later.
11445         * mini-exceptions.c: Add a set of functions to query the various 
11446         runtime-generated exception functions.
11448         * mini.c mini-exceptions.c: Use the newly added functions instead of the
11449         mono_arch_.. () functions.
11450         
11451 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
11453         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
11455         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
11457         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
11458         (mini_get_vtable_trampoline): Ditto.
11460         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
11461         code in the AOT case by returning the code size and a list of relocations to
11462         the caller.
11464         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
11466 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
11468         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
11469           clean the stack.
11471         Contributed under MIT/X11 license.
11473 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
11475         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
11476         so the buffer size can be computed correctly. Fixes #404735.
11478         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
11479         normally as cfg->debug_info is already freed.
11481 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
11483         * mini-amd64.c: For calls returning vtypes in registers, don't store
11484         the return address on the stack, instead allocate a separate local for
11485         it. Fixes #404729.
11487 2008-07-05  Mark Probst  <mark.probst@gmail.com>
11489         * mini-trampolines.c, mini.h: Add an argument to
11490         mono_create_jit_trampoline_in_domain() for turning off the adding
11491         of the sync wrapper.
11493         * mini.c: Use the JIT trampoline without sync instead of
11494         ldftn_nosync in static RGCTX invoke wrappers so that the call can
11495         be patched.
11497 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11499         * driver.c: Turn on GSHARED optimization by default.
11501 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
11503         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
11504         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
11506         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
11507         create a variant of the generic trampoline code callable from AOTed trampolines.
11509         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
11510         trampoline code callable from AOTed trampolines.
11512         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
11514 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11516         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
11517         pass-through manner.
11519         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
11520         and don't fail sharing for them anymore.
11522         * mini-exceptions.c: Handle exceptions in shared generic methods.
11524         * generic-sharing.c: When checking the context of a generic
11525         method, also check its class's context.  Don't treat wrappers as
11526         sharable.
11528         * mini-trampolines.c: Some code factored out to
11529         metadata/generic-sharing.c.  Handle the MRGCTX case.
11531         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
11532         we must deal with the method being of another instantiation of the
11533         class.  Add static rgctx invoke wrappers to generic methods.
11535 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11537         * mini.c: Provide all jit infos of generic shared methods with a
11538         generic jit info.
11540         * mini-exceptions.c: Handle the new situation that a generic info
11541         might be available, but not info about the this/vtable/mrgctx
11542         variable.
11544 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11546         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
11547         generic methods.
11549 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
11551         * dominators.c (check_dominance_frontier): Fix a warning.
11553         * mini.h: Add some missing prototypes.
11555         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
11557         * driver.c (mono_jit_init_version): Correct the comments since the first
11558         argument should be the name of the root domain, not a filename.
11560         * aot-runtime.c (make_writable): Error out if this is called while running
11561         with --aot-only.
11562         (load_aot_module): Ditto.
11564         * aot-compiler.c: Really fix the computation of method indexes.
11566         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
11567         optimizations as this is no longer called frequently.
11569         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
11570         method and the invoke impl code and pass it to the delegate trampoline instead of
11571         just the delegate class.
11573 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
11575         * aot-compiler.c: Fixup the computation of method indexes.
11576         (add_wrappers): Create the base methods of the runtime invoke wrappers using
11577         the method builder infrastructure.
11579         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
11580         has no header.
11582         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
11583         mode, load the method right away instead of creating a trampoline.
11585         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
11587         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
11588         some checks a bit.
11590 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11592         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
11593         (mono_aot_load_method): Use method_index instead of method->token.
11595         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
11596         can handle icalls etc. properly.
11598         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
11600         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
11602         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
11603         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
11604         JIT_ICALL_ADDR patch type.
11606         * patch-info.h: Add JIT_ICALL_ADDR patch type.
11608         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
11609         request flag.
11610         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
11612         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
11614 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11616         * mini.c: Use domain->jit_code_hash_lock for controlling access to
11617         domain->jit_code_hash.
11619 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11621         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
11623 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11625         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
11626         get_this_arg_from_call, let it compute it when needed.
11628         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
11629         gsctx from code only when needed.
11631         * mini-trampolines.c (get_generic_context): Rename this to 
11632         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
11633         it can be called by the arch backends.
11635         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
11637 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
11639         * driver.c (mono_main): Add experimental --aot-only command line option.
11641         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
11642         set.
11644 2008-06-26  Kornel Pal  <kornelpal@gmail.com>
11646         * driver.c (DllMain): Remove mono_module_handle.
11648         Contributed under MIT/X11 license.
11650 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
11652         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
11653         for emitting methods which are not in the source assembly. Detect and report
11654         failure of assembling+linking.
11655         
11656         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
11658         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
11660 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
11662         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
11664 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11666         * mini.h: Remove some obsolete prototypes.
11668         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
11670 2008-06-24  Mark Probst  <mark.probst@gmail.com>
11672         * mini.c (get_object_generic_inst): Variable-sized arrays are not
11673         supported by Visual Studio, so use alloca().
11675 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
11677         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
11678         Fixes #402585.
11680 2008-06-23  Mark Probst  <mark.probst@gmail.com>
11682         * mini.c: Fail sharing of a generic method if it contains an open
11683         catch clause (because we don't pass MRGCTXs yet).
11685 2008-06-23  Mark Probst  <mark.probst@gmail.com>
11687         * mini.c: When compiling a method with generic sharing, insert the
11688         method instantiated with an all-Object generic context into the
11689         jit info table, instead of the context of the first instantiation
11690         of the method we happen to compile.
11692 2008-06-18  Martin Baulig  <martin@ximian.com>
11694         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
11695         `major_version' and `minor_version'.
11697 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11699         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
11700         mono_method_is_generic_sharable_impl() takes an additional
11701         argument specifying whether to treat type variables as reference
11702         types.
11704 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11706         * mini.h: Removed obsolete prototypes.
11708 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11710         * mini.c: Don't fail generic sharing for initobj and sizeof - we
11711         already handle them.
11713 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11715         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
11716         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
11717         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
11718         tramp-x86.c: Added a MonoGenericContext* argument to
11719         mono_arch_get_unbox_trampoline() so that it can call other
11720         functions which require it.
11722 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11724         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
11725         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
11726         mono_arch_get_this_arg_from_call() takes a
11727         MonoGenericSharingContext* as well.
11729 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11731         * mini.c: Factor out code for emitting unbox into emit_unbox() and
11732         implement generic sharing of unbox.
11734 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11736         * mini.c: Don't compute the vtable to determine whether a field is
11737         special static, because it might not work for open types.
11739 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11741         * mini.c: Removed the unused token_type and token_source arguments
11742         from get_runtime_generic_context_ptr().
11744 2008-06-17  Marek Habersack  <mhabersack@novell.com>
11746         * mini.c (ADD_BINOP): fix the build
11748 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
11750         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
11751         a widening op.
11753 2008-06-16  Mark Probst  <mark.probst@gmail.com>
11755         * mini.h: Removed class relations enum that's not used anymore.
11757 2008-06-16  Mark Probst  <mark.probst@gmail.com>
11759         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
11761         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
11762         the lazy fetch trampoline access code.
11764 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11766         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
11768 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11770         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
11772         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
11774         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
11776 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11778         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
11779         intrinsics.
11781         * mini-ops.h: Add MIN/MAX_UN opcodes.
11783         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
11784         intrinsics.
11786         * basic-math.cs: Add more min/max tests.
11788         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
11790 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11792         * mini.c: Small fix in the prologue of emit_castclass.
11794 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11796         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
11798         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
11799         do not work even for unsigned types. Fixes #400014.
11801         * basic-math.cs: Add regression tests for unsigned Min/Max.
11803 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11805         * mini.c: Added additional context_used argument to several
11806         functions, which will be needed for sharing generic methods.  Use
11807         GET_RGCTX macro wherever appropriate.  Declare only one
11808         context_used in mono_method_to_ir().
11810 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11812         * mini.c, generic-sharing.c: Removed generic class relations.
11814         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
11815         functions due to MRGCTX changes.
11817 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11819         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
11820         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
11821         with calculated IMT.
11823         * mini.c: Generic sharing of calls via generic interfaces.
11825         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
11826         generic method with non-constant MonoGenericContext*.  Instead,
11827         the context is taken out of the method itself.
11829 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11831         * mini.c: Generic sharing of ldvirtftn.
11833 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11835         * mini.c: Generic sharing of ldftn.
11837 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11839         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
11841 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11843         * mini.c: Generic sharing of the special case of ldtoken followed
11844         by a call to GetTypeFromHandle.
11846 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11848         * mini.c: Generic sharing of box for nullable types.
11850 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11852         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
11853         are passed on the stack. Fixes #324807.
11855 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
11857         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
11858         for the ArgValuetypeAddrInIReg case.
11860         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
11861         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
11863         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
11864         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
11865         local variable and pass the local variable by reference to the called method.
11866           
11867         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
11868         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
11870         Contributed under MIT/X11 license.
11872 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
11874         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
11876         * debug-mini.c (mono_debug_print_vars): Release memory after printing
11877         everything.
11879 2008-06-10  Martin Baulig  <martin@ximian.com>
11881         * debug-mini.c
11882         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
11884 2008-06-09  Kornel Pal  <kornelpal@gmail.com>
11886         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
11887         possible error when no arguments are passed.
11889         Contributed under MIT/X11 license.
11891 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
11893         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
11894         where the file name is NULL.
11896 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11898         * mini.c: Fix s390 build.
11900 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
11902         * trace.c (mono_trace_parse_options): Fix warnings.
11904         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
11906 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11908         * mini.c (remove_block_if_useless): Avoid printing the method name.
11909         
11910         * mini.c: Remove needless setting of ins->cil_code which is now done by 
11911         MONO_INST_NEW.
11913         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
11914         LMF. Not yet used.
11916         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
11917         translated code after it has been patched.
11919 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11921         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
11922         avoid problems during code patching on SMP systems.
11923         (emit_call): Avoid adding a patch info which is already added by 
11924         emit_call_body.
11925         (mono_arch_emit_exceptions): Ditto.
11927 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11929         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
11930         MONO_TYPE_ISSTRUCT already checks for it.
11932 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
11934         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
11935           structs with floats on Winx64 the float registers are not used.  
11936           The integer registers are always used..
11937         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
11938           only one register will be used and only if the size of the struct 
11939           is 1,2,4, or 8 bytes.
11941         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
11942           to work for Winx64.
11944         Contributed under MIT/X11 license.
11946 2008-06-05  Martin Baulig  <martin@ximian.com>
11948         * debug-debugger.c (debugger_lookup_class): Also call
11949         mono_class_setup_methods() here; we're only called from RTI.
11951 2008-06-05  Andreas Farber  <andreas.faerber@web.de>
11953         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
11954         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
11955         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
11956         Post-process object files and add dtrace-generated object, if necessary.
11958         Contributed under MIT/X11 license.
11960 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11962         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
11963         element class.
11965         * mini.c: Generic sharing for unbox.any and castclass.
11967 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11969         * mini.c: Ignore tailcall prefix in shared generic code and when
11970         doing calls which require a vtable/rgctx argument.
11972 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11974         * mini.c: Don't free the JIT info.
11976         * driver.c: Changes in the JIT info table testing code.
11978 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11980         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
11981         interruption. Fix some warnings.
11983         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
11984         interruption_checkpoint.
11986 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
11988         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
11989         from embedding applications.
11991 2008-06-02  William Holmes  <billholmes54@gmail.com>
11993         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
11994           reserving 32 bytes on the stack when making calls. 
11996         Contributed under MIT/X11 license.
11998 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
12000         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
12001         the linear IL branch.
12003         * driver.c: Print out more information for --version on arm.
12005 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
12007         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
12008         bb_exit instead, since out of line bblocks might not actually be emitted
12009         out-of-line.
12010         
12011         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
12012         maximum epilog size for out of line bblocks if tracing is enabled.
12014         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
12016 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
12018         * arrays.cs: Regression tests for allocating arrays with negative sizes.
12020 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
12022         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
12023         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
12024         opcodes.
12026 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12028         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
12029         the 'value' to store is a constant.
12031         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
12033         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
12034         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
12036 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12038         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
12039         for accessing method->generic_container.
12041 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12043         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
12044         
12045         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
12047         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
12049         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
12050         fails.
12052 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12054         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
12056         * mini.c: Handle the case when mono_class_vtable () fails.
12058 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12059         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
12060         the stat profiler.
12062 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12064         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
12065         together with domain sharing.
12067 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12069         * mini.c: Treat callvirts to final methods like non-virtual calls
12070         when doing generic sharing, i.e. look them up in the runtime
12071         generic context.
12073 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12075         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
12076         with computed types (for generic sharing).
12078         * mini.c: Generic sharing for mkrefany and refanyval.
12080 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12082         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
12083         possible.
12085         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
12086         the generic sharing code.
12087         
12088         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
12089         when needed.
12091 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12093         * mini.h: Remove the declaration of mono_aot_init_vtable ().
12095 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
12097         * driver.c: updated copyright date
12099 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12101         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
12102         needed.
12104 2008-05-19  Martin Baulig  <martin@ximian.com>
12106         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
12107         pointing to the new `_mono_debug_using_mono_debugger' variable.
12109         * driver.c
12110         (mono_main): Check mono_debug_using_mono_debugger() rather than
12111         the `MONO_INSIDE_MDB' environment variable to check whether we're
12112         inside the debugger.
12114 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
12116         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
12117         argument.
12119 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
12121         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
12123         * mini.c: Added mini_assembly_can_skip_verification. This
12124         function checks if the assembly requested to skip verification. 
12125         Fixes part of #387274.
12127 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12129         * mini.c (mini_get_method): Disable the check for open generic classes when
12130         using generic sharing.
12132         * generics.cs: Add a test for #387034.
12134         * mini.c (mini_get_method): Check whenever the method class is an open generic
12135         type, and return NULL in that case, causing a verification error. Fixes
12136         #384123.
12138 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
12140         * driver.c (mono_main): Revert r102623. The right
12141         thing to do is to enable the verifier under verifiable
12142         unless a --security flag was passed.
12144         We need this non-trivial behavior for --verify-all otherwise
12145         mcs-compileall won't be able to use it. As it needs everything to
12146         be verified under validil.
12148 2008-05-06  Martin Baulig  <martin@ximian.com>
12150         Fix #383749.
12152         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
12153         (mono_debugger_thread_cleanup): Likewise.
12154         (mono_debugger_extended_notification): Likewise.
12156 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
12158         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
12159         against both inflated and non-inflated methods. We need to check against the
12160         generic definition for cases where the instantiated method is not visible.
12161         We need to check against the inflated types for cases where the instantiation
12162         changes any super type. This fixes #382986.
12164         Note that this doesn't need to be applied to other parts of mono_method_to_ir
12165         that check for visibiliy as generic params only appears as the type subject
12166         of tokens on call opcodes. Field manipulation and ldftn must always
12167         target an exact type.
12169 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
12171         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
12172         if no related --security flag is passed.
12174 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
12176         * mini-arch.h: Prepare support for ppc64.
12178         Contributed under MIT/X11 license.
12180 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
12182         * aot-runtime.c: Prepare support for ppc64.
12184         Contributed under MIT/X11 license.
12186 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
12188         * mini-ops.h: Prepare support for ppc64.
12190         Contributed under MIT/X11 license.
12192 2008-05-04  Andreas Farber  <andreas.faerber@web.de>
12194         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
12196         Contributed under MIT/X11 license.
12198 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
12200         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
12201         assemblies, since aot_name is not a full path, causing us to load MS.NET 
12202         assemblies on windows.
12204 ?2008-04-28  Kornel Pal  <kornelpal@gmail.com>
12206         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
12207         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
12208         * main.c: Use UTF-8 encoded command line instead of Windows default code
12209         page on Windows to support Unicode.
12210         * driver.c (DllMain): New function for mixed-mode assembly support.
12211         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
12212         export __stdcall functions without decoration.
12214         Contributed under MIT/X11 license.
12216 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12218         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
12219         saving it very early.
12221 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12223         * mini.h, mini.c: Lots of code for accessing the old RGCTX
12224         deleted.  The only way to access the new RGCTX is via the
12225         trampline.
12227         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
12228         vtable instead of the RGCTX to static methods.
12230         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
12231         accessing the new RGCTX.
12233         * generic-sharing.c: There is no separation between self, type
12234         arguments and other types in the RGCTX anymore.
12236 2008-04-25  Jonathan Chambers <joncham@gmail.com>
12238         * mini-amd64.c (add_general): Remove previous stack adjustment.
12239         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
12240         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
12241         for 32 bytes of stack space reserved for all calls.
12242         
12243         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
12244         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
12245         adjustment.
12246         
12247         Code contributed under MIT/X11 license.
12249 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
12251         * mini.c (mini_method_verify): Only verify non-inflated methods, check
12252         against the root definition, peeling out method and type instantiations.
12253         Cache verify success results, code that fails verification is still
12254         checked multiple times.
12256 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12258         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
12260 2008-04-23  Jonathan Chambers <joncham@gmail.com>
12262         * mini-amd64.c (add_general): Always increment stack on Win64.
12263         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
12264         on Win64.
12265         
12266         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
12267         stack based argument handling on Win64.
12268         
12269         Code contributed under MIT/X11 license.
12271 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
12273         * Makefile.am (version.h): Add support for git-svn.
12275 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12277         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
12278         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
12279         avoiding allocations and libc functions which might deadlock.
12280         
12281         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
12282         'no-gdb-backtrace' option is set.
12284         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
12286         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
12288 2008-04-21  Martin Baulig  <martin@ximian.com>
12290         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
12291         and `get_lmf_addr'; `notification_address' is no longer a pointer.
12293 2008-04-21  Martin Baulig  <martin@ximian.com>
12295         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
12296         `thread_vtable', `event_handler_ptr' and `event_handler'.
12298 2008-04-21  Martin Baulig  <martin@ximian.com>
12300         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
12301         allows delayed initialization of the `executable_code_buffer' when
12302         attaching.
12304 2008-04-21  Martin Baulig  <martin@ximian.com>
12306         * mini.h (mono_debugger_create_notification_function): Removed.
12307         * tramp-*.c (mono_debugger_create_notification_function): Removed.
12309         * mdb-debug-info64.s
12310         (MONO_DEBUGGER__notification_function): Added this in the .text section.
12312         * mdb-debug-info32.s
12313         (MONO_DEBUGGER__notification_function): Added this in the .text section.
12315         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
12316         currently only works on x86 and x86_64, so don't create it on ppc.
12318 2008-04-21  Martin Baulig  <martin@ximian.com>
12320         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
12322         * mini.c
12323         (mini_method_compile): In the fp elimination check, check
12324         `debug_options.mdb_optimizations' in addition to
12325         mono_debug_using_mono_debugger().       
12327         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
12328         disable some JIT optimizations which are only disabled when
12329         running inside the debugger.
12330         Added `--help-debug' option to describe the debugging options.
12331         (parse_debug_options): New static function to parse the `--debug'
12332         options, so we can easily add more stuff in future.
12334 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
12336         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
12337         the method has no body.
12339 2008-04-19  Jonathan Chambers <joncham@gmail.com>
12341         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
12342         assembly is not allowed in MSVC 64-bit compiler. 
12343         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
12344         as we get floating point exceptions everywhere.
12345         
12346         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
12347         correctly align arguments for call to throw_exception.
12348         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
12349         
12350         Code contributed under MIT/X11 license.
12352 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
12354         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
12356 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
12358         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
12360         * mini-amd64.c (NEW_INS): Set cil_code.
12362         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
12363         from mini-amd64.c so all debugger related logic is in one place.
12365         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
12366         later won't have a random ip assigned to them.
12368 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
12370         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
12371         the arch specific function initializes code_size.
12372         (mono_create_delegate_trampoline): Ditto.
12374         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
12375         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
12376         platforms.
12378         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
12379         running under the debugger.
12381         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
12382         debugger.
12384         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
12385         debugger. Also move the disabling of optimizations here from driver.c.
12386         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
12387         debugger.
12389         * mini.h (MonoCompile): Add a few new flags.
12391 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
12393         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
12394         so the cil_code field of created MonoInst's is properly set.
12395         (mini_select_instructions): Ditto.
12397         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
12398         (MONO_INST_NEW_CALL): Ditto.
12400         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
12401         in many places so the ins->cil_code field is properly initialized.
12403         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
12404         place.
12406 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12408         * mini.c (mini_method_compile): Print a different message when compiling a 
12409         shared method.
12410         
12411         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
12412         > 1.
12414 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
12416         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
12417         SSE2 instructions.
12419         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
12420         
12421 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
12423         * mini.c (handle_stack_args): Make this return void since its return value was
12424         never used. Also set cfg->unverifiable for invalid IL instead of calling
12425         G_BREAKPOINT ().
12427 2008-04-10  Mark Probst  <mark.probst@gmail.com>
12429         * mini.c: Make sure "this" is live in catch clauses with type
12430         variables in shared generic code.
12432 2008-04-08  Mark Probst  <mark.probst@gmail.com>
12434         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
12435         generic_class_is_reference_type() to ensure the proper behaviour
12436         when sharing generic code and the type in question is a type
12437         argument.
12439 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12441         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
12442         race conditions when printing thread dumps. Fixes #377738.
12444 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
12445         
12446         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
12447         shows up when both MonoInst arguments can cause aliasig.
12448         There is likely no way in the current JIT to trigger this problem, but
12449         it showed up in the development of generics sharing, when in a new
12450         opcode both args of an OP_GROUP can be aliases (addresses of a local).
12451         When the generics sharing code will be committed, its tests will be
12452         valid also for this bug.
12454 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12456         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
12457         PATCH_INFO_METHOD.
12459         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
12460         NULL.
12462 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
12464         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
12465         use a more detailed exception message for InvalidCastException.
12467         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
12469         * driver.c (mono_main): Add --debug=casts option to turn on better 
12470         InvalidCastException message details.
12472         * mini.c (mini_get_debug_options): New helper function to return the address of
12473         the debug_options variable.
12475         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
12476         the jit_tls TLS variable.
12478         * mini.c (mono_jit_tls): New TLS variable.
12480         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
12481         option is used.
12483 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
12485         * mini.h: Removed verifer related stuff. This code was moved to verify.c
12487         * mini.c: Removed verifer related stuff, code moved to verify.c.
12489         * driver.c: Using code from verify.c instead of mini.c.
12491 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
12493         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
12494         longer valid.
12496 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
12498         * mini.c (check_for_method_verify): Enabling verification of
12499         corlib if mono_verify_all is set. Bugs in the verifier preventing that
12500         have been fixed.
12502 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
12504         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
12505         caller saved registers as well.
12506         
12507         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
12508         saved registers as well.
12510 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
12512         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
12514         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
12515         code.
12517 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
12519         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
12520         to get_call_info.
12521         (get_call_info): Take a gsctx argument instead of 'cfg'.
12523 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12525         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
12526         mono_verify_all is set.
12528         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
12530         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
12532 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12534         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
12535         an exception.
12537         * driver.c mini.c mini.h: Add a --verify-all development option to test the
12538         verifier and the code generated by the compiler.
12540 2008-03-25  Mark Probst  <mark.probst@gmail.com>
12542         * mini.c: Generic sharing of the non-nullable case of the box
12543         instruction.
12545 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
12547         * inssel.brg: Fix the build.
12549         * iltests.il.in: Add a test for lconv.ovf.u8.un.
12551 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
12553         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
12554         Array:Address. Fixes #372410.
12556         * iltests.il.in: New tests for readonly prefix.
12558 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
12560         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
12561         mini-trampolines.c.
12563         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
12564         mini-exceptions.c.
12566         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
12567         
12568         * mini.c (mono_decompose_op_imm): New helper function.
12570         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
12571         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
12572         return value.
12574         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
12575         mono_arch_output_basic_block. Fix warnings.
12577         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
12578         for now.
12580 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
12582         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
12583         since the extra frame is now detected automatically inside the loop.
12585         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
12586         opts which are now in mono_peephole_ins ().
12587         
12588         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
12590         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
12591         frames and skip duplicate managed-to-native frames. Fixes #367665.
12593         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
12594         opts which are now in mono_peephole_ins ().
12595         (mono_arch_peephole_pass_2): Ditto.
12597         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
12599         * mini-codegen.c (mono_peephole_ins): New helper function containing the
12600         arch independent peephole optimizations.
12602         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
12603         opts which are now in mono_peephole_ins ().
12605         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
12606         
12607         * mini-s390.c (mono_arch_output_basic_block): Fix build.
12609         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
12610         pattern.
12612         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
12613         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
12614         opcode. 
12616 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
12618         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
12619         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
12620         return value.
12622         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
12623         mono_arch_output_basic_block. Fix warnings.
12625 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
12627         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
12628         conv.ovf.u.un.
12630 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
12632         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
12633         conv.ovf.u.un.
12635         * iltests.il: Add new tests.
12637 2008-03-20  Kornel Pal  <kornelpal@gmail.com>
12639         * mini.c: Removed Windows version macros.
12641 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12643         * generic-sharing.c: Put reflection types in the extensible part
12644         of the runtime generic context.
12646         * mini.c: Generic sharing of the GetTypeHandle special case of the
12647         ldtoken instruction.
12649 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
12651         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
12653         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
12654         
12655         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
12656         consistency with the other version on the linear IR branch.
12658         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
12660         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
12662         * iltests.il.in: Add new tests.
12664 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
12666         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
12668         * iltests.il.in: Add new tests.
12670 2008-03-19  Mark Probst  <mark.probst@gmail.com>
12672         * mini.c: Two variables with the same name were declared in
12673         nesting contexts and one wasn't initialized.  Fixed.
12675 2008-03-19  Mark Probst  <mark.probst@gmail.com>
12677         * mini.c: Generic sharing of the initobj instruction.
12679 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12681         * mini.c: make the test to optimize ldtoken from typeof() more
12682         precise.
12684 2008-03-18  Mark Probst  <mark.probst@gmail.com>
12686         * mini.c: Generic sharing of the initobj instruction for reference
12687         types.
12689 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
12691         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
12692         the mono_breakpoint_clean_code() code to perform bound checks.
12694 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
12696         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
12697         mono_arch_patch_callsite() to include the start of the managed method
12698         to be able to perform bound checks.
12700 2008-03-17  Mark Probst  <mark.probst@gmail.com>
12702         * mini.c: Generic sharing for the isinst instruction.
12704 2008-03-17  Mark Probst  <mark.probst@gmail.com>
12706         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
12707         inssel-long32-mips.brg: Added opcodes for doing indirect calls
12708         with the runtime generic context argument.
12710         * mini.c: Share calls to several types of unsharable methods by
12711         putting the address of the method code in the runtime generic
12712         context and doing an indirect call.
12714         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
12715         to switches.
12717 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12719         * generic-sharing.c: Change due to a change in the runtime genric
12720         context API.
12722 2008-03-15  Martin Baulig  <martin@ximian.com>
12724         * tramp-x86.c
12725         (mono_arch_nullify_class_init_trampoline): Add call to
12726         mono_breakpoint_clean_code() to make things work when running
12727         inside the debugger.
12729         * tramp-amd64.c
12730         (mono_arch_nullify_class_init_trampoline): Add call to
12731         mono_breakpoint_clean_code() to make things work when running
12732         inside the debugger.
12734 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12736         * inssel-long.brg (reg): Fix 64 bit build.
12738 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12740         * mini.c, mini.h: Share static generic code by passing it an
12741         implicit argument pointing to the runtime generic context.
12743         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
12744         inssel-long32-mips.brg: New opcodes for calling shared static,
12745         which need to be passed the runtime generic context.
12747         * mini-amd64.c, mini-x86.c: Save the runtime generic context
12748         argument on the stack in the prologue if needed.  New function for
12749         finding the runtime generic context argument from the registers
12750         saved by the trampoline.
12752         * mini-amd64.h, mini-x86.h: Specify which register to use for the
12753         runtime generic context argument.
12755         * tramp-amd64.c: Also restore the register used for the runtime
12756         generic context argument.
12758         * mini-trampoline.c: Resolve shared static calls by consulting the
12759         runtime generic context via the new argument.
12761         * generic-sharing.c: Add an argument to sharability-checking
12762         functions that specifies whether type variables should be treated
12763         as sharable type arguments.
12765         * inssel-x86.brg: Removed a superfluous, buggy rule.
12767         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
12768         to switches.
12770 2008-03-14  Martin Baulig  <martin@ximian.com>
12772         * debug-debugger.c (main_thread_handler): Call
12773         mono_runtime_run_main() without sending any notifications.
12775         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
12777 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12779         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
12781 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12783         * tramp-x86.c: Fixed register restore offsets in the trampoline
12784         code for ECX and EDX.
12786 2008-03-12  Geoff Norton  <gnorton@novell.com>
12788         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
12789         different ucontext_t implementations.
12790         * exceptions-arm.c: Use the above defines to get exceptions working on 
12791         iPhone (based on a patch by Luke Howard lukeh@padl.com)
12792         * mini-arm.c: Implement iPhone icache support (based on a patch by
12793         Luke Howard lukeh@padl.com)
12795 2008-03-12  Mark Probst  <mark.probst@gmail.com>
12797         * mini.c: Enable generic sharing of calls to non-static
12798         non-interface non-generic non-value-type methods.
12800         * mini-trampolines.c: Resolve calls from shared generic code.
12802 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
12804         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
12806         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
12808 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
12810         * mini.c: some fixes for the AOT compiler.
12812 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12814         * cpu-amd64.md: Add clob:1 to some float opcodes.
12816 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
12818         * mini.h: Added MiniVerifierMode enumeration.
12820         * mini.c: Added mini_verifier_set_mode to control
12821         the usage of the new verifier.
12823         * mini.c (mono_method): Integrated the new verifier.
12825         * driver.c: Extended --security option with validil and
12826         verifiable options to activate the new verifier.
12828 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12830         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
12831         optimization to ctors taking 0 or 2 arguments too.
12833         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
12834         a bit.
12836         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
12838         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
12840 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12842         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
12843         non-aot case as well.
12845         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
12847         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
12848         changes.
12850         * aot-compiler.c (encode_patch): Ditto.
12852         * mini.h (G_MININT32): Fix the definition of this.
12854 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
12856         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
12858         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
12860 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12862         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
12863         methods returning vtypes in registers.
12864         (mono_arch_allocate_vars): Ditto.
12866         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
12868         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
12870         * generics.cs: Add a test from the linear IR branch.
12872         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
12874         * mini.c (inline_method): Cache failed inline attempts.
12876 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12878         * mini.c: For shared methods of generic classes put the location
12879         of "this" into the MonoGenericJitInfo.
12881         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
12882         register out of a MonoContext by register number.  Add the generic
12883         sharing context as an argument to mono_arch_find_this_argument().
12885         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
12886         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
12887         for new arch function.
12889         * mini-exception.c: Handle open exception clauses in shared
12890         generic code.
12892         * mini-trampolines.c: Supply additional argument to
12893         mono_arch_find_this_argument().
12895 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12897         * Makefile.am (regtests): Run the bench.exe tests last.
12899 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
12901         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
12902         a bit.
12904 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
12906         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
12907         with MS.
12909         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
12910         
12911         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
12913         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
12914         whose class has no cctor.
12916         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
12918 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
12920         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
12921         unverified.
12923 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
12925         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
12926         to be in sync with the code on the linear IR branch.
12928         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
12930         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
12932 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12934         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
12936         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
12938         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
12940         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
12942         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
12943         
12944         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
12945         body.
12947 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
12949         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
12950         OP_LOADR4_MEMBASE emission.
12952         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
12953         (mono_spillvar_offset_float): Ditto.
12955         * mini-mips.c (mono_arch_emit_prolog): Ditto.
12957         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
12958         emission.
12960         * basic-long.cs: Add regression tests for them.
12962         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
12963         use.
12964         (mono_arch_allocate_vars): Fix representation of single-precision float
12965         argument.
12966         (mono_arch_output_basic_block): Ditto.
12968         * inssel-mips.brg: Ditto, remove duplicate items.
12970         * mini-mips.c (emit_load_volatile_arguments): New function to handle
12971         arguments of tail calls as on other platforms.
12972         (mono_arch_output_basic_block): Handle tail calls.
12974         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
12975         register.
12977         * objects.cs (test_5_pass_static_struct): Add test for it.
12979         Contributed under MIT/X11 license.
12981 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12983         * Makefile.am: Use gmcs for compiling the regression tests.
12985         * *.2.cs *.2.il: Rename to *.cs and *.il.
12987 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
12989         * regalloc.h: Make the vassign array smaller.
12991         * mini.c (mini_method_compile): Remove an unused field in cfg.
12993         * mini-codegen.c: Add a bunch of micro optimizations.
12995 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12997         * regalloc.h: Remove some unused fields.
12999 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
13001         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
13003         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
13005 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13007         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
13009         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
13010         trampoline: Fetch an entry from the runtime generic context.  If
13011         it's NULL, jump to the actual trampoline to fill the runtime
13012         generic context.  Otherwise, return it.
13014         * mini.c: Call the lazy fetch trampoline to get entries out of the
13015         runtime generic context.
13017         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
13018         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
13019         tramp-sparc.c: Stubs for the lazy fetch trampoline.
13021 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13023         * mini.c: Fetch data out of the extensible part of the runtime
13024         generic context instead of calling a helper function.
13026         * generic-sharing.c: Some functions moved into
13027         metadata/generic-sharing.c.  Helper function for fetching other
13028         types now checks and asserts against extensible rgctx (just for
13029         debugging purposes - the helper function isn't called anymore
13030         unless for debugging).
13032 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
13034         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
13035         for tail calls up to the point that the tests in iltests.exe run. Also add a
13036         dummy CKFINITE implementation.
13037         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
13038         needed for trampoline LMF frames.
13040         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
13041         trampoline LMF frames.
13043 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
13045         * mini.c (inline_method): clean any pending loader error when inlining fail.
13046         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
13048 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
13050         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
13052         * aot-runtime.c (decode_patch_info): Ditto.
13054         * mini.c (mono_resolve_patch_target): Ditto.
13055         
13056         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
13057         icall wrappers.
13059         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
13060         
13061         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
13062         if it references an icall address.
13064 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13066         * cpu-s390x.md: Remove some more unused opcodes.
13067         
13068         * cpu-s390x.md: Remove some unused opcodes.
13070         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
13071         mono_op_imm_to_op ().
13073         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
13074         instead of a switch statement.
13075         
13076         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
13077         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
13079         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
13080         
13081         * mini-codegen.c: Remove unused mono_regstate2_... functions.
13083         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
13084         -1.
13086 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13088         * driver.c (mono_main): Improve error reporting when an assembly cannot be
13089         opened. Fixes #362607.
13091         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
13093         * iltests.il.in: Add a test for static methods in interfaces.
13095 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
13097         * genmdesc.c (build_table): Fix a crash on older glib versions.
13099         * cpu-sparc.md: Remove some unused opcodes.
13100         
13101         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
13102         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
13104         * cpu-amd64.md: Remove some unused opcodes.
13106         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
13107         like the other opcodes.
13109 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
13111         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
13113         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
13115         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
13116         variables 'cfg' instead of 'm' for consistency.
13118         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
13120         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
13121         argument holding the vtype return address, to avoid the ambigious use of
13122         cfg->ret for this purpose.
13124         * mini.c (NEW_RETLOADA): Use vret_addr if set.
13126         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
13127         
13128         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
13129         new mono_print_ins () function which only takes one argument.
13131 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
13133         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
13134         macro arguments.
13136 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
13138         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
13140         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
13142         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
13143         opcodes and other small changes.
13145         * mini-ops.h: Add some new opcodes from the linear IR branch.
13147         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
13149         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
13150         opcodes, use the REG_MEMBASE opcodes instead.
13151         
13152         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
13153         opcodes, use the REG_MEMBASE opcodes instead.
13154         
13155         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
13156         linear IR branch.
13158         * mini.c (mono_op_imm_to_op): New helper function.
13160         * mini-ops.h: Add some opcodes from linear IR branch.
13162 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
13164         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
13165         <tsv@solvo.ru>.
13167 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
13169         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
13170         OP_ICONV_TO_R4/R8.
13172         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
13174 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13176         * aot-compiler.c (emit_method_code): Add an assert.
13178         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
13179         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
13180         methods.
13182 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
13184         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
13185         some load/store opcodes so they are consistent. 
13186         (mono_arch_emit_prolog): Simplify some code.
13188         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
13190         * objects.cs: Add tests for large argument offsets on ARM.
13192         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
13193         stack offsets. Fixes #359651.
13195         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
13197         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
13199         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
13201         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
13203         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
13205         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
13206         rid of CEE_CONV_R_UN.
13208         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
13210 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
13212         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
13214         * mini.c (mono_normalize_opcodes): Add some more opcodes.
13216         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
13218         * cpu-amd64.md: Remove some unused opcodes.
13220         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
13222         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
13224         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
13225         arch specific functions for its parts. Call the peephole pass after local
13226         regalloc so the prolog can compute a more accurate max_offset.
13227         
13228         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
13229         the corresponding OP_I/OP_L opcodes.
13231         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
13233         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
13235 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13237         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
13238         as they are handled in mini.c.
13240         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
13241         
13242         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
13243         case since it is handled in mini.c.
13245         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
13247         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
13249         * *.c: Use the new opcodes in the IR and back end code.
13251         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
13253         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
13255 2008-02-06  Mark Probst  <mark.probst@gmail.com>
13257         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
13258         an assert because it has a race condition.
13260 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13262         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
13264         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
13266         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
13268         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
13269         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
13271 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13273         * cpu-amd64.md (move): Correct the maximum size of move.
13275 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13277         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
13278         the generic class init trampoline to return quickly if the class
13279         is already inited.
13281 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
13283         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
13284         issues where an 32 bit callsite cannot be patched by a 64 bit address.
13286 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13288         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
13289         branch.
13291 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
13293         * objects.cs: Add some soft-float tests.
13295         * mini.c: Fix a couple more soft-float issues.
13297         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
13299         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
13300         avoid a REX prefix.
13302 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13304         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
13305         exception happens while compiling a virtual method.
13307 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13309         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
13310         
13311         * mini-sparc.c: Fix build.
13313         * mini-sparc.c (get_call_info): Add support for generic sharing.
13315         * mini-exceptions.c: Add a FIXME.
13317 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13319         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
13320         altstack handling code.
13322         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
13323         
13324         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
13326         * mini-s390.c: Add support for generic sharing.
13328         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
13329         Fix CAS on s390.
13330         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
13332         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
13334         * mini-s390x.c: Add support for generic sharing.
13335         
13336         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
13337         Fix CAS on ia64.
13338         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
13340         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
13341         can be used since it takes a 16 bit signed immediate.
13343         * inssel-s390x.brg: Fix OP_SETRET.
13345         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
13347         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
13349         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
13351         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
13353         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
13354         in one place.
13356         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
13357         stuff.
13359         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
13360         of the unused mono_arch_patch_delegate_trampoline stuff.
13362 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
13364         * basic-long.cs: Move the fp related tests to basic-float.cs.
13366         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
13368         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
13370         * basic-calls.cs: Add a test for proper float argument passing.
13372         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
13373         if the context corresponds to an exception received through a signal.
13375         * exceptions.cs: Add a test for nullref handling at the start of a try
13376         clause.
13378         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
13380         * jit-icalls.c (mono_break): New JIT icall.
13382         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
13384         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
13386 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
13388         * cpu-*.md: Get rid of unused opcodes.
13390         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
13392         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
13393         by all platforms.
13395         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
13396         define.
13398         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
13399         the arch independent trampoline code in mini-trampolines.c.
13401         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
13403         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
13405         * mini-s390.h: Remove an unused define.
13406         
13407         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
13408         the arch independent trampoline code in mini-trampolines.c.
13410         * mini-arm.c (mono_arch_emit_prolog): Fix build.
13412 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
13414         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
13416         * mini-s390.c (mono_arch_emit_prolog): Fix build.
13418         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
13420         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
13422         * cpu-amd64.md: Use smaller sizes for int opcodes.
13424         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
13426         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
13427         objects.cs.
13429         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
13430         debugging.
13432         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
13433         instead of though a pointer to save an indirection when accessing elements of
13434         the array.
13436         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
13437         some typos.
13438         (NOT_IMPLEMENTED): New helper macro.
13439         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
13440         of a bb.
13442         * *.c: Use the new helper macro.
13444 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
13446         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
13448 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13450         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
13451         stack slots.
13453 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
13455         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
13456         profiling is enabled.
13457         
13458         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
13459         the end.
13460         (mono_arch_emit_prolog): Add more first bblock optimizations.
13462         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
13463         in order if possible.
13464         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
13465         bblock, since the arguments are still in their original registers.
13467         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
13469 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13471         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
13472         as well.
13474         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
13475         offset 0.
13477         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
13479         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
13480         process async exceptions received while in unmanaged code.
13482         * mini.c (mini_init): Install a callback with the runtime which will be called
13483         when a thread receives an async exception while in unmanaged code.
13485         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
13487         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
13489 2008-01-16  Wade Berrier  <wberrier@novell.com>
13491         * cpu-g4.md:
13492         * cpu-arm.md:
13493         * cpu-s390x.md:
13494         fix build
13496 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13498         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
13499         compilation with sun cc.
13501         * cpu-*.md: Fix the build.
13503         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
13505         * mini-amd64.h: Add some comments to the MonoLMF structure.
13507         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
13508         
13509         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
13510         in the LMF structure if possible. This saves two instructions in the
13511         managed->native wrappers.
13513         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
13515 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13517         * generic-sharing.c: New type argument lookup code which uses the
13518         runtime generic context template.
13520 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13522         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
13524         * mini-arm.c (add_general): Fix arm eabi parameter passing.
13525         (mono_arch_output_basic_block): Fix localloc implementation.
13527         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
13529         * mini-ia64.c (peephole_pass): Fix ia64 build.
13531         * mini-amd64.c (peephole_pass): Fix a warning.
13532         
13533         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
13534         at a constant offset from sp/fp.
13536         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
13537         instead of obtaining it from *lmf in the managed method case.
13539 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13541         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
13543 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
13545         * mini.h (MonoInstList): New type.
13546         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
13547         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
13548         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
13549         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
13550         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
13551         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
13552         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
13553         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
13554         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
13555         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
13556         MONO_INST_LIST_FOR_EACH_ENTRY,
13557         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
13558         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
13559         mono_inst_list_first, mono_inst_list_last,
13560         mono_inst_list_next, mono_inst_list_prev): New instruction
13561         list handling interfaces.
13562         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
13563         list head 'ins_list'.
13564         (MonoInst): Replace next pointer with list head 'node'.
13565         (MonoCallInst): Make 'out_args' a MonoInstList.
13566         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
13567         (MonoCompile): Delete reverse_inst_list and
13568         reverse_inst_list_len.
13569         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
13570         mono_arch_lowering_pass, mono_arch_local_regalloc,
13571         mono_arch_output_basic_block, mono_arch_emit_prolog):
13572         Convert to new instruction lists.
13573         (insert_after_ins): Delete.
13574         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
13575         instruction lists.
13576         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
13577         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
13578         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
13579         mono_emulate_opcode, mono_emit_load_got_addr,
13580         inline_method, mono_method_to_ir, mono_print_bb_code,
13581         print_dfn, decompose_pass, nullify_basic_block,
13582         replace_out_block_in_code, remove_block_if_useless,
13583         merge_basic_blocks, move_basic_block_to_end,
13584         try_unsigned_compare, optimize_branches, mono_print_code,
13585         mini_select_instructions, remove_critical_edges): Likewise.
13586         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
13587         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
13588         mono_arch_output_basic_block, mono_arch_emit_prolog):
13589         Likewise.
13590         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
13591         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13592         mono_arch_output_basic_block): Likewise.
13593         (inst_list_prepend, insert_after_ins): Delete.
13594         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
13595         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
13596         instruction lists.
13597         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
13598         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
13599         mono_arch_emit_prolog): Likewise.
13600         * cfold.c (mono_constant_fold): Likewise.
13601         * liveness.c (visit_bb, mono_analyze_liveness,
13602         optimize_initlocals): Likewise.
13603         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
13604         * graph.c (mono_draw_code_cfg): Likewise.
13605         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
13606         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
13607         mono_ssa_cprop): Likewise.
13608         * abcremoval (get_relations_from_previous_bb, process_block):
13609         Likewise.
13610         * local-propagation (mono_cprop_invalidate_values,
13611         mono_local_cprop_bb): Likewise.
13612         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
13613         peephole_pass, mono_arch_output_basic_block,
13614         mono_arch_emit_prolog): Likewise.
13615         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
13616         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13617         mono_arch_emit_prolog): Likewise.
13618         (insert_after_ins): Delete.
13619         * aliasing.c (print_code_with_aliasing_information,
13620         mono_build_aliasing_information, mono_aliasing_deadce):
13621         Convert to new instruction lists.
13622         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
13623         peephole_pass, NEW_INS, mono_arch_lowering_pass,
13624         mono_arch_local_regalloc, mono_arch_output_basic_block):
13625         Likewise.
13626         (insert_after_ins): Delete.
13627         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
13628         peephole_pass, mono_arch_output_basic_block): Convert to
13629         new instruction lists.
13630         * mini-codegen (InstList, inst_list_prepend,
13631         insert_after_ins): Delete.
13632         (insert_before_ins, get_register_force_spilling,
13633         get_register_spilling, free_up_ireg, free_up_reg,
13634         create_copy_ins, create_spilled_store, alloc_int_reg,
13635         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
13636         to new instruction lists.
13637         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
13638         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13639         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
13640         (insert_after_ins): Delete.
13641         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
13642         mono_arch_local_regalloc, mono_arch_output_basic_block,
13643         mono_arch_call_opcode): Convert to new instruction lists.
13644         (insert_after_ins): Delete.
13645         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
13646         peephole_pass, mono_arch_output_basic_block,
13647         mono_arch_emit_prolog): Convert to new instruction lists.
13649 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13651         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
13653         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
13654         Fixes #353182.
13656         * Makefile.am (version.h): Make this work with non-bash shells.
13658 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13660         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
13662 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13664         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
13665         the InitializeArray optimization.
13667 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13669         * mini.c driver.c: Don't include os/gc_wrapper.h.
13671 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13673         * mini.c (print_jit_stats): Print GC statistics if available.
13675 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
13677         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
13679 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
13681         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
13683 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13685         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
13686         
13687         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13689         * driver.c (mono_main): Ditto.
13691 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13693         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
13695         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
13696         in the vtable can't be encoded.
13697         (compile_method): Ditto.
13699 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13701         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
13702         defined.
13704         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
13705         lmf->rbp.
13707         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
13708         the top LMF entry belongs to the current method.
13710         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
13712 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13714         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
13715         
13716         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
13718         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
13720         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
13722         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
13724         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
13725         implementation.
13727         * basic-float.cs: Add an ulong->double cast test.
13729 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
13731         * mini.c (mono_method_to_ir): Fix a warning.
13733 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
13735         * mini-ops.h: Add OP_SWITCH.
13737         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
13738         CEE_SWITCH in back-end code, use OP_SWITCH instead.
13740 2007-12-11  Geoff Norton  <gnorton@novell.com>
13742         * mini-s390x.c: Minor change to the MAX() define to allow
13743         it to compile with other gcc versions.
13745 2007-12-11  Geoff Norton  <gnorton@novell.com>
13747         * cpu-s390x.md:
13748         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
13750 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13752         exceptions-arm.c (mono_arch_get_restore_context): Restore
13753         the frame pointer.
13755         exceptions-arm.c (throw_exception): Save the frame pointer.
13756         This is a partial fix for #323747. Only the client side is
13757         fixed.
13759 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13761         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
13762         was using an unrelated variable to log the class which
13763         needed the cctor to be called. This was crashing on arm.
13765 2007-12-09  Robert Jordan  <robertj@gmx.net>
13767         * mini-x86.c (mono_arch_emit_epilog):
13768         Consider all kinds of 64-bit types. Fixes #323114.
13770 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
13772         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
13774 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
13776         * mini-amd64.c (peephole_pass): Add a missing instruction check.
13778 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13780         * mini.c: run type ctor before allocating an object, not only
13781         when running it's constructor method (fixes at least part of bug #342507).
13783 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
13784         
13785         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
13786         
13787         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
13788         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
13789         function.
13791         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
13792         mono_generic_class_init_trampoline () the same as it is done with the other
13793         trampolines.
13795         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
13796         aot-runtime.c aot-compiler.c: Implement AOT support.    
13798 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13800         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
13801         build for archs which don't have the vtable trampoline defined
13802         yet.
13804 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
13806         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
13808         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
13810         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
13812         * tramp-<ARCH>.c: Use the new helper function.
13814 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13816         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
13817         trampoline call, which takes a vtable argument.
13819         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
13820         OP_TRAMPCALL_VTABLEs like other calls.
13822         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
13823         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
13824         call.  Implemented a support function which fetches the vtable
13825         from a register set.
13827         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
13828         Implemented a generic class init trampoline, using the
13829         OP_TRAMPCALL_VTABLE opcode.
13831         * mini.c: Implemented static field access when sharing generic
13832         code.  This implies initing the class using the new
13833         OP_TRAMPCALL_VTABLE call.
13835 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13837         * mini.c: Don't compile methods with sharing enabled if their
13838         classes are disabled for sharing.
13840 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13842         * inssel.brg: Add a missing sign extension to the GETCHR and array access
13843         opcodes. Fixes #346563.
13845         * objects.cs: Add a new test.
13847         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
13849         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
13850         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
13852 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13854         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
13856 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13858         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
13859         code stream.
13861 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
13863         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
13865         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
13866         optimization in the AOT case.
13867         
13868 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13870         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
13871         
13872         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
13874         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
13876         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
13878         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
13879         is created by the inlined delegate ctor.
13881         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
13883         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
13885 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
13887         * cpu-x86.md: Fix the length of ckfinite.
13889 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
13891         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
13892         
13893         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
13894         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
13896         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
13898         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
13899         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
13901 2007-11-28  Martin Baulig  <martin@ximian.com>
13903         * mini-x86.c
13904         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
13905         after creating the trampoline.
13907 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
13909         * aot-runtime.c (load_aot_module): Check runtime version if needed.
13911         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
13912         the same version.
13914         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
13915         instead of the calling method to help AOT.
13917         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
13919 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
13921         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
13922         is defined.
13924 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13926         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
13927         
13928         * aot-compiler.c (compile_method): Correct check for generic method definitions.
13929         (encode_method_ref): No need to handle generic method definitions specially.
13931         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
13933         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
13934         decode_klass_info.
13936         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
13937         encode_klass_info.
13938         (compile_method): Enable generic sharing.
13940 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
13942         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
13943         (mini_method_compile): Add preliminary support for AOTing shared generic code.
13945         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
13946         generic code.
13948         * mini-trampolines.c: Fix a warning.
13950         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
13951         NEW_PCONST.
13952         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
13953         (generic_class_is_reference_type): Remove unused function.
13955         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
13956         in the generic vtable trampoline case.
13958         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
13959         
13960         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
13961         return an AOT method based on a vtable slot.
13963         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
13965         * mini.c (mini_get_vtable_trampoline): Export this.
13967 2007-11-22  Martin Baulig  <martin@ximian.com>
13969         * debug-debugger.h
13970         (MonoDebuggerInfo): Move `debugger_version' up.
13972 2007-11-22  Martin Baulig  <martin@ximian.com>
13974         * mini-amd64.c
13975         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
13977         * mini-trampolines.c
13978         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
13979         after compiling the method.
13981 2007-11-20  Martin Baulig  <martin@ximian.com>
13983         * debug-mini.c
13984         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
13985         (mono_debugger_remove_breakpoint): Likewise.
13986         (mono_debugger_check_breakpoints): Likewise.
13988         * debug-debugger.c: Implement the new breakpoint interface here.
13990 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
13992         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
13993         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
13995         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
13997 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13999         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
14001         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
14002         mini.c.
14004         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
14005         mini.c.
14007         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
14008         returning a vtype in a register.
14010         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
14011         here from the arch specific code.
14013         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
14014         mini.c.
14016         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
14017         (mono_arch_emit_prolog): Increment maximum prolog size.
14019         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
14020         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
14022         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
14023         MonoGenericSharingContext.
14025         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
14026         MonoGenericSharingContext. Allocate memory from the cfg mempool.
14028 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14030         * mini.c, mini.h, generic-sharing.c: Functions for producing code
14031         which extract fields out of the runtime generic context.  Full
14032         sharing of the NEWARR opcode.
14034 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14036         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
14037         --enable-minimal=ssa.
14039 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14041         * mini-trampolines.c (mono_delegate_trampoline): Update after 
14042         mono_marshal_get_delegate_invoke () signature change.
14044 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14046         * mini.c: Removed the shared context in favor of the generic
14047         sharing context.  Allocate the MonoJitInfo structure with room for
14048         the generic sharing context if it's needed.
14050         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
14051         domain-internals.h now.
14053         * mini-x86.c: Pass the generic sharing context to get_call_info ().
14055         * generic-sharing.c: Several changes for working without a shared
14056         context and instead operating on open types instead.
14058 2007-11-12  David S. Miller  <davem@davemloft.net>
14060        * inssel-sparc.brg: Fix double instruction emit.
14062 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14064         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
14065         Get/Set/Address methods.
14066         
14067         * mini.c debug-debugger.c mini-trampolines.c: Update after 
14068         mono_marshal_get_delegate_invoke signature change.
14070 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
14072         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
14073         This can happens with dynamic methods. Fixes the other bug in #322722.
14075 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
14077         * tramp-arm.c (mono_arch_patch_callsite): Support patching
14078         BX call sequence.
14080         * mini-arm.c (arm_patch): Implement patching of BX call
14081         sequence. Fixes one of the bugs in #322722.
14083 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
14085        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
14086        under Linux.  We only need to flush every 32-byte cache line.    
14088 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14090         * mini.c:
14091         move_basic_block_to_end: Add branches when needed, eventually creating
14092         a new BB.
14093         optimize_branches: added a parameter that tells if it's ok to create
14094         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
14095         and avoid calling move_basic_block_to_end when it's not ok.
14096         Fixes bug 318677.
14098 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14100         * mini.c: Abort inlining call to InitializeArray if something
14101         looks wrong.  Let the icall handle it, which now has proper safety
14102         checks.
14104 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
14106         * mini.c (mono_spill_call): add support for soft-float.
14108         * mini.c (mono_method_to_ir): add support for soft-float
14109         to inlined functions that return float.
14111         * mini.c (mono_method_to_ir): add support for soft-float
14112         to cee_stsfld opcode on float fields.
14114 2007-11-05  Geoff Norton  <gnorton@novell.com>
14116         * mini-x86.h: Fix the structure access for X86 Leopard.
14119 2007-11-05  Martin Baulig  <martin@ximian.com>
14121         * mini-trampolines.c
14122         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
14123         after compiling the method to notify the debugger.
14125 2007-11-05  Martin Baulig  <martin@ximian.com>
14127         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
14129 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
14131         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
14132         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
14134 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
14136         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
14137         native-to-managed wrappers.
14138         
14139 2007-11-01  Geoff Norton  <gnorton@novell.com>
14141         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
14142         members.
14144 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
14146         * mini.c, mini-x86.c: when getting back from unmanaged code
14147         to managed via a marshaled delegate we also need to set the
14148         right domain.
14150 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
14152         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
14153         for amd64.
14155 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14157         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
14158         let the debugger or other external agents to tell the JIT when
14159         a sw breakpoint has been inserted in the code that the JIT needs
14160         to be able to inspect.
14162 2007-10-31  Martin Baulig  <martin@ximian.com>
14164         * debug-debugger.h
14165         (MonoDebuggerInfo): Remove `runtime_class_init'.
14167 2007-10-30  Martin Baulig  <martin@ximian.com>
14169         * debug-mini.h
14170         (mono_debugger_thread_created): Added `MonoThread *' argument.
14171         (mono_debugger_extended_notification): New public method.
14172         (mono_debugger_trampoline_compiled): New public method.
14174         * debug-mini.c
14175         (MonoDebuggerThreadInfo): Added `thread' and
14176         `extended_notifications' fields.
14178         * debug-debugger.c
14179         (debugger_executable_code_buffer): New static variable.
14181         * debug-debugger.h
14182         (MonoDebuggerInfo): Added `executable_code_buffer',
14183         `executable_code_buffer_size', `breakpoint_info_area',
14184         `breakpoint_table' and `breakpoint_table_size'.
14186 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
14188         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
14189         that IP  either is an unused value or the vtable pointer. IMT 
14190         calls use vtable + offset now. Reduced by almost half the size
14191         of IMT entries.
14193 2007-10-26  Jonathan Chambers <joncham@gmail.com>
14195         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
14196         defines to access param registers. Replace long usage with
14197         gsize as sizeof(long) != sizeof(void*) on Win64.
14199         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
14200         on Win64. Fix intrinsic, use _AddressOfReturnAddress
14201         instead of non-existant _GetAddressOfReturnAddress.
14203         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
14204         param registers. Save/restore %rdi and %rsi in MonoLMF.
14206         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
14207         param registers. Modify (throw_exception) signature to take 
14208         %rdi and %rsi on Win64. 
14210         Code is contributed under MIT/X11 license.
14212 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14214         * helpers.c: unlink debugging output files.
14216 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14218         * mini.c: Move mono_create_ftnptr () to object.c.
14220 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
14222         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
14223         optional. This function can now be used to disassemble code generated
14224         outside the JIT such as trampolines and IMT thunks.
14226         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
14228         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
14229         vtable pointer from a ldr instruction.
14231         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
14232         new IMT call sequence.
14234         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
14235         call sequence for interface invocations.
14237         * mini-arm.c (mono_arch_emit_imt_argument): added, required
14238         for imt support. This function is empty since IMT on ARM requires no
14239         special handling on the IR side.
14241         * mini-arm.c (mono_arch_find_imt_method): added, required for
14242         imt support.
14244         * mini-arm.c (mono_arch_find_this_argument): added, required
14245         for imt support.
14247         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
14248         a ldr instruction to load a value stored in the code stream.
14250         * mini-arm.c (mono_arch_build_imt_thunk):added, required
14251         for imt support.
14254 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14256         * mini.c (mini_init): Install the jump trampoline callback.
14258 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14260         * mini-trampolines.c: handle synchronized methods with the common
14261         vtable trampoline (bug #335601).
14263 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
14265         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
14267         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
14268         64 bit platforms.
14270         * mini-ia64.h mini-ia64.c: Add support for IMT.
14272         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
14273         prolog. Fixes #331958.
14275 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
14277         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
14279 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14281         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
14282         trampoline.
14284 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14286         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
14287         trampoline.
14289 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
14291         * mini-x86.c, mini-x86.h: x86 support for the common vtable
14292         trampoline.
14294 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14296         * mini-trampolines.c: changed the magic rampoline to understand
14297         the common vtable trampoline method: the method to invoke is
14298         determined by the vtable displacement of the call.
14300 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14302         * mini.c, mini.h: register the common vtable trampoline if the
14303         architecture supports it.
14305 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14307         * cpu-amd64.md: use the correct max length for tls_get.
14309 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
14311         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
14312         CEE_STELEM_ANY. Fixes #333696.
14314 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
14316         * exceptions-x86.c: provide more graceful handling of the case where
14317         we followed a bogus function pointer from managed code (bug #332866).
14319 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14321         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
14322         replaces the generic_shared flag and will carry more information
14323         in the future.
14325         * generic-sharing.c: Added mini_type_stack_size() which allows
14326         allows open types if given a generic sharing context.
14327         mini_get_basic_type_from_generic() takes a
14328         MonoGenericSharingContext* instead of a MonoCompile* now.
14330         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
14331         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
14332         mini-sparc.c, mini-x86.c: Trivial changes required by the two
14333         changes above.  Just passing arguments through to the right
14334         places.
14336 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14338         * mini-arm.c: unify the call emission to emit_code_seq().
14340 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
14342         * tramp-arm.c: reduced the trampoline size.
14344 2007-10-10  Mark Probst  <mark.probst@gmail.com>
14346         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
14347         variable handling out of arch-specific code.
14349 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
14351         * mini-arm.c: implemented fast delegate dispatch.
14353 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
14355         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
14356         that fp elimination is turned off if the space required by locals is too
14357         big. Fixes #331958.
14359 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14361         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
14362         ARM to the new style trampoline.
14364 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
14366         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
14368         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
14370 2007-10-09  Martin Baulig  <martin@ximian.com>
14372         * debug-debugger.h
14373         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
14374         `field_info_offset_offset'.     
14376 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14378         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
14379         removed more internal usage of the r11 register and made it available
14380         to the register allocator.
14382 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14384         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
14385         when sharing generics and treat type variables as references.
14387 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14389         * mini-ppc.c: started removing the internal uses of register r11
14390         to eventually allow the register allocator to manage it as an
14391         additional available register.
14393 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14395         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
14397 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
14399         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
14400         specific trampolines as they are not performance critical as a jump
14401         target (maybe align as before only for AOT code?). This saves about
14402         200 KB of native code on x86 for monodevelop startup.
14404 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14406         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
14407         monodevelop startup.
14409 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
14411         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
14413         * mini-sparc.h mini-sparc.c: Implement IMT support.
14415         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
14416         its smaller and doesn't clobber sparc_g1.
14418         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
14420 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14422         * mini-ppc.c: optimized the size of the IMT thunks a bit.
14424 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
14426         * mini-ppc.c: implemented fast delegate invocation.
14428 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14430         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
14432 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14434         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
14435         code to the new style trampoline in preparation for IMT support.
14437 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14439         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
14440         systems already. This also reduces the specific trampiline sizes and
14441         prepares for the use of r12 as the IMT identifier register.
14443 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14445         * mini-mips.h: endianess fix (simplified from a patch by
14446         Thomas Kunze <thommy@tabao.de>, bug #323737).
14448 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14450         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
14451         to access ucontext fields and enable netbsd support
14452         (partially from Magnus Henoch <mange@freemail.hu>).
14454 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14456         * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
14457         use the preprocessor from the CPP env var if it is set.
14459 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14461         * mini-trampolines.c: fixed an assertion and moved it earlier in the
14462         code, before interface_offset gets used.
14464 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
14466         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
14467         mono_class_setup_vtable () before accessing klass->vtable.
14469 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
14471         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
14472         hackish.
14474 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14476         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
14477         IMT slots (this saves hundreds of KB of memory in programs like
14478         IronPython and Monodevelop).
14480 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14482         * mini.c: print the delegate counter.
14484 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
14486         * mini-x86.c: make it easier to enable the debugging code for IMT
14487         slots.
14489 2007-09-28  Martin Baulig  <martin@ximian.com>
14491         * debug-debugger.h
14492         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
14493         `mono_method_klass_offset' and `mono_method_token_offset'.
14495 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14497         * mini.c: First generics sharing implementation.  Can only share
14498         in very simple cases.  If sharing doesn't work it falls back to
14499         dedicated compilation.
14501         * mini.h: Flag in MonoCompile to specify whether generic
14502         compilation is shared.  Flags enum for marking which generic inst
14503         of a context is used.  Prototypes for helper functions.
14505         * generic-sharing.c: Helper functions for generic method sharing.
14507         * optflags-def.h: Optimization flag (gshared) for enabling generic
14508         method sharing added.
14510         * Makefile.am: generic-sharing.c added.
14512 2007-09-19 Daniel Nauck <dna@mono-project.de>
14514         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
14516 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
14517         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
14518         fixes bug 325507.
14520 2007-09-19  Martin Baulig  <martin@ximian.com>
14522         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
14523         mono_debug_cleanup() is now part of mono_cleanup().
14525 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14527         * driver.c (mono_main): Fix a warning.
14529 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14531         * aot-compiler.c: Optimize various parts when processing large assemblies.
14532         Fixes ##325568.
14534         * mini.c (mono_patch_info_hash): Improve hash function.
14536 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14538         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
14539         
14540         Code is contributed under MIT/X11 license.
14542 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14544         * mini.c (mini_init): Fix a leak.
14546         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
14548 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14550         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
14552 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14554         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
14556 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14558         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
14559         variance tests.
14561         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
14563         * mini.c (handle_alloc): Enable managed allocators in AOT code.
14565         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
14567         * aot-runtime.c (decode_patch_info): Ditto.
14569 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14571         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
14572         static case. Cache delegates in architecture specific code, 
14573         based on number of parameters.
14574         
14575         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
14576         in architecture specific code, based on number of parameters.
14577         
14578         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
14579         caching happen in architecture specific code now.
14580         
14581         Code is contributed under MIT/X11 license.
14583 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14585         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
14586         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
14587         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
14589         Code is contributed under MIT/X11 license.
14591 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14592         * mini.c: (mono_thread_abort) Fixed bug #82416.
14594 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14596         * mini.: hook the new managed GC allocation feature into the JIT.
14598 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14600         * mini.c: implementation for the new runtime tls opcode.
14602 2007-09-11  Martin Baulig  <martin@ximian.com>
14604         * debug-debugger.h
14605         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
14606         `mono_method_inflated_offset'.
14608 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
14610         * driver.c mini.h mini.c: Add a new devel command line option for injecting
14611         async exceptions into a method.
14613         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
14614         purpose of testing whenever the unwinder works at every instruction.
14616 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14618         * mini.c: check accessibility of method used in ldftn (fixes
14619         bug #82635).
14621 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
14623         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
14625         * inssel.brg: Fix a warning.
14627 2007-09-03  Martin Baulig  <martin@ximian.com>
14629         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
14630         now takes the `main_method' as argument.
14632 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
14634         * cpu-sparc.md (endfilter): Add missing src1:i argument.
14636 2007-08-30  Jonathan Chambers <joncham@gmail.com>
14638         * driver.c: include the cil-coff.h header on Windows.
14639         
14640         Code is contributed under MIT/X11 license.
14642 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14644         * mini.c, driver.c: don't include the cil-coff.h header.
14646 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14648         * mini.c: flag places that needs fixes fo soft-float support.
14650 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
14652         * mini.h, inssel-float.brg: fix soft-float constant loads on big
14653         endian systems (partially from Dean Jenkins, bug #81924).
14655 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14657         * mini.c (check_linkdemand): Remove embedded reference object in
14658         call to LinkDemandSecurityException.
14659         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
14660         with an IntPtr instead of a reference object.
14662 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14664         * mini.c (handle_initobj): Handle alignment properly.
14666         * inssel.brg (mini_emit_memset): Ditto. 
14668         * inssel.brg (mini_emit_memcpy): Ditto. 
14670         * inssel-sparc.brg: Ditto.              
14672         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
14674 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
14676         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
14677         exceptions raised in unmanaged code. Fixes part of #82594.
14679 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14681         * mini.c (mono_method_to_ir), declsec.c
14682         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
14684 2007-08-22  Martin Baulig  <martin@ximian.com>
14686         * debug-mini.h
14687         (MonoDebuggerThreadInfo): New typedef.
14688         (mono_debugger_thread_table): New global variable.
14689         (mono_debugger_thread_created): New public function.
14690         (mono_debugger_thread_cleanup): New public function.
14692         * debug-debugger.h
14693         (MonoDebuggerInfo):
14694         - removed `get_current_thread' and `lookup_assembly'.
14695         - removed `data_table'.
14696         - added `thread_table'.
14698         * mini.c
14699         (mono_thread_start_cb): Call mono_debugger_thread_created().
14700         (mono_thread_attach_cb): Likewise.
14701         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
14702         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
14703         initial domain.
14705         * driver.c (mono_main): Move mono_debug_init() up, before calling
14706         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
14708 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14710         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
14711         together when passing several arguments of type double (gives a small
14712         speedup and saves a few bytes of generated code).
14714 2007-08-20  Jb Evain  <jbevain@novell.com>
14716         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
14718 2007-08-20  Jb Evain  <jbevain@novell.com>
14720         * mini.c (mono_method_to_ir): throw MethodAccessException
14721         and FieldAccessException instead of InvalidProgramException.
14723 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14725         * mini.c: CoreCLR security checks.
14727         * mini.h: Removed MonoSecurityMode (moved to
14728         metadata/security-manager.h) and mono_security_mode global var
14729         (replaced by set/get functions in security-manager.h).
14731         * driver.c: Added "core-clr-test" security mode for testing.  Used
14732         set-function for setting security mode.
14734 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14736         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
14737         the new jit_info_table.
14739         * driver.c: Test code for the new jit_info_table (enabled by the
14740         define MONO_JIT_INFO_TABLE_TEST).
14742 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
14744         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
14745         detection of call <REG> instruction sequence. Fixes build on freebsd.
14747 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
14749         * mini-exceptions.c: Fix a warning.
14751 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14753         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
14754         stack overflow handling code on amd64 too.
14756         * mini-exceptions.c (mono_setup_altstack): Make this use 
14757         mono_thread_get_stack_bounds ().
14759         * mini-x86.h: Disable sigaltstack on solaris x86.
14761 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
14763         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
14765 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
14767         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
14769 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14771         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
14773         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
14775 2007-08-03  Neale Ferguson <neale@sinenomine.net>
14777         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
14778         due to alignment.
14780 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14782         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
14783         to be emitted (bug #82281).
14785 2007-08-01  Martin Baulig  <martin@ximian.com>
14787         Merged the `debugger-dublin' branch.
14789         * debug-debugger.h (MonoDebuggerInfo):
14790         Removed the `old_*' compatibility entries.
14791         Added `debugger_version' and `data_table'.
14792         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
14793         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
14795         * debug-mini.c
14796         (MiniDebugMethodBreakpointInfo): Add `address_list'.
14797         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
14798         instead of a `gconstpointer'.
14799         (mono_debugger_insert_method_breakpoint): Return a
14800         `MonoDebugMethodAddressList *'.
14802 2007-06-28  Martin Baulig  <martin@ximian.com>
14804         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
14806 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14808         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
14809         __builtin_frame_address () since it is broken on older gcc versions.
14811 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14813         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
14814         on the stack overflow handling and made the managed stack overflows
14815         catchable in most cases using soft guard pages.
14816         * exceptions-x86.c: added code to restore the protection in the soft
14817         guard pages at the end of exception handling.
14819 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
14821         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
14823 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14825         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
14826         exception handling.
14828 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14830         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
14831         signal handling support until it has been ported to the new mechanism.
14832         * mini.c: fixed stack overflow detection and use the new
14833         architecture code  to handle signals on the altstack.
14835 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14837         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
14838         stack overflows on the alt stack.
14840 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14842         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
14843         stack overflows on the alt stack.
14845 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
14847         * exceptions-ppc.c: cleanup preparing for altstack support.
14849 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
14851         * exceptions-arm.c: cleanup preparing for altstack support.
14853 2007-07-27  Mark Probst  <mark.probst@gmail.com>
14855         * mini.c (print_jit_stats): Output hazard pointer stats.
14857 2007-07-26  Mark Probst  <mark.probst@gmail.com>
14859         * driver.c, mini.c: Replaced security mode flags with a single
14860         enum variable.
14862 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14864         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
14866 2007-07-25  Mark Probst  <mark.probst@gmail.com>
14868         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
14869         (which doesn't do anything yet) for activating Core CLR
14870         (Silverlight) security.
14872 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14874         * mini-codegen.c: work around a possible gcc bug on arm.
14876 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14878         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
14879         message for platforms that don't support AOT compilation.
14881 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
14883         * mini.h, mini.c, driver.c: temporary smcs hack.
14885 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
14887         * mini-arm.h, mini-arm.c: arm EABI fixes.
14889 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
14891         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
14892         case.
14894         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
14895         trampolines taking a method argument.
14897         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
14899         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
14900         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
14902         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
14903         JIT compilation throws an exception. Fixes #82050.
14905 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14907         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
14908         with the MONO_EXCEPTION_ defines.
14910 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
14912         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
14913         #82117.
14914         
14915         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
14916         the cause of an assertion.
14918 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
14920         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
14921         removed.
14923 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14925         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
14926         assert. Should fix #82103.
14928 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14930         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
14931         here too. Fixes #82095.
14933         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
14934         addresses.
14936         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
14938         * mini-amd64.h: Enable IMT for amd64.
14939         
14940         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
14942 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
14944         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
14946 2007-07-12  Mark Probst  <mark.probst@gmail.com>
14948         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
14949         as soon as check_linkdemand sets an exception_type.
14951 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14953         * mini-x86.c: fixed offsets for IMT call sequence.
14954         * mini-x86.h: enable IMT again.
14956 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14958         * trace.c (mono_trace_enter_method): Decode MonoType too.
14960         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
14962         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
14964         * mini-amd64.c: Add preliminary IMT implementation.
14965         
14966 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
14968         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
14969         understand the new IMT-base interface invocation (thanks to
14970         Daniel Nauck for the report and the remote debugging session).
14972 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14974         * mini-x86.c: size and speed optimizations for the IMT bsearch.
14976 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14978         * Makefile.am (aotcheck): Make this actually use the AOTed code.
14980 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
14982         * mini-trampolines.c: implement AOT IMT support.
14983         * mini-x86.h: enable IMT support for wider testing.
14985 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14987         * inssel.brg (emit_imt_argument): Add aot support here.
14989         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
14991 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14993         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
14994         of the IMT implementation, partially from massi, with my
14995         implementation of the bsearch sequence. Disabled by default until
14996         the AOT code is implemented.
14998 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15000         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
15002         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
15004 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15006         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
15007         arch-independent IMT JIT code from Massimiliano
15008         Mantione (massi@ximian.com) with small cleanups from me.
15010 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
15012         * Makefile.am: fix svn invocation to get the svn revision to be
15013         independent of the local language (build fix).
15015 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15017         * mini.c (inline_method): Reset cfg->exception_type if the
15018         inlining is aborted.  Fixes: 82049.
15020 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15022         * mini.c: remove assert from exception handling code when exception_ptr
15023         is not set.
15025 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15027         * mini.c (mono_codegen): Add an assert.
15029         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
15030         enter and leave code.
15031         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
15033 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
15035         * mini-ppc.c: fixed memory corruption for localloc(0)
15036         (bug #81852).
15038 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15039         
15040         * mini.c: Fix warnings.
15042 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15044         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
15045         to emit better double->int conversions.
15047 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15049         * mini.c: the provided Min/Max optimizations are valid for unisgned
15050         ints.
15052 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15054         * 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
15056 2007-06-28  Miguel de Icaza  <miguel@novell.com>
15058         * mini.c (mono_running_on_valgrind): Add support for reporting the
15059         method and  its boundaries to valgrind.
15061 2007-06-28  Martin Baulig  <martin@ximian.com>
15063         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
15065 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
15067         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
15069         * generic.2.cs: Add new test case.
15071 2007-06-25  Martin Baulig  <martin@ximian.com>
15073         Merged the `debugger-dublin' branch.
15075         * debug-mini.c
15076         (mono_debugger_insert_method_breakpoint): New public method.
15077         (mono_debugger_remove_method_breakpoint): Likewise.
15078         (mono_debugger_check_breakpoints): New static method.
15079         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
15081         * debug-debugger.h (MonoDebuggerInfo):
15082         Renamed (to keep backward compatibility in the vtable):
15083         `insert_breakpoint' -> `old_insert_breakpoint'.
15084         `remove_breakpoint' -> `old_remove_breakpoint'.
15085         `create_string' -> `old_create_string'.
15086         `lookup_class' -> `old_lookup_class'.
15087         `lookup_type' -> removed; changed into a dummy field.
15088         `lookup_assembly' -> `old_lookup_assembly'.
15089         Added (same functionality, but different signature):
15090         `create_string', `lookup_class', `lookup_assembly'
15091         Added new:
15092         `get_method_addr_or_bpt', `remove_method_breakpoint',
15093         `runtime_class_init'.
15095         * debug-debugger.c: Merged the `debugger-dublin' branch.
15097 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
15099         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
15100         well.
15101         (peephole_pass): Likewise.
15103 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15105         * driver.c: hopefully make setaffinity work also for ancient
15106         versions of linux.
15108 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
15110         * driver.c : win32 build fix.
15112 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15114         * driver.c: check for the MONO_NO_SMP env var and bind to a single
15115         processor if it is set.
15117 2007-06-21  Martin Baulig  <martin@ximian.com>
15119         * debug-mini.h: New file.
15121         * debug-mini.c
15122         (mono_debugger_insert_breakpoint_full): Moved here from
15123         ../metadata/mono-debug-debugger.c.
15124         (mono_debugger_remove_breakpoint): Likewise.
15125         (mono_debugger_breakpoint_callback): Likewise.
15127 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15129         * jit-icalls.c (mono_helper_compile_generic_method): Update to
15130         changes in MonoGenericClass.
15132 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
15134         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
15136 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15138         * jit-icalls.c (mono_helper_compile_generic_method): Update to
15139         removal of MonoGenericMethod.
15141 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15143         * mini-exceptions.c: hooks for the exception events profiling API.
15145 2007-06-14  Randolph Chung  <tausq@debian.org>
15147         * Makefile.ma: Add hppa target.
15148         * mini-arch.h: Include mini-hppa.h
15149         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
15150         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
15151         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15153 2007-06-14  Randolph Chung  <tausq@debian.org>
15155         * inssel.brg: Add rules for "chained" compare-branch operations so that
15156         a single compare op can affect multiple branches.  Adjust cost for
15157         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
15158         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
15159         cost for some rules so that they can more easily be overridden by
15160         per-arch rules (with fixes from lupus).
15161         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15163 2007-06-13  Randolph Chung  <tausq@debian.org>
15165         * mini-ops.h: Reorder branch ops so that they match the order of the
15166         corresponding CEE_* ops.  The code expects them this way.
15167         Add new ops for HPPA target.
15168         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15170 2007-06-13  Randolph Chung  <tausq@debian.org>
15172         * mini-exceptions.c: Handle cases where the stack grows towards
15173         larger addresses.
15174         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15176 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15178         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
15179         counter.
15180         * driver.c: explain where a non-matching corlib is found.
15182 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15184         * mini.c (print_jit_stats): Output dynamic code allocation stats.
15186 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
15188         * mini-exceptions.c: Generate a method profile leave event during
15189         an exception to ensure that the profiler gets notified.
15191 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
15193         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
15194         branch.
15196         * cpu-amd64.md: Add long_and/or/xor opcodes.
15198 2007-06-06  Wade Berrier  <wberrier@novell.com>
15200         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
15201         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
15202         length of instruction shr_imm (expected 8, got 10)
15204 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
15206         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
15208 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15210         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
15211         MonoInternalHashTable again (fixed bug in the internal hash table
15212         code).
15214 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15216         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
15217         Have to figure out what makes it crash the SWF regression.
15219 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
15221         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
15223 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15225         * mini.c: optimize out the type check when storing null in a
15226         reference array.
15228 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15230         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
15231         MonoInternalHashTable.
15233 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15235         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
15236         signed integer methods.
15238 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
15240         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
15241         permanently since the current approach doesn't work.
15243 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
15245         * inssel.brg (stmt): Only call delegate->invoke_impl if 
15246         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
15248 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
15250         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
15251         the sreg2==rdx case.
15252         
15253         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
15254         account if it contains a rex prefix.
15255         (peephole_pass): Handle OP_FMOVE as well.
15257 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
15259         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
15260         as it causes regressions.
15262 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15264         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
15265         static case as well.
15267         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
15269         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
15270         (mono_arch_get_this_arg_from_call): Ditto.
15272         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
15274         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
15275         invoke_impl field.
15277         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
15278         (mono_arch_get_this_arg_from_call): Ditto.
15280         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
15281         
15282         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
15283         try to create optimized invoke code and use that for further invocations. 
15284         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
15286         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
15288 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
15290         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
15291         sealed classes or methods.
15292         *devirtualization.cs: tests for the new optimization
15294 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
15296         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
15297         by the update_volatile () function.
15299 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
15301         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
15302         require it.
15304         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
15306 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15308         * mini.c: Add configure checks for header files.
15309         * mini-x86.c: Add configure checks for header files.
15310         * trace.c: Add configure checks for header files.
15311         * aot-runtime.c: Add configure checks for header files.
15312         * aot-compiler.c: Add configure checks for header files.
15313         * driver.c: Add configure checks for header files.
15314         * mini-codegen.c: Add configure checks for header files.
15315         
15316         Code is contributed under MIT/X11 license.
15318 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15320         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
15321         icompare_imm -128 + op_iclt. Fixes #81703.
15323 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
15325         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
15327 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15329         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
15330         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
15331         so that all isinst checks now use "interface_bitmap".
15333 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
15335         * cpu-amd64.md (jmp): Fix a warning.
15337         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
15339         * basic.cs: Add new regression test.
15341         * basic.cs: Remove test which is now in basic-long.cs.
15343         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
15345         * basic-long.cs: Add new test.
15346         
15347 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
15349         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
15351 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15353         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
15355         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
15356         places.
15357         
15358         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
15359         throwing code a bit.
15361         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
15362         the exception throwing code a bit.
15364         * mini-x86.c (get_call_info): Allocate result from a mempool.
15366 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
15368         * aot-compiler.c (find_typespec_for_class): Fix the assert.
15370         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15372         * mini.h (MonoCompile): Add 'token_info_hash' field.
15374         * mini.c: Save token->method associations during compilation so the AOT 
15375         compiler can use it.
15376         
15377         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
15378         which reference generic classes and methods.
15380 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
15382         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
15384         * aot-compiler.c (compile_method): Fix a typo in a comment.
15386         * aot-runtime.c (decode_cached_class_info): Skip generic types.
15388         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
15389         everything generic.
15391         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
15393 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
15395         * mini.h (MonoCompile): Add 'args' field.
15397         * mini.c (mono_compile_create_vars): Store variables representing the arguments
15398         into cfg->args.
15400         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
15402 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
15404         * mini.c (mono_compile_get_interface_var): Remove this unused function.
15406         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
15408         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
15409         opcodes for some opcodes.
15411         * mini.h *.brg *.c: Use the new opcodes.
15413 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15415         * mini.h: Bumped aot revision.
15417         * inssel.brg: modified code generation of type checks for interfaces
15418         to use the new "MonoClass.interface_bitmap" instead of the old
15419         "MonoClass.interface_offsets".
15421 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15423         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
15425 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
15427         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
15428         64 bit platforms.
15430 2007-04-27  Neale Ferguson <neale@sinenomine.net>
15432         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
15434 2007-04-27  Wade Berrier  <wberrier@novell.com>
15436         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
15437         mini.h) to fix build.
15439 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15441         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
15442         
15443         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
15444         causes the corlib unit tests to fail.
15446 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15448         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
15450         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
15452         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
15453         opcodes to the comparison relations.
15455         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
15456         opcodes to their types.
15457         
15458         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
15460         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
15461         it in cfg->arch.cinfo.
15463         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
15465         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
15466         cfg->cil_offset_to_bb.
15468 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15470         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
15471         created becase of initlocals.
15473 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
15475         * mini-alpha.c cpu-alpha.md: More alpha port work from 
15476         Sergey Tikhonov <tsv@solvo.ru>.
15478 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
15480         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
15482 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
15484         * cpu-s390.md (break): Correct the length of break instruction.
15486 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
15488         * mini.c: fix a couple of soft-float issues and comments.
15490 2007-04-15  Miguel de Icaza  <miguel@novell.com>
15492         * trace.c (is_filenamechar): - is also a filename char.
15494 2007-04-15  Neale Ferguson <neale@sinenomine.net>
15496         * mini-s390.c: Correct checking for enum type in return value processing.
15498 2007-04-14  Raja R Harinath  <rharinath@novell.com>
15500         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
15501         (version.h): Makefile is in the build directory.
15503 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
15505         * mini-amd64.h: fix for assertion failure on Solaris/amd64
15507 2007-04-11  Martin Baulig  <martin@ximian.com>
15509         * mini.c (can_access_member): Fix handling of generic classes;
15510         fixes #81259.
15512 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
15514         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
15516 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
15518         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
15520 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15522         * mini-codegen.c: make sure the right spill amount is
15523         used for fp or integer registers (fixes the float_sub_spill() on ppc).
15525 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
15527         * mini-ppc.c: fixes for the fp_branch_nan test.
15529 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
15531         * basic.cs: Comment out new test which still fails on ia64.
15533 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15535         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
15537 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15539         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
15541 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
15543         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
15544         on 64 bit machines. Fixes part of #80738.
15546         * basic.cs: Add regression test.
15548 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
15550         * inssel.brg basic.cs: Revert previous change to fix build.
15552         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
15553         platforms.
15554         
15555         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
15557         * basic.cs: Add new regression test.
15559 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
15561         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
15562         many arguments.
15564 2007-03-16  Neale Ferguson <neale@sinenomine.net>
15566         * cpu-s390x.md: Correct length of break instruction.
15568 2007-03-16  Neale Ferguson <neale@sinenomine.net>
15570         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
15571         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
15573 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
15575         * *.c: Begin WIN64 port.
15576         * mini.c:  Use correct register in profiler.
15577         * mini-amd64.c: No inline assembly on Win64.
15578         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
15579         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
15580         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
15581         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
15582         mono_arch_ip_from_context for Win64.
15583         
15584         Contributed under MIT/X11 license.
15586 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
15588         * exceptions-amd64.c (seh_handler): Ditto.
15590         * exceptions-x86.c (seh_handler): Fix a memory leak.
15592 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
15594         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
15595         mini-s390x.c: fixed peephole optimizations to deal
15596         correctly with 1 and 2 byte reload avoidance.
15598 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15600         * cpu-s390.md, cpu-s390x.md: update localloc length.
15602 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15604         * cpu-g4.md: added missing descriptions.
15606 2007-03-14  Miguel de Icaza  <miguel@novell.com>
15608         *  Makefile.am: Add support so the tail tests are not executed on
15609         PowerPC as that is a known limitation of the PowerPC port.
15611 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15613         * runmdesc.bat:  Move to msvc directory.
15614         
15615 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15617         * runmdesc.bat:  Run executable that was produced by the current
15618         target and sent via an argument.
15619         
15620 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
15622         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
15623         #81102.
15625         * generics.2.cs: Add regression test.
15627 2007-03-09  Wade berrier  <wberrier@novell.com>
15629         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
15631 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
15633         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
15634         AOT code depends on this.
15636 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
15638         * mini.c: more precise tracking of types in the eval stack
15639         (part of fix for bug #81044).
15641 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
15643         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
15645         * aot-compiler.c (encode_patch): Remove an obsolete comment.
15647 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15649         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
15651         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
15653 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
15655         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
15656         a pointer on 64 bit systems. Fixes #80190.
15658         * iltests.il: Add new regression test.
15660 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15662         * mini.c: inline a constant for Environment.IsRunningOnWindows.
15664 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
15666         * trace.c: Remove an erroneous alignemnt check when tracing.
15667           Fixes --trace on OSX86.
15669 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
15671         * mini-$(arch).h: initialize SP in context for all the archs.
15673 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
15675         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
15676         regressions in the thread tests.
15678 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
15680         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
15681         - fixed implementation of LOCALLOC opcode
15682         - implemented non-un compare for floats
15683         - code cleanup
15684         - implementation of FDIV and CKFINITE opcodes
15685         - fixes for latest mono updates
15686         - additional arch opcodes
15688 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15690         * Makefile.am: simplify and merge rules for cross-compilation.
15692 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
15694         * local-propagation.c: Actually *apply* the fix for bug 80591...
15696 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15698         * mini-exceptions.c: backuot part of the last change
15699         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
15701 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
15702         * inssel.brg: Fix bug 59286.
15705 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
15707         * mini-exceptions.c: patch from Zoltan to correctly check for
15708         stack boundaries (using the stack register, not the frame register),
15709         fixes bugs #80724, #79717.
15711 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
15713         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
15714         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
15716         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
15717         presence of frame pointer elimination.
15719 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
15720         
15721         * mini-x86.h: NetBSD UCONTEX_REG defines.
15723 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
15725         * inssel-amd64.brg: Fix amd64 build.
15727 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
15729         * mini.h: remove extern to workaround what looks likes gcc bug 26905
15730         on amd64.
15732 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
15734         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
15735         ends.
15737         * mini-<ARCH>.c: Use mono_is_regsize_var ().
15739 2007-01-30 Mark Mason <mason@broadcom.com>
15741            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
15742            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
15743            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
15744            beginning support for CEE_JMP [not quite working yet]
15745            * tramp-mips.c: LMF handling now works
15746         
15747 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
15749         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
15751         * mini.h (NULLIFY_INS): New macro.
15753 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
15755         * mini.c: statistical profiler fix for windows, patch
15756         from Tor Lillqvist (tml@novell.com).
15758 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
15759         * local-propagation.c: Fix bug 80591.
15761 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
15763         * Makefile.am: put back the --export-dynamic option as with
15764         the previous gmodule flags (thanks to Robert Jordan).
15766 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
15768         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
15770         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
15771         simplify and speed up the local register allocator. Also rename some fields
15772         like iassign->vassign.
15773         
15774         * regalloc.c: Remove some functions which are no longer used since their
15775         inlined version is in mini-codegen.c.
15776         
15777         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
15779         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
15781 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
15783         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
15784         narrowing. Fixes #80622.
15786         * iltests.il: Add new regresssion test. 
15788 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15790         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
15791         debug-debugger.c, debug-debugger.h: warning fixes.
15792         * driver.c: updated copyright year and made it fit in one line.
15794 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
15796         * aot-runtime.c: updated to use mono-dl instead of gmodule.
15798 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
15800         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
15802         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
15804         * iltests.il: Add new test for bug #80507.
15806 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15808         * mini-arm.h: use soft-float also on vfp for now.
15810 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15812         * mini.c: fix some more soft-float issues.
15814 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15816         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
15818 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
15819         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
15820         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
15821         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
15823 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
15825         * mini-arm.c: typo fix.
15827 2007-01-23  Neale Ferguson <neale@sinenomine.net>
15829         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
15831 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
15833         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
15834         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
15836         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
15838         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
15840         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
15841         
15842         * inssel.brg: Fix a warning.
15844         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
15846         * abcremoval.c ssa.c ssapre.c: Update after this change.
15847         
15848         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
15850         * dominators.c (df_set): Use mono_bitset_union_fast.    
15852 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
15854         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
15855         mini-codegen.c: reduce relocations and memory usage for the cpu
15856         description.
15858 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
15860         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
15862         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
15863         to reduce their size.
15865 2007-01-19 Mark Mason <mason@broadcom.com>
15867         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
15868         * mini-mips.c: more configuration macros, support long conditional branches, additional
15869         asserts, fix epilog instrumentation.
15870         * mini-mips.h: use standard stack walk
15871         * cpu-mips.md: increase size of div, rem and conditional branches
15872         
15873 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
15875         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
15876         to cpu spec data.
15878 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
15880         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
15881         (compile_method): Ditto.
15883         * aot-runtime.c (decode_klass_info): Ditto.
15885         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
15886         needed by the code generated by inssel.brg. Also fix a warning.
15888 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
15890         * mini.c: deal with enums that become genericinsts by
15891         being nested in a generic class (bug #79956).
15893 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
15895         * mini.c: match the generic definition to check for
15896         private access with generic types (bug #78431).
15898 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
15900         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
15901         to make life easier for people cross-compiling that insist on not
15902         using scratchbox.
15904 2007-01-17 Mark Mason <mason@broadcom.com>
15906         * inssel-long.brg: patch to deal with mips missing flags
15907         * inssel-long32-mips.brg: implement overflow checks
15908         * insset-mips.brg: implement overflow checks
15909         * mini-mips.h: implement conditional exception handling
15910         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
15911           Remove unused code, minor cleanups.
15912         * exceptions-mips.c: minor cleanups
15913         * mini-ops.h: add mips conditional exception ops
15914         * cpu-mips.md: add mips conditional exception ops
15916         
15917 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
15919         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
15920         to deal with mips missing of flags.
15922 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
15924         * exceptions-ppc.c: execute fault handlers.
15926 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
15928         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
15930 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15932         * mini.c: handle also floating point values in initialize_array.
15934 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15936         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
15937         array initialization and make it conditional on the intrins option.
15939 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15941         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
15942         relocations and put the patch info names close to the enum definition.
15944 2007-01-15 Mark Mason <mason@broadcom.com>
15946         * basic.cs, exceptions.cs: break up large tests to increase debugability.
15948 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
15950         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
15952 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15954         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
15956 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15958         * Makefile.am: distribute the mips sources.
15960 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
15962         * mini-codegen.h: handle bug #80489 here, by excluding ecx
15963         directly.
15965 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
15967         * cpu-x86.md: back out for now as this triggers other regressions.
15969 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15971         * cpu-x86.md: force src1 and dest regpair for long shift instructions
15972         to eax:edx, so ecx can't get allocated to them (bug #80489).
15974 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
15976         * mini.c, mini-exceptions.c: enabled running fault handlers
15977         (bug #80469).
15979 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15981         * driver.c: If nothing fail, do not use the string "failed",
15982         because it makes it very annoying to view test result logs on the
15983         web. 
15985 2006-12-30  Miguel de Icaza  <miguel@novell.com>
15987         * debug-debugger.c (mono_debugger_main): Rename "main" to
15988         "main_method" to prevent a warning.
15990         Remove a warning for unused field.
15992 2006-12-28  Martin Baulig  <martin@ximian.com>
15994         * debug-debugger.c
15995         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
15997 2006-12-22  Martin Baulig  <martin@ximian.com>
15999         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
16000         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
16001         seperate `.mdb_debug_info' section, so we can access it from the
16002         debugger even if the binary is stripped.
16004         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
16005         from the `.mdb_debug_info' here to prevent the linker from
16006         removing that section.
16008         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
16009         mdb-debug-info64.s.
16011 2006-12-19  Robert Jordan  <robertj@gmx.net>
16013         * mini-x86: enable the code to return small structures in
16014         registers for FreeBSD as well. Fixes bug #80278.
16015         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
16017 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16019         * mini-x86.c: align the stack when calling the profiler
16020         function instrumenting the prolog (on OSX).
16022 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16024         * mini.c: emit a break opcode where Debugger.Break () is called.
16026 2006-12-13  Miguel de Icaza  <miguel@novell.com>
16028         * mini.c (mono_method_to_ir): Provide useful information on this
16029         assert, to prevent others from debugging like I did.
16031 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16033         * mini.c: enable code which was incorrectly commented
16034         (bug #80235).
16036 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
16038         * mini-x86.c: enable on OSX, too, the code to return small
16039         structures in registers.
16041 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
16043         * mini-x86.c: remove the use of the dynamic code manager here, too.
16045 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16047         * mini.h, debug-debugger.c, tramp-*.c: fixed 
16048         mono_debugger_create_notification_function() to use
16049         mono_global_codeman_reserve () instead of a dynamic code manager.
16051 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16053         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
16054         ves_array_element_address() jit icall and use a generated
16055         managed method instead (which is about 4 times faster for a rank 3
16056         array access).
16058 2006-11-29  Mark Mason  <mason@broadcom.com>
16060         * basic-calls.cs: additional tests for passing
16061         structures as function arguments.
16063 2006-11-29  Mark Mason  <mason@broadcom.com>
16065         * mini-mips.h: disable custom exception handling
16066         * mini-mips.c: throw/rethrow should use jalr to call
16067         exception stubs.  Fixed bug with passing structures
16068         by value. More support for tracing floating point
16069         functions.
16071 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16073         * mini.c: fixed typo in the soft-float ldind.r4 handling
16074         (bug #80086).
16076 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16078         * mini.c, mini.h, driver.c: added --runtime command line
16079         option to select a different runtime than the autodetected one.
16080         * jit.h: added API for embedders to initialize with a specific
16081         runtime version.
16083 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
16085         * mini.c: handle also boxing of r4 values (bug #80024).
16087 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16089         * mini-ppc.c: force indirect calls until we reserve
16090         enough address space for all the generated code.
16092 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
16094         * exceptions-arm.c: workaround bugs in the libc definition
16095         of struct ucontext.
16097 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16099         * inssel.brg: fixes from me and Mark Mason.
16101 2006-11-23  Dick Porter  <dick@ximian.com>
16103         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
16104         semaphore display now we've fixed the initial value
16106 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16108         * inssel.brg: partially revert the last change to fix the build.
16110 2006-11-21  Mark Mason  <mason@broadcom.com>
16112         * inssel.brg: Add and use compare-and-branch macros to support
16113         architectures that do not have condition code registers (ie. MIPS).
16114         * *-mips.{c,brg,md}: Fix copyright statements
16116 2006-11-20  Mark Mason  <mason@broadcom.com>
16118         * Makefile.am: remove mini-codegen.c from list of MIPS sources
16119         * mini.c: Allow GET_CONTEXT to be specified by the arch port
16120         * mini.h: Added declaration for mono_print_ins()
16121         * mini-codegen.c: added ins_spec initializer for MIPS
16122         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
16123         vreg to be virtual and hreg to be non-virtual.
16124         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
16125         is not yet working/implemented correctly.
16126         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
16127         non-static, fixup calls to print_ins() from other parts in the file.
16129 2006-11-20  Mark Mason  <mason@broadcom.com>
16131         * basic-calls.cs: added tests for passing structures as arguments
16132         to calls.
16134 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16136         * inssel-long32.brg: optimize signed division by power of two.
16138 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16140         * mini-arm.c: added support for interworking with thumb code
16141         (mono must be still be built using the ARM instruction encoding).
16143 2006-11-19  Miguel de Icaza  <miguel@novell.com>
16145         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
16146         verifier has different rules for it.   Fixes a few verifier issues
16147         in the test suite.
16149         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
16150         at the end, so people know what happened.
16152 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16154         * brach-opts.c: in optimize_exception_target() make sure we
16155         are in a catch clause (fixes bug #79871).
16157 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16159         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
16160         more soft-float support fixes.
16162 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
16164         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
16165         that are passed half on the stack and half in registers.
16167 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16169         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
16170         more mips integration work from Mark E Mason 
16171         <mark.e.mason@broadcom.com>.
16173 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16175         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
16176         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
16177         tramp-mips.c: added sources for the mips port, not
16178         integrated in the build yet. Contributed by
16179         Mark E Mason <mark.e.mason@broadcom.com>.
16181 2006-11-14  Neale Ferguson <neale@sinenomine.net>
16183         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
16185 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16187         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
16188         put the soft-float rules in its own file since it seems to
16189         break s390 compilation.
16191 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16193         * mini-arm.c: fixed wrnings.
16195 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
16197         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
16198         inssel-arm.brg: ARM support for soft-float.
16200 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
16202         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
16203         loads and stores of 32 bit fp values.
16205 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
16207         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
16209         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
16210         works. Fixes #79852 and #79463.
16212 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16214         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
16215         more soft-float support WIP and fixes.
16217 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
16219         * mini-arm.c: some VFP updates.
16221 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16223         * mini-exceptions.c: 0 is a valid local var offset in some
16224         architectures, don't assert (bug #78508).
16226 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
16228         * exceptions-arm.c: fixed off by one error in stack walk code.
16230 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16232         * mini.h, mini.c: more precise tracking of type load exceptions.
16234 2006-11-03  Robert Jordan  <robertj@gmx.net>
16236         * Makefile.am: [WIN32] Add monow.exe target.
16237         * driver.c: [WIN32] Don't detach the console when debugging.
16238         Fixes bug #79797.
16239         
16240 2006-10-30  Miguel de Icaza  <miguel@novell.com>
16242         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
16244 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
16246         * aot-compiler.c (emit_method_info): Add a case missed earlier.
16248         * driver.c (mini_regression): Fix --regression with AOT.
16250         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
16252 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
16254         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
16256         * mini-sparc.h: Don't use sigaction on sparc/linux.
16258         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
16260         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
16262         * mini-exceptions.c: Add proper include files for getpid ().
16264 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
16266         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
16267         address instead of a MonoJitInfo* to avoid decoding the exception info for the
16268         method.
16270         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
16271         name cache to reduce its size.
16273         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
16275 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16277         * mini-x86.c: Save/restore the current LMF structure more efficiently using
16278         the mono_lmf TLS variable.
16280         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
16281         trampoline lmf frames.  
16283         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
16285 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
16287         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
16288         the mono_lmf TLS variable.
16290         * mini-exceptions.c: Access the LMF structure through accessors.
16292         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
16293         variable instead of in jit_tls->lmf.
16295         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
16296         
16297         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
16298         trampoline lmf frames.
16300         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
16302 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
16304        * mini.c trace.c mini-x86.c: Revert these too.
16305         
16306        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
16307        signature change.
16309 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
16311         * genmdesc.c: removed now dead code.
16313 2006-10-09  Robert Jordan <robertj@gmx.net>
16315         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
16317 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
16319         * mini.h: do not leave gaps in the opcode values.
16321 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
16323         * jit-icalls.h: flag functions as internal here, too.
16325 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
16327         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
16328         functions with the internal attribute.
16330 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
16332         * aot-compiler.c: fclose the file descriptor in the profile read loop.
16334 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16336         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
16337         for soft-float.
16339 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16341         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
16342         tail calls as on other platforms.
16344         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
16346         * iltests.il: Add a few tailcall tests.
16348 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16350         * driver.c: fix loop for old compilers (bug #79521).
16352 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16354         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
16356         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
16358         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
16359         metadata without any code.
16361         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
16362         more precise debugging information using gdb.
16364 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16366         * inssel-ia64.brg: Make the helper methods static.
16368 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
16370         * inssel-x86.brg: make the helper methods static.
16372 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
16374         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
16376 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
16378         * mini.c: updates for monoburg changes.
16379         * inssel.brg: make a few helper functions static as they should.
16381 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16383         * Makefile.am: Move mini-codegen.c to common_sources.
16385 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16387         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
16388         instructions.
16389         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
16390         mini-ppc.h: port to use the common local register allocator.
16392 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16394         * mini.h: Remove the comment too then.
16396 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
16398         * mini.h: put back backend.data which is to be used shortly and
16399         doesn't increase the size of MonoInst. If any 64 bit arch aligned
16400         pointers on 4 byte boundaries it'd have much bigger issues running
16401         and you can ifdef it out anyway.
16403 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16405         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
16406         MonoInst size by 4 bytes on 64 bit machines.
16408 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16410         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
16411         replacement with more meaningful field names. Arch maintainers, please
16412         check the assigned names are good enough for your arch.
16414 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16416         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
16417         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
16419 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16421         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
16422         relocations and memory requirements, put the optimization flags
16423         definitions in their own file.
16425 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
16427         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
16429         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
16431 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
16433         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
16435 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
16437         * inssel.brg: use the correct function to get the size of an item
16438         in an array, given an element class.
16439         * aot-compiler.c: do not access class->class_size directly.
16441 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16443         * mini.h, debug-mini.c: added a debugging function to print
16444         info about local variables and arguments in a jitted method.
16446 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
16448         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
16450         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
16452 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
16454         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
16455         inner and outer loops when passing vtypes.
16457 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
16459         * mini-ppc.c: take into account the cpu errata for cache flushing
16460         which caused some random errors (bug #79381).
16462 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
16464         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
16465         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
16467 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16469         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
16470         loaded.
16472         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
16473         freebsd ports tree.
16475         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
16476         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
16478         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
16479         displacement.
16481 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
16483         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
16485 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
16487         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
16488         macro does not have to be changed during debugging.
16490         * 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>.
16492         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
16494         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
16495         
16496         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
16497         MONO_ARCH_NO_EMULATE_MUL is defined.
16499         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
16501         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
16503         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
16505         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
16506         
16507 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16509         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
16510         stuff to mini-exceptions.c where it is used.
16512         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
16513         setup code, the real one is in mini-exceptions.c.
16515         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
16516         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
16517         some changes from the freebsd ports tree.
16519         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
16520         constants.
16521         
16522         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
16524 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
16526         * mini.c: on Linux, check for /proc to be mounted
16527         (bug# 79351, novell bug#201204).
16529 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
16531         * mini.c: handle cases where pthread_attr_getstack() behaves
16532         incorrectly (bug #78096).
16534 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
16536         * mini-arm.c: support larger stack frames (bug #79272).
16538 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16540         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
16542         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
16543         tokens.
16545         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
16546         mono_class_from_name () to find a class from its name.
16548         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
16550 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
16552         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
16554 2006-09-05  Kornel Pal  <kornelpal@gmail.com>
16556         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
16558 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16560         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
16561         callinfo->trampoline.
16563         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
16564         fixes #79271.
16565         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
16566         future.
16568 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16570         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
16572 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
16574         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
16575         stats.method_trampolines, it is already done by the generic trampoline code.
16577         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
16578         
16579 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16581         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
16583         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
16585         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
16587         * mini.c (print_jit_stats): Print mscorlib mempool size too.
16588         
16589         * mini.c (print_jit_stats): Print new stats.
16591         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
16593 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16595         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
16596         Address on two dimensional arrays. Fixes #78729.
16598         * mini.h (MonoCompile): Add a 'skip_visibility' field.
16600         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
16601         a method.
16603         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
16605         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
16606         #79130.
16607         
16608         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
16609         a race condition.
16610         (mini_get_ldelema_ins): Ditto.
16612 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
16614         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
16615         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
16616         Fixes #79213.
16618 2006-08-29 Neale Ferguson <neale@sinenomine.net>
16620         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
16621         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
16623         * exceptions-s390x.c: Cosmetic change.
16625         * tramp-s390.c: Fix warning.
16627         * cpu-s390.md: Correct length of mul_imm.
16629 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16631         * aot-compiler.c: added binary writer with ELF backend
16632         implementation (only on Linux/x86 for now).
16634 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
16636         * Makefile.am: Don't run net 2.0 AOT tests.
16638         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
16639         (mono_compile_assembly): Skip net 2.0 assemblies as well.
16641         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
16643 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16645         * aot-compiler.c: simplified and refactored the asm-writing code
16646         to allow different backends.
16648 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
16650         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
16652         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
16653         little. Share patches of type TYPE_FROM_HANDLE as well.
16655         * mini.c (mono_patch_info_equal): New helper function.
16656         (mono_patch_info_hash): Ditto.
16658         * aot-compiler.c (emit_method_code): Fix s390 build.
16660         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
16661         is not handled because it is stored as a flag and not as a type ctor. Fixes
16662         #79016.
16664 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16666         * aot-compiler.c: Fix computation of GOT slot statistics.
16667         
16668         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
16669         Also remove support for not PIC AOT.
16671         * mini.h: Bump AOT file format version.
16673         * objects.cs: Add a test for #78990.
16675         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
16676         (peter.dettman@iinet.net.au). Fixes #79087.
16678         * basic-long.cs: Add a test for the above.
16680 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
16682         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
16683         
16684         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
16685         code somewhat.
16687 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
16689         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
16690         exceptions.
16692 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16694         * mini.c: Don't verify COM proxy invoke calls
16695         
16697 2006-08-10  Dick Porter  <dick@ximian.com>
16699         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
16700         which process is holding semaphores locked.
16702 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
16704         * mini-ia64.c mini-amd64.c: Fix #79027.
16706         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
16708         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
16710         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
16711         implicit arguments in a vararg call. Fixes #79027.
16713 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
16715         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
16716         (mono_get_array_new_va_signature): Ditto.
16718 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
16720         * aot-runtime.c: Call init_plt lazily.
16722         * inssel-long.brg: Fix unsigned long->int conversion.
16724         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
16726         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
16727         that most data is now in the .rss/.data section.
16729 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
16731         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
16733         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
16735         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
16737         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
16739         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
16740         virtual call. Fixes #79010.
16742         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
16743         and use the result as the this argument in the real call.
16745         * generics.2.cs: Add a new test for #79010.
16746         
16747 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
16749         * mini-x86.c: Fix a warning.
16751         * aot-compiler.c: Add a bunch of statistics.
16753         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
16755 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
16757         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
16759 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16761         * 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>.
16763 2006-07-13  Miguel de Icaza  <miguel@novell.com>
16765         * mini.c (mono_method_to_ir): Obtain the original method in the
16766         CIL stream and use this to perform validation.
16768         Fixed: #78816
16770 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
16772         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
16773         (mono_arch_call_opcode): Ditto.
16775         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
16776         #78826.
16778         * mini.c (mono_patch_info_dup_mp): New helper function.
16779         
16780         * aot-compiler.c (compile_method): Fix some of the memory allocated during
16781         compilation. Fixes #78827.
16783 2006-07-18  Kornel Pal  <kornelpal@gmail.com>
16785         * declsec.c: Use original security informations for
16786           MONO_WRAPPER_MANAGED_TO_MANAGED.
16788 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16790         * mini.c: Allow Com Interop methods/classes and
16791         don't verify COM wrapper calls
16792         
16794 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
16796         * inssel-long32.brg: Fix long->i4 checked conversion.
16798         * exceptions.cs: Add a test for the above.
16800 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16802         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
16804         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
16805         leaks.
16807         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
16808         #78775.
16810 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
16812         * mini.c: Fix solaris/x86 exception handling.
16814         * Makefile.am: Get rid of $(ICU_LIBS).
16816 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
16818         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
16819         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
16820         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
16822         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
16824         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
16825         this function causes a SIGSEGV.
16827 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
16829         * mini.c: Remove unused solaris/x86 includes.
16831 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16833         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
16835 2006-06-20  Jb Evain  <jbevain@gmail.com>
16837         * cpu-g4.md: fix max length of start_handler instruction.
16839 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
16840         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
16842 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
16843         * ssa.c: Fixed bug 78653 for SSA based deadce.
16844         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
16845         MonoInst.flags, used in SSA based deadce.
16846         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
16847         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
16849 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16851         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
16852         it can end up using non executable memory on ppc64 systems
16853         running ppc32 userspace (fix from Johannes Berg).
16855 2006-06-14  Dick Porter  <dick@ximian.com>
16857         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
16858         4.1.1
16860 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
16861         * mini.c: Made so that inline is locally disabled if it would
16862         trigger a .cctor, because too many apps depend on this behavior
16863         (which seems to be also the one of the MS CLR).
16865 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
16867         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
16868         No idea why this worked before.
16870         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
16871         which branch to outer exception clauses since they could skip the
16872         inner finally clauses. Fixes #78633.
16874         * exceptions.cs: Add a test for the above.
16876         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
16877         Fixes #78629.
16879         * iltests.il: Add a test for the above.
16881 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
16883         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
16884         after the end of a try bblock, to prevent asserts in mini_method_compile ().
16886         * iltests.il: Add a test for the above.
16888 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
16890         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
16891         
16892         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
16893         methods as instrinsics.
16895 2006-06-09  Wade Berrier <wberrier@novell.com>
16897         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
16898         (simple-cee-ops.h ssapre-mini-ops.h)
16900 2006-06-09  Neale Ferguson <neale@sinenomine.net>
16902         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
16903         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
16904         instruction).
16905         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
16906         * cpu-s390x.md: Fix max. length values for a couple of instructions.
16908 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16910         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
16912 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
16914         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
16915         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
16916         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
16917         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
16918         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
16919         of opcodes, so that bug 78549 should not happen again.
16920         * ssapre.c: Updated to use the renamed files.
16922 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16924         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
16925         in OP_ATOMIC_EXCHANGE_I4.
16927 2006-06-07  Wade Berrier <wberrier@novell.com>
16929         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
16930         in mono_debugger_create_notification_function)
16932 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
16934         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
16935         
16936         * mini.c (type_from_stack_type): Disable some changes which do not
16937         seem to work.
16939         * driver.c: Reenable opts.
16941         * mini.h (MonoStackSlot): New structure to keep track of the verification state
16942         of the evaluation stack.
16943         
16944         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
16945         evaluation stack trace at entry to the bblock.
16947         * mini.c (merge_stacks): New function to perform verification of stack merges.
16948         Turned off by default.
16950         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
16951         STACK_MP.
16952         
16953 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
16955         * local-propagation.c: Fixed bug 78549.
16957 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
16959         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
16961 2006-06-02  Miguel de Icaza  <miguel@novell.com>
16963         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
16964         tramp-arm.c, tramp-ia64.c
16965         (mono_debugger_create_notification_function): Update signature to
16966         new signature and use new protocol for creating the notification
16967         function.  
16969         Should fix the build.
16971 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
16973         * exceptions-ppc.c (mono_jit_walk_stack)
16974         (ves_icall_get_frame_info): Fix the build
16976 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16978         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
16980 2006-05-31  Raja R Harinath  <rharinath@novell.com>
16982         * il2tests.2.il: New file for generics CIL tests.  Add test for
16983         #78019.
16984         * Makefile.am: Update.
16986         Fix #78019
16987         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
16988         to nullable types.
16990 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
16992         * aliasing.c: Fixed bug 78311.
16994 2006-05-29  Martin Baulig  <martin@ximian.com>
16996         * mini-exceptions.c (mono_find_jit_info): When computing the
16997         native offset, check whether we're actually inside the method's
16998         code; call mono_debug_print_stack_frame() to format the frame.
16999         (ves_icall_System_Exception_get_trace): Call
17000         mono_debug_print_stack_frame() to format the stack frame.
17001         (ves_icall_get_trace): Update to the new debugging API.
17002         (mono_jit_walk_stack_from_ctx): Likewise.
17003         (ves_icall_get_frame_info): Likewise.
17005         * mini.c (get_method_from_ip): Use the new debugging API.
17006         (mono_print_method_from_ip): Likewise.
17008         * exceptions-ppc.c
17009         (mono_jit_walk_stack): Use the new debugging API.
17010         (ves_icall_get_frame_info): Likewise.   
17012 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17014         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
17016 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
17018         * mini.c: Added "limitator" to inline for debugging.
17020 2006-05-24  Martin Baulig  <martin@ximian.com>
17022         * debug-debugger.c (mono_debugger_init): Create a private,
17023         malloc()-based code manager for the notification function and
17024         intentionally leak it on exit.  This fixes the crash-on-exit race
17025         condition.
17027         * tramp-amd64.c
17028         (mono_debugger_create_notification_function): Added
17029         `MonoCodeManager *' argument.
17031         * tramp-x86.c
17032         (mono_debugger_create_notification_function): Added
17033         `MonoCodeManager *' argument.
17035 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
17037         * aliasing.c: Fixed 64 bit issue.
17038         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
17039         default since all known bugs are fixed (one more time!).
17041 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17043         * mini.c: write barrier support.
17045 2006-05-23  Martin Baulig  <martin@ximian.com>
17047         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
17048         check at the top of the file.
17050 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17052         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
17053         reverting changes without reason and without changelog entries.
17055 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17057         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
17058         to a few opcodes. Fixes #78439.
17060         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
17061         consistency with other archs.
17063         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
17065 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17067         * debug-debugger.c: fix the build.
17069 2006-05-17  Martin Baulig  <martin@ximian.com>
17071         * debug-debugger.c
17072         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
17073         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
17074         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
17075         (debugger_attach): Call GC_mono_debugger_add_all_threads().
17077 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17079         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
17081 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17083         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
17084         MONO_TYPE_GENERICINST.
17085         
17086         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
17087         MONO_TYPE_GENERICINST.
17089 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17091         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
17092         #78325.
17094 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
17096         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
17097         mempool.
17098         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
17100 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17102         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
17103         mono_trace_cleanup ().
17105         * iltests.il: Fix problem with the newly added test.
17107         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
17108         due to register constraints, free up the previous hreg. Fixes #78314.
17110         * iltests.il: Add new test for #78314.  
17112         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
17113         Interlocked.Add. Fixes #78312.
17115         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
17116         
17117 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17119         * inssel.brg (mini_emit_virtual_call): Fix a warning.
17121 2006-05-05  Martin Baulig  <martin@ximian.com>
17123         * debug-mini.c (mono_debug_open_block): New method.
17125         * mini-amd64.c
17126         (mono_arch_output_basic_block): Call mono_debug_open_block() at
17127         the beginning of each basic block.
17129         * mini-x86.c
17130         (mono_arch_output_basic_block): Call mono_debug_open_block() at
17131         the beginning of each basic block.
17133 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
17135         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
17136         default until I understand why they break the build on amd64.
17138 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17140         * mini.c (mini_cleanup): Call mono_cleanup ().
17142         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
17143         errors.
17145 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
17147         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
17148         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
17149         default since all known bugs are fixed, and I cannot reproduce bug
17150         77944... I'm asking Matt Hargett to test again after this commit.
17152 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
17154         * mini-codegen.c: Fixed typo that thrashed inline.
17156 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
17158         * dominators.c (compute_dominators): Avoid using a worklist since
17159         it is not correct in some cases. Instead, iterate over all bblocks as
17160         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
17162 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17164         * mini.c (mono_jit_compile_method_inner): Use
17165         mono_prepare_exception_from_error that resets the value
17166         internally.
17168 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17170         * mini.c: Move the mini_loader_error_to_exception to metadata. 
17171         
17172 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
17174         * aliasing.c: Fixed bug 78210.
17176 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
17178         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
17179         default until all their problems (or the ones they trigger) are fixed.
17181 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
17183         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
17184         
17185         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
17186         as loaded only after resolving patches since that could invoke the same method.
17188         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
17190         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
17191         functions.
17193         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
17194         AOT loader.
17196         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
17197         stack.
17199         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
17200         made from AOT code through the PLT table.
17202         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
17203         holding the plt offset when a call is made to the aot plt trampoline.
17204         
17205 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
17207         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
17208         amd64 AOT support.
17210         * Makefile.am (common_sources): Fix build breakage.
17212         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
17213         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
17214         intra-assembly calls if possible.
17215         
17216         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
17218         * mini-trampolines.c: Handle PLT entries.
17220         * mini.c: Avoid creating a GOT var for calls.
17222         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
17223         from mscorlib code.
17225         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
17226         from mscorlib code.
17228         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
17229         AOT code.       
17231         * mini.h: Bump AOT file format version.
17232         
17233         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
17234         covers more cases.
17236 2006-04-25  Martin Baulig  <martin@ximian.com>
17238         * driver.c: Disable copyprop, consprop and inline when running
17239         inside the debugger.
17241 2006-04-25  Martin Baulig  <martin@ximian.com>
17243         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
17244         with `get_current_thread' and added `detach'.
17245         (MonoDebuggerMetadataInfo): Added `thread_size',
17246         `thread_tid_offset', `thread_stack_ptr_offset' and
17247         `thread_end_stack_offset'.
17249 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
17251         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
17252         aot-runtime.c.
17254         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
17255         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
17257         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
17259         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
17261         * aot.c: Add support for ADJUSTED_IID.  
17263 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17265         * aot.c (emit_method_order): Don't align method_order_end.
17267         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
17268         the interface ID changes.
17270 2006-04-21  Dick Porter  <dick@ximian.com>
17272         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
17273         cleaning up a thread.  Fixes the new part of bug 77470.
17275 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
17277         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
17278         to managed wrapper.
17279                      
17280 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17282         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
17283         
17284         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
17285         SIGSEGV. Fixes #78072.
17287         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
17288         unregister our SIGABRT handler.
17290 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
17292         * mini.c: Disabled inline where it can alter the call stack in a
17293         way visible from managed code.
17294         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
17295         default.
17297 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
17299         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
17300         on other platforms. Fixes #78089.
17302 2006-04-13  Martin Baulig  <martin@ximian.com>
17304         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
17305         determine whether we're inside the debugger.
17307         * debug-debugger.h
17308         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
17310 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17312         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
17313         handler clauses. Fixes #78024.
17315         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
17316         in the CALL_MEMBASE opcodes. Fixes #78088.
17317         (mono_arch_get_vcall_slot_addr): Ditto.
17319 2006-04-10  Martin Baulig  <martin@ximian.com>
17321         * debug-debugger.c: The thread handling code has now been moved
17322         into ../metadata/threads.c.
17324 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17326         * driver.c (mono_main): Fix --with-gc=none build.
17328         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
17329         (mono_spillvar_offset_float): Ditto.
17330         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
17331         hreg, not when its !global, since on ia64, there is a third category: stacked
17332         registers.      
17334 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
17336         * mini.c: set MonoInst->klass for load field address and a few other
17337         places.
17339 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17341         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
17343 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17345         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
17346         the branch opt changes.
17348 2006-04-06  Dick Porter  <dick@ximian.com>
17350         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
17351         
17352         * wapihandles.c (mini_wapi_seminfo): 
17353         * driver.c (mono_main): Add semaphore info option
17355 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17357         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
17358         branch optimization changes. Fixes #78009.
17360 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17362         * mini.c: ignore accessibility of methods in managed->native wrappers.
17364 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17366         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
17367         
17368         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
17370 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17372         * mini.c: Modify the branch optimizations to preserve the invariant that
17373         the entries inside the in_bb and out_bb arrays are unique.
17374         (mono_unlink_bblock): Avoid creation of new arrays.
17376 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
17378         * mini.c (mono_unlink_bblock): Fix regression caused by previous
17379         change (#77992).
17381 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
17383         * mini.c (optimize_branches): Remove the "optimizations" in
17384         the cbranch1/cbranch2 -> branch cases which were causing several
17385         problems in the past. Fixes #77986.
17387 2006-03-31  Chris Toshok  <toshok@ximian.com>
17389         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
17390         default optimizations :(
17392 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17394         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
17395         branch.
17397 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
17399         * local-propagation.c: Added comments to structs and removed
17400         "Mono" prefixes from local tree mover types.
17402 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
17404         * Makefile.am (arch_sources): Define this for each architecture so 
17405         libmono_la_SOURCES is defined in one place.
17407 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17409         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
17410         from handles/.
17412 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
17414         * driver.c: print the GC name supplied by configure.
17416 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
17418         * local-propagation.c: Added tree mover, and moved here all the
17419         local propagation code from mini.c
17420         * mini.c: Added support for treeprop, and moved all the local
17421         propagation code to local-propagation.c
17422         * mini.h: Added support for treeprop
17423         * driver.c: Added support for treeprop, enabled consprop, copyprop,
17424         treeprop, inline and deadce by default
17425         * Makefile.am: Added local-propagation.c
17427 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
17429         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
17431 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
17433         * debug-debugger.c: make it compile without the Boehm GC.
17435 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17437         * mini.c: fixed issue with mismatch when an icall is registered
17438         with multiple names but same address.
17440 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17442         * declsec.c, mini-exceptions.c: use write barrier to set reference
17443         fields of managed objects.
17445 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
17447         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
17448         (can_access_internals): Fix a warning.
17450         * mini.c (print_method_from_ip): Rename this to 
17451         mono_print_method_from_ip so it gets exported.
17453         * trace.c: Deal with strings inside StringBuilder's containing garbage
17454         and fix memory leaks. Fixes #77848.
17456 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
17458         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
17459         fixes #77787.
17461 2006-03-16 Neale Ferguson <neale@sinenomine.net>
17462         
17463         * mini-s390.c: Remove OP_X86_TEST_NULL.
17465 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
17467         * mini.c: use the correct GetHashCode() for the moving collector.
17469 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
17471         * liveness.c: Regalloc spill cost tuning.
17473 2006-03-15 Neale Ferguson <neale@sinenomine.net>
17474         
17475         * mini-s390x.h: Correct S390_LONG macro.
17477         * mini-s390x.c: Cleanup unused code.
17479 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17481         * jit-icalls.h: New file.
17483         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
17484         icalls and include that instead of including jit-icalls.c.
17486         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
17487         OP_X86 opcodes.
17489 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
17491         * mini.c: when checking for member accessibility, also check for
17492         friend assemblies and for explicit interface implementations.
17494 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17496         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
17498         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
17500         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
17501         common cases are done first.    
17503         * mini-ops.h: Only define platform specific opcodes on the given platform.
17505         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
17506         branch.
17507         
17508 2006-03-14  Martin Baulig  <martin@ximian.com>
17510         Revert Paolo's change from r57348:
17512         * mini.h: don't use gboolean for bitfields.
17513         * mini.c: verifier changes for fields and methods accessibility.
17515 2006-03-13  Neale Ferguson <neale@sinenomine.net>
17517         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
17519         * mini-s390x.c: Fix conv_r_un.
17521         * cpu-s390, cpu-s390x.md: Fix lengths.
17523 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17525         * mini.c: nested types have access to all the nesting
17526         levels, not just the enclosing types.
17528 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17530         * mini.c: added a few more verification checks.
17532 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
17534         * liveness.c: Merge optimizations from the linear-il branch.
17536 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17538         * mini-ia64.c (emit_call): Add a comment.
17540         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
17542         * tramp-ia64.c: Fix some warnings.
17544 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17546         * mini.h: don't use gboolean for bitfields.
17547         * mini.c: verifier changes for fields and methods accessibility.
17549 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17551         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
17552         lazy icall wrapper changes.
17554         * dominators.c: Replace all the dominator algorithms with faster
17555         ones from the linear-il branch.
17557         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
17558         the mempool.
17560         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
17561         common cases are done first.
17563         * mini-amd64.c: Fix some warnings.
17565         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
17566         from the mempool.
17568         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
17569         added code.
17571         * mini.h: Add a missing prototype.
17573 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17575         * mini.c: Compile icall wrappers lazily.
17577         * mini-codegen.c: Use printf instead of g_print since its much faster.
17579         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
17580         function.
17582         * mini.c (optimize_branches): Cache the negative result from 
17583         remove_block_if_useless ().
17585         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
17586         Also fix some bblock linking issues.
17588         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
17589         assembly files.
17591         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
17593         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
17594         accessed fields first, for better cache behavior.
17595         
17596 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17598         * mini.c: speedup IList<T> array accesses.
17600 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17602         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
17603         inline_costs counter. Fixes #77190.
17605 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
17607         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
17608         trace messages. Fixes #77706.
17610 2006-03-04  Martin Baulig  <martin@ximian.com>
17612         * tramp-amd64.c, tramp-x86.c
17613         (mono_debugger_create_notification_function): Use
17614         mono_global_codeman_reserve() to allocate a buffer at runtime and
17615         return it.
17617         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
17619         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
17620         notification function at runtime and then call `initialize' in the
17621         `MONO_DEBUGGER__debugger_info' vtable.
17623 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17625         * iltests.il: Fix a visibility problem.
17627 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17629         * driver.c, mini.c: add hooks for the counters API.
17631 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
17633         * driver.c: show disabled options.
17635 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17637         * linear-scan.c: always use cost-driven selection.
17639 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17641         * jit-icalls.c (helper_compile_generic_method): Revert change from
17642         2006-02-24.
17644 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
17646         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
17648 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17650         * inssel.brg: style fixes, mostly to force the updated monoburg
17651         to run for people using svn.
17653 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17655         * mini.c: match monoburg changes.
17657 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17659         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
17660         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
17661         declaration in the header file.
17663 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17665         * helpers.c: reduce relocations and mem usage.
17667 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17669         * mini.h, mini-codegen.c: disable logging features if
17670         requested by configure.
17672 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
17674         * mini.c: tiny verifier changes.
17676 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17678         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
17679         cpu-pentium.md: stack alignment changes for osx/x86,
17680         partially from Geoff Norton <gnorton@customerdna.com>.
17682 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17684         * jit-icalls.c (helper_compile_generic_method): Update to changes
17685         in metadata/class.c.
17687 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17688         
17689         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
17690         
17691         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
17692         interface calls with large offsets.
17694 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17696         * jit-icalls.c (helper_compile_generic_method): Document the
17697         special-case we depend on so that we can inflate the method twice
17698         with the same context with no bad side-effects.
17700 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17702         * mini-x86.c, mini-amd64.c: fix for case when xen support
17703         is disabled.
17705 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17707         * mini-x86.c, mini-amd64.c: generate code to access tls items
17708         in a faster way for Xen systems.
17710 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17712         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
17713         updates and compilation fixes for the OSX/x86 port, mostly from
17714         Geoff Norton <gnorton@customerdna.com>.
17716 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
17718         * inssel.brg: faster interface call implementation
17719         to sync with the interface_offsets MonoVTable changes.
17721 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17723         * mini.c: more verification checks.
17725 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
17727         * mini.c: added a few more verification checks.
17729 2006-02-17      Neale Ferguson <neale@sinenomine.net>
17731         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
17732         facility on the processor and use it if available.
17734 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17736         * driver.c, aot.c, mini.c: throw exception if the IL code is
17737         invalid or unverifiable.
17739 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17741         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
17742         m.StructField.
17744 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
17746         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
17748 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17750         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
17751         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
17752         handling of instantiated generic valuetypes.
17754 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17756         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
17757         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
17758         instead.
17760         * generics.2.cs: Revert the nullable reftypes tests.
17762 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
17764         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
17765         using __builtin_frame_address (1) as it doesn't work in the presence
17766         of optimizations. Hopefully fixes #77273.
17768         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
17769         -> generics.cs change as it doesn't work with some automake versions.
17771 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17773         * mini.c: handle systems that sue a different way to
17774         retrieve the stack address of the current thread.
17776 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17778         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
17779         it specially in the makefile.
17781         * generics.2.cs: Add tests for nullable reference types.
17783 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17785         * mini.c: always handle the case when mono_jit_init()
17786         is called in a thread different from the main thread,
17787         confusing libgc (bug #77309).
17789 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
17791         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
17793 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17795         * mini.c: change optimize_branches () to use a single loop
17796         and introduce a new optimization to simplify some range checks.
17798 2006-02-03  Martin Baulig  <martin@ximian.com>
17800         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
17801         and merged with debugger_thread_manager_add_thread().
17802         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
17803         inform the debugger about the main thread.
17805 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
17807         * basic.cs: Add test for div.un/rem.un constant folding.
17809 2006-02-03  Neale Ferguson <neale@sinenomine.net>
17811         * cpu-s390x.md: correct int_xor_imm length
17813 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
17815         * generics.2.cs: New test for #77442.
17817         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
17818         #77442.
17820 2006-02-02  Martin Baulig  <martin@ximian.com>
17822         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
17823         <mono/metadata/mono-debug-debugger.h>   
17825         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
17827 2006-02-02  Martin Baulig  <martin@ximian.com>
17829         * debug-debugger.h: New header file for debug-debugger.c.
17831         * debug-debugger.c: Big API cleanup; don't run the managed Main()
17832         function is a separate thread anymore; add support for attaching.
17834 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17836         * tramp-x86.c: Fix a warning.
17838 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17840         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
17841         on very large methods.
17843         * aot.c (load_patch_info): Fix a warning.
17845 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17847         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
17848         mini-ops.h: alu membase optimizations.
17850 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
17852         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
17853         to speedup StringBuilder.
17855 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
17857         * dominators.c (mono_compute_natural_loops): Fix detection of
17858         loop body start blocks.
17860         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
17862 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17864         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
17865         #75145.
17867 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
17869         * aliasing.c: Fixed aliasing issue on 64 bit archs.
17871 2006-01-25  Martin Baulig  <martin@ximian.com>
17873         * debug-debugger.c: Moved the `MonoDebuggerManager' and
17874         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
17875         started to cleanup this file a little bit.
17877 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
17879         * mini.c: optimize a codepath frequently happening in generics code.
17881 2006-01-23  Martin Baulig  <martin@ximian.com>
17883         * Makefile.am: Only compile debug-debugger.c on supported platforms.
17885         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
17886         functions directly.
17888         * driver.c: debug-debugger.c is only available if
17889         `MONO_DEBUGGER_SUPPORTED' is defined.   
17891 2006-01-23  Martin Baulig  <martin@ximian.com>
17893         * debug-debugger.c: Only enable this on platforms where the Mono
17894         Debugger is working (x86 and x86_64).
17896 2006-01-21  Martin Baulig  <martin@ximian.com>
17898         The Mono Debugger is now using the normal `mono' instead of the
17899         `mono-debugger-mini-wrapper' when executing managed code.
17901         * debug-debugger.c: New file; previously known as
17902         debugger/wrapper/wrapper.c.
17904         * debug-mini.c (mono_init_debugger): Removed.
17906         * driver.c (mono_main): Added new `--inside-mdb' command line
17907         argument which is used when running inside the debugger.
17909 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
17911         * liveness.c (mono_analyze_liveness): Remove some unused data
17912         structures.
17914 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17916         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
17918 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
17920         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
17921         depends on implementation details of monobitset.
17923         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
17924         Fixes #77271.
17926 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
17928         * liveness.c: Update after monobitset changes.
17930 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
17932         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
17934 2006-01-11 Neale Ferguson <neale@sinenomine.net>
17936         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
17938         * mini-s390x.c: Remove warning messages.
17940 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17942         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
17944 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
17946         * generics.2.cs: Add ldelem/stelem_any test.
17948 2006-01-10 Neale Ferguson <neale@sinenomine.net>
17950         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
17952 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
17954         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
17955         
17956 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
17958         * generics.2.cs: Reenable vtype tests.
17960         * inssel-x86.brg: Remove an icorrect valuetype rule.
17962 2006-01-06 Neale Ferguson <neale@sinenomine.net>
17964         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
17965         initial support for OP_ABS.
17967 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17969         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
17971 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17973         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
17974         conversion and implement LADD/LSUB.
17976         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
17977         architectures.
17979 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17981         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
17983         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
17984         architectures.
17986 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17988         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
17989         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
17990         (stack walk problem).
17992 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
17994         * aot.c (mono_aot_load_method): Fix a warning.
17996 2006-01-03  Neale Ferguson <neale@sinenomine.net>
17998         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
18000 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18002         * iltests.il: Add test for #77148.
18004         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
18005         #77148.
18007 2006-01-03  Neale Ferguson <neale@sinenomine.net>
18009         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
18011 2006-01-03  Neale Ferguson <neale@sinenomine.net>
18013         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
18014         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
18016         * basic-long.cs: Add lconv-to-r4/r8 tests.
18018 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18020         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
18022         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
18023         here as on other archs.
18025 2005-12-29 Neale Ferguson <neale@sinenomine.net>
18027         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
18029 2005-12-29 Neale Ferguson <neale@sinenomine.net>
18031         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
18032         
18033         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
18035         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
18036         instrument_prolog; Add memory_barrier instruction.
18038 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
18040         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
18042 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
18044         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
18046         * aliasing.c inssel.brg: Fix warnings.
18048         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
18049         could skip initialization of some parts of memory.
18051         * mini.c mini-ia64.c: Fix warnings.
18053         * inssel-sparc.brg: Add an implementation of lneg which actually works.
18055 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18057         * aliasing.c (mono_build_aliasing_information): Add a workaround for
18058         a crash seen on sparc.
18060         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
18061         
18062         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
18064 2005-12-21 Neale Ferguson <neale@sinenomine.net>
18066         * mini-ops.h: Add s390_backchain instruction
18068         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
18070         * cpu-s390.md: Add s390_backchain instruction
18072         * mini-s390.c: Significant ABI changes
18074         * mini-s390.h: Cater for zero length structures
18076 2005-12-20 Neale Ferguson <neale@sinenomine.net>
18078         * mini-s390.c: ABI fixes
18080         * inssel-s390.brg: Remove debug statements
18082         * cpu-s390.md: Fix length of ATOMIC_xx operations
18084 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
18086         * basic-float.cs: Add float<->long conversion tests.
18088 2005-12-16 Neale Ferguson <neale@sinenomine.net>
18090         * mini-s390.c: Fix LOCALLOC processing.
18092         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
18094 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18096         * iltests.il: Add tests for some opcodes not covered by the other
18097         tests.
18099 2005-12-15 Neale Ferguson <neale@sinenomine.net>
18101         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
18102         register loading for Tail processing; Correct trace output.
18104         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
18106         * cpu-s390.md: Correct size of jmp instruction. 
18108 2005-12-13 Neale Ferguson <neale@sinenomine.net>
18110         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
18112 2005-12-13 Neale Ferguson <neale@sinenomine.net>
18114         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
18115           Bring s390 up to current level.
18117 2005-12-12  Zltan Varga  <vargaz@gmail.com>
18119         * generics.2.cs: Disable the newly added tests as they do not work yet.
18120         
18121         * generics.2.cs: Add valuetype tests.
18123 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
18125         * basic-long.cs: Add i4->u8 test.
18127         * objects.cs: Add tests for JIT intrinsic.
18129         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
18130         optimizations lost by a mistake.
18132 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18134         * basic-long.cs: Remove a test moved to objects.cs.
18136         * arrays.cs: Add more array tests.
18138 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18140         * arrays.cs: Add new tests for multi-dimensional arrays.
18142 2005-12-06  Raja R Harinath  <rharinath@novell.com>
18144         * Makefile.am (test_sources2): Add generics.2.cs.
18145         (EXTRA_DIST): Add test_sources2.
18147 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18149         Support for boxing and unboxing nullable types as well as the
18150         isinst operation on nullables, per the CLI ammendment.
18152         * inssel.brg (CEE_ISINST): Special case for nullable
18154         * mini.c (handle_unbox_nullable): new method
18155         (handle_box): Special case for nullable types
18156         (mono_method_to_ir): Call handle_unbox_nullable in correct
18157         places.
18159         * generics.2.cs: New test suite
18161         * Makefile.am: Support for regression tests with generics.
18163 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
18165         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
18166         allocated to registers. Fixes #76800.
18168 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
18170         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
18172 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
18174         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
18175         of platforms.
18177 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
18179         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
18180         objects.cs.
18182         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
18183         
18184         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
18185 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
18187         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
18188         single precision before storing to a single precision location.
18190 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18192         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
18194 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
18196         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
18197         correct files.
18199         * basic.cs: Remove test_0_byte_compares test which was moved to
18200         objects.cs a long time ago.
18202 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
18204         * aliasing.c: Fixed aliasing issue on 64 bit archs.
18206 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
18208         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
18209         handlers are called.
18211         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
18212         throwing code.
18214          * mini-ia64.c: Add support for the throw->branch exception 
18215         optimization.   
18217         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
18219 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
18221         * mini.c: Enabled "fastpath" deadce :-)
18222         
18223 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
18225         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
18226         alias analysis pass to support it.
18227         * mini.h: Likewise.
18228         * ssa.c: Likewise.
18229         * liveness.c: Likewise (liveness computation can use aliasing
18230         information to be more accurate).
18231         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
18232         moreover made so that "--compile-all" uses the given optimization
18233         flags and not the default ones.
18234         * aliasing.c: Alias analysis (new file).
18235         * aliasing.h: Likewise.
18236         * Makefile.am: added "aliasing.c" and "aliasing.h".
18237         
18238 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18240         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
18241         OP_L opcodes.
18243 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
18245         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
18246         fp >= end_of_stack exit condition, as it is not needed, and it might
18247         become true for fp eliminated frames.
18249 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18251         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
18252         coded offsets.
18254 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
18256         * mini-arm.c: fixed alignment of doubles/longs to match
18257         the C ABI (bug #76635).
18259 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
18261         * aot.c: fix compilation with --enable-minimal=aot.
18263 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
18265         * mini-arm.c: fixed compatibility with the new
18266         floating point emulator package for compares.
18268 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
18270         * mini.c : reverted sig->pinvoke changes (r51396-51397).
18272 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
18274         * mini-exceptions.c (print_stack_frame): Output to stderr.
18275         (mono_handle_native_sigsegv): Ditto.
18277 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18279         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
18280         OP_LCONV_TO_OVF_I implementation.
18282         * mini-amd64.c: Add support for the throw->branch exception 
18283         optimization.
18285         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
18286         when the catch clause catches a more general exception, i.e. Object.
18288 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
18290         * cpu-ia64.md: Remove unused opcodes.
18292         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
18293         specific defines for architectures defining USE_SIGACTION.
18295         * mini-ia64.c: Fix some warnings.
18297         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
18298         version seemed to skip a frame.
18300 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18302         * mini.c: Clean up the usage of sig->pinvoke flag. Now
18303         only calls which are made to native code use this flag.
18305 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18307         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
18308         varargs methods as well.
18309         
18310         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
18311         which have save_lmf set. Reorganize methods prologs a bit.
18313         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
18314         debugger to the proper place.
18316 2005-10-29  Martin Baulig  <martin@ximian.com>
18318         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
18319         when running inside the debugger until the debugger has support
18320         for it.
18322 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18324         * mini.h: Fix a warning.
18326 2005-10-24  Miguel de Icaza  <miguel@novell.com>
18328         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
18329         we expose publicly, this returns the string.
18331 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
18333         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
18334         with fp elimination.
18336 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18338         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
18339         native stacktrace using the glibc 'backtrace' function if available.
18341 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
18343         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
18345         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
18346         handle SIGSEGVs received while in native code.
18348         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
18349         code, call mono_handle_native_sigsegv which will abort the runtime
18350         after printing some diagnostics, instead of converting it into a
18351         confusing NullReferenceException.
18353 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18355         * cpu-pentium.md: Remove unused opcodes.
18357 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
18359         * mini-amd64.h (MonoLMF): Add rsp field.
18361         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
18362         the lmf too.
18364 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
18366         * mini-codegen.c (get_register_spilling): Fix some warnings.
18368 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
18370         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
18371         elimination during exception handling. Enable fp elimination by
18372         default.
18374         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
18375         elimination.
18377 2005-10-16  Martin Baulig  <martin@ximian.com>
18379         * mini-exceptions.c
18380         (mono_debugger_run_finally): New public method for the debugger.
18382 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18384         * debug-mini.c (mono_debug_init_method): Fix warning.
18386         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
18387         the 'exname' parameter const to fix some warnings.
18389 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
18391         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
18392         introduced by the previous patch.
18394 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
18396         * basic-float.cs: Add test for precision of float arithmetic.
18398         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
18399         when loading/storing single values from/to memory.
18401         * mini.c (mono_jit_compile_method_with_opt): Create the function
18402         pointers in the correct domain.
18404 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18406         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
18407         introduced by previous patch.
18408         
18409         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
18410         when out_filter_idx is NULL.
18412         * mini-exceptions.c: Don't run filter clauses twice during exception
18413         handling. Fixes #75755.
18415 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18417         * aot.c: Add support for ldflda wrappers.
18419         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
18420         #75902.
18422 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
18424         * mini.c, mini.h: do not consider exception handlers blocks when
18425         setting up interface variables.
18427 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
18429         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
18431 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
18433         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
18434         causes a regression.
18436         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
18438 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
18440         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
18441         of the OP_P definitions.
18443         * TODO: Add a proposal for dealing with the CEE/OP mess.
18445         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
18446         optimizations from the x86 port.
18448         * cpu-amd64.md: Ditto.
18450         * basic.cs basic-long.cs: Add tests.
18452 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
18454         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
18455         Patrik Torstensson's implementation of my exception-handling
18456         optimization idea, when the exception object is not used
18457         (bug #62150).
18459 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
18461         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
18462         of the mul_imm optimizations from the old jit.
18464 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
18466         * mini.c, liveness.c: patch by Patrik Torstensson and
18467         Zoltan Varga to improve performance in methods with
18468         exception clauses.
18470 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18472         * driver.c: Remove 'Globalization' entry from --version.
18474 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
18476         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
18477         there is a profiler interested in JIT events.
18479         * aot.c: Load profile files produced by the AOT profiling module, and
18480         reorder methods based on the profiling info. Add a 'method_order' table
18481         to the AOT file to make mono_aot_find_jit_info work with the reordered
18482         methods.
18484         * mini.h: Bump AOT file version info.
18486 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
18488         * mini-arm.h: work around what looks like a gcc bug when optimizations
18489         are enabled.
18491 2005-09-28  Raja R Harinath  <rharinath@novell.com>
18493         * Makefile.am (AM_CFLAGS): Don't use += to append inside
18494         conditionals.  Use ...
18495         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
18497 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
18499         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
18500         to determine the amount of memory to copy when passing valuetypes.
18502         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
18503         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
18505 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
18507         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
18508         information about aot.
18510 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18512         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18513         macros. This will allow a deadlock debugger to easily be plugged
18514         in.
18516 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
18518         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
18520 2005-09-27  Raja R Harinath  <rharinath@novell.com>
18522         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
18523         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
18524         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
18525         ($(arch_built)) [CROSS_COMPILING]: Error out.
18527 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18529         * aot.c: Add support for the no_special_static flag for classes.
18531 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18533         * Reapply reverted patches.
18535         * *: Revert r50174 as well.
18537         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
18539 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18541         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
18543 2005-09-23  Miguel de Icaza  <miguel@novell.com>
18545         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
18546         part of the SIG_HANDLER_SIGNATURE.  
18548 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18550         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
18551         statistics.
18553         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
18554         introduced by previous patch.
18556 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
18558         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
18559         saved registers too.
18561         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
18562         upon the information returned by get_call_info ().
18563         
18564         * mini-x86.c (add_float): Fix stack size calculation.
18565         (mono_arch_call_opcode): Rewrite this so it works based up the
18566         information returned by get_call_info ().
18567         (mono_arch_get_this_vret_args): Ditto.
18569 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
18571         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
18572         in cinfo to determine the registers which need to be used.
18574 2005-09-20  Miguel de Icaza  <miguel@novell.com>
18576         * driver.c (mono_main): Add --server and --desktop flags. 
18578 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
18580         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
18581         registers as global registers.
18583         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
18584         longer needed with the new register allocator.
18586         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
18588         * cpu-ia64.md: Remove unused opcodes.
18589         
18590         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
18591         
18592 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
18594         * cpu-amd64.md: Remove unused opcodes.
18596         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
18597         needed with the new register allocator.
18599         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
18600         reg-reg moves.
18602 2005-09-16  Raja R Harinath  <rharinath@novell.com>
18604         * Makefile.am (check-local): Don't invoke semdel-wrapper.
18606 2005-09-16  Martin Baulig  <martin@ximian.com>
18608         * exceptions-amd64.c
18609         (throw_exception): Don't call mono_debugger_throw_exception() if
18610         we're a rethrow - see the FIXME in the code.
18612 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
18614         * mini.c (mono_init_exceptions): This only works on some architectures.
18615         
18616 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
18618         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
18619         on ia64.
18621         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
18623         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
18624         now in mini-exceptions.c.
18626 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
18628         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
18629         now in mini-exceptions.c.
18631 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
18633         * exceptions-x86.c: Applied patch from Patrik Torstensson 
18634         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
18636         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
18637         code into mini-exceptions.c. Add some assertions to it.
18639 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18641         * aot.c (emit_section_change): Applied patch from "The Software Team" 
18642         (<software@solmersa.com>). Fix as errors on windows.
18644 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
18646         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
18647         method info into the LMF.
18649 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18650         
18651         * mini-ia64.c: Add proper unwind info for method epilogs.
18653         * exceptions-ia64.c: Add some code to help debugging.
18654         
18655         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
18657         * mini-exceptions.c: Fix warning.
18659 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
18661         * mini.c: Really fix build.
18663         * mini-x86.c mini-amd64.c: Fix build.
18665 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18667         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
18669         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
18670         some Interlocked methods as intrinsics.
18672         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
18673         for Thread methods as well.
18675         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
18677         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
18679         * mini-ia64.c mini-x86.c mini-amd64.c 
18680         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
18681         OP_MEMORY_BARRIER.
18682         
18683         * mini.c (mono_init_exceptions): Fix build breakage.
18685 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
18687         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
18688         of instructions. Use the new ia64_unw_op macros for emitting unwind
18689         info.
18691         * mini.c (mono_init_exceptions): Initialize exception handling
18692         related trampolines at startup.
18694 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
18696         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
18698 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18700         * mini.c: Handle type loading errors gracefully during compilation and
18701         throw the appropriate exception.
18703 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
18705         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
18706         for the mono binary.
18708 2005-09-09  Martin Baulig  <martin@ximian.com>
18710         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
18711         the release.
18713 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
18715         * mini-arm.h: use emulation for conv.r.un for the release.
18717 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
18719         * mini-arm.c, objects.cs: more fixes and tests for them.
18721 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
18723         * mini-arm.c: align structures to at least 4 bytes to be able
18724         to keep our current optimized memcpy.
18726 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
18728         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
18730 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18732         * mini.c: ignore SIGPIPE.
18734 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
18736         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
18738         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
18740 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
18742         * mini.h: Add prototype for mono_allocate_stack_slots_full.
18744 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
18746         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
18747         exception handling support.
18748         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
18749         patch by Brian Koropoff <briank@marakicorp.com>).
18751 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
18753         * mini.c: revert another 'optimization' which breaks when
18754         items on the eval stack need to be saved at a basic block end
18755         (bug #75940).
18757 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
18759         * jit-icalls.c: for arrays, ensure we always provide
18760         lower bounds.
18762 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
18764         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
18765         
18766         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
18768 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
18770         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
18771         arguments in their original register.
18773 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
18775         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
18776         memset/memcpy.
18778         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
18779         when ssapre is enabled.
18781         * inssel-long.brg: Fix bug in previous patch.
18783         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
18784         multiplication by a constant.
18786 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
18788         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
18789         icc.
18791         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
18792         saving registers.
18794 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
18796         * inssel-arm.brg: apply changes tested by Brian Koropoff
18797         <briank@marakicorp.com>.
18799 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
18801         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
18802         
18803 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
18805         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
18806         to the same register if dreg is just a base register.
18807         (print_ins): Improve printing of membase opcodes.
18809         * inssel-x86.brg: Add optimized ldind(reg) rules.
18811         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
18813 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
18815         * mini.c: when running under valgrind, set the stack bottom for
18816         the GC at the actual approximate stack for the app (fixes running
18817         mono with valgrind).
18819 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
18821         * mini.c: do no break at the first valuetype to init found
18822         (fixes bug #75791).
18824 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
18826         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
18828 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
18830         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
18832 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
18834         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
18836 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18838         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
18840         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
18841         code.
18843         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
18844         code.
18846         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
18847         methods.
18849 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
18851         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
18853 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18855         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
18856         in the tail recursion optimization.
18858         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
18859         debug info into the assembly file.
18861         * iltests.il: Add test for filter regions.
18863         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
18864         initial stack of filter regions. Fixes #75755.
18866 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
18868         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
18869         stack requirements.
18871 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18873         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
18874         the check for an already compiled method on non-ia64 platforms.
18875         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
18876         proper domain.
18878         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
18880         * inssel-x86.brg: Add some optimized call rules.
18882 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
18884         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
18885         method here.
18887         * mini.h mini-trampolines.c: Pass the trampoline argument to 
18888         mono_arch_patch_delegate_trampoline.
18890         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
18892         * mini-trampolines.c: Fix build.
18894         * mini-amd64.h: Add delegate trampolines.
18896         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
18898         * inssel-amd64.brg: Add optimized call rules.
18899         
18900         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
18902         * inssel-ia64.brg: Add optimized ldind(reg) rules.
18904 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
18906         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
18907         change.
18909         * mini-ia64.c: Remove LMF fixmes.
18911         * mini-ia64.h: Remove most fields from LMF.
18913         * inssel-ia64.brg (stmt): Fix unaligned access errors.
18915         * mini-trampolines.c: Add support for IA64 function descriptors.
18917         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
18918         for IA64 function descriptors.
18920 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
18922         * tramp-arm.c: patch the vtable for virtual calls. Added
18923         support code to register/unregister the LMF.
18924         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
18925         more LMF work.
18927 2005-08-19  Dick Porter  <dick@ximian.com>
18929         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
18930         bit value if needed.
18932 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
18934         * mini.c (mini_get_method): Move handling of wrapper data here.
18936         * mini.c (mono_method_to_ir): Add support for dynamic methods.
18938         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
18939         virtual.
18941         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
18942         bblock->code does not remain empty.
18944 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
18946         * arrays.cs: Add regression test for #75832.
18948         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
18949         rules. Fixes #75832.
18951         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
18952         instruction scheduling.
18954 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
18956         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
18958 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
18960         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
18962         * mini-codegen.c: Fix VC build.
18964         * cpu-pentium.md: Increase length of atomic_exhange_i4.
18966 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18968         * mini.h: fix signature for mono_register_opcode_emulation.
18970 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
18972         * mini.c: Get rid of most of the helper_sig_... constants using
18973         mono_create_icall_signature ().
18975 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
18977         * jit-icalls.c (helper_ldstr): New helper function.
18979         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
18981         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
18982         throw, load the string using a helper call instead of creating a string object.
18984         * aot.c: Update after LDSTR changes.
18986         * mini.h: Bump AOT file version.
18987         
18988         * aot.c: Save class size info into the AOT file. Print more statistics during
18989         compilation.
18991         * mini.h: Bump AOT file version.
18993         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
18994         ordering of disasm cases. Fixes #74957.
18996 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
18998         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
18999         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
19000         the generic code needed for the ARM port.
19002 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
19004         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
19005         inssel-arm.brg: more ARM features and fixes.
19007 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
19009         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
19010         ARM port work in progress.
19012 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19014         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
19016         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
19018         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
19020         * inssel.brg (mini_emit_memset): Add support for unaligned access.
19022         * *-ia64.*: Ongoing IA64 work.
19023         
19024         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
19026 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19028         * TODO: Remove out-of-data todo stuff.
19030         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
19031         dead code.
19033         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
19035         * mini.h: Bump corlib version.
19037 2005-07-27  Martin Baulig  <martin@ximian.com>
19039         * mini-codegen.c
19040         (create_copy_ins): Added `const unsigned char *ip' argument; set
19041         `copy->cil_code' from it.
19043 2005-07-27  Martin Baulig  <martin@ximian.com>
19045         * mini-exceptions.c (mono_handle_exception): Don't call
19046         mono_debugger_handle_exception() for filters.
19048 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
19050         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
19051         as well.
19053 2005-07-26  Martin Baulig  <martin@ximian.com>
19055         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
19057         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
19058         helper_compile_generic_method() if the method is actually virtual
19059         and non-final.
19061 2005-07-26  Martin Baulig  <martin@ximian.com>
19063         * mini.c
19064         (trampoline_code): Renamed to `mono_trampoline_code' and made it
19065         public; this is now accessed directly by the debugger.
19066         (mono_generic_trampoline_code): Removed.
19068         * debug-mini.c
19069         (mono_debug_init_method): Also add interncalls and wrappers.
19071 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
19073         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
19075 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19077         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
19079 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19081         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
19083 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19085         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
19086         getting TLS offsets on AMD64 too.
19088 2005-07-20  Kornel Pal <kornelpal@hotmail.com>
19090         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
19092 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
19094         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
19095         inssel-arm.brg, mini-arm.h: ARM port work in progress.
19097 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19099         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
19101         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
19102         to mini.c.
19104         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
19105         mono_sparc_is_virtual_call ().
19106         
19107         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
19109         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
19110         trampoline parameters.
19112         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
19113         
19114         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
19115         to mono_arch_get_vcall_slot_addr.
19117         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
19118         trampoline code.
19120         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
19122 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
19124         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
19126 2005-07-19  Martin Baulig  <martin@ximian.com>
19128         * exceptions-amd64.c (throw_exception): Call
19129         mono_debugger_throw_exception() here like we're doing it on i386.
19131 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
19133         * mini-ia64.c: Add optimized TLS access support.
19135 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
19137         * mini-exceptions.c: Ongoing IA64 work.
19139         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
19141         * mini.c: Use the default optimization set when embedding. Fixes
19142         #75194.
19144 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
19146         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
19147         of trampolines to a separate file.
19149         * mini-trampolines.c: New file.
19151         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
19152         separate file.
19153         
19154         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
19155         amd64/ia64 code.
19157         * mini-codegen.c: Fix cygwin build.
19159 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
19161         * mini.c: Add some minor changes needed by the IA64 port.
19163         * *-ia64.*: Ongoing IA64 work.
19165 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
19167         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
19168         trampolines into arch-independent and arch-dependent parts.
19170         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
19172 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
19174         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
19176         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
19177         the xp-regalloc-branch for amd64.
19179         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
19180         xp-regalloc-branch for x86.
19182 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19184         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
19186 2005-07-06  Martin Baulig  <martin@ximian.com>
19188         * mini.c
19189         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
19190         (mono_jit_runtime_invoke): Likewise.
19192 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19194         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
19195         on x86 too.
19196         
19197         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
19198         without loading their metadata. Reorganize the file format so exception handling+
19199         debug info is kept separate from normal method info. Create MonoJitInfo 
19200         structures for methods lazily.
19202         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
19203         loading metadata.
19204         (x86_class_init_trampoline): Patch AOT class init trampolines too.
19206         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
19208         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
19209         in AOT code.
19211         * mini.h: Bump AOT file version.
19213 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
19215         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
19217 2005-07-01  Raja R Harinath  <rharinath@novell.com>
19219         * Makefile.am (check-local): Call semdel-wrapper.
19221 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
19223         * mini-x86.c: Revert the last change as it seems to break the build..
19225 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19227         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
19228         
19229         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
19231 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
19233         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
19234         outside of the macro, so strange stuff doesn't happen with gcc4
19235         (NEW_AOTCONST_TOKEN): Likewise.
19237 2005-06-28  Martin Baulig  <martin@ximian.com>
19239         * mini.c (mini_class_is_system_array): New static method; use this
19240         instead of `klass->parent == mono_defaults.array_class' everywhere
19241         since this also works for the new generic array class.
19243 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19245         * inssel.brg: Remove warnings.
19247 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
19249         * mini-ia64.c: Ongoing IA64 work.
19251         * basic-float.cs: Add float->i1 conversion test.
19253         * iltests.il: Add conv.u4 test.
19255 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
19257         * inssel-long.brg: Fix bug caused by last change.
19259 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
19261         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
19262         BSDs.  Allows the x86 JIT to work on OSX86
19264 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
19266         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
19267         u4->i8 conversion.
19269         * mini-ia64.c: Ongoing IA64 work.
19271 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19273         * mini-ia64.c: Ongoing IA64 work.
19275         * driver.c: Clean up jit_code_hash as well when using --regression.
19277         * inssel-long.brg: Fix long->i4/u4 conversion rules.
19279         * basic-long.cs: Add tests for long->u4 conversion.
19281 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
19283         * mini.c: Take mono_get_domainvar out of macros. This makes sure
19284         that we do not depend on undefined C behavior: the order stuff
19285         gets evaluated within an expression. Fixes mono when compiled on
19286         GCC 4.
19288 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
19290         * *-ia64.*: Ongoing IA64 work.
19292         * aot.c: Lower memory usage while loading AOT methods.
19294         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
19296         * mini.h: Bump AOT file format version.
19298 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19300         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
19302 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
19304         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
19305         not on callee assembly). Fixed some comments.
19307 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
19309         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
19310         it gets proper disassembly.
19311         (emit_method_info): Remove some dead code.
19313         * mini.c (mini_method_compile): Allways allocate the GOT var in
19314         mono_method_to_ir for emulating opcodes.
19316 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
19318         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
19319         before freeing the code memory. Fixes #74990.
19321         * objects.cs: Add regression test for #74992.
19323         * liveness.c: Extend live ranges of arguments to the beginning of the
19324         method. Fixes #74992.
19326         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
19327         so it points into the faulting instruction.
19329 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
19331         * jit-icalls.c (mono_imul_ovf): Add exception handling.
19333         * *-ia64.*: Ongoing IA64 work.
19335         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
19337 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
19339         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
19341         * *-ia64.*: Ongoing IA64 work.
19343 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
19345         * basic-long.cs: Add tests for add/sub.ovf.
19347         * basic.cs: Add tests for sub.ovf.
19349         * *-ia64.*: Ongoing IA64 work.
19351 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
19353         * *-ia64.*: Ongoing IA64 work.
19355         * basic.cs: Add conv.ovf.i4.un test.
19357 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
19359         * mini.c: (remove_block_if_useless) Fixed bug 75061.
19360         
19361 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19363         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
19365 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19367         * *-ia64.*: Ongoing IA64 work.
19369 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19371         * trace.[ch]:
19372         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
19374 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
19376         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
19378 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
19380         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
19382         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
19383         of a call is callable by a near call.
19385 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
19387         * mini-ia64.c: Ongoing IA64 work.
19389 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
19391         * genmdesc.c: Make the generated array non-static.
19393         * inssel-long.brg: Fix LSHR_IMM rule.
19395         * *-ia64.*: Ongoing IA64 work.
19397         * *-ia64.*: Ongoing IA64 work.
19399 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
19401         * *-ia64.*: Ongoing IA64 work.
19403         * *-ia64.*: Ongoing IA64 work.
19404         
19405         * mini-ia64.c: Ongoing IA64 work.
19407         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
19409 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
19411         * objects.cs basic-calls.cs: Move some tests to objects.cs.
19412         
19413         * objects.cs basic-long.cs: Move some tests to objects.cs.
19415 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
19417         * *-ia64.*: Ongoing IA64 work.
19419         * iltests.il: Add a new test.
19421         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
19422         newobj. Fixes #75042.
19424 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
19426         * *-ia64.*: Ongoing IA64 work.
19427         
19428         * *-ia64.*: Ongoing IA64 work.
19429         
19430         * *-ia64.*: Ongoing IA64 work.
19432         * basic.cs objects.cs: Move tests accessing static variables as well.
19434         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
19436 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
19438         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
19440         * driver.c: Always print failed tests.
19442         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
19443         frame pointer.
19445         * *ia64*: Ongoing IA64 work.
19447 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
19449         * basic.cs: Add tests for add.ovf. Fix warnings.
19451 2005-05-18  Miguel de Icaza  <miguel@novell.com>
19453         * driver.c (mono_main): Avoid crash if no argument is passed to
19454         --break;  Do not use g_error, but f_printf.   And fix all other
19455         ocurrences of the same crash.
19457 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
19459         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
19460         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
19461         Fixes #74742.
19463 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
19465         * *-ia64.*: Add beginnings of IA64 backend.
19467         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
19469 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
19471         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
19472         Fixes #74925.
19474         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
19476         * mini-amd64.c: Fix a warning.
19478 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
19480         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
19481         in float_neg. Fixes #74897.
19483         * mini-amd64.c (emit_call): Fix another near call bug.
19485 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
19487         * declsec.c: Keep the appdomain information in the structure. Added a 
19488         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
19489         value gets overwritten).
19490         * declsec.h: Set the default MonoArray for the the stack to 6. Added
19491         an MonoAppDomain member to MonoSecurityFrame.
19492         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
19493         used in the stack walk. Now use a MonoArray which grow (double) when
19494         it gets full.
19496 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
19498         * mini.c: Re-enabled runtime cleanup, since running threads should
19499         now properly stop when exiting.
19501 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
19503         * mini-codegen.c: New file contaning the arch-independent local
19504         register allocator. Not used by any architectures yet.
19506         * mini.h linear-scan.c: Merge some changes from the 
19507         mini-xp-local-regalloc branch.
19509 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
19511         * mini-amd64.c (emit_call): Fix calls to native functions when the
19512         runtime is compiled as a shared library. Fixes #74756.
19514         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
19515         on a literal field. Fixes #74751.
19517 2005-04-25  Raja R Harinath  <rharinath@novell.com>
19519         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
19521 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
19523         * objects.cs: Add missing null casting test.
19525 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
19527         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
19528         in wrapper methods. Also rename 'address' variable to 'offset'.
19530 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
19532         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
19533         warnings.
19534         
19535         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
19537         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
19538         work on windows.
19540 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
19542         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
19544 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
19546         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
19547         just the last bytes.
19549 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
19551         * aot.c (mono_compile_assembly): Fix warning.
19553         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
19554         by the _MSC_VER stuff.
19556 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
19558         * inssel-long.brg: Fix #74588.
19560         * cpu-amd64.md: Fix #74591.
19562         * iltests.il: Add new regression tests.
19564 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
19566         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
19567         valuetype.
19569 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
19571         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
19573         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
19574         from Bill Middleton <flashdict@gmail.com>.
19576 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
19578         * arrays.cs: Add new regression test. Fix warnings.
19580 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
19582         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
19583         and leakage in CKFINITE.
19585         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
19586         this to a null op since it is called on amd64 too.
19588         * exceptions-amd64.c (get_throw_trampoline): Align stack.
19590         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
19591         body since this is not used on amd64.
19592         
19593         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
19595         * mini-amd64.c: Remove obsolete fixmes.
19597         * mini.c (print_method_from_ip): Fix debugging support.
19599 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
19601         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
19602         so that expressions that don't give much gain are not reduced.
19603         * ssapre.h: Likewise.
19605 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
19607         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
19609         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
19611         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
19613 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
19615         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
19617         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
19619 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
19621         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
19622         stack touching.
19624         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
19626         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
19628         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
19630         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
19631         MONO_ARCH_USE_SIGACTION. Fixes #74252.
19633         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
19635         * mini-x86.c: Fix up stack overflow handling.   
19637         * exceptions.cs: Add new regression test.
19639 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
19641         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
19642         mono_jit_thread_attach.
19644         * mini.c (mono_method_to_ir): Verify called method is not abstract.
19646 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19648         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
19649         avoid calling constructors using callvirt.
19651         * inssel.brg: Fix #74073.
19653 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
19655         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
19656         compilation with non-GCC compilers.
19657         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
19658         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
19660 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19662         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
19663         klass->interface_offsets (will likely fix bug#74073).
19665 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19667         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
19669 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
19671         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
19672         to amd64_div_reg_size ().
19673         
19674         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
19676 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
19678         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
19680 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19682         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
19684 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19686         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
19687         
19688         * mini.c (mono_precompile_assembly): Load and precompile referenced
19689         assemblies as well. Fixes #74015.
19691 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
19693         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
19695 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
19697         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
19698         a lot of checks and (anyway) permissions cannot work until corlib is 
19699         loaded.
19701 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
19703         * mini-ppc.c: fixed ABI issue on sysv/ppc.
19705 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
19707         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
19708         calls (fixes bug#72824).
19710 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
19712         * mini.c: fix tail recursion elimination (see test in bug#73936).
19714 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
19716         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
19717         some fp functions in sse2 mode.
19719 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
19721         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
19723 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
19725         * mini.h mini.c: Add mono_get_jit_tls_key ().
19727         * mini-x86.c: Enable fast TLS support on windows.
19729 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
19731         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
19732         * mini.c: Check for p/invoke method when generating code. If a
19733         p/invoke method, or it's class, isn't decorated with [Suppress
19734         UnmanagedCodeSecurity] then generate code to call System.Security.
19735         UnmanagedDemand (only if the security manager is active).
19737 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
19739         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
19740         last change as it seems to cause strange crashes.
19741         
19742 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
19744         * *.c: handle unsafe function pointers where needed.
19746 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
19748         * mini.c (mono_jit_free_method): Remove the fixme too.
19750 2005-03-15  Miguel de Icaza  <miguel@novell.com>
19752         * mini.c: As discussed, make the code actually free the delegate
19753         thunk now, to enable the debugging of delegate problems, use
19754         MONO_DEBUG=1 when running Mono. 
19756         This takes also care of parts of the leaks as seen by Joe.
19758 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
19760         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
19761         thread_tls_offset calculation.
19763 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
19765         * declsec.c: Reworked linkdemand checks for icall. The previous code
19766         was using the declaration code (untrusted) and didn't work as expected
19767         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
19768         specific case.
19770 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
19772         * iltests.il: Add new localloc test.
19774         * mini-amd64.c: Handle large stack allocations the same way as on
19775         windows if stack overflow handling is working.
19776         
19777         * mini-amd64.c: Allocate the signal stack using mmap.
19779         * mini.c (sigsegv_signal_handler): Fix reading of context.
19781         * mini-exceptions.c: Fix up stack overflow handling.
19783         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
19785         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
19787         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
19789         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
19791         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
19792         tramp_init functions as they are no longer needed.
19794 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
19796         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
19797         
19798         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
19800         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
19801         
19802         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
19803         support that now.
19805         * mini-ops.h: Add OP_LMUL_IMM.
19807         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
19808         long mul/div opcodes as intrinsic.
19810         * mini-amd64.c (emit_call): Handle the case when the callee might be
19811         an AOT method.
19813 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
19815         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
19816         extra safe.
19817         
19818         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
19820         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
19822 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
19824         * mini.c (mono_codegen): Don't leak here, to help people running
19825         monogrind.
19827 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
19829         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
19830         conversions in sse2 mode.
19832         * basic-float.cs: Add regression test.
19833         
19834         * mini-amd64.c: Reenable sse2.
19836 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
19838         * mini-amd64.c: Disable sse2 until some regressions are fixed.
19840 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
19842         * driver.c: Copyright text should include 2005.
19843         
19844 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
19846         * cpu-amd64.md (load_membase): Fix more max lengths.
19848 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
19850         * cpu-amd64.md (load_membase): Fix max length.
19852         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
19854         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
19856         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
19857         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
19859         * basic-float.cs: Add rounding regression test.
19861         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
19863 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
19865         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
19866         structures in registers for pinvoke wrappers.
19868 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
19870         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
19872 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
19874         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
19875         wrapper to mono_jit_thread_attach.
19877         * mini.c (mini_jit_thread_attach): New jit icall.
19879         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
19880         native->managed wrappers.
19882         * exceptions.cs: Add new regression test.
19884         * mini.c (optimize_branches): Check regions in the cbranch to throw
19885         block case as well. Fixes #73242.
19887 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
19889         * mini.c: thread safety fixes.
19891 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
19893         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
19894         patching stuff, since delegates use jump trampolines so there is
19895         no caller.
19897         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
19898         jump trampolines.
19899         
19900         * tramp-amd64.c: Fix build.
19902         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
19903         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
19905         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
19906         Rename this to mono_arch....
19907         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
19909         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
19911         * mini-amd64.c (emit_call): If both the caller and the callee is
19912         guaranteed to have 32 bit addresses, emit a normal call.
19914         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
19916         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
19917         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
19918         method_ptr inside delegates.
19920 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
19922         * mini.c (mono_jit_free_method): Free the method info even if the native code is
19923         invalidated. Fixes #73001.
19925         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
19927         * mini-x86.c: Only use stdcall for pinvokes on windows.
19929 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
19931         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
19932         * mini-x86.c: remove unreliable __thread var offset detection,
19933         use the correct accessors and enable by default.
19935 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
19937         * mini.c (mono_jit_free_method): Fix memory leak.
19939 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
19941         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
19943 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
19945         * cpu-amd64.md: Fix lengths of atomic opcodes.
19947 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
19949         * driver.c: try to not imply using ICU is any good.
19951 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
19953         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
19954         functions as inline ops.
19956         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
19957         some Interlocked functions as inline ops.
19959         * mini.c (move_basic_block_to_end): Fix bug in last patch.
19961         * mini.h (MonoBasicBlock): Reorganize fields a bit.
19963         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
19965         * mini.c: Add support for OP_NOT_TAKEN.
19967         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
19968         structures in registers for pinvoke wrappers.
19970         * mini-amd64.c: Fix warnings.
19972 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
19974         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
19976         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
19978         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
19979         address instead of loading the address from it.
19981         * mini-x86.c: Add support for returning small structs in registers
19982         on Win32. Fixes part of #70864.
19983         
19984 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
19986         * trace.c (get_token): Improve error checking.
19988 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
19990         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
19992 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
19994         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
19995         it can be reused for MonoClass.
19996         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
19997         _LINKDEMAND.
19999 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
20001         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
20002         instead of a MonoReflectionMethod. The method information wasn't used
20003         when displaying SecurityException details (but will be now).
20005 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
20007         * Makefile.am : windows build fix.
20009 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20011         * iltests.il: Add new regression test.
20013         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
20014         #72522.
20016 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
20018         * mini.c: Moved linkdemand check into helper function check_linkdemand
20019         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
20020         LDFTN, LDVIRTFTN).
20022 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
20024         * declsec.c: Added statistics counter for different kinds of 
20025         LinkDemands.
20026         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
20027         (and commented) declaration.
20028         * mini.c: Added statistics counter for security Demand code 
20029         generation. Added display of security statistics.
20031 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
20033         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
20034         Fix compilation errors under gcc-2.95.
20036 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
20038         * mini.c, driver.c: Use the new jit trampoline hashtable
20040 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20042         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
20044 2005-02-11  Martin Baulig  <martin@ximian.com>
20046         * debug-mini.c (mono_debug_close_method): Free the line number array.
20048 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
20050         * aot.c: Break up large methods into smaller ones. Share GOT slots for
20051         icalls.
20053         * mini.h: Bump AOT file format version. 
20055 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
20057         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
20058         APTC and P/Invoke.
20059         * declsec.h: Added macros to get/set lazyly initialized security 
20060         informations about assemblies. Added new enum for different type of
20061         possible LinkDemand violation. Added function to check LinkDemands.
20062         * mini.h: Added a field to MonoCompile to hold any security violation
20063         detected when JITting a method (so it can be thrown later).
20064         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
20065         and CEE_CALLVIRT. Added code to throw exception at the end of
20066         mini_method_compile (note: the exception is unhandled right now).
20068 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
20070         * mini.c, jit-icalls.c: use the managed implementation of
20071         memset for initobj and memset, to avoid managed <-> unmanaged
20072         transitions.
20074 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
20076         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
20077         optimization if it would need a GOT var.
20079         * basic.cs: Add tests for constant propagation and switch statements.
20081         * ssa.c: Fix out-of-range constant propagation and switch statements.
20083 2005-02-09    <vargaz@freemail.hu>
20085         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
20087 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
20089         * cpu-amd64.md (load_membase): Fix max length of load_membase.
20091 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20093         * mini.c: update to new signature of mono_class_get_allocation_ftn().
20095 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
20097         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
20098         arithmetic operations.
20100 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
20102         * mini-ppc.c: add a workaround for broken user code that
20103         DllImports vararg functions with non-vararg signatures.
20105 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20107         * mini.c (mono_jit_compile_method_inner): Add detection and a 
20108         meaningfull error message for assemblies written in Managed C++.
20110         * tramp-amd64.c mini-amd64.h: Add support for 
20111         create_trampoline_from_token ().
20113         * aot.c mini-x86.c abcremoval.c: Applied patch from
20114         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20116 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20118         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
20119         which takes a MonoImage/token as parameter instead of a MonoMethod.
20121         * aot.c: Use the new trampoline for initializing vtables.
20123         * aot.c: Add support for ldfld/stfld_remote wrappers.
20125         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
20126         rules for compare <MEM>, IMM.
20128         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
20130         * aot.c: Handle inherited finalizers correctly.
20132 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20134         * inssel.brg (stmt): Add a missing _setup_... ().
20136         * aot.c: Save some parts of the class state to the AOT file and use it
20137         to recompute that state when a class is initialized.
20139         * mini.c: Install AOT hooks into the runtime.
20141         * mini.h: Bump AOT file format version.
20142         
20143         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
20144         Fixes #72148.
20146         * iltests.il: Add new test.
20148 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20150         * mini.c: fix typo.
20152 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
20154         * mini.c: setup the statistical profiler in the thread attach
20155         callback to cope with the new single thread code.
20157 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20159         * mini-ppc.c: ensure we have enough room for the profiler
20160         calls (fixed bug#72084).
20162 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
20164         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
20165         it.
20167 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20169         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
20171 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20173         * ssapre.c: Fixed an issue with down safety (this allows IronPython
20174         to succesfully execute parrotbench).
20175         * ssapre.h: Likewise.
20177 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20179         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
20180         variable for stores to method arguments (fixes a SSAPRE issue).
20182 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20184         * mini.c: handle value types in dup, fixes gen-112.cs.
20186 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
20188         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
20189         sequence for calls in dynamic methods to avoid thunks.
20191 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20193         * mini.c: correctly remove dynamic methods from the hashtable.
20195 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20197         * driver.c: Disabled SSAPRE until fix the bug that appears
20198         in IronPython's parrotbench.
20200 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
20202         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
20204         * mini.c (mono_method_to_ir): Revert the previous change.
20205         
20206         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
20207         when AOT compiling.
20209         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
20210         mono_jit_info_table_find () etc. when running under valgrind.
20212         * inssel.brg: Fix warnings.
20214         * mini-exceptions.c: Fix warnings.
20216 2005-01-31  Martin Baulig  <martin@ximian.com>
20218         * driver.c (compile_all_methods_thread_main): Don't try to compile
20219         generic methods or anything which has type parameters.
20221 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
20223         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
20225         * TestDriver.cs: Add --verbose flags.
20227         * graph.c ssa.c: Fix 64 bit warnings.
20228         
20229         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
20230         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
20231         Fix 64 bit warnings.
20233         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
20234         variable not spotted by gcc.
20235         
20236         * mini-amd64.c inssel-amd64.brg: Applied patch from  
20237         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
20238         X86_COMPARE_MEMBASE opcodes.
20240         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
20242 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
20244         * *: MonoMethod->signature might be NULL now. You *MUST* use
20245         mono_method_signature.
20247 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20249         * driver.c (compile_all_methods_thread_main): Compile the methods
20250         without invoking cctors.
20252 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20254         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
20255         * basic-calls.cs: test for the above.
20257 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20259         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
20260         MonoJitInfo changes.
20262 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
20264         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
20265         eagerly if it contains dynamic methods.
20266         
20267         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
20269         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
20270         trace, it is now computed by an icall from trace_ips.
20271         
20272         * mini-exceptions.c: Fix a warning.
20274 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20276         * mini-exceptions.c: don't bother getting stack trace info if
20277         it's not going to be used.
20279 2005-01-27  Raja R Harinath  <rharinath@novell.com>
20281         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
20282         ssapre-mini-ops.h.
20284 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
20286         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
20288         * aot.c: Avoid calling mono_method_get_header () if not needed.
20290         * mini.h: Bump AOT file format version.
20291         
20292         * mini.c (mono_emit_native_call): Allocate a GOT var here.
20294         * mini.c (mono_print_tree): Print more info for calls.
20296 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
20298         * declsec.h: Remove warning by adding missing include for marshal.h
20300 2005-01-26  Martin Baulig  <martin@ximian.com>
20302         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
20303         `ip' twice.
20305 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
20307         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
20308         flags.
20310         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
20312         * aot.c (mono_compile_assembly): Fix a warning.
20314 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
20316         * declsec.c: Look for security attributes on the original MonoMethod 
20317         (and not the wrapped one). This fix permissions on icalls.
20319 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
20321         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
20323         * mini.c (mono_allocate_stack_slots): Add a fixme.
20325         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
20327 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20329         * inssel.brg: optimize casts of sealed types (more
20330         optimizations waiting for fixes in remoting).
20332 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
20334         * inssel.brg (stmt): Add another dummy rule.
20336         * driver.c: Fix warnings.
20338         * driver.c (mono_main): If running under valgrind, instruct glib to use
20339         the system allocation functions so valgrind can track the memory
20340         allocated by the g_... functions.
20342         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
20344         * mini-ops.h: Add OP_DUMMY_STORE opcode.
20346         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
20348         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
20349         variables in try regions.
20351         * mini.c (mini_method_compile): Don't disable optimizations on large
20352         methods when AOT compiling.
20354         * mini.c (mono_allocate_stack_slots): New arch independent method to 
20355         allocate stack slots. Not yet used.
20357 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
20359         * debug-mini.c (mono_debug_close_method): Plug some leaks.
20361 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
20363         * mini-ppc.c: make the branch info relative as the code
20364         buffer can be reallocated.
20366 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
20368         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
20369         * driver.c: Removed the AOT/security restriction. Now initialize the
20370         security manager (in metadata) if --security is used.
20371         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
20372         rather than the pointer to declarative security, when AOT is used.
20374 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
20376         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
20377         basic blocks, reduced intrinsic exception throwing code size.
20379 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
20381         * driver.c (mini_usage): Reorder the usage screen.
20383 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
20385         * mini.c (mono_resolve_patch_target): Fix warning.
20387 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
20389         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
20390         previous patch.
20392         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
20394         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
20395         breaks the amd64 build.
20397         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
20398         register allocation. Fixes #71454.
20400         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
20402         * arrays.cs: Add new regression test.   
20404 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20406         * ssapre.c: Turned usage of snprintf to GString.
20407         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
20408         (I left it on by mistake in my previous commit).
20410 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
20412         * mini.c, cfold.c, basic-calls.cs: preserve side effects
20413         on cond branch optimization (fixes bug# 71515).
20415 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20417         * abcremoval.c: Fixed bug 71062.
20418         * abcremoval.h: Likewise.
20420 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20422         * mini.c: Added a new functionality to optimize_branches, the removal
20423         of useless basic blocks, and fixed some problem in the removal of
20424         critical edges; some utility functions added for both purposes.
20425         * ssapre.c: Added complex expression support, and fixed bug 70637.
20426         * ssapre.h: Likewise.
20427         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
20428         enabled in SSAPRE.
20429         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
20430         * driver.c: Re-enabled SSAPRE.
20432 2005-01-19  Martin Baulig  <martin@ximian.com>
20434         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
20435         the result of mono_get_method_constrained().
20437 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
20439         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
20440         manager.
20442 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
20444         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
20445         be detected.  Fixes #59296.
20447 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
20449         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
20450         which can happen. Fixes #71361.
20452 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
20454         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
20455         manager.
20457 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
20459         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
20460         appdomain-unload.exe to fail.
20461         
20462         * mini.c: Fix some memory leaks.
20464 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
20466         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
20467         Fixed bug and sped up some codepaths.
20469 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
20471         * mini.c: Fix some memory leaks.
20473         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
20474         conversion.
20476         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
20478         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
20479         #71320.
20481         * iltests.il: Add regression test for #71320.
20483 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
20485         * mini.c (mono_codegen): Fix installation of profiler hooks.
20487         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
20489 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20491         * mini.h, mini.c, cfold.c: optimize access to enum
20492         readonly fields, too. Eval conditional branches if possible
20493         to perform unreachable code removal in more cases.
20495 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
20497         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
20499         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
20500         code manager.
20502         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
20503         WinXP DEP. Fixes #71244.
20505 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
20507         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
20509 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
20511         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
20513 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
20515         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
20516         changes.
20518         * mini.h: Bump AOT version.
20520         * mini.h (MonoCompile): Change exvar to a hash table.
20522         * mini.c: Allocate a separate exvar for each handler block.
20524         * mini.c: Get rid of the computation of filter_lengths, its not needed.
20526         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
20527         ex var with the pending exception and only throw if the two are equal.
20528         Fixes #68552.
20529         
20530         * exceptions.cs: Add tests for rethrow and nested catch clauses.
20532         * mini-x86.c: Fix warnings.
20534         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
20535         used by all the ports now.
20537         * aot.c: Add write-symbols and save-temps options.
20539 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
20541         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
20543 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
20545         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
20546         operations.
20548         * tramp-s390.c: Check vtable slot belongs to the domain.
20550         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
20551         as per other platforms.
20553         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
20555 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
20557         * driver.c: we don't run the Main() code in a subthread anymore.
20559 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
20561         * mini.c: added experimental rtc support in the statistical
20562         profiler: if the user has the permission, more accurate statistics
20563         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
20564         The MONO_RTC value must be restricted to what the linux rtc allows:
20565         power of two from 64 to 8192 Hz.
20567 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
20569         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
20571 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
20573         * mini-ppc.c: better icache flush for smp.
20575 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
20577         * mini-amd64.c (emit_move_return_value): Fix memory leak.
20579         * mini-x86.c (get_call_info): Add the get_call_info () code from the
20580         amd64 port, not yet used.
20582 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
20584         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
20585         a struct type.
20587 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
20589         * driver.c: Added --security option to activate the security manager.
20590         Right now this will allow code generation for declarative demands and
20591         is disabled when AOT is specified.
20592         * mini.c: Add code generation for declarative security demands.
20593         * mini.h: Add mono_use_security_manager as an extern gboolean.
20595 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
20597         * aot.c (mono_compile_assembly): Speed up compilation a bit by
20598         emitting more dense assembly code.
20600         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
20601         exception throwing stuff.
20603 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
20605         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
20606         dead code.
20608         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
20609         left in by mistake.
20611         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
20612         fixed.
20614         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
20616         * tramp-*.c: Only patch vtable slots if the object is in the current
20617         domain. Fixes appdomain-unload.exe.
20619         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
20620         
20621         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
20622         x86 branch.
20624 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
20626         * mini.c (reverse_branch_op): New helper function.
20628         * mini.c (optimize_branches): Run the new optimization only on 
20629         platforms which support it. Also reverse all kinds of branches.
20631         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
20633         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
20634         a throw statement.
20636         * mini.c (optimize_branches): Reverse not-equals branches if the false
20637         bblock is a throw. This happens a lot of time with argument checking in
20638         corlib.
20640         * mini.c (mono_codegen): Add support for placing basic blocks after
20641         the function epilogue.
20643         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
20644         function epilogue.
20645         
20646 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
20648         * mini.c (setup_stat_profiler): Only set this up if the platform
20649         supports ITIMER_PROF.
20651 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
20653         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
20654         previous patch.
20656         * inssel.brg: Fix a warning.
20658 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
20660         * mini.c: added support for statistical profiler 
20661         (run with: --profile=default:stat).
20663 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
20665         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
20667         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
20669         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
20670         related to global registers from the amd64 port.
20672 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
20674         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
20676         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
20677         with global registers.
20678         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
20680         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
20682 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
20684         * debug-mini.c (encode_value): Fix off-by-one.
20686         * aot.c (encode_value): Likewise.
20688         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
20690 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
20692         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
20693         AOT.
20695         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
20696         
20697         * aot.c (emit_method_info): Increase size of temp buffer.
20699         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
20700         the AOT case.
20702 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
20704         * aot.c (emit_method_info): Fix build.
20705         
20706         * aot.c: Further rework of the AOT file format to reduce the size of
20707         the method info data.
20709         * mini.h: Bump AOT file format version.
20711 2004-12-27  Martin Baulig  <martin@ximian.com>
20713         * mini.c (mini_get_method): New static method; call
20714         mono_get_method_full() and mono_get_inflated_method().
20715         (mono_method_to_ir): Use mini_get_method() instead of
20716         mono_get_method_full(). 
20718 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
20720         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
20722 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
20724         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
20726         * inssel-amd64.brg: Add some optimization rules.
20728 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
20730         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
20731         standard not GC'd stuff is fine.
20733 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
20735         * aot.c: Rework the AOT file format to get rid of most of the global
20736         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
20738         * mini.h: Bump AOT file format version.
20739         
20740 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
20742         * mini.h: Bump AOT file format version.
20744         * aot.c (mono_aot_is_got_entry): New function to determine if an 
20745         address is inside a GOT.
20747         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
20749         * cpu-pentium.md: Increase the maximum size of some instructions which
20750         might involve a got access.
20751         
20752         * mini.c (get_method_from_ip): Another debug helper function.
20754         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
20755         when got var accesses are created during the decompose phase.
20757         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
20759         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
20760         argument mini_compile_method and to MonoCompile, and use this to
20761         determine whenever a given method is compiled for AOT. This allows the
20762         other methods compiled during AOT compilation to be free of AOT stuff,
20763         so the backends does not need to add special support for them by
20764         creating a fake GOT etc.
20766         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
20767         longer needed.
20769 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
20771         * mini.c (mono_method_to_ir): It turns out that some of the
20772         x-appdomain wrappers are lax with types, so just ignore this for
20773         all wrappers.
20775         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
20776         at the vtable->klass. If it is non-shared code we can just use the
20777         vtable.
20779 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
20781         * mini-ppc.c: access MonoDomain from tls, too.
20783 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
20785         * declsec.c: Removed unused variable (and related warning ;-)
20787 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
20789         * iltests.il: New test for LDELEMA on an array of ref types.
20791         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
20792         all ldelema's on reftypes.
20793         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
20794         it was the wrong place to put it.
20796         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
20797         register to pop to make this cleaner, at the request of Paolo.
20799 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
20801         * mini-ops.h (OP_GETHASHCODE): New op.
20803         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
20805         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
20806         operation.
20808         For a microbenchmark, this reduces the cost of Hashtable.get_Item
20809         by 25%.
20810         
20811         * mini-x86.c (mono_arch_output_basic_block): Rather than
20813         add ebp, 4
20815         Emit
20817         pop edx
20819         The first is 3 bytes while the second is 1. This saves 36 kb on
20820         mscorlib, quite a big saving. When bootstraping mcs, I was able to
20821         see a small boost because of icache locality.
20823         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
20825 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
20827         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
20828         started code sharing with the generic code.
20830 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
20832         * mini-ppc.c, cpu-g4.md: added code for direct access to
20833         tls data slots.
20835 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
20837         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
20838          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
20839         to OP_TLS_GET.
20841 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
20843         * declsec.c|h: Added functions to cache the declarative stack modifiers
20844         in MonoJitInfo and to create a security frame from a MonoJitInfo 
20845         structure.
20846         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
20847         created. Register internal calls for System.Security.SecurityFrame::
20848         _GetSecurityFrame and _GetSecurityStack.
20849         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
20850         the definitions for the new stack walk/callback mechanism.
20851         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
20852         first security frame for LinkDemands and InheritanceDemands) and
20853         GetSecurityStack for Demands. Both use the new mono_walk_stack code
20854         from lupus.
20855         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
20856         walk initialization (lupus).
20858 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
20860         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
20861         idiom.
20862         (handle_loaded_temps): Do not create a temporary variable for
20863         things that we know are temps. They will never be modified.
20864         (mono_spill_call): Set MONO_INST_IS_TEMP
20865         (mono_emulate_opcode): ditto
20866         (emit_tree): ditto
20867         (mono_method_to_ir.CEE_DUP): ditto
20869 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
20871         * mini.c (type_to_eval_stack_type): Make this handle the void type
20872         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
20873         (emit_tree): use ip_in_bb to special case some common idioms
20874         Update all callers to pass in the IP.
20875         (mono_method_to_ir): Make CEE_CALL* do the above as well.
20877         This gives us a nice 2% speedup in mcs bootstrap.
20879         * mini-x86.c (peephole_pass): Peephole pass to make
20880         mov  [foo], eax
20881         push [foo]
20883         into
20885         mov [foo], eax
20886         push eax
20888         * mini.c (ip_in_bb): new method.
20889         (mono_method_to_ir): use this method rather than doing the hash
20890         lookup ourselves.
20892         * linear-scan.c (mono_linear_scan): When expiring actives, you
20893         don't need to keep around variables that expire on this
20894         instruction. This makes it so that:
20895              a = b + 1
20896         will turn into:
20897              store (ebx add (ebx, 1))
20898         which will become
20899              add ebx, 1
20901 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
20903         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
20904         combination to avoid doing two copies. Fix up problems with previous
20905         patch.
20907         * mini.c: Fix 64 bit warnings.
20909         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
20911 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
20913         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
20914         changes from the x86 code.
20916         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
20918 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
20920         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
20921         throwing code to reduce its size, unify the AOT and non-aot code and 
20922         get rid of relocations in the AOT case.
20924         * mini-x86.h mini.c exceptions-x86.c 
20925         (mono_arch_get_throw_corlib_exception): New arch specific function to 
20926         raise corlib exceptions which doesn't require relocations in the 
20927         caller.
20929         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
20931 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
20933         * mini.c (mono_emit_method_call): Only allocate the got var when it is
20934         needed.
20936         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
20937         in the AOT case.
20939 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
20941         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
20942         with add function when used from Inc/dec atomic 
20943         functions. Re-enabled optimization on x86.
20944         * mini-ops.h: renamed atomic_add functions to
20945         allow _add to match the Interlocked::Add and
20946         _add_next to match Interlocked::Inc/Dec.
20948 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
20950         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
20951         linking of BBs to the end BB, and enabled SSAPRE also with
20952         consprop and copyprop (which was prevented by that bug).
20954 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
20956         * mini-x86.c: disabling the Interlocked optimizing code. 
20958 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
20960         * aot.c (load_aot_module): Move reading of got_addr after the AOT
20961         file version check.
20962         
20963 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
20965         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
20966         interlocked optimization due lack of support on x86, rewrote 
20967         exchange to take into account that base may be in eax.
20968         
20969         xsp works again; activated Interlocked optimizing code.
20970         
20971 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
20973         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
20975 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
20977         * mini-ops.h: Add new opcodes.
20979         * mini.h: Add new patch types. Add got_var to MonoCompile.
20981         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
20982         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
20983         make it work with all kinds of patchable code.
20985         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
20986         address of the GOT, and referencing entries in the GOT.
20988         * mini.c: Add code to load the GOT address if needed by an opcode.
20990         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
20991         independent AOT code on the x86 using an elf-style Global Offset Table.
20993 2004-12-14  Raja R Harinath  <rharinath@novell.com>
20995         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
20997 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20999         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
21000         when running xsp.
21002 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
21004         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
21005         of Interlocked:Increment/Decrement/Add as inline ops.
21006         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
21008 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
21010         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
21011         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
21013 2004-12-12  Duncan Mak  <duncan@ximian.com>
21015         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
21016         again. `patch_info->table_size' is no longer valid after Zoltan's
21017         commit #37636.
21019 2004-12-12  Martin Baulig  <martin@ximian.com>
21021         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
21022         if we are the "real" method, ie. not an inlined method inside it.
21024 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
21026         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
21027         before we look in the special fields table. This fixes
21028         ../tests/thread-static-init.cs.
21030 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21032         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
21033         for Array get_Rank and get_Length. Fixes bug #70465.
21035 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
21037         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
21038         separate structure to reduce the size of MonoJumpInfo.
21040 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
21042         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
21044 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
21046         * mini.c (mini_get_inst_for_method): Changed to allow ports
21047         to return a MonoInst instead of opcode 
21048         (renamed mini_get_opcode_for_method to better reflect the new functionality)
21049         
21050         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
21051         Allow ports to return a created MonoInst instead of op-code, will enable
21052         new optimizations.
21053         (renamed mini_get_opcode_for_method to better reflected the functionality)
21055 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
21057         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
21059 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21061         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
21062         Fixes #69985.
21064 2004-12-08  Martin Baulig  <martin@ximian.com>
21066         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
21067         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
21069 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21071         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
21072         correctly.
21074         * exceptions.cs: Disable some tests which depend on properties of x86 fp
21075         arithmetic.
21077 2004-12-08  Raja R Harinath  <rharinath@novell.com>
21079         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
21081 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
21083         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
21084         bug introduced by the previous patch.
21086 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
21088         * mini-ppc.c, objectc.cs: handle large structs passed by value
21089         (fixes bug #69972).
21091 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21093         * mini-ppc.c: OP_ARGLIST implementation from
21094         Geoff Norton  <gnorton@customerdna.com>.
21096 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
21098         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
21099         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
21101 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
21103         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
21105 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21107         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
21108         support.
21110 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
21112         * mini-sparc.c: Zero out localled-ed memory.
21114         * iltests.il: Add tests for zeroing out localloc-ed memory.
21116 2004-12-04  Martin Baulig  <martin@ximian.com>
21118         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
21119         mono_method_get_signature_full().       
21121 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
21123         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
21124         and some utility functions (always for SSAPRE), integrated SSAPRE.
21125         * mini.h: Likewise.
21126         * driver.c: Added ssapre option.
21127         * ssa.c: Small fix on OP_ARG handling.
21128         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
21129         * Makefile.am: Likewise.
21131 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21133         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
21134         now in the xp code.
21136         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
21137         icall.
21139 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21141         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
21142         
21143         * cpu-s390.md : Increase instruction length of oparglist.
21145         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
21147 2004-11-30  Martin Baulig  <martin@ximian.com>
21149         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
21150         virtual generic methods.  We call a special helper_compile_generic_method()
21151         icall to retrieve the method from the vtable, inflate and compile
21152         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
21154         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
21156 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
21158         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
21160 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
21162         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
21163         Fixes #69929.
21165 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
21167         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
21168         platforms with PIC aot.
21170 2004-11-28  Martin Baulig  <martin@ximian.com>
21172         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
21173         Fixes gen-112.cs.
21175 2004-11-28  Martin Baulig  <martin@ximian.com>
21177         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
21178         the result of mono_type_get_underlying_type() to check whether
21179         we're byref.
21181 2004-11-26  Martin Baulig  <martin@ximian.com>
21183         * mini.c
21184         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
21185         in the g_assert().
21187 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
21189         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
21190         the same way as the other arguments so they won't get clobbered.
21192         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
21193         calls through R11 since it is clobbered by the trampoline code.
21195 2004-11-26  Raja R Harinath  <rharinath@novell.com>
21197         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
21198         pick up in-tree mscorlib.dll.
21200 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
21202         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
21204         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
21205         runtime data/code are now stored in a table similar to the GOT in ELF. 
21206         This allows the code itself to be position independent.
21208         * aot.c: Fix loading of referenced assemblies after the lazy assembly
21209         loading changes.
21211         * aot.c: Attach ELF type (object/function) directives to all global
21212         symbols.
21214         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
21216         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
21218         * mini-amd64.h: Turn on PIC AOT code.
21220         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
21221         returning the offset within an OP_AOTCONST instruction where the GOT
21222         offset needs to be added.
21224         * mini.h: Bump AOT file format version.
21226 2004-11-25  Martin Baulig  <martin@ximian.com>
21228         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
21229         uninflated generic methods.
21231 2004-11-25  Martin Baulig  <martin@ximian.com>
21233         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
21235 2004-11-24  Martin Baulig  <martin@ximian.com>
21237         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
21238         original klass (this only applies for generic instances).
21240 2004-11-24  Martin Baulig  <martin@ximian.com>
21242         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
21243         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
21244         that array).
21246 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
21248         * mini.c (mono_method_to_ir): Disable inlining for methods containing
21249         localloc. Fixes #69678.
21251         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
21252         
21253 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
21255         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
21256         used SSE registers on pinvoke calls. Fixes #69774.
21258 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
21260         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
21261         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
21263 2004-11-23  Raja R Harinath  <rharinath@novell.com>
21265         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
21266         Refer directly to the mcs/ tree.
21268 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21270         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
21271         Check if a trampoline for a synchronized method is required. 
21273 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
21275         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
21276         with localloc if needed. Throe arithmetric exception in
21277         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
21278         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
21280 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
21282         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
21283         types before switching on type.  Fixes #69622.
21285 2004-11-19  Raja R Harinath  <rharinath@novell.com>
21287         * Makefile.am (check-local): New.  Integrate into 'make check'.
21288         (MCS,RUNTIME): Define using in-tree mono and mcs.
21289         (ILASM): New.
21290         (%.exe): Use $(ILASM).
21292 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
21294         * mini-ppc.c: adjust initial prolog size (bug #69691).
21296 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
21298         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
21299         #69664.
21301 2004-11-17  Raja R Harinath  <rharinath@novell.com>
21303         * Makefile.am (clean-local): Rename from 'clean'.
21305 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21307         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
21308         to mono_arch_is_int_overflow. 
21309         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
21310         SIGFPE events.
21312 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
21314         * declsec.c|h: New files to support declarative security attributes.
21315         Added function to check if a method has (applicable) security.
21316         * mini.c|h: Add check for declarative security attributes in
21317         mono_method_check_inlining.
21318         * Makefile.am: Added declsec.c and declsec.h to the build.
21320 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21322         * mini.c, mini.h: update to keep dynamic code info per-domain.
21324 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
21326         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
21327         (mini_init): Get rid of it from here too.
21329 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21331         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
21332         implemented OP_RETHROW (patch by Geoff Norton
21333         <gnorton@customerdna.com>).
21335 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
21337         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
21338         between appdomains.  Fixes appdomain-unload on PPC.
21340 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
21342         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21343         mini-exceptions.c: handle the new wrapper types.
21344         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
21345         token value as a MonoClass* when compiling a wrapper.
21346         mono_jit_create_remoting_trampoline now takes an additional
21347         MonoRemotingTarget parameter.
21348         
21349 2004-11-10  Martin Baulig  <martin@localhost>
21351         * mini.c (mono_method_to_ir): Use `generic_container->context'
21352         rather than creating a new one.
21354 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21356         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
21358         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
21360 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
21362         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
21363         the experimental aot cache stuff.
21365 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
21367         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21368         mini-exceptions.c: update to exception clause structure changes.
21370 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
21372         * exceptions-x86.c (throw_exception): Fix warnings.
21374         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
21375         for OP_RETHROW.
21377 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
21379         * exceptions-sparc.c (get_throw_exception): Really fix this.
21381 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
21383         * tramp-*.c: we no longer support icalls without wrappers, so
21384         a bit of code can be removed here
21386 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
21388         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
21389         patch.
21391         * cpu-sparc.md: Add op_rethrow.
21393         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
21395         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
21397         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
21398         * mini-ops.h: Add OP_RETHROW.
21400         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
21402         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
21404 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
21405         
21406         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
21407         Makes the output much easier to read
21409 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
21411         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
21412         prevents another huge leak when compiling with ssa. Secondly, the
21413         performance of doing this rather than freeing the lists is much
21414         better. GList does a lock every time you allocate a list link,
21415         so that it can use a memory pool. So, it is better to just use
21416         a memory pool of our own.
21417         
21418         * ssa.c, linear-scan.c: replace g_list_remove_link with
21419         g_list_delete.  The remove one does not free the GList, so we were
21420         leaking memory. On -O=all --compile-all with corlib, this cut down
21421         3 MB of allocations.
21423 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
21425         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
21427         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
21429         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
21430         into a new function mono_create_jit_trampoline ().
21432 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
21434         * trace.c (get_spec): Allow tracing of classes without a namespace.
21436 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
21438         * mini.c: Fix pointer overwrite in mini_method_compile.
21440 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
21442         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
21443         The darwin ABI needs some special handling for 1 and 2 byte structs
21444         Lets use lbz/lhz instead of lwz everywhere.
21445         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
21446         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
21447         Use stb/sth for the former, and put the latter always on stack instead of in
21448         argument registers.
21450 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
21452         * trace.c (is_filenamechar): Add '_'.
21454 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
21456         * mini-s390.c: Fix prolog length to allow for large trace requirements.
21458         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
21460 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
21462         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
21463         depends on libmonogc. Fixes #68805.
21465 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
21467         * mini.c (mono_jit_free_method): Provide extra information for
21468         this error.  Currently this leaks, but will be turned into a
21469         developer option in the future.
21471 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
21473         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
21475 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
21477         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
21478         boundary. Fixes reading of PATCH_INFO_R4 and R8.
21479         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
21481 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
21483         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
21484         trampolines for AOT code.
21486 2004-10-22    <vargaz@freemail.hu>
21488         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
21489         constructed types. Fixes #68136.
21491 2004-10-21  Martin Baulig  <martin@ximian.com>
21493         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
21494         if it returns true, unwind the stack to the call instruction.
21496 2004-10-21    <vargaz@freemail.hu>
21498         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
21500         * mini.h: Bump AOT version number.
21502         * objects.cs: Add another test for unbox trampolines.
21504         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
21505         valuetype methods.
21507 2004-10-20    <vargaz@freemail.hu>
21509         * driver.c: Add SHARED to the set of optimizations tested.
21511         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
21513         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
21514         used by CEE_NEWARR.
21516         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
21518 2004-10-20  Martin Baulig  <martin@ximian.com>
21520         * mini-exceptions.c (mono_handle_exception): Call
21521         mono_debugger_handle_exception() to tell the debugger about
21522         catch/finally clauses.
21524 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
21526         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
21528         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
21529         #68447.
21531 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
21533         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
21534         methods as their native size, fixed bug #57543, #57545.
21535         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
21536         This saves a temporary register and mullw call down into 1 (minor perf
21537         increase for cases like sum = sum * 5;  This use to translate into:
21538             li r11,5
21539             mullw r28,r28,r11
21540         It now translates to
21541             mulli r28,r28,5
21543 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
21545         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
21546         #68388.
21548 2004-10-11  Martin Baulig  <martin@ximian.com>
21550         * mini.c (mono_method_to_ir): If we're a generic method, get the
21551         MonoGenericContainer from our MonoMethodNormal and create a
21552         MonoGenericContext from it.
21554 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
21556         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
21558         * basic-long.cs: Add test for checked i8->i2 cast.
21560 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21562         * inssel-ppc.brg: added a couple of speedup rules.
21564 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
21566         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
21567         to speed up rebuilds.
21569 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21571         * mini-s390.c: Minor fix to OP_OR_IMM.
21573 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
21575         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
21576         better. Fixes appdomain-unload.exe on sparc.
21578 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
21580         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
21581         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
21582         see bug 67324.
21584 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
21586         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
21588 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
21590         * mini.c: Always generate a field read/write wrapper for members
21591         of the class MarshalByRefObject since the actual instance could
21592         be a CBO.
21594 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
21596         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
21598 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
21600         * driver.c mini.h trace.c: Move the setting of the main assembly into
21601         a separate function called mono_trace_set_assembly () and call it after
21602         actually loading the main assembly. Fixes #66872.
21604 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
21606         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
21607         using the code manager.
21609 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
21611         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
21613 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
21615         * cpu-amd64.md: Fix bug in previous patch.
21616         
21617         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
21618         #66650.
21620 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
21622         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21623         mini-exceptions.c: updates for changed stack walk interface.
21625 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21627         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
21629 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
21631         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
21633 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
21635         * driver.c (mini_regression_list): Do not call mono_assembly_close 
21636         since assemblies can't be unloaded.
21637         
21638 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
21640         * cpu-amd64.md: Fix more instruction lengths.
21642         * cpu-amd64.md: Fix lengths of some instructions.
21644 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
21646         * inssel.brg: Make the array ldelema check aot friendly.
21648 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
21650         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
21652         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
21654 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
21656         * mini-x86.c: Fix build.
21658         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
21659         mono_type_get_underlying_type () helper function to simplify code.
21660         
21661 2004-09-09  Martin Baulig  <martin@ximian.com>
21663         * mini-amd64.c: Don't access `type->data.klass' directly, call
21664         mono_class_from_mono_type() instead since the type may be a
21665         generic instance.
21667 2004-09-09  Martin Baulig  <martin@ximian.com>
21669         * mini-amd64.c (get_call_info): Fix support for generic instances.
21670         (add_valuetype): Use mono_class_from_mono_type() to get the class
21671         since we can be a generic instance.
21673 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
21675         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
21677 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
21679         * liveness.c: reset spill costs on each scan: bug 62107
21681 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
21683         * exceptions-sparc.c (mono_arch_find_jit_info): remove
21684         unnecessary line that doesn't compile
21686 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
21688         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
21689         trampolines, make them call an error function so people can fix their
21690         code.
21692 2004-09-06  Martin Baulig  <martin@ximian.com>
21694         * mini.c (mono_method_to_ir): When initializing locals, handle a
21695         generic instances like a valuetype if it's a valuetype and like a
21696         class if it's a class.
21698 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
21700         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
21701         stack. Fixes #64674.
21703         * exceptions.cs: Add test for unwinding of call arguments.
21705 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
21707         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
21708         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
21709         set the carry/borrow flag). The sparc and s390 implementations
21710         can now use optimized versions (and simplify the code). ppc bugfixes.
21712 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
21714         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
21716 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
21718         * inssel-amd64.brg: Remove leftover 32 bit rule.
21720         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
21722 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
21724         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
21725         mono_arch_find_jit_info functions into a new function. Fix a memory
21726         leak.
21728         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
21729         refactored code.
21730         
21731 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
21733         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
21734         as well.
21735         
21736         * exceptions.cs: Add array size tests.
21738         * mini.c: Allocate a separate icall wrapper for each arity of 
21739         mono_array_new_va. Fixes #59509.
21741         * exceptions.cs: Add testcase for 64578.
21743         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
21745         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
21746         
21747 2004-09-02  Martin Baulig  <martin@ximian.com>
21749         * mini.c (mono_method_to_ir): When initializing the locals, call
21750         handle_initobj() on the generic instance itself, not its
21751         underlying type.
21753 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
21755         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
21756         MonoJitInfo for dynamic methods.
21758         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
21760         * mini.c: Add support for freeing JIT data for dynamic methods.
21761         
21762 2004-09-01  Martin Baulig  <martin@ximian.com>
21764         * mini-x86.c (is_regsize_var): Added support for generic
21765         instances.
21766         (mono_arch_emit_prolog): Make this compile again, use
21767         `x86_push_imm_template (code)'.
21769 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
21771         * mini-x86.c: make all push_imm instructions that get
21772         patched always emit the long form
21774 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
21776         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
21777         in a per-domain hash.
21779         * mini-amd64.c (merge_argument_class_from_type): Handle generic
21780         types.
21782 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
21784         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
21785         work.
21786         
21787         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
21788         work.
21790         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
21791         Beginnings of SSE2 support.
21793         * exceptions.cs: Add more tests for checked int<->uint casts.
21795 2004-08-28  Martin Baulig  <martin@ximian.com>
21797         * mini-x86.c (mono_arch_instrument_epilog): Added support for
21798         generic instances.
21800         * mini.c
21801         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
21802         Handle generic instances recursively.
21804 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
21806         * iltests.il: test for conv.u8 on a constant
21808 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
21810         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
21811         LCONV_x4 (shrun_32 (membase)).
21813 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
21815         * inssel-x86.brg: c&p rules for push/setret of long
21817 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
21819         * inssel-x86.brg: c&p rules for compare (base, regvar) and
21820         compare (regvar, base)
21822         * inssel-x86.brg: more burg love
21824         * inssel.brg: more cleanup
21826         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
21828 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
21830         * basic-long.cs, basic-calls.cs: new tests for optimization.
21832 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
21834         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
21835         patch.
21837 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
21839         * mini-amd64.c (read_tls_offset_from_method): Add another case.
21840         
21841 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
21843         * inssel.brg (mini_emit_memcpy): use 
21844         NO_UNALIGNED_ACCESS to disable memcpy optimization
21846 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
21848         * mini-amd64.c: Handle generic types in various places.
21850         * mini.c (mono_method_to_ir): Handle generic types in init locals.
21852 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
21854         * mini.c (handle_box): Fix warning.
21856         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
21858         * mini-amd64.h: Enable the emit_state optimization.
21860         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
21862         * mini-amd64.c: Add some new 64 bit peephole opts.
21864         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
21866         * cpu-amd64.md: sreg1 of div instructions must be %rax.
21868         * mini-amd64.c: Register allocator fixes.
21870         * mini.c: Add an optimization to emit_state to avoid allocation of new
21871         registers on some platforms.
21873 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
21875         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
21877         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
21878         allocation. Fixes #63085.
21880         * basic-long.cs: Add new regression test.
21882         * mini-amd64.c: Register allocator improvements.
21884 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
21886         * mini-amd64.c (read_tls_offset_from_method): Add another code
21887         sequence.
21889         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
21890         instruction sequence for nullifying class init trampolines.
21892         * objects.cs: Add new regalloc test.
21894         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
21896 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
21898         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
21899         
21900         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
21901         arguments.
21903         * driver.c: Fix profiling after TLS changes.
21904         
21905         * driver.c (mono_main): Set mono_stats.enabled if needed.
21907         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
21908         CEE_BOX.
21910 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
21912         * mini-x86.c: use a 1 op rather than a 2 op tls access
21913         instruction -> faster.
21915 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
21917         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
21918         x86 backend.
21920 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
21922         * exceptions-sparc.c (throw_exception): fix typo
21924 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
21926         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
21927         set tree->dreg correctly with tls. Allow any
21928         register to be used.
21930         * mini-x86.c (read_tls_offset_from_method): add new code
21931         generation pattern seen with GCC.
21934 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
21936         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
21937         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21938         exceptions-sparc.c: fix some performance issues in exception
21939         handling and setting of the stack trace for exceptions that were
21940         already thrown.
21942 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
21944         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
21945         x86 backend.
21946         
21947         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
21948         registers.
21950 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
21952         This patch inlines tls access, when possible.
21953         
21954         * mini.h: new arch functions for TLS intrinsics.
21955         All platforms updated with a stub.
21957         * mini.c: use the new intrinsics
21959         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
21960         arch specific intrinsic for tls variables
21962 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
21964         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
21965         under windows.
21967 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
21969         * mini.c: thread local allocation
21971 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
21973         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
21975         * Makefile.am: Link against the static version of libmonogc.
21976         
21977         * Makefile.am: Link the static versions of the convenience libraries
21978         into the mono executable.
21980         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
21982 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
21984         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
21985         on integer overflow.
21987         * mini-amd64.c: Reorganize function call code.
21989         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
21991 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
21993         * inssel-x86.brg: use xor eax,eax.
21994         
21995         * basic.cs: new tests
21997 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
21999         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
22000         in exception throwing code.
22001         
22002 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
22004         * inssel-x86.brg: use xor esi,esi.
22006 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
22008         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
22009         can trace methods compiled during mini_init () too.
22011         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
22012         CEE_CONV_U4.
22014 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
22016         * Makefile.am: static link on x86 (r=zoltan)
22018 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
22020         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
22021         code since it causes some programs to fail.
22023 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
22025         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
22027 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
22029         * mini.c: ovfops_op_map - add STACK_OBJ case for
22030         CONV_I 
22031         * basic.cs: add test_0_pin_string as test
22032         case for above.
22034 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
22036         * Makefile.am: build C# if srcdir != builddir
22038 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
22040         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
22041         fall-through blocks.
22043 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22045         * driver.c: enable loop by default again and include abcrem in -O=all.
22047 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
22049         * iltests.il: Add some localloc tests.
22051         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
22053         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
22054         Fixes #62574.
22056         * inssel-amd64.brg: Add some optimizations.
22058         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
22059         for gcc-3.4.
22061         * Makefile.am: Statically link mono against libmono on AMD64.
22062         
22063         * mini-amd64.c inssel-amd64.brg: Optimizations.
22065 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
22067         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
22069         * tramp-amd64.c: Patch calling code in trampolines.
22071 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
22073         * mini-amd64.c: pinvoke struct passing fixes.
22075 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
22077         * mini-sparc.c: redo change, make mono_arch_cpu_init call
22078         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
22080 2004-08-05  Duncan Mak  <duncan@ximian.com>
22082         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
22083         CEE_LDELEM_ANY.
22085 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22087         * mini-amd64.c (emit_move_return_value): Move return value for normal
22088         calls too.
22090 2004-08-05  Martin Baulig  <martin@ximian.com>
22092         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
22093         `type->type'; just modify `type' itself when dealing with enums
22094         and generic instances.
22095         (check_call_signature): Make `simple_type' a `MonoType *'.
22097 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22099         * mini.c: Use OP_PADD to add offsets to addresses.
22101         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
22103 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
22105         * mini-sparc.c (mono_arch_emit_epilog): fix check
22106         for folding last op into restore instruction
22108 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22110         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
22111         helper methods using the code manager.
22112         
22113         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
22115         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
22117 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22118         
22119         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
22120           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
22122         * mini-s390.c: fix tail processing
22124 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
22126         * mini-ppc.c: mul.ovf.un exception name fix.
22128 2004-08-03  Martin Baulig  <martin@ximian.com>
22130         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
22131         instances; before jumping to `handle_enum', also modify `ptype'.
22133 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
22135         * cpu-sparc.md: fcall maximal length too small.
22137 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
22139         * mini-amd64.c mini.h: Add initial support for passing/returning 
22140         structures to/from pinvoked methods.
22142 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
22144         * mini-ppc.c: reg allocator fix.
22146 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
22148         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
22150         * inssel.brg: Optimize memset on 64 bit machines.
22152         * mini-amd64.c: Fix some vararg cases.
22154 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22156         * mini-s390.c: Corrected macro in emit_float_to_int
22158         * s390-abi.cs: Tests to exercise the s390 ABI
22160 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22162         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
22163         caller saved regs.
22165         * basic.cs: Add a test for add.ovf.un.
22167 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
22169         * mini-sparc.c: add case for OP_IDIV_UN
22171 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22173         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
22174         
22175         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
22177 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
22179         * basic.cs: regression tests.
22181         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
22182         regressions.
22184 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22186         * basic.cs: Add a new test.
22188         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
22189         and AOT. Various fixes and optimizations.
22191         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
22193 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
22195         * mini-ppc.c: make sure temp regs are not used for global reg
22196         allocation.
22198 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
22200         * cpu-sparc.md: conv_i8 fix for 64bits
22202         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
22204 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
22205         
22206         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
22207         add opcode for cmp BYTE PTR [eax], imm.
22209         * inssel.brg: Make memcpy and memset takes bases.
22211 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
22213         * *-amd64.*: More AMD64 work.
22214         
22215 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
22217         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
22218         add a compare-not-equal opcode.
22219         
22220 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
22222         * mini.c: Use mono_init_from_assembly instead of mono_init.
22223         
22224 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
22226         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
22228         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
22230         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
22232         * inssel.brg: 64 bit fixes.
22234         * mini.h (MonoCallInst): Add some AMD64 specific data.
22236         * mini.h: Add some OP_P opcodes.
22238 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
22240         * basic.cs: tests for 61797 and 61740
22242 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
22244         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
22245         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
22247 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
22249         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
22251         * *-amd64*.*: Ongoing AMD64 work.
22253 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
22255         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
22257         * *-amd64*: Ongoing AMD64 work.
22259         * mini-arch.h: Add AMD64 support.
22261         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
22263         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
22265         * mini-ops.h: Add new opcodes.
22267         * Makefile.am: Add AMD64 support.
22269         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
22270         rules into the inssel-long*.brg files.
22272         * *-amd64.*: Add beginnings of AMD64 backend.
22274 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
22276         * mini.c (print_dfn): commenting out the code that prints
22277         the cil. With -O=deadce, this makes -v -v crash.
22278         
22279         * cpu-pentium.md: make checkthis have a length of 2
22281 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
22283         * mini-sparc.h: fix implementations of __builtin
22284         functions for Sun compiler for V9.
22286 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
22288         * mini.c: use the new stelem.ref wrapper
22289         * exceptions.cs, arrays.cs: new stelem.ref tests
22291 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
22293         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
22294         new XSP should work with these changes).
22296 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
22297         
22298         * inssel-{long32,x86,}.brg: trivial optimizations.
22299         
22300 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
22302         * mini.c: load value when emitting box operation in
22303         constrained calls.
22305 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
22307         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
22308         is one byte shorter than cmp DWORD PTR [eax], 0.
22310 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
22312         * inssel-ppc.brg: arguments on the stack are always
22313         relative to the stack pointer (spotted by Neale Ferguson).
22315 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22317         * exceptions-x86.c: delay appending the method name to the trace until
22318         after mono_jit_info_table_find is called, as this gets the real
22319         MonoMethod.
22321 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
22323         * aot.c: register roots
22325 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
22327         * aot.c : I could just use PLATFORM_WIN32 flag.
22329 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
22331         * aot.c : Reverting the previous fix. This time it broke linux build.
22333 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
22335         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
22337 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
22339         * mini.c (handle_stack_args): Remove some more debugging code.
22340         
22341         * mini.c (handle_stack_args): Remove debug output left in by mistake.
22343         * driver.c mini.h aot.c: Allow additional options to be specified with
22344         --aot and pass them to mono_compile_assembly.
22346         * aot.c: Add experimental code to AOT compile all loaded assemblies
22347         on demand and save the code into a cache in the filesystem.
22349         * aot.c: Add support for more wrapper methods.
22350         
22351         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
22352         58863.
22354         * cpu-*.md: Remove removed opcodes.
22356         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
22357         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
22358         related icalls to marshal.c.
22360 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
22362         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
22364         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
22366         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
22368 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
22369         * liveness.c: If liveness is recomputated we need to reset the information
22370         for each variable. This way, if the liveness range has been narrowed
22371         by optimizations that happened after the last computation, we can return
22372         a smaller range.
22373         
22374         For example, if you have
22375         
22376         {
22377                 int i = 0;
22378                 
22379                 // Tons of code that does not affect i
22380                 
22381                 i = foo ();
22382                 ...
22383         }
22384         
22385         i = 0 is dead code and will be removed by SSA. However, when
22386         linear scan gets to the code, i will still appear to be live
22387         throughout the entire block. This prevents good register allocation.
22389 2004-07-06  Martin Baulig  <martin@ximian.com>
22391         * debug-mini.c (mono_debug_init_method): Allow
22392         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
22393         (mono_debug_add_icall_wrapper): New method.
22395         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
22397 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
22399         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
22400         optimization.
22402 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
22404         * aot.c (mono_aot_load_method): Fix loading of debug info.
22406 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
22408         * aot.c: Add logging support.
22410 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
22412         * mini.h: Add prototype for mono_print_method_from_ip.
22414         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
22416         * inssel.brg: 64 bit fixes.
22418         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
22419         inssel-long32.brg.
22421         * Makefile.am: Add SPARC64 support.
22423 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
22425         * aot.c: Fix alignment problems on 32 bit platforms.
22427 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
22429         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
22430         SPARC64.
22432         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
22433         problems.
22435         * mini.h: Bump AOT file version. Some 64 bit fixes.
22437 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
22439         * inssel-sparc.brg: Add new rule to avoid register moves.
22441         * inssel.brg: Add ldind_to_load_membase helper function.
22443 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
22445         * mini.c: OffsetToStringData intrinsic.
22446         
22447 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
22449         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
22451         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
22452         regression tests.
22454         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
22455 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
22457         * mini.c: reinstated mono_compile_get_interface_var()
22458         on x86, too, since the change breaks the Gtk# build there as well.
22460 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22462         * driver.c: remove loop from the default optimizations: it seems to
22463         interact badly with some of the other options (see bug #60613).
22465 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
22467         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
22468         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
22470 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
22472         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
22473         vararg-using methods.
22475 2004-06-21  Martin Baulig  <martin@ximian.com>
22477         * mini/mini-exceptions.c
22478         (mono_handle_exception): Added `gpointer original_ip' argument.
22479         After calling mono_unhandled_exception(), call
22480         mono_debugger_unhandled_exception() and if that returns true,
22481         restore the context and return.
22483 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
22485         * mini-ppc.c: prefer the use of relative branches so
22486         they won't need to be patched in aot code (patch from Patrick Beard).
22488 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
22490         * aot.c: patch from Patrick Beard to make the output assembly
22491         more correct for the MacOSX assembler. Small tweak to
22492         generate sane images on Linux/PPC, too.
22494 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22496         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
22497         case until bug #59509 is fixed (shows up in #60332).
22499 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22501         * mini.c: make sure the needed wrappers are compiled, too, with
22502         precomp.
22504 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
22506         * driver.c: remove NPTL reference in --version output.
22508 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22510         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
22511         generate valid assembly for the Mach-O assembler.
22513 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
22515         * driver.c: don't include abcrem in the all optimization specifier
22516         since it slows down jit compilation too much for now.
22518 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
22520         * mini.c: use BIGMUL only if both operands have the same signage.
22521         * iltests.il: Test for bug 60056. (errors related to signage in
22522         BIGMUL).
22524         r=lupus.
22526 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
22528         * mini.c, aot.c: memory leak fixes.
22530 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
22532         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
22534 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
22536         * Makefile.am: remove the -static hack completely, it links in
22537         statically glib as well.
22539 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
22541         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
22542         * exceptions.cs: make it compile with new mcs/csc.
22544 2004-06-03 Massimiliano Mantione <massi@ximian.com>
22545         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
22546         and added relevant test case.
22548 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
22550         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
22551         regressions in gtk-sharp.
22553 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
22555         * exceptions.cs: New regression tests.
22557         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
22559 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
22561         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
22563 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
22565         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
22567         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
22569 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
22571         * mini.c (mono_jit_runtime_invoke): Init class in this
22572         method instead of trusting mono_jit_compile_method to
22573         do the work (because wrappers can be in object class)
22575 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
22577         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
22579         * basic-long.cs: New regression test.
22581 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
22583         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
22584         and div/rem checks.
22586 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
22588         * Makefile.am: fix miguel's change to build mono statically against
22589         libmono (track build dependencies).
22591 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
22593         * cfold.c: Some glib versions do not have G_MININT32.
22595 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
22597         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
22598         with precision of tan, atan, sin and cos, and implemented related
22599         regressions tests (fixes bug 54467, but one new problem appeared and
22600         is not fixed yet).
22602 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
22604         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
22606         * exceptions.cs: Add test for constant folding && division by zero.
22608         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
22609         since driver.c is in libmono too, so the optimization was useless.
22611         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
22612         variable to driver.c so the compiler can emit more efficient code to
22613         access them.
22615 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22617         * Makefile.am: don't distribute generated inssel.[ch] files.
22619 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
22621         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
22622         into the default appdomain. Fixes #58707.
22624         * jit-icalls.c: Remove the broken approximation for truncl, doing
22625         no conversion is better.
22627         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
22628         Fixes #58863.
22630 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
22632         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
22633         of the mcrxr instruction which is not available on some processors
22634         even if it's documented to be. Implement add and sub overflow correctly
22635         (still not complete for long unsigned). Speed up icalls a bit.
22637 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
22639         * mini.c (mono_jit_compile_method_with_opt): Make sure that
22640         we run .cctor in the current domain instead of target_domain.
22641         
22642         Fixes bug #58558, .cctor not being called in -O=shared.
22644 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
22646         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
22648 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
22650         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
22651         which can be done with an imm8, do it that way.
22652         (mono_arch_output_basic_block): ditto for a jmp
22653         (mono_arch_emit_prolog): Computate maximum offset of a label.
22655 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
22657         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
22658         now tries to allocate prefered physical reg's for virtual
22659         regs. This reduces the number of emited spills/loads with
22660         20-30% on our core assemblies.
22662 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22664         * jit-icalls.c: truncl() is not needed and trunc() is
22665         the correct thing to do anyway (bug #58287).
22667 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
22669         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
22670         if available.
22672 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
22674         * driver.c: enable loop optimizations by default.
22676 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
22678         * mini-x86.c: fix calc of max loop size when aligning loops start.
22680 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
22682         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
22683         the stack.
22685 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
22687         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
22688         should set carry.
22690         * basic-long.cs: Add tests for add/subtract of immediates with carry.
22692         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
22693         
22694         * mini.c (inline_method): Allways inline some wrappers even if the cost
22695         is too large. Fixes #58785.
22697         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
22698         
22699 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
22701         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
22702         (crichton@gimp.org). Beginning of support for sparc/linux.
22704         * mini-sparc.c: Optimize retrieval of LMF address.
22706 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
22708         * exceptions-ppc.c:  handle alloca in methods with clauses.
22710 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
22712         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
22714 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
22716         * mini.c: Delegate most of the abort signal work to 
22717           mono_thread_request_interruption, which also handles Stop and Suspend
22718           states.
22720 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
22722         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
22723         supports the save/restore lmf opcodes.
22725 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
22727         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
22728         by gcc-3.4 as well.
22730         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
22732 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
22734         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
22735         methods which contain array accesses.
22737         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
22738         boundaries. Fixes #58537.
22740         * iltests.il: Add regression test for #58537.
22742 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
22744         * mini-x86.c (mono_arch_local_regalloc): Last part of
22745         fix for bug #58633 (releasing register to early).
22747 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
22749         * basic-long.cs: Add new regression test.
22751 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
22753         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
22754         register too early on the chain.
22756 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
22758         * mini.c (create_helper_signature): Use a helper function to reduce
22759         the code which needs to be written. Also set the calling convention of
22760         icalls on windows. Fixes #57840.
22762 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
22764         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
22765         exceptions-ppc.c: added helper function to get the instruction address
22766         from a signal handler context.
22768 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22770         * helpers.c: use g_get_tmp_dir. Invokes happyness 
22771         from gonzalo.
22773 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22775         * helpers.c: Add new env variable to pass args to objdump.
22776         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
22778 2004-05-17  Radek Doulik  <rodo@ximian.com>
22780         * Makefile.am (common_sources): added abcremoval.h so it get
22781         disted and daily mono packages on go-mono.com will build again
22783 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
22785         * abcremoval.c: Fixed coding style, added copyright header.
22787         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
22789         * mini.h: Added prototype for abc removal main function.
22791         * build_relations_propagation_table.pl: Added copyright header.
22793 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
22795         * basic-long.cs: reg test for complex ceq_long bug.
22797 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
22799         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
22800         reg in long and clob case (bug #58343). Fixed/added comments.
22802 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
22804         * mini.c (mono_jit_runtime_invoke): Follow new convention
22805         of calling the invoke method with an function pointer.
22807 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
22809         * ChangeLog: Fix author of memory leak patch.
22811 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
22813         * Makefile.am: fix make dist as well...
22816 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
22818         * cfold.c: Made so that conversions from pointer to int4 are no-ops
22819         on archs where pointers are 4 bytes long.
22821         * Makefile.am: Added abcremoval.c source file.
22823         * abcremoval.c: Added abcremoval.c.
22825         * abcremoval.h: Added abcremoval.h.
22827         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
22829         * inssel.brg: Enabled bounds check removal.
22831         * mini.c: Added support for abcrem optimization.
22833         * mini.h: Added abcrem optimization label.
22835         * driver.c: Added support for abcrem optimization.
22837         * propagated_relations_table.def: Added propagated_relations_table.def.
22839 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
22841         * mini.c, cfold.c: fix style.
22843 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22845         * mini.c: handle issue with the low-level implementation of
22846         some long opcodes (bug #54209).
22848 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
22850         * basic.cs: test for my new cmov stuff.
22852 2004-05-13      Patrik Torstensson
22854         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
22855         opt and added peephole documentation.
22857 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
22859         * tramp-ppc.c: rewrote the generic trampoline code.
22861 2004-05-11      Patrik Torstensson
22863         * mini-x86.c: optimize long shl/shr asm code (one less branch)
22865 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
22867         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
22869         * mini.h mini.c dominators.c: Applied patch from Derek Woo
22870         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
22872         * mini.c: Add new icalls for AsAny marshalling.
22874 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
22876         * tramp-ppc.c, mini-ppc.c: more cleanups.
22878 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22880         * mini.c: no warnings.
22882 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22884         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
22886 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
22888         * mini.c: In the thread abort signal handler, if the thread is in the
22889         process of being stoped, don't throw the Abort exception, just stop the
22890         thread.
22892 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
22894         * tramp-ppc.c: removed old code.
22896 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22898         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
22899         do some simple speed optimizations on ppc.
22901 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
22903         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
22904         and large offsets in load/store.
22906 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
22908         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
22909         it causes regressions.
22911 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
22913         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
22914         support.
22916 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
22918         * jit-icalls.c: remove warnings.
22919         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
22920         speedups for unsafe code.
22922 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
22924         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
22926 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
22928         * basic-calls.cs: Add new regression test.
22930         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
22931         more portable.
22933         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
22935         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
22936         is no longer used.
22938 2004-05-06      Patrik Torstensson
22940         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
22941         long reg allocation in any reg (not only eax:edx) and implemented 
22942         long shl/shr ops in asm instead of helpers.
22944 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
22946         * mini-sparc.h: Fix warnings.
22948         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
22949         stack.
22951         * mini-exceptions.c (mono_handle_exception): Call the filter in a
22952         separate statement for clarity.
22954         * mini-sparc.c: Update status.
22956 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
22958         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
22959         here.
22961 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22963         * inssel-ppc.brg: another small pre-release workaround:
22964         we don't do overflow detection for long_sub_un.
22966 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22968         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
22969         (also works around a weird ppc bug: 57957).
22971 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
22973         * tramp-ppc.c: trampoline fixes.
22975 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
22977         * mini-ppc.c: fixed typos.
22979 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
22981         * mini-ppc.c, exceptions-ppc.c: more code saves registers
22982         at the top of the stack. Fixed typos. Use a frame registers
22983         for all the methods with exception clauses.
22985 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
22987         * exceptions-ppc.c: restore fp registers.
22989 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
22991         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
22992         order from the stack top (moved the stack room to save the
22993         return value for trace after the param area). Fixed corruption
22994         in restoring registers on unwind.
22996 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
22998         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
23000 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23002         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
23003         and prolog/epilog for methods that use it. Allow
23004         enough param area room for varargs methods. Fix miguel's
23005         breakage in exception handling.
23007 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23009         * Makefile.am: run genmdesc only on current arch.
23011 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23013         * exceptions-x86.c:
23014         * mini-x86.h: fix the build on windows.
23016 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
23018         * 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.
23020         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
23022         * mini-exceptions.c: New file.
23023         
23024         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
23025         Move some parts of the x86 exception handling code to an 
23026         arch-independent file so it can be shared with other ports.
23028 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
23030         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
23032 2004-04-26  David Waite  <mass@akuma.org>
23034         * driver.c: remove comma from end of enumeration declaration
23036 2004-04-26  Jackson Harper  <jackson@ximian.com>
23038         * driver.c: parse config file before loading first assembly. This
23039         allows the user gac to be enabled/disabled. 
23040         
23041 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
23043         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
23044         simpler mechanism: we do not care what is encoded initially
23045         (branch absolute or relative), we care about the code and its
23046         target.  I kept the old code for reference for now.
23048         The new code tries first to determine if the jump is anywhere in
23049         the -/+32 absolute meg range, if it succeeds, it encodes using the
23050         absolute branch;  If not, it tried to find something in the
23051         relative range, if not, it uses the handle_thunk code. 
23053 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
23055         * exceptions-ppc.c: use the correct ip register on macosx.
23057 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
23059         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
23061 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
23063         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
23064         Raise exception on integer divide by zero by hand since the hw
23065         doesn't support it. Handle NaNs in FP compares.
23067 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23069         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
23070         code reducing duplication between the platforms and enabled
23071         signal exception handling (on linux for now).
23073 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
23075         * exceptions-ppc.c: more macosx support.
23077 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
23079         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
23081 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23083         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
23085 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
23087         * iltests.il: more tests.
23089 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
23091         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
23092         vars as well.
23094 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
23096         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
23098 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
23100         * liveness.c: Mark variables as volatile in all basic blocks reachable
23101         from exception clauses.
23103 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
23105         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
23106         inlining.
23108 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23110         * iltests.il, basic.cs: more tests for regalloc.
23112 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23114         * iltests.il: Some tests for register allocation modifications
23115         I have locally.
23117 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
23119         * exceptions.cs: Add regression test for bug #56782.
23121         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
23122         original stack trace if an exception is rethrown. Fixes #56782. Oh,
23123         the beauty of fixing the same thing in 5 different files...
23125 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
23127         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
23128         methods.
23130 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
23132         * mini.c: Add support for STRWLPARRAY marshalling convention.
23134 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23136         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
23137         to init the context to setup the regs pointer).
23139 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
23141         * exceptions-ppc.c: more exceptions work.
23143 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23145         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
23146         not allowed.
23148 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
23150         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
23151         can use the memory directly.
23153         * cpu-pentium.md: Update documentation from a post from Zoltan. 
23155         add x86_add_membase, x86_sub_membase, x86_mul_membase
23157 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
23159         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
23160         GENERAL_REGS they were also hardcoded for all PPC ports.
23162         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
23164         Remove hard-coded limit for floating point registers, use
23165         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
23167         Notice that in MacOS X calling conventions you can fit a lot more
23168         floating point values in registers, so I should update the PInvoke
23169         test to excercise the passing of floating point values on the
23170         stack (currently broken).
23171         
23172 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
23174         * tramp-ppc.c (create_trampoline_code): Added
23175         JUMP_TRAMPOLINE_SIZE. 
23176         (ppc_magic_trampoline): Follow the pattern from
23177         x86_magic_trampoline: if code is set to zero, return. 
23178         (create_trampoline_code): Always pass MonoMethod to the jump
23179         trampoline, before it was passing a null.
23180         (mono_arch_create_jump_trampoline): Implement the jump stub, could
23181         share the code with mono_arch_create_jit_trampoline. 
23183         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
23184         implemented.
23185         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
23186         implemented.  
23188         * cpu-g4.md: Added length for jmp instruction, the worst case
23189         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
23190         for save_lmf).
23192 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
23194         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
23196 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
23198         * mini.c: Only set bblock->real_offset when adding a new bblock, and
23199         before each IL instruction.
23201         * mini.c (CEE_BOX): Fix warnings.
23203 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23205         * mini.c: removed a few unused vars and extra whitespace.
23207 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
23209         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
23210         checks.
23211         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
23212         index.
23213         (OP_GETCHR): use the above
23214         (CEE_LDELEMA): use the above.
23216         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
23217         version of the generic impl.
23218         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
23219         (CEE_LDELEMA): use the above.
23221 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
23223         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
23224         Fixes #56317.
23226         * iltests.il: Added new regression test for #56317.
23228 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
23230         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
23231         under NetBSD. Fixes #56450.
23233         * liveness.c (update_gen_kill_set): Fix previous patch.
23235 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23237         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
23239 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
23241         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
23242         ldsfld and ldsflda.
23244         * inssel-sparc.brg: Add more optimizations.
23246         * mini-sparc.c: Replace multiply/divide with shifts if possible.
23248 2004-04-01  Martin Baulig  <martin@ximian.com>
23250         * mini.c (handle_box): New static function; moved the
23251         implementation of CEE_BOX here.
23252         (mono_method_to_ir): Added `constrained_call' variable.
23253         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
23254         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
23255         mono_method_get_constrained() to get the method.
23257 2004-04-01  Martin Baulig  <martin@ximian.com>
23259         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
23260         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
23261         (mono_method_to_ir): We don't need these macros anymore since
23262         mono_class_get_full() already takes care of it. 
23264 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23266         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
23267         use @function (as doesn't accept #function here) and check the return
23268         value of system and stop if fails.
23270 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23272         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
23274 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
23276         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
23278         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
23280         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
23281         #56223.
23283         * basic-long.cs: Add test for negation of Int64.MinValue.
23285 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
23287         * mini-sparc.c: Update status.
23289         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
23291         * exceptions-sparc.c: Fix return value in filters.
23293         * inssel-sparc.brg: Fix register allocation in some rules.
23295 2004-03-28  Martin Baulig  <martin@ximian.com>
23297         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
23298         if neccessary.  
23300 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
23302         * mini-x86.c (mono_arch_patch_code): Fix warnings.
23303         
23304         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
23305         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
23306         remove unused conv_u4 opcode.
23308         * mini-x86.c: Remove valgrind workaround since it slows down things
23309         even when mono is not run under valgrind.
23311 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
23313         * mini-sparc.c: Update status.
23315         * inssel-sparc.brg: Add some optimizations.
23317         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
23318         future delay slot filling. Add support for varargs, tail calls and JMP.
23320         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
23321         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
23323         * inssel.brg: Fix register allocation in OP_ARGLIST.
23325         * inssel.brg: Fix warnings.
23327 2004-03-25  Martin Baulig  <martin@ximian.com>
23329         * mini.c (inflate_generic_field): Removed.
23330         (mini_get_method): Removed, use mono_get_method_full(),
23331         (mini_get_class): Removed, use mono_class_get_full().
23332         (mono_method_to_ir): Pass our generic context to
23333         mono_field_from_token().        
23335 2004-03-25  Martin Baulig  <martin@ximian.com>
23337         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
23338         of a `MonoMethod *'.
23339         (mini_get_method): Take a `MonoGenericContext *' instead
23340         of a `MonoMethod *'.
23341         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
23342         a new local variable called `generic_context' which holds the
23343         current `MonoGenericContext *'; use it to lookup things.
23345 2004-03-24  Martin Baulig  <martin@ximian.com>
23347         * mini.c (mini_get_class): New static method; if we're inside a
23348         generic instance, inflate the class if neccessary.
23349         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
23351 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
23353         * iltests.il: New regression test for #55976.
23355         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
23356         #55976.
23358 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
23360         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
23361         output.
23363 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
23365         * liveness.c: Consider SSA stores as well as loads when making vars
23366         volatile.
23368         * exceptions.cs: New regression tests for register allocation.
23369         
23370 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
23372         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
23373         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
23374           domain lock only to protect puntual access to data structures.
23375           Added access lock for sighash, jit_icall_hash_name, 
23376           jit_icall_hash_addr and domain->code_mp.
23378 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
23380         * driver.c: Print SIGSEGV handling method.
23382         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
23384         * mini.c (setup_jit_tls_data): Handle case when this is called
23385         multiple times for a thread.
23387         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
23388         is different from fbxx_un. Fixes #54303. Also use constants instead of
23389         magic numbers in a lot of places.
23391 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
23393         * exceptions.cs: Fix cctor test when --regression is used.
23395 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
23397         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
23398         for Linux/ppc.
23400 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
23402         * inssel-ppc.brg: fixed register assignments for some rules.
23404 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
23406         * exceptions.cs: Add test for exceptions in static constructors.
23408         * mini.c (mono_jit_compile_method_with_out): Move the calling of
23409         static constructors outside the domain lock. Fixes #55720.
23411 2004-03-17  Martin Baulig  <martin@ximian.com>
23413         * mini.c (get_generic_field_inst): Removed, this'll never happen.
23414         (inflate_generic_field): Take the `MonoMethod *' instead of the
23415         `MonoClass *' and added support for generic method.
23416         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
23417         have a `field->parent->gen_params', only inflate the field if it's
23418         an open constructed type.
23420 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
23422         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
23423         exception object instead of the preconstructed ones.
23425 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23427         * mini.c: reverted changed to sigsegv_signal_handler commited
23428         accidentally in the previous patch.
23430 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23432         * mini.c:
23433         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
23434         running --aot with an old assembly.
23436 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
23438         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
23439         point values.
23441         * mini-sparc.c: Add support for v9 branches with prediction.
23443 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
23445         * mini.c (mini_init): #warning is GNUC only
23447         * mini-sparc.h: implement __builtin_frame_address
23448         and __builtin_return_address for Sun C compiler
23450 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
23452         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
23454 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
23456         * basic-calls.cs: Add test for unaligned byref long argument passing.
23458         * mini-ops.h: Add sparcv9 compare and branch instructions.
23460         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
23461         v9 instructions if we have a v9 cpu.
23463         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
23464         registers for global allocation.
23466         * exceptions-sparc.c: Fixes.
23467         
23468 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
23470         * liveness.c (mono_analyze_liveness): Optimized version.
23472         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
23474         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
23475         sparc work.
23477         * basic-float.cs basic-calls.cs: New regression tests.
23479 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
23481         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
23482         sigaltstack implementation.
23484         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
23485         
23486         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
23487         stuff if SIGSEGV_ON_ALTSTACK is not defined.
23489 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
23491         * mini.c: Fix warnings.
23492         
23493         * mini.c (mono_resolve_patch_target): New function which contains the
23494         arch independent part of the patching process.
23496         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
23497         patching code to a separate function.
23499 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
23501         * mini.c (add_signal_handler): ifdef out on Windows
23503 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
23505         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
23506         cpu-sparc.md: Add exception handling support + other fixes.
23508         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
23509         typed GC detection in --version.
23511         * basic.cs exceptions.cs: New regression tests.
23513         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
23514         the arch specific code can store data during a compilation.
23516         * mini-ops.h: Add OP_SETFRET.
23518         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
23519         function, register a separate icall for each arity, so the icalls can
23520         get a wrapper.
23521         
23522         * mini.c (mono_print_tree): Print negative offsets in a more readable
23523         form.
23524         
23525         * mini.c: Make signal handling work on sparc.
23526         
23527         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
23529         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
23531         * jit-icalls.c: Emulate truncl by aintl on solaris.
23533         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
23535 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
23537         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
23539 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
23541         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
23542         a MarshalByRef type, inline a method that performs the check, taking into
23543         account that the object can be a proxy. Also implemented tow new opcodes:
23544         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
23545         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
23546         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
23548 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23550         * mini-ppc.c: if a relative branch displacement is too big
23551         but it points to and area reachable with an absolute branch, 
23552         avoid the thunks.
23554 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23556         * mini.c: optimize small copies in cpblk.
23558 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
23560         * basic-calls.cs basic-float.cs: New regression tests.
23562         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
23563         negative offsets from %fp. Implement localloc. Fix local register 
23564         allocation. Fix the case when the this argument needs to be saved to
23565         the stack. Implement some missing opcodes.
23567 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
23569         * mini.c (mini_method_compile): Reenable global regalloc in methods
23570         with exception handlers.
23572         * linear-scan.c (mono_varlist_sort): Fix warning.
23574         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
23576         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
23577         regalloc costs.
23579         * liveness.c: Make all variables uses in exception clauses volatile, to
23580         prevent them from being allocated to registers. Fixes #42136.
23582 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
23584         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
23585         causes regressions.
23587         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
23588         argument to mono_arch_regalloc_cost.
23590         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
23591         precisely.
23593 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
23595         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
23596         Make the cost of allocating a variable to a register arch dependent.
23598         * basic-calls.cs: Fix compilation of tests.
23599         
23600         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
23601         helper function to cut back on the number of #ifdefs needed.
23603         * mini-ppc.c: Fix compilation.
23605         * basic-calls.cs: New regression tests.
23607         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
23609         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
23610         of l0 since that is callee saved.
23612         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
23613         to virtual calls.
23615         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
23616         of delay instruction.
23618         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
23620         * mini.h (MonoCallInst): Add 'virtual' flag.
23622         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
23624 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
23626         * *.cs: New regression tests.
23628         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
23629         work.
23631         * mini.c (mono_runtime_install_handlers): Fix build.
23633         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
23634         'signal_stack_size' members.
23636         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
23637         alternate signal stack.
23639         * exceptions-x86.c: Add stack overflow handling.
23641         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
23642         functions to arch independent code.
23644         * mini.c (mono_print_tree): Print more detailed info for load_membase
23645         opcodes.
23646         
23647 2004-02-23  Martin Baulig  <martin@ximian.com>
23649         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
23651 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
23653         * mini-x86.c: fixed reg allocation for div/rem.
23655 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
23657         * driver.c (mono_main): Report some configuratio options on --version.
23659 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
23661         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
23662         low in the address space. Correctly flush memory in thunks where we
23663         output native code.
23665 2004-02-20  Martin Baulig  <martin@ximian.com>
23667         * mini.c (mini_get_method): New static method; inflate all generic
23668         methods and methods in open generic instances.
23669         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
23670         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
23672 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
23674         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
23676         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
23678 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
23680         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
23682         * mini-sparc.c (flushi mono_arch_output_basic_block): make
23683         it compile using Sun's compiler.
23685 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
23687         * 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.
23689         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
23691 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
23693         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
23694         code.
23695         * mini-ppc.c: handle calls outside of the allowed range with thunks
23696         allocated using the code manager.
23697         * tramp-ppc.c: use the code manager to hold generated native code.
23698         Fixed the magic trampoline to just patch vtable entries.
23700 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
23702         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
23703         independent file.
23705 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
23707         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
23708         PPC.
23710         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
23711         if we have a working __thread implementation.
23713         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
23714         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
23716 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
23718         * mini-x86.c: Fix compilation under gcc 2.
23719         
23720 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
23722         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
23723         contains a call to the wrapped function.
23725         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
23726         OP_<CALL>_IMM opcodes, and use them under X86.
23727         
23728         * mini.c (mono_jit_find_compiled_method): Fix warning.
23730         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
23732         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
23734         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
23735         functionality to mini.c.
23737         * mini.c (mono_create_jump_trampoline): New function to create a jump
23738         trampoline. Return a compiled method instead of a trampoline if it
23739         exists. Add a cache for jump trampolines.
23741         * mini.c (mono_jit_find_compiled_method): New function to return a
23742         compiled method if it exists.
23744         * mini-x86.c: Call mono_create_jump_trampoline instead of 
23745         mono_arch_create_jit_trampoline.
23747         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
23748         a jump trampoline. Fixes #52092.
23749         
23750 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
23752         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
23753         which is not up-to-date. Add check_corlib_version () instead.
23755         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
23756         have to call it.
23757         
23758         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
23759         since newer valgrind versions do not need it.
23761         * mini.c (mono_jit_compile_method_with_opt): New helper function to
23762         compile a method with a given set of optimizations.
23764         * mini.c: Compile icall wrappers on-demand instead of at startup.
23766         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
23767         wrapper for an icall.
23769 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
23771         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
23772         #54063.
23774         * iltests.il: Add test for non-empty stack before switch instruction.
23776 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
23778         * mini.c: Add support for new stringbuilder marshalling conventions.
23780         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
23782 2004-02-01  Martin Baulig  <martin@ximian.com>
23784         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
23785         in `ginst->mtype_argv'.
23787 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
23789         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
23790         facilitate grepping.
23792 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
23794         * mini.c: fixed buglet in initobj generic implementation for references.
23796 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
23798         * Makefile.am: make the version script conditional.
23799         * jit-icalls.c: handle missing truncl().
23801 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
23803         * exceptions.cs: Add more tests for double->int conversion.
23805         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
23806         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
23808 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
23810         * driver.c: make --verbose --version emit an error
23811         if the loaded corlib doesn't match the runtime version.
23813 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23815         * mini-ppc.h: export ppc_patch().
23816         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
23817         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
23818         on par or better than on MacOSX.
23820 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
23822         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
23823         mono_lookup_pinvoke_call.
23825         * mini-x86.c: Under windows, the default pinvoke calling convention is
23826         stdcall. Fixes #52834.
23828         * mini.c (optimize_branches): Add an upper bound to the number of
23829         iterations to prevent infinite loops on strange loops. Fixes #53003.
23831 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23833         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
23834         and ISINST. Fixes #52093.
23836         * objects.cs (test_0_vector_array_cast): New tests.
23837         
23838 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
23840         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
23841         checking in Array.Set ().
23843         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
23844         #52590.
23846         * object.cs (test_0_multi_array_cast): New regression test.
23848 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
23850         * exceptions-ppc.c: fix build on Linux/PPC.
23852 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
23854         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
23855         running under valgrind.
23856         (x86_magic_trampoline): Fix build bustage.
23858         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
23859         negative values as well. This is needed for the encoding of the line number
23860         info, since sometimes the line numbers are not in increasing order.
23862 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
23864         * cpu-pentium.md (localloc): Increase the size of the localloc 
23865         instruction since it is a loop under Win32.
23867         * debug-mini.c (record_line_number): Get rid of unneccesary memory
23868         allocation.
23870 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
23872         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
23873         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
23874         Max Horn (max@quendi.de). Fix file names in comments.
23876 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
23878         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
23879         avoid stack overflow.
23880         (replace_usage): Avoid uninitialized variable warnings.
23882         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
23883         and taking the address of valuetype variables.
23885 2004-01-03  Patrik Torstensson
23887         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
23888         for other purposes than FP later on.
23890 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
23892         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
23893         of tail calls.
23895 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
23897         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
23899 2003-12-30  Patrik Torstensson <p@rxc.se>
23901         * mini-x86.h: Decreased number of availiable fp regs.
23902         Solves corner cases with FP spilling.
23904 2003-12-23  Patrik Torstensson <p@rxc.se>
23906         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
23907         for floating point stack tracking / spilling on x86. 
23908         Fixes bug #49012.
23909         
23910         * basic-float.cs: added float mul overflow test.
23912 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
23914         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
23916 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23918         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
23919         supports for cond branches that overflow the immediate
23920         overflow offset. mcs can compile simple programs.
23922 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23924         * exceptions-ppc.c: exception handling support wip:
23925         finally handlers get run on exception.
23927 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
23929         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
23930         profiling.
23932 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
23934         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
23935         initial support for stack walking and unwinding.
23937 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
23939         * driver.c (mono_main): Make corlib-out-of-sync message more 
23940         descriptive. Also remove verify_corlib call.
23942 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
23944         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
23945         not overlap with other call's arguments, too.
23947 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
23949         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
23950         move to arch-specific code the choice of arch-specific
23951         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
23952         * mini.c: ensure emulation calls will not interleave
23953         with other calls.
23955 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
23957         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
23958         the magic trampoline stack frame is dropped before executing
23959         the new method.
23961 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23963         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
23964         and integer to fp conversions. Added support for overflowing
23965         arguments on the stack. Reserve a couple more registers as temps.
23966         Added support for aot compilation (as output still needs to be
23967         tweaked, though).
23969 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
23971         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
23972         Don't overwrite return register in some corner cases.
23974 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
23976         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
23977         static constructors when AOT compiling.
23979         * driver.c (mono_main): Call mono_check_corlib_version.
23981 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
23983         * cpu-g4.md, basic.cs: fixed div target register.
23985 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23987         * mini-ppc.c, basic.cs: shl_imm fix with test.
23989 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
23991         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
23992         structures by value. Misc fixes.
23993         * objects.cs: more tests.
23995 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
23997         * mini-ppc.c: lconv.ovf.i implemented.
23999 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24001         * mini.c:
24002         (mini_init): don't error out if someone already called g_thread_init.
24004 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
24006         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
24007         to be any type per the spec. Fix abnormal memory usage when
24008         the same object is repeatedly thrown.
24010 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
24012         * mini.c: check for overruns in IL code.
24014 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
24016         * TODO: Add/remove some todo entries.
24018 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
24020         * driver.c (mono_main): Call mono_verify_corlib.
24022 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
24024         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
24025         This has been moved to mini.c
24026         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
24027         type being casted is marshalbyref it could be a proxy, so instead of
24028         emitting the type check code, emit a call to a runtime method that will
24029         perform the check by calling CanCastTo if needed.
24031 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
24033         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
24034         methods with large stack frames under Win32.
24036 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
24038         * Makefile.am: Distribute regression tests.
24040         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
24041         at the end instead of inserting each variable into the sorted list.
24043         * linear-scan.c (mono_varlist_sort): New helper function.
24044         
24045 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
24047         * mini.c: ensure arguments and locals are within bounds.
24049 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24051         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
24052         related fixes.
24054 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
24056         * mini.c (mono_cprop_copy_values): Fix crash.
24058         * aot.c: Set verbosity back to 0.
24059         
24060 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24062         * regalloc.c: complete memory leak fix by Laurent Morichetti
24063         (l_m@pacbell.net).
24065 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
24067         * driver.c (main_thread_handler): Revert the previous patch.
24069         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
24070         under valgrind.
24072         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
24073         memory from the memory pool.
24075         * driver.c (main_thread_handler): Turn on all optimizations when
24076         --aot is used.
24078         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
24079         an array for better performance.
24081         * regalloc.c (mono_regstate_assign): Fix memory leak.
24083         * debug-mini.c (mono_debug_serialize_debug_info): New function to
24084         serialize the debug info.
24086         * debug-mini.c (mono_debug_add_aot_method): New function to load the
24087         debug info from the serialized representation.
24089         * aot.c: Save debug info into the generated file and load it when 
24090         loading a method.
24092         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
24094 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
24096         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
24097         More FP-related fixes.
24099 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24101         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
24102         and register allocation buglet. Hello world now runs.
24104 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
24106         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
24107         * tramp-ppc.c: fixed class init trampoline.
24108         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
24110 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
24112         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
24113         mini.c: more ppc changes/fixes.
24115 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
24117         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
24118         Also optimize the case when the arguments are the same in the caller 
24119         and in the callee.
24121         * iltests.il: Add tests for tail calls with valuetype arguments.
24123 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
24125         * mini-ppc.c: fixes for struct return type.
24127 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
24129         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
24130         mono_spillvar_offset() to arch-specific code.
24132 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24134         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
24136 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
24138         * exceptions-x86.c: Fix stack space leaks.
24139         
24140         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
24141         registers from the lmf if the method has save_lmf set.
24143 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
24145         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
24146         of icall wrappers into InvokeInDomain, since these are now per-domain.
24148 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
24150         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
24151         make some opcode emulation and intrinsic ops enabled/disabled 
24152         according to the architecture. More fixes.
24154 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24156         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
24158 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
24160         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
24161         arch-specific handling for 'this' and struct return type to
24162         arch-specific code.
24164 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24166         * aot.c: prevent divide by zero error when reporting (it happened with
24167         Accessibility.dll).
24169 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
24171         * mini.h (inst_switch): Remove unused macro.
24173 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24175         * aot.c:
24176         (load_aot_module): free 'info->methods' and 'info' properly. No more
24177         "free(): invalid pointer blah" messages when you have an old aot
24178         compiled assembly.
24180 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
24182         * jit-icalls.c, mini.c: Added support for context static fields.
24184 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
24186         * mini.c (mono_method_blittable): Methods which set LastError are not 
24187         blittable either. Fixes #51108.
24188         
24189 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
24191         * mini.c: flush icache.
24192         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
24194 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
24196         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
24198 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
24200         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
24201         safe on IA32.
24203         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
24204         vararg calls.
24206         * inssel.brg (CEE_MKREFANY): Fix AOT case.
24208 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
24210         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
24211         instruction when the result is discarded.
24213         * iltests.il (test_0_div_regalloc): New regression test.
24215         * arrays.cs: Fix compilation error.
24217 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24219         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
24220         float rules to inssel-x86.brg: sane architectures with FP registers
24221         don't need to implement these rules.
24223 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
24225         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
24227 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24229         * mini.h, inssel-long32.brg: fixed endianess issues in int64
24230         implementation of 32 bit systems.
24232 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
24234         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
24235         (Jeroen Zwartepoorte).
24237 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24239         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
24240         the caller and the callee matches.
24241         
24242         * mini.c (mono_method_to_ir): Add comment.
24244         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
24245         signbit is missing on some platforms.
24247 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
24249         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
24251         * mini.c (setup_jit_tls_data): Call the new function.
24252         
24253         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
24255         * mini-x86.c: Add experimental support for fast access to the lmf
24256         structure under NPTL/Linux 2.6.x.
24258 2003-11-06  Martin Baulig  <martin@ximian.com>
24260         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
24261         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
24262         the debugger.
24264 2003-11-02  Martin Baulig  <martin@ximian.com>
24266         * mini.c (inflate_generic_field): New static method.
24267         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
24268         generic instance and the field is declared in a generic type, call
24269         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
24271 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
24273         * mini.h mini.c (mono_method_same_domain): New function to return
24274         whenever the caller and the callee are in the same domain.
24276         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
24278 2003-10-30  Martin Baulig  <martin@ximian.com>
24280         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
24281         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
24282         method parameters.
24283         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
24284         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
24286 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
24288         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
24289         propagation.
24291         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
24292         object here, so it is in the correct appdomain etc.
24294 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
24296         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
24297         already done.
24298         (mono_method_to_ir): Avoid freeing the type created returned from
24299         mono_type_create_from_typespec, since it is put into an internal cache
24300         by the function. Fixes pointer.exe.
24302         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
24303         trampolines for icalls and pinvokes as well. Fixes #33569.
24305 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
24307         * mini.c: Update after appdomain changes.
24309         * mini.c (mono_jit_compile_method_inner): Allways compile native
24310         method wrappers in the root domain, since there can only be one
24311         instance of them, whose address is stored in method->info.
24313 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
24315         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
24316         environment variable. Instead detect automatically whenever running
24317         under valgrind using the magic macro RUNNING_ON_VALGRIND from
24318         valgrind.h.
24320 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
24322         * trace.c, trace.h: New files that implement the new trace option
24323         parsing. 
24325         * driver.c: Document new --trace options.
24327         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
24328         mini-x86.c: Apply:
24330         -       if (mono_jit_trace_calls)
24331         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
24333         * mini.h: prototypes.
24334         
24335 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
24337         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
24339         * mini.c inssel.brg: Implement typedefbyref opcodes.
24341         * mini.c (mono_jit_compile_method): Remove unused local variable.
24343         * mini.c (mono_jit_compile_method_inner): Ditto.
24344         
24345 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
24347         * tramp-x86.c (x86_class_init_trampoline): Fix build.
24348         
24349         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
24351 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
24353         * mini.c (mono_no_aot): Remove unused global variable.
24355         * mini.c: Thread safety fixes.
24357 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
24359         * mini.c (mono_create_class_init_trampoline): Add a lock around
24360         class_init_hash_addr.
24362         * arrays.cs (test_0_newarr_emulation): Add new regression test for
24363         #30073.
24365         * mini.c: Decompose the NEWARR instruction before decomposing its
24366         arguments. Fixes #30073.
24368 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
24370         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
24371         convention.
24373 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
24375         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
24377         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
24379         * driver.c: Add support for compiling icall wrappers to --compile.
24381 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
24383         * inssel.brg: The empty value in class->interface_offsets is -1, not
24384         0. Fixes #49287.
24386 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
24388         * objects.cs: New test for 'is' operator on an array of interfaces.
24390 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
24392         * tramp-ppc.c: update trampoline code to support jumps
24393         and class initialization.
24395 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
24397         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
24399         * inssel.brg (OP_UNBOXCAST): Fix #46027.
24401         * inssel.brg (OP_UNBOX): Remove unused rule.
24403         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
24404         region instead of one for each method. Fixes #47813.
24406 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
24408         * exceptions.cs (test_0_nested_finally): New regression test for
24409         nested exception handlers.
24411         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
24413         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
24415         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
24416         inlining.
24418         * mini.c (mono_method_check_inlining): Make the inlining limit 
24419         configurable by an environment variable.
24420         
24421         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
24423         * mini.h: Bump AOT file version.
24425         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
24426         token, store the image along with the token, since the token might not 
24427         refer to the same image as the method containing the relocation, 
24428         because of inlining.
24430 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
24432         * mini.c (mono_precompile_assemblies): New function to compile
24433         all methods in all loaded assemblies.
24435         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
24437         * regalloc.h regalloc.c (MonoRegState): Change the type of 
24438         iassign and fassign to int*, since they can contain large negative
24439         values if the register is spilled. Also added some comments. Fixes
24440         #45817.
24442         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
24443         under Win32. Fixes #42964.
24445 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
24447         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
24449         * aot.c: Added support for AOT compiling methods which contain calls
24450         to wrappers. Currently, only remoting-invoke-with-check wrappers are
24451         handled.
24452         
24453         * driver.c (compile_all_methods): Run the compilation in a thread
24454         managed by mono. Fixes #44023.
24456         * mini.c (mono_codegen): Print full method name in verbose output.
24458         * mini-x86.c (mono_arch_patch_code): Fix warning.
24459         
24460         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
24461         jumps, since the method we are jumping to might be domain-specific.
24463         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
24465 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
24467         * inssel.brg: string chars are unsigned.
24469 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
24471         * TODO: New todo item.
24473         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
24474         which calls mono_runtime_class_init and patches the call site to
24475         avoid further calls.
24476         (mono_arch_create_class_init_trampoline): New arch specific function 
24477         to create a class init trampoline.
24478         (create_trampoline_code): Generalized so it can create
24479         class init trampolines as well.
24481         * mini.c (helper_sig_class_init_trampoline): New helper variable.
24482         (mono_create_class_init_trampoline): New function to create and cache
24483         class init trampolines.
24484         (mono_find_class_init_trampoline_by_addr): New function to lookup the
24485         vtable given the address of a class init trampoline. Used by the
24486         patching process.
24487         (mono_codegen): Generate a call to a trampoline instead of
24488         mono_runtime_class_init in LDSFLD[A].
24489         (mono_codegen): Add relocations for the new trampoline.
24490         
24491         * mini.h mini-x86.c aot.c: Added a new relocation type: 
24492         MONO_PATCH_INFO_CLASS_INIT.
24494         * mini.h: Bump AOT version number.
24496         * aot.c: Create a copy of the loaded code instead of using the original
24497         so methods which call each other will be close in memory, improving
24498         cache behaviour.
24499         
24500         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
24501         patch since it breaks the regression tests.
24502         
24503         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
24504         for the register saving instruction sequence since the 
24505         frame_state_for function in glibc 2.3.2 don't seem to detect it.
24507 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
24509         * TODO: Fix todo item && remove another.
24511 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
24513         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
24514         previous checkin.
24516         * aot.c: Moved the check for MONO_LASTAOT into the initialization
24517         function of the module.
24519         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
24520         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
24521         --no-aot command line option.
24523 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
24525         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
24526         by Bernie Solomon (bernard@ugsolutions.com).
24528         * inssel.brg: Refactor the interface offset table related code into
24529         its separate functions and add support for the AOT case.
24531 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
24533         * aot.c (mono_aot_get_method_inner): Fix memory leak.
24534         
24535         * aot.c: Added mono_aot_verbose variable and made all debugging
24536         output depend on the value of this variable.
24538         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
24539         method_label and info_label.
24541         * mini.h mini-x86.c aot.c: Added a new relocation type 
24542         MONO_PATCH_INFO_IID for klass->interface_id.
24544         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
24545         the MonoJitInfo structure.
24547         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
24548         a non-root appdomain in shared mode.
24550 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
24552         * aot.c: make aot loader less verbose. Remove free of unused variable.
24554 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
24556         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
24558         * .cvsignore: Added *.dll.
24560         * mini.c (mono_print_tree_nl): New function callable while debugging.
24562         * mini.c (mono_print_code): Export this.
24564         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
24565         patched code.
24567 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
24569         * mini.h (MonoCompile): Added 'jit_info' field.
24571         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
24572         the cfg structure, since it is needed by the AOT compiler.
24574         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
24576         * aot.c: A major rewrite. Changes include:
24577         - save exception tables for methods which have them.
24578         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
24579         to g_module_symbol.
24580         - reworked the file format so it is now much smaller and needs
24581         fewer relocation entries.
24582         
24583 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
24585         * aot.c (load_aot_module): Fix build bustage on platforms without
24586         Boehm GC.
24588 2003-09-04  Martin Baulig  <martin@ximian.com>
24590         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
24592 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
24594         * TODO: Some new optimization ideas.
24596         * aot.c: Move AOT module loading logic here from mono_assembly_open.
24598         * aot.c: Save the optimization flags used to compile the code into
24599         the AOT module.
24601         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
24602         support emitting domain specific code.
24603         
24604         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
24605         no longer domain neutral. It can be made domain neutral by compiling 
24606         with --optimize=shared.
24608         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
24609         between appdomains.
24611         * driver.c mini.h mini.c: New --no-aot debugging option which disables
24612         loading of AOT code.
24614         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
24615         
24616         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
24617         if there is no domain neutrality information.
24619 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
24621         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
24622         format version into the generated library.
24624         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
24625         callee method into the caller since one of them could be shared.
24627         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
24628         system exceptions from AOT code now works.
24630         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
24631         method if it is domain neutral and the callee is not.
24633         * graph.c (cfg_emit_one_loop_level): Fix warning.
24635 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
24637         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
24638         last checkin.
24640 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
24642         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
24643         is needed  by code which is executed before mono_runtime_init ().
24644         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
24645         
24646         * mini.c (mono_thread_abort): Fix warning.
24647         (mono_jit_compile_method): Call static constructor in the AOT case too.
24649         * aot.c (mono_compile_assembly): Fix warning.
24651 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24653         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
24655 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
24657         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
24659         * cpu-pentium.md: Fix the length of call opcodes so they include the
24660         ESP restoring instruction. Fixes #47968.
24662 2003-08-28  Martin Baulig  <martin@ximian.com>
24664         * mini-x86.c (mono_arch_call_opcode): Added support for
24665         MONO_TYPE_GENERICINST.
24667         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
24669 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
24671         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
24672         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
24674         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
24675         metadata_section.
24677 2003-08-26  Martin Baulig  <martin@ximian.com>
24679         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
24680         when reporting an error, set this to the actual error location.
24681         (mono_method_to_ir): Report the correct error location if
24682         get_basic_blocks() returned an error.
24684 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
24686         * mini.c (mono_type_blittable): OBJECT is not blittable.
24687         (mono_method_blittable): Methods which have marshalling descriptors
24688         are not blittable either. Fixes #47842.
24690 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
24692         * driver.c mini.c: Use an environment variable instead of a global 
24693         variable. Also fix the build.
24695         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
24696         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
24697         reporting this. 
24699         * driver.c mini.c: Added --with-valgrind option to turn off some
24700         code which prevents mono from running under valgrind.
24702         * mini.c (mono_emit_call_args): Fixed warning.
24704         * mini.c (mono_emulate_opcode): Fixed warning.
24706 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24708         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
24709         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
24710         regalloc.c, regalloc.h: specify available registers in arch-specific
24711         code and support floats in the regallocator (patch by Laurent Morichetti 
24712         <l_m@pacbell.net>)
24714 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
24716         * mini.c: mono_thread_current() can be called only after
24717         mono_runtime_init(): rearrange code to not call it early on.
24719 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24721         * mini.c: allocate jump tables in the code mempools.
24723 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24725         * mini.c, mini.h: make sure per-thread data allocated by the jit is
24726         freed.
24728 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
24730         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
24731         12 to 16.  This fixes bug #47453.
24734 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24736         * mini-ppc.c: fixed indexed load and unsigned compares.
24738 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
24740         * mini.c: reenabled installation of handler for
24741           thread abort signal.
24743 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24745         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
24746         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
24747         until it's fixed and actually useful.
24749 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
24751         * inssel-long32.brg: couple more opcodes implemented.
24753 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
24754         
24755         * mini-sparc.c: Even more opcodes implemeted.
24757 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
24759         * mini-sparc.c: More opcodes implemented.
24761 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
24763         * mini-sparc.c: More opcodes implemented.
24765 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
24767         * inssel-sparc.brg: Add some needed rules.  Direct
24768         copy from PPC.
24769         * Makefile.am: Use inssel-sparc.brg
24770         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
24771         an assert happy for now.
24773 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
24775         * mini-sparc.c: Fixed compile errors.
24776         * exceptions-sparc.c: Same.  We now produce a mono binary 
24777         on sparc-linux.  Yea.
24779 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
24781         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
24782         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
24783         They compile, but do not work.
24785 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24787         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
24788         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
24789         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
24790         (ct@gentoo.org).
24792 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24794         * mini.c: more opcodes implemented and better support for generics.
24796 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
24798         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
24799         * mini.c, mini.h: first cut at generics support: some new instructions 
24800         added and changed the behaviour of some of the existing ones.
24802 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
24804         * mini.c: Removed definition of metadata_shared mutex here.
24806 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
24808         * mini-x86.c: make vararg calls work for instance methods.
24810 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
24812         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
24813         returns the arguments in a separte list, now.
24815 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24817         * aot.c, mini.c: updates for array type representation changes.
24819 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
24821         * mini.c: register function to perform jit shutdown.
24823 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24825         * mini.c: use a faster allocator if possible.
24827 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
24829         * aot.c: some cleanups and portability changes.
24831 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24833         * mini.c: use faster allocation for CEE_BOX if possible.
24835 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
24837         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
24838         Moved inlined mempcy code to its own function so that is can be
24839         reused. Added an inline memset function as well (optimized initobj).
24840         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
24842 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24844         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
24846 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24848         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
24849         arch code can setup the cpu for CLR execution, if needed.
24850         We use it on x86 to set the precision of FP operations.
24852 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24854         * mini.c: disable some optimizations if we can guess they'll cost too
24855         much for a given method.
24857 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
24859         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
24860         
24861 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
24862         * mini.h mini.c mini-x86.c: Added instruction level coverage 
24863         info collection support.
24865 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24867         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
24868         is now implemented in the profiling API. Get rid of a couple of
24869         unnecessary global variables.
24871 2003-06-15  Nick Drochak <ndrochak@gol.com>
24873         * basic-long.cs: tests for negative values for bigmul, and unsigned.
24874         * cpu-g4.md: add op_bigmul and op_bigmul_un
24875         * cpu_pentium.md: add op_bigmul_un
24876         * inssel-long32.brg: add rule for unsigned bigmul
24877         * mini-ops.h: define OP_BIGMUL_UN
24878         * mini-x86.c: THE BUG: handle (un)signed properly
24879         * mini.c: choose unsigned opcode if needed.
24880         This set of patches fixes bug #44291
24882 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
24884         * mini.c (optimize_branches): improved to handle all kinds of
24885         conditional branches.
24887 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
24889         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
24890         don't raise exceptions.
24892 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24894         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
24895         to arch-specific files.
24897 2003-06-09  Martin Baulig  <martin@ximian.com>
24899         * Makefile.am (libs): Added $(LIBGC_LIBS).
24901 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
24903         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
24904         and OP_ATAN (fixes bug#44293).
24906 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
24908         * Makefile.am, mini-x86.c: rename cpu description array to
24909         pentium_desc, since some compilers define the 'pentium' preprocessor
24910         symbol.
24912 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
24914         * mini.c (mini_select_instructions): add explicit branch if the
24915         following block is not the false target of a conditional branch -
24916         we need this with any optimization that reorder or remove bblocks
24918         * mini.c (optimize_branches): bug fixes
24920 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
24922         * mini.c (mono_method_to_ir): inline static readonly fields
24924         * ssa.c (fold_tree): start cfold support for long (very simple
24925         cases only)
24927         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
24929 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24931         * inssel.brg: fixed memcpy (bug #44219).
24933 2003-06-05  Dick Porter  <dick@ximian.com>
24935         * driver.c: Set the glib log levels to not abort if g_message
24936         recurses.
24938         g_set_prgname() has to happen before mini_init() so that the
24939         process handle gets the info.
24940         
24941 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24943         * driver.c: add intrins to the default optimizations to get wider
24944         exposure.
24946 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
24948         * mini.h: some large basic blocks will overflow a 16-bit
24949         integers for symbolic registers.
24951 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
24953         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
24954         (mono_arch_output_basic_block): fix bug 43499 
24956 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
24958         * mini.c: kill duplicated definition of mono_debug_format.
24960 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
24962         * mini-x86.c, arrays.cs: fixed register allocation bug.
24964 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
24966         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
24968         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
24970 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24972         * mini.c:
24973         (print_method_from_ip): also print source location information if
24974         available.
24976 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
24978         * mini.c (mono_find_block_region): bug fix in region code
24979         (mini_method_compile): enable removing unreachable code again, but
24980         only in methods without exception clauses.
24982 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
24984         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
24985         Implemented arglist opcode and handling of TypedReference type.
24986         Fixed x86 call convention when a structure is returned.
24987         Minimal support for calling static vararg methods.
24989 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
24991         * mini.c (mini_method_compile):  always remove unreachable code,
24992         because the code in them may be inconsistent  (access to dead
24993         variables for example).
24995 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
24997         * driver.c, debug-mini.c: warning fixes.
24999 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
25001         * Makefile.am, jit.h, mini.h: install header for embedding mono.
25003 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
25005         * mini.c: thread-static fields are registered in mono_class_vtable(),
25006         so ensure the function is called before checking for them.
25008 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
25010         * mini.c (optimize_branches): fix for bug 43586
25012         * jit-icalls.c (mono_llmult_ovf): added an additional check for
25013         overflow (fixes Bug #43639)
25015 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25017         * mini.c, objects.cs: allow the use of stobj for primitive types.
25019 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25021         * mini.c: be less strict about argument checking until we support
25022         running the verifier.
25024 2003-05-27  Nick Drochak <ndrochak@gol.com>
25026         * basic-long.cs: tests for (ulong)int * (ulong)int also
25027         * mini.c: use the same trick for (ulong)int * (ulong)int
25029 2003-05-27  Nick Drochak <ndrochak@gol.com>
25031         * basic-long.cs: add regression test for (long)int * (long)int
25032         * cpu-pentium.md: add op_bigmul specification
25033         * inssel-long32.brg: add OP_BIGMUL rule
25034         * mini-ops.h: add OP_BIGMUL
25035         * mini-x86.c: register allocator: handle case where src1 needs to be
25036         in EAX.
25037         * mini.c: substitute special BIGMUL opcode in the tree for 
25038         (long)int * (long)int
25040 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25042         * jit-icalls.c: call the type ctor on field access if needed.
25044 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25046         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
25047         to a method (including results of ldelema, bug#43207).
25049 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
25051         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
25052         colors to show exception handler blocks.
25054         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
25055         (fix for pinvoke7.cs).
25057 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25059         * mini.h, mini.c: ensure correct initialization order for types that
25060         require it. Prepare for lazy compilation of jit icall wrappers.
25061         Provide a name for opcode emulation to reduce unneeded mallocing.
25063 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
25065         * mini-x86.c: better register restoring code and profiling
25066         support for tail calls.
25068 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25070         * mini.h, driver.c: prepare for leaf methods optimization.
25072 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25074         * mini.c: get targets of branches before converting a method.
25076 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
25078         * mini.c (optimize_branches): added some experimental code (disbaled) 
25080 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
25082         * mini.c (optimize_branches): fix branch to branch optimization 
25084         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
25086         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
25088         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
25090         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
25091         if needed.
25093 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
25095         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
25096         enable use of interface variables again.
25098         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
25099         I1 to registers because there is no simply way to sign extend 8bit
25100         quantities in caller saved registers on x86.
25102         * inssel-float.brg: set costs of some rules to 2 so
25103         that monobure always select the arch. specific ones if supplied,
25104         regardless of the order we pass the files to monoburg.
25106 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25108         * mini.c, mini-x86.c: since the magic trampoline for jumps
25109         can't patch the code directly, we do it as soon as the
25110         method gets compiled.
25112 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
25114         * mini-x86.c, mini.h: introduce a new patching method
25115         to support CEE_JMP and tail calls.
25116         * mini.c: obey tail.call. Don't precompile methods target
25117         of CEE_JMP.
25118         * tramp-x86.c: new trampoline code to handle methods
25119         reached through a jump.
25121 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
25123         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
25124         bit values to registers
25126 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
25128         * mini.c (mono_compile_get_interface_var): share interface
25129         variables if possible.
25131 2003-05-16  Martin Baulig  <martin@ximian.com>
25133         * debug-mini.c (mono_init_debugger): New function to initialize
25134         the debugger.  This is not in the debugger since it needs to
25135         access some of mini's internals.
25137 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
25139         * mini.c (mono_method_to_ir): inlining fixes/cleanups
25141 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
25143         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
25144         for value type handling.
25146 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
25148         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
25149         (mono_method_check_inlining): enable inlining of all kinds of wrappers
25151 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
25153         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
25154           the constructor through a proxy.
25156 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25158         * jit-icalls.c, inssel.brg: fixes to array element address
25159         calculations.
25161 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
25163         * mini-x86.c (is_regsize_var): allocate pointer to registers
25165 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25167         * driver.c: fixed typo, added intrins to the set of optimizations
25168         tested with regressions.
25170 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25172         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
25173         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
25174         test case.
25176 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
25178         * inssel.brg: remove some common pop instructions without side effects
25180 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
25182         * inssel-x86.brg: fixed thinko in int to double conversions.
25184 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25186         * mini.c, jit-icalls.c: added runtime thread-static variable support.
25188 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25190         * inssel-long32.brg: two more missing instructions.
25192 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
25194         * mini.c (mono_emit_call_args): set the cil_code for all arguments
25195         if not already set.
25197 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
25199         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
25200         correctly.
25202         * basic-float.cs: Added tests for negative zero.
25204 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25206         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
25207         a couple of missing operations for long casts, with test cases.
25209 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25211         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
25213 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
25215         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
25216         code size estimation.
25218 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
25220         * mini.c (mono_jit_create_remoting_trampoline): make it work with
25221         abstract methods (fix bug 42542)
25223         * aot.c: add ability to handle array types
25224         
25225 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
25227         * mini.c: Call the _specific versions of the object allocation
25228         functions if possible.
25230 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
25232         * driver.c: call setlocale ().
25234 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
25236         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
25237         windows build.
25239 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
25241         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
25243         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
25244         wrappers (fix bug 42122)
25246 2003-05-04  Martin Baulig  <martin@ximian.com>
25248         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
25250         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
25251         s/mini_set_defaults/mono_set_defaults/g.
25253 2003-05-04  Martin Baulig  <martin@ximian.com>
25255         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
25257 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25259         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
25260         (reported by Don Roberts).
25262 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
25264         * mini.c: temporarily work around two bugs for this release.
25266 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25268         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
25269         that contains -export-dynamic and it makes using the ld script
25270         useless.
25271         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
25273 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25275         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
25276         specific cpu.
25278 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25280         * mini.c: make sure leave calls all the needed finally blocks,
25281         even when the target jumps out of multiple exception clauses.
25283 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25285         * ldscript, Makefile.am: add linker script to reduce the number of
25286         exported symbols (should also fix the issues with libwine defining
25287         some of the same symbols in io-layer).
25289 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
25291         * driver.c (mini_main): Avoid assertion when no file name is given on 
25292         the command line.
25294 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
25296         * driver.c: added --version/-V command line option.
25297         Added the inline optimization in the regression tests.
25299 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25301         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
25302         to the type in the method signature (fixes bug#42134).
25304 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
25306         * mini.c: when inlining, check this is not null only when needed (bug #42135).
25308 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
25310         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
25312 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25314         * driver.c: fixed bug #42100.
25316 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
25318         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
25320 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25322         * mini.c: moved most of the code required to do inlining to its own
25323         function so it can be reused. Inline also ctors if appropriate.
25325 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
25327         * Makefile.am: Link with -export-dynamic so shared libs loaded by
25328         the runtime can call mono API functions.
25330 2003-04-27  Martin Baulig  <martin@ximian.com>
25332         * debug-mini.c (mono_debug_init_method): Added
25333         `guint32 breakpoint_id' argument; if the method has a breakpoint,
25334         send a notification to the debugger.
25336         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
25337         running in the Mono Debugger, just pass the breakpoint number to
25338         mono_debug_init_method().
25340         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
25342 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
25344         * mini.c: allow some more unsafe compares.
25346 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25348         * mini-x86.c, Makefile.am: make distcheck works (partially from
25349         a patch by Richard Lee <r.h.lee@attbi.com>).
25350         * regset.c, regset.h: removed, they are unused.
25352 2003-04-25  Dick Porter  <dick@ximian.com>
25354         * driver.c: Usage reports the name as 'mono' not 'mini'
25355         * exceptions-x86.c: Build and run on freebsd
25357 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
25359         * Makefile.am: install the program with the 'mono' name and
25360         the library as libmono instead of mini and libmini.
25362 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
25364         * driver.c: provide the APIs for the embedding interface of the old jit.
25366 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
25368         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
25370 2003-04-23  Martin Baulig  <martin@ximian.com>
25372         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
25374         * driver.c: Added `--debug' command line argument to enable
25375         debugging support.
25377 2003-04-23  Martin Baulig  <martin@ximian.com>
25379         * debug.[ch]: Removed.  The code is now in
25380         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
25382         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
25383         last six months.
25385 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
25387         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
25389 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25391         * mini.c:
25392         (mini_cleanup): moved mono_runtime_cleanup call after the call to
25393         mono_domain_finalize.
25394         (mini_method_compile): use mono_method_profile* if the the option is
25395         enabled.
25397 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
25399         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
25400         methods with their wrapper.
25402         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
25403         methods with their wrapper.
25405         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
25406         their wrapper.
25408         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
25409         wrapper.
25411         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
25412         methods.
25414 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
25416         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
25418 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
25420         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
25421         of the mempool. This is slightly faster and uses less memory
25423 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
25425         * mini.c: avoid O(n) allocation for variables.
25427 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25429         * mini.c: handle items on the stack after inlining methods.
25431 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25433         * mini.c: make the method->opcode optimization dependent
25434         on MONO_OPT_INSTRINS and do it lazily.
25436 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25438         * driver.c: print overall results at the end of regression run.
25440 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25442         * inssel.brg: don't overwrite symbolic registers.
25444 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
25446         * inssel-x86.brg: fix conversion from long to float.
25448 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
25450         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
25452 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
25454         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
25456         * driver.c: Added --print-vtable option as in the old JIT.
25458 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25460         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
25462 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
25464         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
25466 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
25468         * mini.c regalloc.c regalloc.h: Fix memory leak.
25470 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
25472         * aot.c (mono_aot_get_method): register all used strings
25474 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
25476         * mini.c: always intern strings references with ldstr at compile time.
25478 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25480         * Makefile.am: add BUILT_SOURCES.
25482 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
25484         * driver.c: give a better error message when the assembly to execute
25485         doesn't have an entry point.
25487 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
25489         * Makefile.am: added hack for automake
25491         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
25492         correct sematics.
25494         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
25496 22003-04-07  Martin Baulig  <martin@ximian.com>
25498         * Makefile.am: Added Makefile.am.
25500         * debugger-main.c: Removed, this is now in the debugger where it
25501         belongs.
25503         * mini.pc.in: Call this package `mini' for the moment.