1 2010-06-18 Zoltan Varga <vargaz@gmail.com>
3 * mini-llvm.c (process_bb): Add support for OP_SQRT when using the LLVM mono branch.
5 2010-06-17 Geoff Norton <gnorton@novell.com>
8 * exceptions-arm.c: Move the UCONTEXT macros to mono-sigcontext.h so they
11 2010-06-17 Zoltan Varga <vargaz@gmail.com>
13 * aot-compiler.c (emit_klass_info): Handle type load exceptions.
15 * method-to-ir.c (mono_method_to_ir): Avoid a crash if mono_method_get_header ()
18 * exceptions-x86.c (mono_x86_throw_corlib_exception): Negate the decrement of
19 the ip done by throw_exception (), it is not needed for corlib exceptions.
21 2010-06-17 Rodrigo Kumpera <rkumpera@novell.com>
23 * method-to-ir.c (mono_emit_wb_aware_memcpy): Simplify this function.
24 Call new jit icall mono_gc_wbarrier_value_copy_bitmap for vt wbarrier
25 of size > 5 words. This support fast barriers for value types up to
26 256/512 bytes which beyond that the copying itself is the major issue.
28 * method-to-ir.c (mini_emit_stobj): The intrinsic version is safe
29 for gsharing, so use it.
31 This eliminate all calls to mono_value_copy from managed code in
34 This gives a 2% perf boost on ipy and 1% on gmcs over previous patches.
36 Even thou a lot of mono_value_copy calls were eliminated from fsharp,
39 * mini.c (mini_init): Register new icall.
41 2010-06-17 Rodrigo Kumpera <rkumpera@novell.com>
43 * method-to-ir.c (mono_emit_wb_aware_memcpy): Handle nested valuetypes.
44 This eliminates 2% of mono_value_copy calls on ipy and 12% on fsharp.
46 2010-06-17 Rodrigo Kumpera <rkumpera@novell.com>
48 * method-to-ir.c (mini_emit_stobj): Don't call mono_value_copy for small
49 value types as the overhead is huge. Manually expand it up to 5 words to
52 This improves gmcs times by 5% and unmodified binary-tree by 78%. The later
53 is an exception that performance is dominated by mono_value_copy.
55 This puts sgen about 5% ahead of boehm in terms of wall-clock on a Core2Quad.
57 2010-06-17 Zoltan Varga <vargaz@gmail.com>
59 * mini-llvm.c (process_call): Disable LLVM for calls to generic class init
60 trampolines on x86, since those have their own cconv.
62 * exceptions-x86.c (mono_arch_exceptions_init): Implement the llvm throw corlib
63 exception trampolines.
65 * tramp-x86.c: Add xdebug info for a few trampolines.
67 * mini-llvm.c: Set the name of the arguments.
69 * mini-llvm.c (emit_cond_system_exception): Pass the ip of to throw_corlib_trampoline
70 using a block address if using the LLVM mono branch.
72 * exceptions-amd64.c (mono_arch_exceptions_init): Add new LLVM throw corlib exception
75 2010-06-15 Zoltan Varga <vargaz@gmail.com>
77 * mini-ppc.c (mono_arch_get_cie_program): Define this for powerpc too.
79 * mini-llvm.c (process_bb): Add a missing CHECK_FAILURE.
81 * mini.c (mini_init): Remove some of the llvm restrictions, they are no longer needed.
83 * method-to-ir.c (mono_method_to_ir): Enable fast virtual calls when using llvm.
85 * mini-trampolines.c (mono_llvm_vcall_trampoline): Rewrite this to use one vtable
86 trampoline per vtable slot index. The slot, along with the 'this' argument is enough
87 to identify the vtable slot address plus the method which needs to be compiled.
89 * mini.c (mini_get_vtable_trampoline): Use one vtable trampoline per vtable slot when
92 * mini-x86.c (get_call_info_internal): Change the managed calling convention so
93 'this' is always passed as the first argument, before the vtype ret arg. This
94 simplifies get_this_arg_reg () and LLVM integration.
96 * mini-amd64.c (get_call_info): Fix the handling of MONO_TYPE_TYPEDBYREF after
99 * tramp-x86.c (mono_arch_create_generic_trampoline): Emit unwind info for
102 * mini-x86.c (mono_arch_get_cie_program): Implement this for x86.
104 * mini-llvm.c: Fix compilation with llvm 2.6.
106 * mini-amd64.c (CallInfo): Fix the position of the vret_arg_index field.
108 * mini-llvm.c (mono_llvm_emit_method): Fix the build if LLVM_MONO_BRANCH is not
111 * mini-amd64.c (get_call_info): Change the managed calling convention so 'this'
112 is always passed as the first argument, before the vtype ret arg. This simplifies
113 get_this_arg_reg () and LLVM integration.
115 2010-06-14 Rodrigo Kumpera <rkumpera@novell.com>
117 * method-to-ir.c (mono_method_to_ir): Add support for .ctor intrinsics.
119 * method-to-ir.c (mini_emit_inst_for_ctor): New function for .ctor intrinsics.
120 For now just call simd intrinsics. This makes "x[0] = new Vector4f (10)"
121 translate into much nicer code.
123 2010-06-14 Zoltan Varga <vargaz@gmail.com>
125 * mini-llvm.c (sig_to_llvm_sig_full): Add a 'sinfo' out argument which returns
126 parameter index information. Use this to simplify a lot of code.
128 * unwind.c (mono_unwind_decode_fde): Handle augmentions using a loop.
130 2010-06-12 Zoltan Varga <vargaz@gmail.com>
132 * aot-compiler.c (compile_method): Add a 'depth' parameter to add_generic_class too
133 to fix infinite generic recursion. Fixes #612702.
135 2010-06-11 Zoltan Varga <vargaz@gmail.com>
137 * object.c: Use a callback to create IMT trampolines, allowing the usage of one
138 imt trampoline per imt slot when using LLVM.
140 2010-06-10 Jonathan Pryor <jpryor@novell.com>
142 * mini.c (mini_cleanup): Call mono_runtime_shutdown(). Fixes #438454.
144 2010-06-09 Levi Bard <levi@unity3d.com>
146 * debugger-agent.c: Clear unloaded types on appdomain unload.
148 2010-06-08 Zoltan Varga <vargaz@gmail.com>
150 * liveness.c (visit_bb): Make the component vregs of long vars volatile as well.
153 * exceptions.cs: Add a test.
155 2010-06-06 Zoltan Varga <vargaz@gmail.com>
157 * mini-llvm.c (mono_llvm_check_method_supported): Only disable llvm for nested clauses.
159 * mini.c (mini_method_compile): Move the LLVM checks to a function in mini-llvm.c.
161 * mini.c (mono_jit_runtime_invoke): Initialize *exc to NULL before calling the wrapper,
162 so it doesn't have to do it.
164 * helpers.c (mono_disassemble_code): Flush stdout, so the output from the spawned
165 process does not mix with ours.
167 * mini-llvm.c (mono_llvm_emit_method): Refactor this giant function into smaller
170 * mini-llvm.c method-to-ir.c ir-emit.h: When using the llvm mono branch, allow
171 loads/stores which can throw exceptions inside clauses.
173 2010-06-05 Zoltan Varga <vargaz@gmail.com>
175 * mini-llvm.c (mono_llvm_emit_method): Fix support for finally clauses with more than
178 * mini.c (mini_init): Register mono_resume_unwind as an icall.
180 2010-06-03 Zoltan Varga <vargaz@gmail.com>
182 * dwarfwriter.c: Update after the mono_debug_lookup_locals () changes.
184 * debugger-agent.c (method_commands_internal): Ditto. Return scope information for
187 2010-06-03 Zoltan Varga <vargaz@gmail.com>
189 * debugger-agent.c (appdomain_unload): Clear all breakpoint instances in the dying
192 2010-06-02 Zoltan Varga <vargaz@gmail.com>
194 * method-to-ir.c (set_rgctx_arg): New helper function to remove some duplicate code.
195 Use a separate generic class init trampoline for llvm, since it needs a different
198 * unwind.c (mono_unwind_decode_fde): Make this decode the mono specific LSDA which
199 includes the location of this/rgctx.
201 * mini-llvm.c aot-runtime.c: Enable generic sharing for llvm if using the LLVM mono
204 2010-06-01 Zoltan Varga <vargaz@gmail.com>
206 * mini.c (mini_method_compile): Enable llvm+exceptions on LLVM SVN.
208 * mini-llvm.c (emit_cond_system_exception): Disable llvm when this occurs in a
211 2010-05-31 Zoltan Varga <vargaz@gmail.com>
213 * unwind.c (mono_unwind_decode_fde): The FDE only has an augmention if the CIE
216 * aot-runtime.c (decode_eh_frame): Fix an assert condition.
218 * aot-compiler.c (patch_to_string): New debugging helper function.
220 2010-05-30 Zoltan Varga <vargaz@gmail.com>
222 * exceptions-amd64.c (get_throw_trampoline): Fix the xdebug name of the corlib
225 * exceptions-x86.c (mono_arch_exceptions_init): Create an llvm rethrow trampoline too.
227 * mini-llvm.c (mono_llvm_emit_method): Implement OP_RETHROW.
229 * method-to-ir.c (mono_method_to_ir): Emit a OP_NOT_REACHED after a rethrow.
231 * mini-llvm.c (emit_call): Compute the containing try clause correctly for nested
234 * mini.c (create_jit_info): Print EH clause info for LLVM too.
236 2010-05-28 Mark Probst <mark.probst@gmail.com>
238 * method-to-ir.c (mono_method_to_ir): Emit a write barrier for
239 cpobj with reference types.
241 2010-05-28 Mark Probst <mark.probst@gmail.com>
243 * method-to-ir.c (mono_method_to_ir): Only explicitly add the
244 write barrier for reference types.
246 2010-05-27 Zoltan Varga <vargaz@gmail.com>
248 * mini-s390x.c (mono_arch_output_basic_block): Applied patch from Aurelien Minvielle
249 . Fix OP_ATOMIC_EXCHANGE_I4 on s390x. Fixes #609023.
251 2010-05-31 Martin Baulig <martin@ximian.com>
255 * debugger-agent.c (breakpoints_cleanup): Iterate over `event_requests', call
256 clear_breakpoint() on all breakpoint events and remove them from the list.
258 2010-05-27 Martin Baulig <martin@ximian.com>
262 * debugger-agent.c (method_commands, type_commands): Temporarily
263 set the appdomain while executing this method; do all metadata
264 calls in the debuggee's appdomain where user assemblies are loaded.
266 2010-05-27 Zoltan Varga <vargaz@gmail.com>
268 * mini-s390x.c (mono_arch_get_delegate_invoke_impls): Fix the s390x build.
270 2010-05-26 Rodrigo Kumpera <rkumpera@novell.com>
272 * method-to-ir.c (mono_method_to_ir): Add missing write barrier to stobj.
274 2010-05-26 Zoltan Varga <vargaz@gmail.com>
276 * method-to-ir.c: Instead of freeing method headers immediately, save them in a list in
277 MonoCompile, and free them in mono_destroy_compile (), since the MonoType's in them could
278 be referenced even after the header is freed.
280 * aot-runtime.c: Remove the half finished support for decoding the .arm_exidx
283 2010-05-25 Zoltan Varga <vargaz@gmail.com>
285 2010-05-25 Bill Holmes <billholmes54@gmail.com>
287 * genmdesc.c (main): Fixing the detection of the nacl switch.
289 Code is contributed under MIT/X11 license.
291 2010-05-25 Zoltan Varga <vargaz@gmail.com>
293 * exceptions-amd64.c (mono_arch_find_jit_info_ext): Adjust the ip for LMF frames too.
295 * mini-llvm.c aot-compiler.c: More LLVM 2.8 updates.
297 * mini.h (LLVM_CHECK_VERSION): New helper macro.
299 2010-05-25 Miguel de Icaza <miguel@novell.com>
301 * genmdesc.pl (build_spec): Add support for nacl: keyword also to
304 * genmdesc.c: Added support for nacl: key on the machine
305 description files to support the extra space required by Google
308 2010-05-23 Zoltan Varga <vargaz@gmail.com>
310 * mini.c (mono_jit_compile_method_inner): Propagate exceptions in one more place.
312 2010-05-23 Zoltan Varga <vargaz@gmail.com>
314 * mini.c (mono_jit_compile_method_inner): Propagate exceptions from
315 mono_runtime_class_init_full ().
316 (mono_jit_runtime_invoke): Ditto. Fixes #608073.
318 2010-05-22 Zoltan Varga <vargaz@gmail.com>
320 * mini-llvm.c mini-llvm-cpp.cpp: Update after LLVM 2.8 changes.
322 2010-05-21 Zoltan Varga <vargaz@gmail.com>
324 * mini-ppc.c (mono_arch_output_basic_block): Use ins->inst_c1 instead of p1, the
325 two are not the same on ilp32.
327 2010-05-21 Zoltan Varga <vargaz@gmail.com>
329 * mini.c (mono_jit_compile_method_inner): Remove a DISABLE_JIT block which was
332 * mini-ppc.c: Fix the DISABLE_JIT build.
334 2010-05-20 Zoltan Varga <vargaz@gmail.com>
336 * aot-runtime.c (decode_resolve_method_ref): Rename this from decode_method_ref_2.
337 (make_writable): Remove this unused function.
339 2010-05-20 Zoltan Varga <vargaz@gmail.com>
341 * aot-compiler.c: Collect all information about a PLT entry into a separate MonoPltEntry
342 structure. Make the labels to plt entries local symbols instead of assembler local
343 labels, since tha latter causes problems for the iphone linker.
345 2010-05-19 Zoltan Varga <vargaz@gmail.com>
347 * mini-ppc.c (mono_ppc_is_direct_call_sequence): Handle one more case with ilp32.
349 2010-05-17 Zoltan Varga <vargaz@gmail.com>
351 * mini-ppc.c (mono_ppc_is_direct_call_sequence): Handle ilp32.
352 (ppc_patch_full): Ditto.
354 * mini-arm.c (mono_arch_build_imt_thunk): Fix the fail_tramp case.
356 * method-to-ir.c (mono_method_to_ir): Use fast generic virtual method invocation
357 if gshared is enabled, to avoid asserts in the trampoline code.
359 * mini-ia64.c (mono_arch_build_imt_thunk): Implement generalized imt thunks
362 2010-05-15 Geoff Norton <gnorton@novell.com>
364 * dwarfwriter.c, xdebug.c: Fix a pretty large leak when running in
367 2010-05-14 Geoff Norton <gnorton@novell.com>
369 * exceptions-x86.c: Fix the alignment of this trampoline so we dont get a
370 misaligned stack on darwin.
372 2010-05-14 Zoltan Varga <vargaz@gmail.com>
374 * mini-arm.c aot-compiler.c: Implement support for generalized imt thunks on
377 2010-05-14 Zoltan Varga <vargaz@gmail.com>
379 * xdebug.c: Fix ARM support.
381 2010-05-13 Zoltan Varga <vargaz@gmail.com>
383 * exceptions-x86.c (mono_arch_handle_exception): Resume from the signal handler
384 and do most of the work on the normal stack.
385 (mono_x86_get_signal_exception_trampoline): New x86 specific trampoline function.
387 2010-05-13 Zoltan Varga <vargaz@gmail.com>
389 * aot-compiler.c: Put non-code data into the .rodata section on linux.
391 2010-05-13 Zoltan Varga <vargaz@gmail.com>
393 * exceptions-arm.c (mono_arch_handle_exception): Fix the cross-compile case.
395 2010-05-13 Zoltan Varga <vargaz@gmail.com>
397 * exceptions-arm.c (mono_arch_handle_exception): Resume from the signal handler
398 and do most of the work on the normal stack.
400 2010-05-13 Zoltan Varga <vargaz@gmail.com>
402 * exceptions-amd64.c (mono_arch_handle_exception): Resume from the signal handler
403 and do most of the work on the normal stack even if sigaltstack is disabled.
405 2010-05-12 Zoltan Varga <vargaz@gmail.com>
407 * exceptions-amd64.c (mono_arch_sigctx_to_monoctx): Simplify this now that
408 UCONTEXT_REG_ constants are available on linux as well.
409 (mono_arch_monoctx_to_sigctx): Ditto.
410 (mono_arch_ip_from_context): Ditto.
412 2010-05-12 Zoltan Varga <vargaz@gmail.com>
414 * debugger-agent.c (set_breakpoint): Fix setting of pending breakpoints in
417 2010-05-11 Zoltan Varga <vargaz@gmail.com>
419 * aot-compiler.c (emit_plt): Don't align the plt to a pagesize on x86, it is
422 2010-05-10 Zoltan Varga <vargaz@gmail.com>
424 * debugger-agent.c (insert_breakpoint): Print a more descriptive error message
425 if a breakpoint cannot be inserted.
427 2010-05-08 Zoltan Varga <vargaz@gmail.com>
429 * aot-compiler.c (emit_and_reloc_code): Fix a warning.
431 2010-05-07 Zoltan Varga <vargaz@gmail.com>
433 * debugger-agent.c (frame_commands): Return an error instead of asserting if
434 no JIT info is found for the method.
436 2010-05-05 Jonathan Chambers <joncham@gmail.com>
438 * debugger-agent.c (mono_debugger_agent_thread_interrupt): Protect against a NULL sigctx
441 2010-05-05 Zoltan Varga <vargaz@gmail.com>
443 * mini-amd64.c (mono_arch_get_trampolines): New arch specific function returning
444 a list of arch specific trampolines.
446 * aot-compiler.c (emit_trampolines): Use it.
448 2010-05-05 Zoltan Varga <vargaz@gmail.com>
450 * tramp-<ARCH>.c exceptions-<ARCH>.c mini-trampolines.c mini-exceptions.c
451 aot-compiler.c: Use the _full trampoline creation functions on all platforms,
452 get rid of the _full from their name.
454 2010-05-05 Zoltan Varga <vargaz@gmail.com>
456 * tramp-x86.c (mono_arch_create_generic_trampoline): Call
457 get_nullified_class_init_trampoline to remove some code duplication.
459 2010-05-03 Zoltan Varga <vargaz@gmail.com>
461 * mini-x86.c (mono_arch_emit_prolog): Fix full-aot support for thread
464 2010-05-01 Zoltan Varga <vargaz@gmail.com>
466 * mini-amd64.c (mono_arch_emit_load_aotconst): New arch-specific function.
468 * tramp-amd64.c: Use emit_load_aotconst to remove some code duplication.
470 * aot-runtime.c (init_plt): Make the default entries point to the AOT trampoline,
471 there is no need to jump through the first plt entry.
473 * aot-runtime.c (mono_aot_get_named_code): Rename to mono_aot_get_trampoline.
475 * aot-runtime.c (mono_aot_get_plt_entry): Move the arch specific parts to an
476 arch-specific function.
477 (mono_aot_get_plt_info_offset): Ditto.
479 * aot-runtime.c (mono_aot_register_jit_icall): New helper function called from
480 mono_arch_init () to register jit icalls called from full-aot trampolines.
481 (load_function): Get rid of the arch specific #ifdefs, move the relevant code
484 * exceptions-amd64.c (mono_arch_get_throw_corlib_exception_full): Get rid of
485 the specialized throw corlib exception trampoline, use a variant of the normal
486 trampoline along with a new C function which does the call to
487 mono_exception_from_token (), just like on x86.
489 2010-05-01 Zoltan Varga <vargaz@gmail.com>
491 * mini-trampolines.c aot-compiler.c tramp-<ARCH>.c exceptions-<ARCH>.c:
492 Reorganize the full aot trampoline creation functions, instead of taking a bunch
493 of out arguments, they will now take a MonoTrampInfo** out argument. Simplify
494 some code in aot-compiler.c because of this. Remove the non-full aot trampoline
495 creation functions on architectures which have the full-aot ones.
497 2010-05-01 Zoltan Varga <vargaz@gmail.com>
499 * mini-ppc.c (mono_arch_decompose_long_opts): Fix LNEG.
501 2010-05-01 Zoltan Varga <vargaz@gmail.com>
503 * mini-ppc.c (mono_arch_emit_exceptions): Initialize exc_throw_pos/found
504 explicitly, this seems to be required by some gcc versions at -O2.
508 2010-05-01 Zoltan Varga <vargaz@gmail.com>
510 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Fix full-aot support for
511 has_target delegate invokes.
513 2010-05-01 Zoltan Varga <vargaz@gmail.com>
515 * mini.h (MonoAotTrampInfo): Rename this to MonoTrampInfo, add patches/unwind
518 * aot-compiler.c (mono_aot_tramp_info_create): Rename to mono_tramp_info_create,
519 add patches/unwind info arguments, move to mini.c.
521 * mini-<ARCH>.c aot-compiler.c: Update after the above changes.
523 2010-04-30 Zoltan Varga <vargaz@gmail.com>
525 * debugger-agent.c (type_commands): Add a new CMD_TYPE_GET_SOURCE_FILES_2
526 command which returns full path names.
528 2010-04-29 Zoltan Varga <vargaz@gmail.com>
530 * tramp-x86.c (mono_arch_create_generic_class_init_trampoline_full): Set the
531 code_size output variable.
533 * mini-x86.c (mono_arch_emit_prolog): Compute the GOT addr before calling
536 2010-04-29 Zoltan Varga <vargaz@gmail.com>
538 * mini-x86.c (mono_arch_emit_prolog): Remove a disable_aot which is not needed.
539 (mono_arch_cpu_optimizazions): Make this a no-op when running with full aot.
540 (mono_arch_cpu_enumerate_simd_versions): Ditto.
542 2010-04-29 Zoltan Varga <vargaz@gmail.com>
544 * image-writer.c (asm_writer_emit_alignment): Use ilog2 for alignments for the
547 2010-04-29 Zoltan Varga <vargaz@gmail.com>
549 * mini-x86.c (mono_arch_emit_prolog): Avoid an assert in full-aot mode.
551 2010-04-29 Zoltan Varga <vargaz@gmail.com>
553 * aot-runtime.c (load_function): Use TARGET_X86 instead of __i386__.
555 2010-04-28 Zoltan Varga <vargaz@gmail.com>
557 * aot-compiler.c (emit_got_info): Double the buffer size to avoid an assert.
559 2010-04-27 Zoltan Varga <vargaz@gmail.com>
561 * dwarfwriter.c (emit_line_number_info): Get rid of the usage of GArray, so
562 line number support works with eglib.
564 2010-04-27 Miguel de Icaza <miguel@novell.com>
566 * driver.c, mini.c: Since linking with LLVM makes the default Mono
567 dirty an extra 70kb pages on startup we are now going to choose a
568 different strategy: ship mono and mono-llvm binaries, with the
569 second being the one that links with LLVM and defaults to LLVM
572 2010-04-27 Zoltan Varga <vargaz@gmail.com>
574 * tramp-x86.c exceptions-x86.c mini-x86.c aot-compiler.c aot-runtime.c:
575 Implement full-aot support on x86.
577 * method-to-ir.c: Always use a got var on x86 too, just like on ppc, because the
578 trampolines depend on it. Use MONO_ARCH_GOT_REG as the got register, instead of
579 the first register returned by get_global_int_regs ().
581 * cpu-x86.md: Fix the length of insertx_u1_slow.
583 * iltests.il.in: Disable tail call tests when running with full-aot.
585 2010-04-26 Zoltan Varga <vargaz@gmail.com>
587 * method-to-ir.c (mono_op_to_op_imm_noemul): Fix a warning.
589 2010-04-24 Mark Probst <mark.probst@gmail.com>
591 * mini.c, driver.c: Initialize mono_use_llvm in mono_main(), not
592 in the initializer, because it's non-constant.
594 2010-04-23 Miguel de Icaza <miguel@novell.com>
596 * mini.c: Use MONO_USE_LLVM as an environment flag to turn the use
597 of LLVM on by default. Used for buildbots and other setups.
599 2010-04-24 Zoltan Varga <vargaz@gmail.com>
601 * mini.c: Set mono_use_llvm to FALSE even if mono is compiled with LLVM.
603 2010-04-23 Kornel Pal <kornelpal@gmail.com>
605 * method-to-ir.c (mono_method_to_ir): Enable inlining of pointer-sized unmanaged
606 initonly static fields when using moving GC.
608 Contributed under MIT/X11 license.
610 2010-04-23 Geoff Norton <gnorton@novell.com>
612 * mini-amd64.h: Darwin x86_64 support.
614 2010-04-20 Jonathan Pryor <jpryor@novell.com>
616 * exceptions-arm.c: Remove platform checks in favor of configure checks.
618 2010-04-19 Jonathan Pryor <jpryor@novell.com>
620 * exceptions-arm.c: Add Android support for sigcontext structure.
622 2010-04-16 Zoltan Varga <vargaz@gmail.com>
624 * mini.c (mono_jit_compile_method_inner): Implement the check for native func
625 wrappers correctly now that their wrapper info is NULL.
627 2010-04-16 Zoltan Varga <vargaz@gmail.com>
629 * mini.c (mono_jit_compile_method_inner): Avoid calling
630 mono_marshal_method_from_wrapper () for native func wrappers. Fixes #597189.
632 2010-04-16 Zoltan Varga <vargaz@gmail.com>
634 * genmdesc.c (inst_name): Define this as a copy of mono_inst_name in helpers.c,
635 so the latter can be #ifndef DISABLE_JIT-ed.
637 * helpers.c: Comment out the opstr array if DISABLE_JIT is set.
639 2010-04-16 Zoltan Varga <vargaz@gmail.com>
641 * method-to-ir.c driver.c: Disable a few more things when DISABLE_JIT is set.
643 2010-04-16 Zoltan Varga <vargaz@gmail.com>
645 * mini-llvm.c (emit_entry_bb): Fix support for simd arguments passed on the
648 2010-04-15 Zoltan Varga <vargaz@gmail.com>
650 * debugger-agent.c (type_commands): Call mono_class_setup_methods () before
651 calling mono_class_num_methods (). Fixes #592244.
653 2010-04-14 Zoltan Varga <vargaz@gmail.com>
655 * mini-x86.c (mono_arch_get_llvm_call_info): Handle empty structures correctly.
657 * mini-llvm.c: Disable LLVM for calls with non-default calling conventions.
659 2010-04-14 Zoltan Varga <vargaz@gmail.com>
661 * method-to-ir.c (handle_box_inst): Merge into handle_box, simplify the merged
663 * (handle_alloc): Ditto.
664 (mono_method_to_ir): Remove the constrained call restriction added by a previous
665 change, its not needed anymore.
667 2010-04-12 Zoltan Varga Kumpera <rkumpera@novell.com>
669 * mini-posix.c (sigusr1_signal_handler): Fix build on
670 non x86/amd64 systems.
672 2010-04-13 Zoltan Varga <vargaz@gmail.com>
674 * method-to-ir.c (mono_method_to_ir): Disable generic sharing for constrained
675 calls where the constrained class needs a context. Fixes #595863.
677 * iltests.il.in: Add a test.
679 2010-04-13 Zoltan Varga <vargaz@gmail.com>
681 * mini.c (mini_method_compile): Disable llvm+methods with clauses again, llvm
682 2.6/SVN seems to have broken support for them.
684 2010-04-13 Zoltan Varga <vargaz@gmail.com>
686 * mini-llvm.c: Fix support for LLVM 2.6.
688 2010-04-10 Zoltan Varga <vargaz@gmail.com>
690 * debugger-agent.c (thread_commands): Add a GET_ID command to get the
691 MonoInternalThread belonging to the thread.
693 Fri Apr 9 15:28:01 CEST 2010 Paolo Molaro <lupus@ximian.com>
695 * driver.c, optflags-def.h, ir-emit.h: introduce an unsupported
696 unsafe optimization that will remove bound checks.
698 2010-04-08 Kornel Pal <kornelpal@gmail.com>
700 * method-to-ir.c (mini_emit_inst_for_method): Fix a typo that caused
701 CompareExchange not to be inlined for I8.
703 Contributed under MIT/X11 license.
705 2010-04-07 Rodrigo Kumpera <rkumpera@novell.com>
707 * array.cs: Add tests for cast between primitive array types.
709 2010-04-07 Andreia Gaita <avidigal@novell.com>
711 * Makefile.am: create a convenience library for moon to link with
713 2010-04-07 Paolo Molaro <lupus@ximian.com>
715 * method-to-ir.c: optimize array accesses from generic interfaces.
717 2010-04-06 Zoltan Varga <vargaz@gmail.com>
719 * mini-llvm.c: Update after the memset/memcpy intrinsics changes in LLVM SVN.
721 2010-04-05 Rodrigo Kumpera <rkumpera@novell.com>
723 * method-to-ir.c (mono_method_to_ir): Handle call to virtual final methods
724 of marshalbyref classes.
728 2010-04-05 Rodrigo Kumpera <rkumpera@novell.com>
730 * aot-compiler.c (emit_exception_debug_info): Encode try holes
733 * aot-runtime.c (decode_exception_debug_info): Decode try holes
736 * mini.h: Increase AOT version.
738 2010-04-04 Andreas Faerber <andreas.faerber@web.de>
740 * mini-x86.h: Only enable soft debugger when using sigaction or on
741 Windows. Fixes build on Haiku (lacks siginfo_t).
743 Code is contributed under MIT/X11 license.
745 2010-04-02 Andreas Faerber <andreas.faerber@web.de>
747 * mini.h, mini-x86.h: Suppress sigaction for Haiku, add support for
748 BeOS-style signal handlers.
750 Code is contributed under MIT/X11 license.
752 2010-04-02 Zoltan Varga <vargaz@gmail.com>
754 * mini-posix.c (sigusr1_signal_handler): Fix openbsd support.
756 2010-04-01 Rodrigo Kumpera <rkumpera@novell.com>
758 * mini-exceptions.c: Fix win32 build.
760 2010-04-01 Mark Probst <mark.probst@gmail.com>
762 * mini.c, driver.c: Call mono_gc_base_init() before
765 2010-04-01 Sebastien Pouliot <sebastien@ximian.com>
767 * method-to-ir.c (ensure_method_is_allowed_to_[access_field|
768 call_method]): Delegate the actual work in security-core-clr.c
769 to ease code sharing.
771 2010-04-01 Zoltan Varga <vargaz@gmail.com>
773 * decompose.c (mono_decompose_opcode): Set the cfg exception if the unsupported
774 float conv.ovf.un opcodes are encountered, instead of asserting later.
777 2010-04-01 Zoltan Varga <vargaz@gmail.com>
779 * decompose.c (mono_decompose_opcode): Add OP_ICONV_TO_U4_UN as a no-op.
781 * iltests.il.in: Add a test.
783 2010-04-01 Zoltan Varga <vargaz@gmail.com>
785 * mini-amd64.c (mono_arch_emit_call): Fail compilation if an argument is too
786 large. Fixes #567040.
788 * method-to-ir.c: Call CHECK_CFG_EXCEPTION after emitting a call.
790 2010-04-01 Zoltan Varga <vargaz@gmail.com>
792 * method-to-ir.c (handle_ccastclass): Call save_cast_details (). Fixes
795 2010-03-31 Rolf Bjarne Kvinge <RKvinge@novell.com>
797 * mini-trampolines.c: Surround mono_handler_block_guard_trampoline and
798 mono_create_handler_block_trampoline with the proper #ifdef so that it
801 2010-03-30 Rodrigo Kumpera <rkumpera@novell.com>
803 * mini-exceptions.c: Introduce mono_walk_stack_full, which
804 allows to select if it's new or old context that is passed to
807 * mini-exceptions.c (mono_handle_exception_internal): Handle the
808 case when executing a guarded handler from the EH machinery.
810 * mini-exceptions.c (mono_install_handler_block_guard): New function
811 responsible for checking for handler blocks, installing the guard and
812 clearing abort state.
814 * mini-posix.c (sigusr1_signal_handler): Call mono_install_handler_block_guard
815 to check for handler blocks and skip interruption logic if one was found.
817 * mini-trampolines.c (mono_handler_block_guard_trampoline): Function called
818 by the handler block guard trampoline. Resumes interruption by raising the
819 pending ThreadAbortException.
821 * mini.c (create_jit_info): Calculate the end address of a finally block.
823 * mini-x86.c (mono_arch_install_handler_block_guard): Patch the return address
824 of a finally block to a specified address and return the old one.
826 * tramp-x86.c (mono_arch_create_handler_block_trampoline): The handler block
827 trampoline patches the original return address and calls the trampoline function.
829 2010-03-30 Zoltan Varga <vargaz@gmail.com>
831 * mini-trampolines.c (mono_aot_trampoline): Remove some dead code.
833 * aot-runtime.c (mono_aot_patch_plt_entry): New helper function, which only
834 does the patching if the callee is in the same domain.
836 * aot-runtime.c mini-trampolines.c: Call mono_aot_patch_plt_entry instead
837 of mono_arch_patch_plt_entry ().
839 2010-03-30 Rodrigo Kumpera <rkumpera@novell.com>
841 * mini.c (create_jit_info): Fix try block hole length encoding.
843 2010-03-30 Rodrigo Kumpera <rkumpera@novell.com>
845 * mini.c (create_jit_info): Emit saner debug spew. Now it doesn't
846 duplicate information and print offsets instead of absolute addresses.
848 2010-03-29 Zoltan Varga <vargaz@gmail.com>
850 * debugger-agent.c (jit_end): Send type loads for types loaded before the VMStart
851 event is sent. Fixes #591733.
853 2010-03-26 Zoltan Varga <vargaz@gmail.com>
855 * mini-posix.c (SIG_HANDLER_SIGNATURE): Handle the case when ctx is NULL on
858 2010-03-26 Zoltan Varga <vargaz@gmail.com>
860 * debugger-agent.c (mono_debugger_agent_init): Set the GC type of the
861 thread_to_tls hash table.
863 * image-writer.c (bin_writer_emit_writeout): Fix the size of the got.plt
864 section. Fixes #591000.
866 2010-03-26 Andreas Faerber <andreas.faerber@web.de>
868 * Makefile.am (version.h): Check for pure .git directory only,
869 fixes SVN revision when using git without git-svn.
871 Contributed under MIT/X11 license.
873 2010-03-26 Zoltan Varga <vargaz@gmail.com>
875 * aot-runtime.c: Apply some openbsd changes from openbsd ports.
877 2010-03-24 Rodrigo Kumpera <rkumpera@novell.com>
879 * basic-simd.cs: Test for vector x scalar binary operators.
881 2010-03-24 Rodrigo Kumpera <rkumpera@novell.com>
883 * simd-intrincs.c (simd_intrinsic_emit_binary): Support binary
884 intrinsics with expanded scalar arguments.
886 2010-03-24 Rodrigo Kumpera <rkumpera@novell.com>
888 * mini-exceptions.c (get_exception_catch_class): Non catch clauses
889 don't have an exception class, so don't decode it. This would crash
892 2010-03-24 U-anarquia\miguel <miguel@anarquia>
894 Make sure that trunk builds with DISABLE_JIT, an update to the
897 * mini.c (mini_get_shared_method): this code seems to be necessary
898 regardless of whether DISABLE_JIT has been defined.
900 (mono_jit_compile_method_inner): it seems that this method is
901 required even in full AOT mode, so ifdef out only the pieces that
902 try to genrate code (the body of code that applies patches to the
905 (mini_method_compile): do not compile when using DISABLE_JIT.
907 * mini-ppc.c (mono_arch_get_allocatable_int_vars)
908 (mono_arch_output_basic_block, mono-arch_emit_exceptions): Do not
909 compile when DISABLE_JIT is set.
911 2010-03-24 Mark Probst <mark.probst@gmail.com>
913 * mini.c (mono_create_tls_get): Only create a TLS operation if the
914 arch really supports it.
916 2010-03-24 Mark Probst <mark.probst@gmail.com>
918 * mini-x86.c, mini-x86.h, mini.c: CEE_MONO_TLS support for Darwin/x86.
920 2010-03-23 Neale Ferguson <neale@sinenomine.net>
922 * exceptions-s390x.c: Add support for
923 mono_arch_get_throw_corlib_exception and fix throw by name.
925 * mini-s390x.c: Add IMT support; Fix stack parameter passing
926 logic (especially for varargs); Correct localloc sizing; Add
927 mono_arch_get_this_arg_from_call and
928 mono_arch_get_this_arg_from_call.
930 * mini-s390x.h: Add support for facility list extraction;
931 Correct/update MONO_ARCH_xxx settings.
933 * mini-s390.c: Minor corrections to instruction output for
934 varargs. No IMT implementation - I think it's time to deprecate
935 s390 and just leave s390x.
937 * tramp-s390x.c: Correct creation of trampoline instruction
940 * cpu-s390x.md: Update some instruction lengths
942 2010-03-23 Zoltan Varga <vargaz@gmail.com>
944 * mini-generic-sharing.c (fill_in_rgctx_template_slot): Remove an assert which
945 can be hit with partial sharing.
947 * mini-generic-sharing.c (get_shared_class): Handle partially shared methods
948 in non-shared classes correctly.
949 (generic_inst_is_sharable): Allow all primitive types in partial sharing.
950 Turn on partial sharing.
952 2010-03-23 Zoltan Varga <vargaz@gmail.com>
954 * mini-amd64.h: Put back MONO_ARCH_NOMAP32BIT for OpenBSD which was removed
957 2010-03-23 Zoltan Varga <vargaz@gmail.com>
959 * method-to-ir.c (mono_method_to_ir): Handle the failure of
960 mono_method_signature ().
962 * mini-trampolines.c (mono_delegate_trampoline): Ditto.
964 * mini.c (mini_method_compile): Get the signature of cfg->method early with
965 error checking, so later calls do not need error checking.
967 2010-03-22 Zoltan Varga <vargaz@gmail.com>
969 * exceptions-amd64.c: Add support for OpenBSD which has no UCONTEXT_GREGS.
971 * mini-amd64.h: Enable MONO_ARCH_USE_SIGACTION on OpenBSD as well.
973 2010-03-22 Rodrigo Kumpera <rkumpera@novell.com>
975 * mini-exceptions.c (mono_handle_exception_internal): Don't
976 check try_end for archs different than s390.
978 * mini.c (create_jit_info): Don't crash if the finallt block is the
981 2010-03-22 Rodrigo Kumpera <rkumpera@novell.com>
983 * driver.c (mono_main): Don't free global codeman under linux since
984 glic now peeks at code on stack for more archs than just amd64.
986 Mon Mar 22 18:09:09 CET 2010 Paolo Molaro <lupus@ximian.com>
988 * mini.c, method-to-ir.c: changes to support compressed interface
991 2010-03-22 Zoltan Varga <vargaz@gmail.com>
993 * mini-x86.h: Applied patch from Robert Nagy (Robert@openbsd.org).
994 Use sigaction on OpenBSD too.
996 2010-03-22 Zoltan Varga <vargaz@gmail.com>
998 * debugger-agent.c (event_req_matches_assembly): Handle request modifiers too.
1000 2010-03-21 Andreas Faerber <andreas.faerber@web.de>
1002 * debugger-agent.c: #include sys/select.h for fd_set.
1004 Code is contributed under MIT/X11 license.
1006 2010-03-21 Zoltan Varga <vargaz@gmail.com>
1008 * mini.c (SIG_HANDLER_SIGNATURE): Fix the build on platforms without sigaction
1011 2010-03-21 Zoltan Varga <vargaz@gmail.com>
1013 * mini-ppc.c (mono_arch_emit_exceptions): Avoid an assert in ppc_patch () for
1014 some large methods with lots of exception handlers. Fixes #440924.
1016 Sat Mar 20 11:56:24 CET 2010 Paolo Molaro <lupus@ximian.com>
1018 * method-to-ir.c: remove code duplication for interface checks.
1020 2010-03-19 Zoltan Varga <vargaz@gmail.com>
1022 * debugger-agent.c (clear_event_requests_for_assembly): New helper function.
1023 (assembly_unload): Clear all event requests referencing the to-be unloaded
1027 Fri Mar 19 16:45:20 CET 2010 Paolo Molaro <lupus@ximian.com>
1029 * mini.h, mini-exceptions.c: restore the state of the stack
1030 guard page permissions.
1032 2010-03-19 Zoltan Varga <vargaz@gmail.com>
1034 * mini-trampolines.c (common_call_trampoline): Remove the condition guarding the
1035 call site patching code, it doesn't appear to be needed.
1037 2010-03-19 Zoltan Varga <vargaz@gmail.com>
1039 * mini-generic-sharing.c: Add infrastructure for partial sharing, ie.
1040 sharing generic methods whose type arguments are a mix of reference and
1041 non-reference types. Not yet turned on.
1043 * mini.c (mini_get_shared_method): New helper function to return
1044 the method which will be compiled/registered in the JIT tables when doing
1046 (mono_domain_lookup_shared_generic): Moved to mini.c from mini-generic-sharing.c,
1047 use mini_get_shared_method ().
1049 * mini.c (mini_method_compile): Register the same method which is compiled when
1050 doing generic sharing.
1052 * mini.c aot-compiler.c aot-runtime.c: Add support for partial sharing.
1054 * generics.cs: Add partial sharing tests.
1056 2010-03-17 Jerry Maine <crashfourit@gmail.com>
1058 * mini.h : Changed the SIMD_VERSION* enum values to match those in Mono.Simd.AccelMode.
1059 Add an enum value that or's all possable values together. Add an enum value
1060 that marks the end of the used bit indexes.
1062 * mini-amd64.c : Make changes to match the changes in mini.h
1064 * mini-x86.c : Make changes to match the changes in mini.h
1066 * simd-intrinsics.c : Reorder the SimdIntrinsc struct to add more bits to
1067 simd_version to support more simd versions. Changed the name of
1068 simd_version to simd_version_flags to make it more intuitive that
1069 it now contains bit flags. Reordered the *_intrinsics arrays to
1070 match the changes above. Changed emit_intrinsics() to use the new
1071 setup mentioned above.
1073 Code is contributed under MIT/X11 license.
1075 2010-03-17 Rodrigo Kumpera <rkumpera@novell.com>
1077 * mini-*.c (mono_arch_output_basic_block): Record try block holes on all
1078 remaining archs. Alpha and hppa maintainers, please stand up.
1080 2010-03-17 Zoltan Varga <vargaz@gmail.com>
1082 * mini-ppc.c (mono_arch_build_imt_thunk): Always save and restore r11 since it
1083 is needed even when fail_tramp!=NULL.
1085 2010-03-17 Zoltan Varga <vargaz@gmail.com>
1087 * debugger-agent.c (insert_breakpoint): Write a log message.
1089 2010-03-16 Rodrigo Kumpera <rkumpera@novell.com>
1091 * iltests.il.in: Add a few tests for LEAVE going over multiple
1094 2010-03-16 Rodrigo Kumpera <rkumpera@novell.com>
1096 * mini-x86.c (mono_arch_output_basic_block): Record try block holes.
1098 2010-03-16 Rodrigo Kumpera <rkumpera@novell.com>
1100 * mini.h (MonoBasicBlock): Add native_length field.
1101 * mini.h (MonoCompile): Add try_block_holes field.
1102 * mini.h (MonoInst): Add exception_clause pointer to
1105 * mini.c (mono_codegen): Calculate MonoBasicBlock::native_length.
1106 * mini.c (mono_cfg_add_try_hole): New function to register possible
1107 holes in try blocks.
1108 * mini.c (create_jit_info): Fill in the holes information.
1110 * mini-exceptions.c: Verify for holes when checking if an IP is covered
1113 * method-to-ir.c: Add the EH clause to the CALL_HANDLE instruction.
1115 Tue Mar 16 13:16:16 CET 2010 Paolo Molaro <lupus@ximian.com>
1117 * jit-icalls.c: adjusted for the array API changes.
1119 2010-03-16 Zoltan Varga <vargaz@gmail.com>
1121 * iltests.il.in: Disable the fconv_to_i test on sparc too.
1123 2010-03-16 Zoltan Varga <vargaz@gmail.com>
1125 * debugger-agent.c: Simplify the way breakpoints are processed by removing
1126 the 'pending' flag. This fixes support for appdomains too.
1129 Mon Mar 15 18:25:49 CET 2010 Paolo Molaro <lupus@ximian.com>
1131 * mini-amd64.c, mini-ia64.c: remove direct access to method->header.
1133 2010-03-12 Zoltan Varga <vargaz@gmail.com>
1135 * simd-intrinsics.c (simd_intrinsic_emit_getter): Don't emit shuffle opcodes
1136 when using LLVM, LLVM generates it itself when needed.
1138 * mini-llvm-cpp.cpp (mono_llvm_build_aligned_load): New helper function.
1140 * mini-llvm.c: Use an unaligned load for OP_LOADX_MEMBASE. Add zero extension
1141 to some OP_EXTRACT_ opcodes. Fix the naming of some sse intrinsics. Fix
1142 OP_ANDNPS/OP_ANDNPD.
1144 2010-03-11 Zoltan Varga <vargaz@gmail.com>
1146 * tramp-x86.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code' for
1147 the pc instead of 'buf'. Fix the call to mono_arch_flush_icache ().
1148 (mono_arch_create_monitor_exit_trampoline_full): Ditto.
1150 2010-03-11 Martin Baulig <martin@ximian.com>
1152 * debugger-agent.c (type_commands): Add NULL check to
1153 `CMD_TYPE_GET_SOURCE_FILES'.
1155 2010-03-09 Zoltan Varga <vargaz@gmail.com>
1157 * mini-ppc.c (mono_arch_decompose_opts): Fix OP_ICONV_TO_R_UN when cross-compiling.
1159 2010-03-09 Zoltan Varga <vargaz@gmail.com>
1161 * mini-codegen.c (mono_peephole_ins): Fix the OP_FMOVE optimization. Fixes
1164 * iltests.il.in: Add a test.
1166 2010-03-05 Martin Baulig <martin@ximian.com>
1168 Add support for aborting invocations.
1171 (InvokeData): Added `InvokeData *last_invoke'.
1172 (DebuggerTlsData): Renamed `invoke' into `pending_invoke' and
1173 added a new `invoke' field to keep the `InvokeData *' throughout
1175 (ErrorCode): Added `ERR_NO_INVOCATION'.
1176 (CmdVM): Added `CMD_VM_ABORT_INVOKE'.
1177 (mono_debugger_agent_handle_exception): Don't report any exception
1178 if an abort was requested.
1179 (invoke_method): Store the `InvokeData *' in `tls->invoke'; reset
1180 a thread abort if necessary.
1181 (vm_commands): Implement `CMD_VM_ABORT_INVOKE'.
1183 2010-03-08 Rodrigo Kumpera <rkumpera@novell.com>
1185 * method-to-ir.c: Store the initial basic block returned by mono_basic_block_split
1186 so we can release the whole list and not just the first one. Free
1187 it in more places as well.
1189 2010-03-08 Rodrigo Kumpera <rkumpera@novell.com>
1191 * method-to-ir.c: Revert r153222 as it doesn't belong here.
1193 Mon Mar 8 17:58:26 CET 2010 Paolo Molaro <lupus@ximian.com>
1195 * mini.h, *.c: prepare for MonoMethodHeader to become a transient entity.
1197 Mon Mar 8 17:35:26 CET 2010 Paolo Molaro <lupus@ximian.com>
1199 * driver.c: report also other misc build options.
1201 2010-03-07 Rodrigo Kumpera <rkumpera@novell.com>
1203 * method-to-ir.c: Generate better code for the NewObject
1206 2010-03-07 Zoltan Varga <vargaz@gmail.com>
1208 * branch-opts.c (mono_if_conversion): Disable one of the cases when deadce
1209 is disabled. Fixes #582322.
1211 * iltests.il.in: Add a test.
1213 2010-03-06 Zoltan Varga <vargaz@gmail.com>
1215 * tramp-amd64.c (mono_arch_create_monitor_exit_trampoline_full): Delegate
1216 the handling of obj->synchronization == null and owner != current thread to
1217 mono_monitor_exit ().
1219 * tramp-x86.c (mono_arch_create_monitor_exit_trampoline_full): Ditto.
1222 Sat Mar 6 18:14:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1224 * mini.c: change the way emulated opcode info is stored and save about
1225 4 KB of runtime memory.
1227 2010-03-04 David S. Miller <davem@davemloft.net>
1229 * mini-sparc.h: Always use MONO_ARCH_USE_SIGACTION. Linux kernels
1230 that don't provide the siginfo in the second signal handler argument
1231 are buggy, and this has been fixed for years.
1232 * mini.h (GET_CONTEXT): Remove __sparc__ special case.
1233 (SIG_HANDLER_SIGNATURE, SIG_HANDLER_PARMS): Likewise.
1235 2010-03-04 Zoltan Varga <vargaz@gmail.com>
1237 * aot-runtime.c (find_symbol): Fix a leak.
1238 (decode_patch): Ditto.
1240 2010-03-04 Zoltan Varga <vargaz@gmail.com>
1242 * mini.h (MONO_INST_IS_TEMP): Kill this unused define.
1244 2010-03-04 Zoltan Varga <vargaz@gmail.com>
1246 * mini.c (mono_resolve_patch_target): Fix an uninitialized variable.
1248 Wed Mar 3 19:19:21 CET 2010 Paolo Molaro <lupus@ximian.com>
1250 * method-to-ir.c: MONO_PROFILE_STRING_ALLOC is dead.
1252 2010-03-03 Rodrigo Kumpera <rkumpera@novell.com>
1254 * method-to-ir.c (mono_method_to_ir): Don't create a runtime vtable
1255 to check for errors, it's enough to create the metadata open.
1259 2010-03-03 Rolf Bjarne Kvinge <RKvinge@novell.com>
1262 * mini-exceptions.c: Add support for printing stack traces when handling
1263 exceptions, and when printing exceptions thrown while tracing also print
1264 the exception message.
1266 2010-03-03 Rolf Bjarne Kvinge <RKvinge@novell.com>
1268 * trace.c: We need to parse exclude tokens ('-') before string tokens,
1269 since the exclude token is a valid string character.
1271 2010-03-02 Levi Bard <levi@unity3d.com>
1273 * debugger-agent.c: Invalidate thread stacks on domain unload.
1275 2010-03-02 Mark Probst <mark.probst@gmail.com>
1277 * method-to-ir.c: Emit dummy_use for stored reference after write
1278 barriers to make sure the object is pinned if the GC interrupts
1279 before the write barrier is done.
1281 2010-03-02 Zoltan Varga <vargaz@gmail.com>
1283 * cpu-<ARCH>.md: dummy_use was missing src1:i.
1285 2010-03-01 Zoltan Varga <vargaz@gmail.com>
1287 * debugger-agent.c: Add a log message printing the protocol version.
1289 2010-03-01 Zoltan Varga <vargaz@gmail.com>
1291 * debugger-agent.c: Add a new command to communicate the protocol version used
1292 by the client. This could be used to allow newer runtimes to communicate with
1295 2010-03-01 Zoltan Varga <vargaz@gmail.com>
1297 * debugger-agent.c (domain_commands): Add a new command to create a boxed value.
1299 2010-03-01 Zoltan Varga <vargaz@gmail.com>
1301 * debugger-agent.c (type_commands): Fix the setting of fields with a reference
1304 Mon Mar 1 15:20:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1306 * mini-arm.c: make the arm cpu arch configurable with the
1307 MONO_CPU_ARCH env var (for example: "armv4 thumb").
1310 Mon Mar 1 14:48:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1312 * mini.c, mini.h, driver.c: added the --jitmap option to enable
1313 support for the perf tool on Linux.
1315 Mon Mar 1 14:43:55 CET 2010 Paolo Molaro <lupus@ximian.com>
1317 * method-to-ir.c: make string.InsertenalSetChar() specialization
1320 2010-03-01 Robert Jordan <robertj@gmx.net>
1322 * Makefile.am: fix the non-static build.
1324 2010-02-26 Zoltan Varga <vargaz@gmail.com>
1326 * mini-generic-sharing.c: Move the contents of ../metadata/generic-sharing.c
1329 2010-02-26 Robert Jordan <robertj@gmx.net>
1331 * tasklets.c (continuation_store): Return from an error condition
1334 2010-02-26 Martin Baulig <martin@ximian.com>
1336 * debug-debugger.c (MonoDebuggerInfo): Added `abort_runtime_invoke'.
1339 (MonoDebuggerThreadInfo): Added `internal_flags'.
1340 (MonoDebuggerInternalThreadFlags): New enum.
1341 (_mono_debugger_throw_exception): Don't signal the debugger if a
1342 type abort was requested.
1343 (_mono_debugger_unhandled_exception): Likewise.
1344 (mono_debugger_abort_runtime_invoke): New method to abort an invocation.
1345 (mono_debugger_runtime_invoke): If the debugger requested a thread
1346 abort during the invocation, reset it here.
1348 2010-02-26 Martin Baulig <martin@ximian.com>
1350 * debug-mini.c (MonoDebuggerThreadInfo): Use `MonoInternalThread *'
1351 instead of `MonoThread *'.
1353 2010-02-25 Zoltan Varga <vargaz@gmail.com>
1355 * aot-runtime.c (mono_aot_find_jit_info): Use a merge sort for sorting the
1356 code offsets table, as it is mostly sorted.
1358 2010-02-25 Zoltan Varga <vargaz@gmail.com>
1360 * debugger-agent.c (do_invoke_method): Fix invoking of static methods on vtypes.
1363 2010-02-25 Zoltan Varga <vargaz@gmail.com>
1365 * driver.c (mono_main): Get rid of mono_setup_vtable_in_class_init.
1367 Wed Feb 24 15:58:03 CET 2010 Paolo Molaro <lupus@ximian.com>
1369 * Makefile.am: build the new ABI version of the libmono library.
1370 * debugger-agent.c, mini.c: fix warnings with the new API.
1371 * jit.h: don't depend on glib.h being included.
1373 2010-02-24 Zoltan Varga <vargaz@gmail.com>
1375 * method-to-ir.c (mono_method_to_ir): Implement AOT support for fast TLS access.
1377 2010-02-24 Zoltan Varga <vargaz@gmail.com>
1379 * method-to-ir.c (mono_method_to_ir): Implement support for fast access to
1380 ThreadStatic variables.
1382 2010-02-24 Zoltan Varga <vargaz@gmail.com>
1384 * debugger-agent.c (notify_thread): Skip terminated threads, since their tls
1385 data is not freed yet. Fixes #582460.
1387 2010-02-23 Zoltan Varga <vargaz@gmail.com>
1389 * debugger-agent.c: Add support for the caught/uncaught flags on exception
1390 event requests. Bump protocol minor version.
1392 2010-02-22 Zoltan Varga <vargaz@gmail.com>
1394 * decompose.c (mono_decompose_long_opts): Handle OP_LCONV_TO_OVF_I8 here too.
1396 2010-02-22 Zoltan Varga <vargaz@gmail.com>
1398 * decompose.c (mono_decompose_opcode): Handle OP_LCONV_TO_OVF_I8. Fixes
1401 * iltests.il.in: Add a test.
1403 2010-02-22 Rodrigo Kumpera <rkumpera@novell.com>
1405 * mini.c (inline_method): Check for loader errors.
1407 2010-02-22 Rodrigo Kumpera <rkumpera@novell.com>
1409 * mini.c (mono_method_check_inlining): Use !mono_method_get_header_summary
1410 instead of mono_method_get_header as it doesn't decode locals
1411 so the called method can have unresolved dependencies that will only
1412 be satisfied after the current method is JIT'd.
1416 2010-02-22 Zoltan Varga <vargaz@gmail.com>
1418 * basic.cs (test_0_div_opt): Speed this up a bit.
1420 2010-02-20 Zoltan Varga <vargaz@gmail.com>
1422 * mini-amd64.c: Fix DISABLE_JIT support after the latest changes.
1424 * mini.c (mono_jit_create_remoting_trampoline): Call
1425 mono_create_specific_trampoline () instead of
1426 mono_arch_create_specific_trampoline ().
1428 * mini-trampolines.c tramp-arm.c: Disable more stuff when DISABLE_JIT is set.
1430 2010-02-20 Zoltan Varga <vargaz@gmail.com>
1432 * unwind.c (mono_unwind_get_cie_program): New function, moved here from
1433 aot-compiler.c, so it can be found even if DISABLE_JIT is set.
1435 * aot-compiler.c xdebug.c: Update callers of mono_arch_unwind_get_cie_program ().
1437 * mini-amd64.c: Fix DISABLE_JIT support.
1439 2010-02-20 Geoff Norton <gnorton@novell.com>
1441 * aot-runtime.c: Ensure we dont leak a held lock when unwinding exceptions.
1443 2010-02-20 Zoltan Varga <vargaz@gmail.com>
1445 * debugger-agent.c (mono_debugger_agent_handle_exception): Receive two contexts,
1446 one for the throw and one for the catch. Mark uncaught exceptions by a NULL
1447 CATCH_TXT. Send normal exception events for unhandled exceptions too.
1448 (mono_debugger_agent_handle_unhandled_exception): Remove this, merged into
1451 2010-02-18 Zoltan Varga <vargaz@gmail.com>
1453 * exceptions-x86.c (mono_arch_get_restore_context): Changes this so it restores
1454 edx/ecx too. This is needed to support OP_SEQ_POINT.
1456 2010-02-18 Zoltan Varga <vargaz@gmail.com>
1458 * exceptions-amd64.c (get_throw_trampoline): Add xdebug info.
1460 * method-to-ir.c (mono_method_to_ir): Fix SIZEOF in dynamic methods.
1462 2010-02-16 Zoltan Varga <vargaz@gmail.com>
1464 * mini-llvm.c aot-compiler.c aot-runtime.c unwind.c: Finish support
1465 LLVM+AOT+exceptions, not enabled yet.
1467 2010-02-15 Zoltan Varga <vargaz@gmail.com>
1469 * mini.c (SIG_HANDLER_SIGNATURE): Fix the windows build.
1471 2010-02-15 Zoltan Varga <vargaz@gmail.com>
1473 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Emit
1474 xdebug info for these.
1476 * mini-trampolines.c (common_call_trampoline): Use mini_jit_info_table_find ()
1479 * mini.c (mini_get_vtable_trampoline): Make this take a 'slot_index' argument,
1482 2010-02-13 Zoltan Varga <vargaz@gmail.com>
1484 * aot-compiler.c (load_profile_files): Update after the profiler changes.
1486 2010-02-13 Zoltan Varga <vargaz@gmail.com>
1488 * mini.c (mono_jit_compile_method_inner): Avoid passing icall wrappers to
1489 mono_profiler_method_end_jit, since the profiler has no way to process wrappers.
1491 * aot-runtime.c mini.c: Resurrect the aot pagefault profiling stuff, it is useful
1494 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1496 * debugger-agent.c: handle incomplete reads and EINTR in
1497 recv()/send(). This could have been causing random
1500 2010-02-13 Zoltan Varga <vargaz@gmail.com>
1502 * aot-runtime.c (decode_exception_debug_info): Fix aot support for sequence
1505 * mini-arm.c (mono_arch_allocate_vars): Allocate the seq point related vars first
1506 so they have small offsets. Fixes #566311.
1508 2010-02-12 Rodrigo Kumpera <rkumpera@novell.com>
1510 * method-to-ir.c (mono_method_check_inlining): Check for loader errors.
1512 2010-02-11 Zoltan Varga <vargaz@gmail.com>
1514 * mini-amd64.c: Remove the special casing of byref in a few places now that
1515 mini_type_get_underlying_type () handles it.
1517 * mini-generic-sharing.c (mini_type_get_underlying_type): Handle byref as well
1518 by returning native int. Fixes #577984.
1520 2010-02-11 Zoltan Varga <vargaz@gmail.com>
1522 * method-to-ir.c (handle_isinst): Factor out the is_complex_isinst check into
1525 * mini-llvm.c (exception_cb): Put the clause index into the type info instead
1526 of putting the clause itself.
1528 * mini-arm.c mini.c linear-scan.c: Disable more stuff when DISABLE_JIT is used.
1530 2010-02-09 Zoltan Varga <vargaz@gmail.com>
1532 * unwind.c (mono_unwind_frame): Use read32 for reading a 32 bit value, since it
1535 2010-02-10 Geoff Norton <gnorton@novell.com>
1537 * aot-compiler.c: Make the number of IMT trampolines configurable as well.
1539 2010-02-08 Zoltan Varga <vargaz@gmail.com>
1541 * aot-compiler.c (emit_code): Create the ut trampolines here, so they work for
1544 * aot-compiler.c (emit_code): Don't add the llvm label prefix to 'methods', since
1545 it is not an LLVM generated symbol.
1547 * mini-llvm.c (emit_entry_bb): Fix the handling of simd types.
1549 * method-to-ir.c (handle_castclass): Turn off the more efficient isinst/castclass
1550 implementation in gshared mode because it causes regressions.
1552 * mini-trampolines.c: Add a stat for the number of calls to trampolines.
1554 * image-writer.c (asm_writer_emit_global): Don't prepend the global prefix, it
1555 should be done by the caller.
1557 * mini-llvm.c (mono_llvm_emit_method): Don't make the debug symbols global.
1559 * aot-compiler.c (emit_code): Add the llvm label prefix before 'methods'.
1561 * mini-exceptions.c (mini_jit_info_table_find): Search the root domain as well,
1562 since mono_jit_info_table_find () doesn't do it anymore.
1564 * mini-generic-sharing.c debugger-agent.c: Call mini_jit_info_table_find ()
1565 instead of mono_jit_info_table_find ().
1567 2010-02-07 Zoltan Varga <vargaz@gmail.com>
1569 * aot-compiler.c aot-runtime.c: Add support for MONO_WRAPPER_WRITE_BARRIER.
1571 * aot-compiler.c (encode_method_ref): Update after the removal of
1572 mono_gc_get_managed_allocator_type ().
1574 * method-to-ir.c (mono_method_to_ir): Place a seq point just before a RET.
1577 2010-02-06 Zoltan Varga <vargaz@gmail.com>
1579 * method-to-ir.c (handle_castclass): Use the icall for classes with variant
1580 generic params as well.
1581 (handle_isinst): Ditto.
1583 * method-to-ir.c: Make isninst/castclass checks in gshared code more efficient
1584 instead of always calling an icall.
1586 * aot-compiler.c (emit_llvm_file): Take into account trampolines etc when
1587 computing the size of the got.
1589 * aot-compiler.c (emit_code): Change the way the 'methods' symbol is emitted
1590 when using LLVM. Instead of emitting it as an LLVM method, emit it using
1591 the assembly directive '.set' so it points to the first LLVM emitted method.
1593 2010-02-04 Rodrigo Kumpera <rkumpera@novell.com>
1595 * mini.c (mini_method_verify): Report the method which failed to verify.
1597 2010-02-04 Rodrigo Kumpera <rkumpera@novell.com>
1599 * method-to-ir.c (mono_method_to_ir): Use the new basic block formation pass
1600 to avoid JIT'ng dead basic blocks. This is the same behavior as the
1601 runtime MS verifier.
1603 2010-02-04 Zoltan Varga <vargaz@gmail.com>
1605 * debugger-agent.c (decode_value): Fix decoding of vtype instances. Fixes
1608 2010-02-04 Zoltan Varga <vargaz@gmail.com>
1610 * mini-llvm.c: Init the jit module only when first JITting.
1612 * aot-compiler.c (emit_plt): Fix the naming of plt entries of llvm+darwin.
1614 * mini-llvm.c (get_plt_entry): Make the plt entries have hidden visibility.
1616 * mini-llvm.c (mono_llvm_emit_aot_module): Remove the dummy got after it is
1617 replaced with the real got.
1619 * debugger-agent.c (type_commands): Return the enumness if the type as well.
1621 * image-writer.c: Reduce the amount of #ifdefs a bit.
1623 * aot-compiler.c: Reduce the amount of #ifdefs. Add beginnings of support for
1626 * aot-compiler.c (mono_compile_assembly): Handle asmonly+llvm mode.
1628 * mini-llvm.c (mono_llvm_emit_method): Don't make the 'type_info' symbols
1631 2010-02-02 Zoltan Varga <vargaz@gmail.com>
1633 * mini-llvm.c (mono_llvm_emit_method): Add support for unaligned loads.
1634 (mono_llvm_emit_method): Fix unaligned stores too.
1636 * mini-amd64.c (mono_arch_emit_prolog): Initialize lmf->rsp in the prolog too
1637 so async stack walks don't crash.
1639 2010-02-02 Zoltan Varga <vargaz@gmail.com>
1641 * mini-trampolines.c (common_call_trampoline): Fix a problem where the callsite
1642 was not patched if the callee needed an rgctx trampoline.
1644 2010-02-01 Zoltan Varga <vargaz@gmail.com>
1646 * mini-ppc.c (mono_arch_get_global_int_regs): Reserve r29 for holding the
1647 vtable address in AOT code.
1649 2010-02-01 Zoltan Varga <vargaz@gmail.com>
1651 * mini-codegen.c: Remove support for CEE_ opcodes which cannot occur in
1654 Mon Feb 1 16:29:10 CET 2010 Paolo Molaro <lupus@ximian.com>
1656 * genmdesc.pl: remove dependency on external cpp.
1658 2010-02-01 Zoltan Varga <vargaz@gmail.com>
1660 * method-to-ir.c (mini_emit_ldelema_1_ins): Avoid emitting an OP_SEXT_I4 when
1661 using LLVM, its not needed, and abcrem can't handle it.
1663 Mon Feb 1 14:29:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1665 * genmdesc.c, genmdesc.pl, cpu-x86.md: introduced templates to make
1666 it easier to group instructions and reduce duplication.
1668 2010-02-01 Zoltan Varga <vargaz@gmail.com>
1670 * decompose.c: Move the array/soft float decompose routines here from
1673 * method-to-ir.c: Export a few functions so they can be used from decompose.c.
1675 2010-01-31 Zoltan Varga <vargaz@gmail.com>
1677 * mini-llvm.c (mono_llvm_emit_method): Add a call to llvm.invariant.start
1678 to tell LLVM that the got is constant, not used yet.
1680 * aot-compiler.c: Pass more optimization flags to llvm's 'opt'.
1682 2010-01-30 Zoltan Varga <vargaz@gmail.com>
1684 * mini-ppc.c (mono_arch_emit_prolog): Fix full aot support for native to
1687 2010-01-30 Zoltan Varga <vargaz@gmail.com>
1689 * aot-compiler.c (add_wrappers): Commit the hack which generates
1690 native-to-managed wrappers for methods decorated with the MonoPInvokeCallback
1693 2010-01-29 Zoltan Varga <vargaz@gmail.com>
1695 * mini.h (MONO_INST_FAULT): New instruction flag for loads which can cause
1696 a fault, only used by the LLVM backend.
1698 * ir-emit.h: Add _FAULT variants of the LOAD_MEMBASE macros. Mark
1699 OP_CHECK_THIS with OP_IMPLICIT_EXCEPTION.
1701 * method-to-ir.c: Use the new LOAD_MEMBASE_FAULT opcodes, get rid of the
1702 calls to MONO_EMIT_NULL_CHECK which is automatically done by the new macros.
1704 * mini-llvm.c: Only generate volatile loads from load instructions which have
1705 the MONO_INST_FAULT flag set.
1707 2010-01-29 Zoltan Varga <vargaz@gmail.com>
1709 * unwind.c (mono_unwind_decode_fde): Fix the decoding of the LSDA offset on
1712 2010-01-28 Zoltan Varga <vargaz@gmail.com>
1714 * mini.c (mono_save_seq_point_info): Fix the handling of bblocks without
1715 sequence points. Fixes #571236.
1717 2010-01-28 Zoltan Varga <vargaz@gmail.com>
1719 * debugger-agent.c (mono_debugger_agent_init): Call appdomain_unload at the
1720 end of the appdomain unload process, after assemblies have been unloaded.
1723 2010-01-27 Zoltan Varga <vargaz@gmail.com>
1725 * abcremoval.c (process_block): Fix the if (region) check so abcrem actually
1728 * mini-amd64.c: Make the soft debugger work on platforms without MAP_32BIT.
1731 2010-01-26 Zoltan Varga <vargaz@gmail.com>
1733 * dwarfwriter.c (emit_type): Treat MONO_TYPE_PTR as 'I' not 'I4'.
1735 2010-01-26 Geoff Norton <gnorton@novell.com>
1737 * aot-compiler.c: Fix a logic error introduced when guarding against enums
1738 with struct marshalability.
1740 2010-01-24 Zoltan Varga <vargaz@gmail.com>
1742 * mini.c (mini_method_compile): Improve the processing MONO_VERBOSE_METHOD so
1743 it supports class names as well.
1745 * mini.h (MonoCompile): Add a few flags to control JIT behavior which are
1746 needed by the GC map code.
1748 * mini.c (mini_method_compile): Call a function in mini-gc.c to set the new
1751 * method-to-ir.c (mono_method_to_ir): Emit initialization code for ref variables
1752 if cfg->init_ref_vars is set.
1754 * liveness.c (optimize_initlocals): Disable the initlocals opt for ref vars if
1755 cfg->disable_initlocals_op_refs is set.
1757 * method-to-ir.c (mono_spill_global_vars): Compute more precise live ranges
1758 using liveness info if cfg->compute_precise_live_ranges is set.
1760 * mini-gc.c: Ongoing work. Improve logging and debugging support. Handle
1761 volatile variables correctly. Add comments about the live ranges. Not enabled
1764 2010-01-24 Zoltan Varga <vargaz@gmail.com>
1766 * mini.h (MonoDebugOptions): Add an option to init stack frames by writing
1767 0x2a into them in method prologs.
1769 * mini-amd64.c (mono_arch_emit_prolog): Implement it.
1771 2010-01-22 Zoltan Varga <vargaz@gmail.com>
1773 * mini-llvm-cpp.cpp: Remove uses of dynamic_cast, it no longer works with llvm
1774 classes, since llvm is compiled with -fno-rtti.
1776 * mini.h (COMPILE_SOFT_FLOAT): New macro, similar to COMPILE_LLVM.
1778 * method-to-ir.c ir-emit.h: Use if (COMPILE_SOFT_FLOAT) in a few places since
1779 llvm does not require it.
1781 * aot-runtime.c (load_method): Print the full name of the last aot method.
1783 2010-01-21 Zoltan Varga <vargaz@gmail.com>
1785 * exceptions-amd64.c (mono_arch_notify_pending_exc): Avoid a crash if the
1786 thread has not fully started yet.
1788 2010-01-21 Zoltan Varga <vargaz@gmail.com>
1790 * aot-compiler.c (can_marshal_struct): Allow marshalling enums.
1792 2010-01-21 Miguel de Icaza <miguel@novell.com>
1794 * driver.c: Do not abort if LLVM is not supported, print a
1795 warning and add the information to the Mono JIT information.
1797 2010-01-21 Zoltan Varga <vargaz@gmail.com>
1799 * ir-emit.h (MONO_EMIT_NULL_CHECK): Don't emit an OP_IMPLICIT_EXCEPTION when
1800 using explicit null checks.
1802 2010-01-20 Zoltan Varga <vargaz@gmail.com>
1804 * xdebug.c: New file extracted from aot-compiler.c, containing the XDEBUG
1807 * aot-compiler.c (encode_method_ref): Use mono_marshal_wrapper_info_from_wrapper
1809 (mono_aot_wrapper_name): Remove the special handling of delegate invoke wrappers,
1810 its no longer needed.
1812 * method-to-ir.c (mono_method_to_ir): Fix a warning.
1814 * exceptions-<ARCH>.c: Introduce a MONO_ARCH_HAVE_THROW_EXCEPTION_BY_NAME
1815 define for platforms still using it (s390). Get rid of the
1816 mono_arch_get_throw_exception_by_name () routines on all other platforms.
1818 * exceptions-x86.c: Rework the throw trampolines so there is only one function
1819 which can generate throw/rethrow/corlib trampolines for llvm/not llvm code.
1821 * exceptions-x86.c: Add LLVM specific throw trampolines which doesn't assume
1822 the caller pushed the arguments.
1824 * mini-llvm.c: Enable throwing exceptions on x86.
1826 * mini-posix.c (SIG_HANDLER_SIGNATURE): Avoid
1827 "Thread (nil) may have been prematurely finalized" messages if this is called
1828 on a thread not registered with the runtime.
1830 * mini-exceptions.c (mono_handle_native_sigsegv): Ditto.
1832 2010-01-19 Zoltan Varga <vargaz@gmail.com>
1834 * jit-icalls.c (mono_array_new_3): New jit icall.
1836 * aot-compiler.c aot-runtime.c: Add support for ElementAddr wrappers.
1838 * arrays.cs: Add a test for 3 dimensional arrays.
1840 2010-01-19 Zoltan Varga <vargaz@gmail.com>
1842 * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Emit xdebug info.
1843 (mono_arch_find_jit_info_ext): Disable the popping of arguments when LLVM is
1846 * mini-llvm.c (emit_cond_system_exception): Abort when an implicit exception is
1849 * unwind.c (mono_unwind_decode_fde): Fix an assert on x86.
1851 * mini-x86.h (MONO_CONTEXT_SET_LLVM_EXC_REG): Define this for x86.
1853 * mini-llvm.c: Disable OP_THROW on x86, it doesn't work yet.
1855 2010-01-18 Bill Holmes <billholmes54@gmail.com>
1857 * debugger-agent.c : Changing the PLATFORM_WIN32 preprocessor check to
1858 HOST_WIN32. Also including winsock2. to define struct in_addr.
1860 * mini-amd64.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
1862 * mini-x86.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
1864 Code is contributed under MIT/X11 license.
1866 2010-01-18 Zoltan Varga <vargaz@gmail.com>
1868 * mini.h (MonoCompile): Add 'disable_out_of_line_bblocks' flag.
1870 * branch-opts.c (mono_optimize_branches): Honor the new flag.
1872 * mini.c (mini_method_compile): Set the new flag when running under the
1875 2010-01-18 Zoltan Varga <vargaz@gmail.com>
1877 * mini-gc.c: Change the GC map to use a ref/noref/pin value instead of just
1878 a ref/noref value + a global pin flag, so parts of stack frames can still be
1879 precisely marked even if they include stuff which needs pinning. Improve logging.
1880 Fix many bugs. Not enabled yet.
1882 * gc-test.cs: Add a few tests.
1884 * liveness.c (mono_analyze_liveness): Make the debug output controllable by
1885 the normal -v options. Avoid propagating liveness information through bblocks
1886 which end with a NOT_REACHED opcode.
1888 * mini.c (mono_jit_compile_method_inner): Avoid reading cfg->prof_options
1889 after cfg has been freed.
1891 2010-01-17 Zoltan Varga <vargaz@gmail.com>
1893 * branch-opts.c (mono_branch_optimize_exception_target): Stop the optimization
1894 if a clause is skipped because it uses the exception object, since it could
1895 have caught the exception.
1897 * exceptions.cs: Add a test.
1899 2010-01-16 Zoltan Varga <vargaz@gmail.com>
1901 * mini-trampolines.c (mono_create_static_rgctx_trampoline): Add an assert.
1903 * aot-runtime.c (mono_aot_get_method): Handle ftnptr's correctly for the
1904 ICollection<T> wrappers.
1906 2010-01-16 Zoltan Varga <vargaz@gmail.com>
1908 * debugger-agent.c (decode_value): Fix the decoding of I/U/PTR.
1910 2010-01-16 Zoltan Varga <vargaz@gmail.com>
1912 * mini-amd64.c (emit_call_body): Always use near calls when AOTing even if
1913 NOMAP32BIT or optimize_for_xen is set.
1915 2010-01-16 Zoltan Varga <vargaz@gmail.com>
1917 * aot-compiler.c aot-runtime.c: Get rid of mono_aot_str_hash (), use
1918 mono_metadata_str_hash () instead.
1920 2010-01-15 Zoltan Varga <vargaz@gmail.com>
1922 * ir-emit.h (MONO_EMIT_NEW_ICOMPARE_IMM): Use sizeof (mgreg_t) instead of
1925 * unwind.c (mono_unwind_frame): Use mgreg_t instead of gssize.
1927 2010-01-15 Zoltan Varga <vargaz@gmail.com>
1929 * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): Emit an explicit null check if the
1932 * mini-ppc.c (mono_arch_emit_exceptions): Compute the size of the exception
1933 throwing code correctly.
1935 * mini.h (MONO_AOT_FILE_VERSION): Bump this because of the IMT hashing changes.
1937 2010-01-15 Zoltan Varga <vargaz@gmail.com>
1939 * aot-runtime.c (mono_aot_plt_resolve): Reenable the previous assert for
1940 ftnptrs created by us, handle RGCTX_FETCH correctly.
1941 (mono_aot_get_lazy_fetch_trampoline): Add an ftnptr.
1943 * mini-trampolines.c (mono_create_generic_class_init_trampoline): Remove the
1944 ftnptr added by mono_aot_get_named_code ().
1946 2010-01-14 Zoltan Varga <vargaz@gmail.com>
1948 * mini-arm.c: Fix a few LLVM problems.
1950 * mini-llvm.c (simd_class_to_llvm_type): Fix compilation on !x86/amd64.
1952 2010-01-13 Mark Probst <mark.probst@gmail.com>
1954 * method-to-ir.c (mini_emit_stobj): Use EMIT_NEW_CLASSCONST when
1957 Wed Jan 13 15:54:53 CET 2010 Paolo Molaro <lupus@ximian.com>
1959 * jit.h, method-to-ir.c: added ability to set the policy for
1960 inserting breakpoints from the break IL instruction or the
1961 Debugger.Break () API call.
1963 2010-01-13 Zoltan Varga <vargaz@gmail.com>
1965 * aot-runtime.c (load_aot_module): Add more comments to explain why referenced
1966 assemblies need to be eagerly loaded.
1968 2010-01-12 Zoltan Varga <vargaz@gmail.com>
1970 * dwarfwriter.c (emit_line_number_info): Fix the eglib case so it doesn't crash.
1972 2010-01-11 Zoltan Varga <vargaz@gmail.com>
1974 * debugger-agent.c (mono_debugger_agent_parse_options): Allow onthrow without
1975 an argument which matches any exception.
1977 2010-01-10 Zoltan Varga <vargaz@gmail.com>
1979 * method-to-ir.c (mono_emit_method_call_full): Avoid the virt->nonvirt
1980 optimization if the called method is gshared and marshalbyref, since gshared
1981 methods can' have wrappers. Fixes #569390.
1983 * generics.cs: Add a test.
1985 2010-01-10 Zoltan Varga <vargaz@gmail.com>
1987 * mini-exceptions.c (mono_print_thread_dump_from_ctx): New helper function
1990 2010-01-10 Zoltan Varga <vargaz@gmail.com>
1992 * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
1994 2010-01-09 Zoltan Varga <vargaz@gmail.com>
1996 * debugger-agent.c (transport_connect): comment out freeaddrinfo calls under win32,
1997 since it is not supported in win2000.
1999 2010-01-08 Zoltan Varga <vargaz@gmail.com>
2001 * aot-runtime.c (load_image): Add a SET_ERROR argument to set the loader
2002 error if loading an assembly fails.
2003 (mono_aot_plt_resolve): Return NULL instead of asserting if loading fails.
2005 * mini-trampolines.c (mono_aot_plt_trampoline): Throw a pending loader error
2008 * aot-runtime.c (decode_exception_debug_info): Set jinfo->from_llvm for LLVM
2011 * mini-llvm-cpp.cpp: Remove the unused ctx variable.
2013 * mini-llvm.c (mono_llvm_emit_method): Add some comments about why aot+clauses
2014 is not supported yet.
2016 * unwind.c (DW_EH_PE_absptr): Add more DW_EH_PE_ constants.
2018 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2020 * method-to-ir.c: All types with variant arguments must fallback to the
2021 slow path. This makes cast of variant delegates work.
2023 * mini-trampolines.c (mono_get_vcall_slot_addr): Add new variance_used out
2024 argument that is set to TRUE is the returned vtable slot is for a variant
2025 interface. Changed a g_print + g_assert_not_reached to a g_error.
2027 * mini-trampilines.c (common_call_trampoline): Handle variant interfaces in
2028 a similar fashion of generic virtual methods.
2030 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2032 * helpers.c (mono_disassemble_code): Fix a g_hash_table warning
2035 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Convert a given
2036 method using a variance aware function.
2038 * mini-x86.c: Add support for dumping IMT thunks if DEBUG_IMT is defined.
2040 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2042 * method-to-ir.c (mono_method_to_ir): Casts to variant interfaces
2043 do an icall for now.
2045 2010-01-07 Zoltan Varga <vargaz@gmail.com>
2047 * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add an ugly hack to fix #564695.
2048 If LLVM decides to set the code model to Large, reset it to Default.
2050 2010-01-07 Zoltan Varga <vargaz@gmail.com>
2052 * aot-compiler.c (mono_xdebug_flush): Export it so it is present in
2053 stripped binaries as well.
2055 2010-01-07 Zoltan Varga <vargaz@gmail.com>
2057 * mini-trampolines.c (common_call_trampoline): Add an rgctx trampoline if a shared
2058 method is called from LLVM compiled code, as that code can't pass an rgctx arg.
2060 * mini-llvm.c (mono_llvm_emit_method): Enable calls to methods needing an rgctx
2063 2010-01-06 Zoltan Varga <vargaz@gmail.com>
2065 * mini.c (mini_method_compile): Extract the JIT info creation code into a
2068 * mini-llvm.c (mono_llvm_emit_method): Pass the info in MonoExceptionClause
2069 as the type info to llvm.eh.selector.
2070 (exception_cb): Use the type info for filling out some fields of
2071 MonoJitExceptionInfo like the flags and the exception class. This is needed
2072 because the LLVM produced exception handling clauses might not match the original
2073 IL clauses, i.e. there might be more than one LLVM clause for one IL clause.
2075 * unwind.c (mono_unwind_decode_fde): Extract the LSDA decoding code into a
2076 separate function. Add an extra argument which returns the type infos
2077 corresponding to the exception clauses.
2079 * mini.c (mini_method_compile): Enable LLVM compilation of methods having
2080 exception handling clauses.
2082 2010-01-04 Zoltan Varga <vargaz@gmail.com>
2084 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
2085 mono_method_get_vtable_slot () instead of accessing imt_method->slot directly,
2088 2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
2090 * mini.c (mono_compile_is_broken): Skip methods from serialization's
2093 2010-01-04 Zoltan Varga <vargaz@gmail.com>
2095 * mini.c (mini_method_compile): Fix a few memory leaks introduced by the
2098 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
2100 * mini.c (mini_method_compile): Verify the method before calling
2101 mono_compile_create_vars as this might crash since it uses method
2106 2010-01-04 Zoltan Varga <vargaz@gmail.com>
2108 * method-to-ir.c (mono_method_to_ir): Avoid calling mono_class_vtable () in
2109 one case if AOTing, since the class might not be a concrete class.
2111 2010-01-03 Zoltan Varga <vargaz@gmail.com>
2113 * mini-codegen.c abcremoval.c: Remove the duplicate g_slist_append_mempool
2114 functions which are now defined in mempool-internals.h.
2116 * mini.c (mini_free_jit_domain_info): Free the seq point hash tables.
2118 * mini-llvm.c (mono_llvm_emit_method): Handle OP_ABS.
2120 2009-12-30 Rodrigo Kumpera <rkumpera@novell.com>
2124 * mini-*.c: Properly handle generic enums.
2128 2009-12-28 Zoltan Varga <vargaz@gmail.com>
2130 * method-to-ir.c (mono_method_to_ir): Handle the failure of mono_class_vtable ()
2131 in a few more places.
2133 2009-12-27 Zoltan Varga <vargaz@gmail.com>
2135 * aot-compiler.c (add_wrappers): Don't use dyn runtime invoke for methods with
2136 nullable parameters. Fixes #567351.
2138 2009-12-26 Rodrigo Kumpera <rkumpera@novell.com>
2140 * mini-trampolines.c (common_call_trampoline): Add assert for NULL resolved generic method.
2142 2009-12-26 Zoltan Varga <vargaz@gmail.com>
2144 * mini-trampolines.c: Use mono_arch_get_this_arg_from_call () to avoid the slow
2145 mono_get_generic_context_from_code () call.
2147 * mini-<ARCH>.c: Get rid of mono_arch_find_this_arg (), it is no longer used.
2149 2009-12-25 Zoltan Varga <vargaz@gmail.com>
2151 * aot-runtime.c (decode_klass_ref): Don't call mono_class_init (), its not
2154 2009-12-24 Sebastien Pouliot <sebastien@ximian.com>
2156 * method-to-ir.c (mono_method_to_ir): Avoid SIGSEGV when
2157 mono_method_get_signature returns NULL. Fix #567084
2159 2009-12-25 Zoltan Varga <vargaz@gmail.com>
2161 * aot-runtime.c (find_extra_method): Call mono_aot_wrapper_name only once,
2162 instead of once for each module.
2164 2009-12-22 Zoltan Varga <vargaz@gmail.com>
2166 * debugger-agent.c (ss_start): Implement step over for the last sequence
2169 * mini.c (mono_save_seq_point_info): Don't link sequence points which don't
2170 have the STEP_LOC flag set.
2172 * aot-runtime.c (decode_klass_ref): Avoid a crash if a decode_klass_ref () call
2173 fails. Fixes #566689.
2175 2009-12-21 Zoltan Varga <vargaz@gmail.com>
2177 * mini.c (mono_add_seq_point): New helper function.
2178 (mono_save_seq_point_info): New function to save sequence point info, extracted
2179 from mini_method_compile ().
2181 * mini-<ARCH>.c: Call mono_add_seq_point to remember sequence points.
2183 * mini.h (MonoSeqPointInfo): New structure containing information about
2184 the sequence points of a JITted method.
2185 (MonoBasicBlock): Add 'seq_points' and 'last_seq_point' fields. Remove unused
2188 * mini.c debugger-agent.c aot-compiler.c aot-runtime.c: Change the way sequence
2189 point information is stored, use a MonoSeqPointInfo structure instead of a
2190 GPtrArray. For each seq point, compute a list of successor seq points.
2192 * debugger-agent.c: Use the successor list to implement step-over more
2193 efficiently: instead of single stepping until a different line/IL offset is
2194 reached, place breakpoints into all successor seq points.
2196 * mini.h: Bump AOT file format version.
2198 2009-12-21 Zoltan Varga <vargaz@gmail.com>
2200 * Makefile.am (AM_CFLAGS): Include LLVM_CFLAGS.
2202 * mini-llvm.c: Avoid defining the __STDC_... macros if already defined.
2204 2009-12-21 Zoltan Varga <vargaz@gmail.com>
2206 * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): Fix the cross-compiler
2209 2009-12-18 Zoltan Varga <vargaz@gmail.com>
2211 * mini-x86.c (mono_arch_get_argument_info): Allocate memory for CallInfo using
2212 alloca as g_malloc is not signal safe.
2214 2009-12-18 Zoltan Varga <vargaz@gmail.com>
2216 * tramp-x86.c (mono_arch_patch_callsite): Fix the call to
2217 VALGRIND_DISCARD_TRANSLATIONS.
2219 * *.c: Include mono/utils/memcheck.h, and remove #ifdef HAVE_VALGRIND_MEMCHECK_H
2220 checks, they are no longer needed.
2222 * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): New helper function to set
2223 a function into a sigctx which can handle function pointers.
2225 * mini-ppc.c: Implement soft debugger support on ppc64.
2227 * mini-ppc.c: Implement soft debugger support.
2229 2009-12-17 Zoltan Varga <vargaz@gmail.com>
2231 * mini-llvm.c: Handle OP_LADD_OVF_UN. Place all alloca's into the entry bb.
2233 2009-12-17 Marek Habersack <mhabersack@novell.com>
2235 * mini.c (mono_get_runtime_build_info): include Mono version in
2238 * driver.c (mono_main): VERSION is now included in the string
2239 returned from mono_get_runtime_build_info()
2241 2009-12-17 Zoltan Varga <vargaz@gmail.com>
2243 * method-to-ir.c (mono_method_to_ir): Add support for CALLI with unmanaged
2244 signatures. Fixes #565143.
2246 * jit-icalls.c (mono_get_native_calli_wrapper): New JIT icall.
2248 2009-12-16 Zoltan Varga <vargaz@gmail.com>
2250 * aot-compiler.c (arch_emit_autoreg): Align code to 4 in the ppc case.
2252 2009-12-16 Rodrigo Kumpera <rkumpera@novell.com>
2254 * mini-x86.h: Forgot to add a 0x to MONO_ARCH_MAX_FRAME_SIZE define
2255 making max stack 10x smaller.
2257 2009-12-16 Zoltan Varga <vargaz@gmail.com>
2259 * mini.c (mono_resolve_patch_target): Comment out an assert which could be hit.
2261 2009-12-15 Rodrigo Kumpera <rkumpera@novell.com>
2263 * method-to-ir.c (mini_emit_memcpy): Assert if size is too big.
2265 2009-12-15 Rodrigo Kumpera <rkumpera@novell.com>
2267 * mini-x86.c (mono_arch_allocate_vars): Fail compilation if the frame size is
2268 bigger than MONO_ARCH_MAX_FRAME_SIZE.
2270 * mini-x86.c (mono_arch_emit_prolog): Handle huge frames.
2272 * mini-x86.h: Define MONO_ARCH_MAX_FRAME_SIZE to be 1Mb.
2274 * mini-amd64.c / mini-amd64.h: Same fixes as of above.
2276 * mini.c (mini_method_compile): Check if mono_arch_allocate_vars failed
2279 2009-12-14 Miguel de Icaza <miguel@novell.com>
2281 * method-to-ir.c (mono_method_to_ir): CEE_UNUSUED opcodes now
2282 raise an invalid program exception.
2284 For other opcodes that we might not handle use a g_warning and
2285 raise the exception. Beats termination.
2289 2009-12-14 Zoltan Varga <vargaz@gmail.com>
2291 * method-to-ir.c (mono_emit_rgctx_method_call_full): Fix a warning.
2293 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix the LLVM support
2294 by merging the LLVM and !MAP_32BIT cases.
2296 2009-12-13 Jonathan Chambers <joncham@gmail.com>
2298 * debugger-agent.c (mono_debugger_agent_thread_interrupt): Handle a NULL
2299 sigctx being passed in, as we have no CONTEXT available in the APC.
2301 (mono_debugger_agent_cleanup): Use explicit cond wait implementation
2304 Code contributed under MIT/X11 license.
2306 2009-12-13 Zoltan Varga <vargaz@gmail.com>
2308 * method-to-ir.c mini-llvm.c: Fix support for monitor enter/exit trampolines
2309 in the LLVM backend on AMD64.
2311 * aot-runtime.c (decode_eh_frame): Initialize the clauses from the info in the
2314 * unwind.c (mono_unwind_decode_fde): Implement decoding of a couple more formats.
2316 * mini-llvm.c: Export mono_personality for AOT.
2318 * mini.c (mini_method_compile): Fix some problems with llvm+aot+clauses.
2320 * mini-ops.h (OP_IMPLICIT_EXCEPTION): New opcode marking the place where an
2321 implicit exception can occur.
2323 * ir-emit.h (MONO_EMIT_NEW_IMPLICIT_EXCEPTION): New macro to emit an
2324 OP_IMPLICIT_EXCEPTION instruction.
2326 * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): New macro.
2328 * method-to-ir.c: Use MONO_EMIT_NEW_CHECK_THIS in a few places.
2330 * mini-llvm.c: Handle OP_IMPLICIT_EXCEPTION by disabling llvm if it occurs
2331 inside a protected block.
2333 * mini-llvm.c: Revert the last change, the signature of monitor entry/exit
2334 trampolines doesn't include the argument.
2336 * mini-llvm.c (mono_llvm_emit_method): Enable calls to monitor entry/exit
2337 trampolines on amd64.
2339 * mini-amd64.h (MONO_ARCH_MONITOR_OBJECT_REG): Use MONO_AMD64_ARG_REG1 instead
2342 * mini.c (mini_method_compile): Add some comments as to why LLVM is currently
2343 disabled for methods with clauses.
2345 * mini-llvm.c: Enable support for catch clauses.
2347 * mini-exceptions.c (mono_resume_unwind): New function to resume unwinding at the
2348 end of an LLVM compiled finally clause.
2349 (mono_handle_exception_internal): Save the exception handling state in TLS
2350 before calling an LLVM compiled finally clause, so mono_resume_unwind () can
2351 resume unwinding from that point.
2353 * unwind.c (mono_unwind_get_ops_from_fde): Rename this to
2354 mono_unwind_decode_fde, decode the Language Specific Data Area (LSDA) too,
2355 to obtain the addresses of the exception handling regions.
2357 * mini-llvm.c: Add beginnings of support for exception handling, currently only
2358 finally clauses are supported.
2360 * mini.c (mini_method_compile): Add support for LLVM code with exception
2363 2009-12-12 Zoltan Varga <vargaz@gmail.com>
2365 * mini-llvm.c (mono_llvm_emit_method): Allocate the 'pindexes' array with the
2368 2009-12-12 Zoltan Varga <vargaz@gmail.com>
2370 * debugger-agent.c: Encode the this argument of vtype methods as a struct, not
2371 as a primitive type.
2373 2009-12-11 Zoltan Varga <vargaz@gmail.com>
2375 * driver.c: Applied patch from Matt McClellan (matt@mc-c.net). Add a check
2376 for 2 parameter sched_setaffinity in older glibc versions. Fixes
2379 2009-12-11 Marek Habersack <mhabersack@novell.com>
2381 * method-to-ir.c (mini_redirect_call): do not redirect the
2382 InternalAllocateStr internal call if string profiling is enabled.
2384 2009-12-10 Zoltan Varga <vargaz@gmail.com>
2386 * aot-compiler.c (add_wrappers): Avoid generating synchronized wrappers for
2389 * unwind.h: Rename this to mini-unwind.h to avoid conflicts with the gcc
2390 unwind.h header file.
2392 * tramp-x86.c (mono_arch_patch_callsite): Patch the code when using valgrind,
2393 newer valgrind versions seems to handle this fine.
2395 2009-12-09 Zoltan Varga <vargaz@gmail.com>
2397 * debugger-agent.c (start_runtime_invoke): Fix a crash if this is called
2398 on the debugger thread.
2400 2009-12-08 Zoltan Varga <vargaz@gmail.com>
2402 * mini-llvm.c (mono_llvm_emit_method): Add more SIMD opcodes.
2404 * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
2406 * mini-codegen.c (mono_local_regalloc): Allow non-call opcodes with cloc:c.
2408 * cpu-<ARCH>.md: Make call_handler clob:c.
2410 * mini.c: Reenable SSA for methods with clauses.
2412 * mini.c (mini_method_compile): Disable SSA for now for methods with clauses,
2413 as it causes failures on x86.
2415 2009-12-08 Sebastien Pouliot <sebastien@ximian.com>
2417 * driver.c: Fail gracefully with --compile-all if mono_method_signature
2418 returns NULL (e.g. a bad assembly).
2420 2009-12-08 Geoff Norton <gnorton@novell.com>
2422 * debugger-agent.c: Refactor the mono_runtime_invoke guarding against
2423 stepping out into native code. There were issues with nested invokes
2426 2009-12-07 Zoltan Varga <vargaz@gmail.com>
2428 * mini.c (mini_method_compile): Do the disable_llvm checks early
2429 and avoid the LLVM compile pass if the checks fail.
2431 * mini.c ssa.c abcremoval.c: Enable SSA for methods with exception clauses.
2433 * mini-llvm.c: Put our methods/globals into the 'llvm.used' array, so the
2434 LLVM optimizations don't try to remove them.
2436 * aot-compiler.c (emit_llvm_file): Save the result of opt into a
2437 different file so the original remains.
2439 2009-12-06 Zoltan Varga <vargaz@gmail.com>
2441 * mini-llvm.c mini.c: Fix alignment issues with SIMD vars.
2443 * aot-runtime.c (decode_arm_exidx): Handle most descriptors created by gas.
2445 * aot-runtime.c (decode_arm_exidx): Refactor this into two functions, add
2446 support for non-inline unwind descriptors.
2448 2009-12-07 Geoff Norton <gnorton@novell.com>
2450 * debugger-agent.c: Darwin can colesce signals, so we need to handle
2451 the interrupt_count slightly differently. Native threads were never
2454 2009-12-05 Zoltan Varga <vargaz@gmail.com>
2456 * aot-runtime.c (decode_arm_exidx): New function to initialize a MonoJitInfo
2457 based on the contents of the ARM .exidx section. Not yet used since llvm doesn't
2458 yet generate this info.
2460 * mini-llvm.c: Fix the conversion of call results if they are unsigned.
2462 * debugger-agent.c (buffer_add_value): Treat I/U as a valuetype, so the
2463 client can distinguish between intptrs and longs.
2465 2009-12-05 Zoltan Varga <vargaz@gmail.com>
2467 * aot-compiler.c (emit_trampoline): Emit the trampoline info into the global
2470 * aot-runtime.c (load_function): Update after the change above.
2472 * mini.h: Bump AOT file format version.
2474 * method-to-ir.c (mono_method_to_ir): Disallow the delegate optimization
2475 if the delegate class is dynamic.
2477 * method-to-ir.c (handle_delegate_ctor): Allow the method_code optimization
2478 in gshared code too using the new rgctx info type
2479 MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2481 2009-12-04 Geoff Norton <gnorton@novell.com>
2483 * debugger-agent.c: When doing a func-eval invoke on a suspended runtime,
2484 we need to track the original suspend count so the thread properly
2485 wakes up in resume_thread.
2487 2009-12-04 Zoltan Varga <vargaz@gmail.com>
2489 * method-to-ir.c (handle_delegate_ctor): Add support for using this from gshared
2492 * generics.cs: Add a test.
2494 * method-to-ir.c (emit_get_rgctx_method): Make this work even if context_used
2495 is 0. Simplify a lot of code using this.
2497 * mini-trampolines.c (mono_delegate_trampoline): Call
2498 mono_create_static_rgctx_trampoline () before saving the final address in
2499 delegate->method_code, to avoid calling it each time a delegate is first called.
2501 * method-to-ir.c (mono_method_to_ir): Allow fast delegate creation for methods
2502 which need static rgctx trampolines.
2504 * mini-trampolines.c (mono_create_static_rgctx_trampoline): Use a cache
2505 keyed on the method+addr pair, since addr could be either the method addr or
2506 an unbox trampoline in the AOT case. Fixes #560246.
2508 2009-12-03 Zoltan Varga <vargaz@gmail.com>
2510 * mini.c (mini_method_compile): Call handle_exception_clauses () in the same
2511 place it was called before too.
2513 2009-12-03 Zoltan Varga <vargaz@gmail.com>
2515 * mini.c (mono_jit_runtime_invoke): Avoid the call to mono_class_setup_vtable ()
2516 if no security manager is present, to speed up the AOT case. Call
2517 mono_class_vtable () full with raise_on_error == TRUE instead.
2519 2009-12-03 Zoltan Varga <vargaz@gmail.com>
2521 * mini.c (mini_method_compile): Call handle_exception_clauses earlier so
2522 the local optimization passes can take its result into account. Fixes
2525 * exceptions.cs: Add a test.
2527 2009-01-24 Steven Munroe <munroesj@us.ibm.com>
2529 This patch is contributed under the terms of the MIT/X11 license
2531 * cpu-ppc64.md (load_memindex): Add loadi8_memindex.
2533 2009-12-03 Zoltan Varga <vargaz@gmail.com>
2535 * mini.h (MonoInst): Remove unused 'ssa_op' field.
2537 * debugger-agent.c: Rework the handling of stack traces of running threads to
2538 avoid crashes if compute_frames () tries to walk the stack of running thread.
2540 * mini.c (mono_print_method_from_ip): Use mini_jit_info_table_find.
2542 * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): Set frame->lmf.
2544 * mini.h (StackFrameInfo): Add an 'lmf' field.
2546 2009-12-02 Zoltan Varga <vargaz@gmail.com>
2548 * debugger-agent.c (suspend_current): Always set really_suspended.
2550 * debugger-agent.c (clear_event_request): Clear method entry/exit requests too.
2552 * exceptions-x86.c (mono_arch_get_restore_context): Restore EAX too.
2554 2009-12-01 Zoltan Varga <vargaz@gmail.com>
2556 * debugger-agent.c (vm_commands): Don't allow invokes on threads which are not
2559 2009-12-01 Zoltan Varga <vargaz@gmail.com>
2561 * cpu-ppc64.md (store_memindex): Add storei8_memindex.
2563 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
2565 * mini-trampolines.c: Fix MSVC build.
2567 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
2569 * mini-trampolines.c: Check for mono_method_get_vtable_slot failures.
2571 2009-11-30 Zoltan Varga <vargaz@gmail.com>
2573 * mini-arm.c (mono_arch_lowering_pass): Fix an assert which is hit when
2574 the instruction following an OP_FCOMPARE is optimized away.
2576 2009-11-30 Zoltan Varga <vargaz@gmail.com>
2578 * aot-compiler.c (arch_emit_autoreg): Extract the auto-registration code from
2579 emit_autoreg () into this arch-specific function.
2581 * aot-compiler.c (emit_exception_debug_info): Don't emit the length of the
2582 code, it is no longer needed.
2584 * aot-runtime.c (decode_exception_debug_info): Don't read the code length.
2586 * mini.h: Bump AOT file format version.
2588 * aot-runtime.c (mono_aot_find_jit_info): Compute the length of the method
2589 using the sorted_code_offsets array, instead of reading it from the
2590 exception debug info.
2591 (load_method): Call mono_aot_find_jit_info instead of
2592 decode_exception_debug_info ().
2594 * aot-compiler.c (emit_exception_debug_info): Emit whenever the method was
2595 LLVM compiled as a flag.
2597 2009-11-29 Zoltan Varga <vargaz@gmail.com>
2599 * debugger-agent.c (resume_thread): Fix a warning.
2601 * aot-compiler.c: Add an option to set the number of static rgctx trampolines
2604 2009-11-28 Zoltan Varga <vargaz@gmail.com>
2606 * aot-compiler.c aot-runtime.c: Get rid of a few global symbols, move their
2607 contents to MonoAotFileInfo.
2609 2009-11-27 Zoltan Varga <vargaz@gmail.com>
2611 * aot-compiler.c aot-runtime.c: Reorganize the AOT file format once again.
2612 Put all binary data into a giant blob, similarly to the way .net assemblies
2613 store binary data. Emit offset tables in a compact form to reduce their size.
2615 * mini.h: Bump AOT file format version.
2617 * aot-compiler.c (emit_globals_table): Use temp_prefix instead of .L in a few
2620 * aot-compiler.c (emit_globals_table): Emit a hash table for the globals, to
2621 avoid linear searches at runtime.
2623 * aot-runtime.c (find_symbol): Update this to use the hash.
2625 * mini.h: Bump AOT file format version.
2627 2009-11-26 Zoltan Varga <vargaz@gmail.com>
2629 * aot-compiler.c (emit_klass_info): Save whenever the class has a generic
2632 * aot-runtime.c (decode_cached_class_info): Set the is_generic_container field
2635 * aot-compiler.c (mono_compile_assembly): Add a 'stats' option to print out
2636 the distribution of got slot types.
2638 * mini.h (MonoDebugOptions): Add 'explicit_null_checks' option.
2640 * method-to-ir.c: Add support for generating explicit null checks.
2642 2009-11-25 Zoltan Varga <vargaz@gmail.com>
2644 * debugger-agent.c (vm_commands): Implement EXIT by invoking Environment.Exit ()
2645 on a random thread if possible.
2647 * aot-runtime.c (mono_aot_plt_resolve): Clean up the handling of function
2648 descriptors a bit, add comments, handle RGCTX_FETCH/GENERIC_CLASS_INIT_TRAMPOLINE
2651 * exceptions-ppc.c (mono_arch_find_jit_info_ext): Use mgreg_t as the type of
2652 regs. Pass the real size of the regs array to mono_unwind_frame ().
2654 * unwind.c (mono_unwind_frame): Remove an incorrect assert, add more correct
2657 2009-11-24 Geoff Norton <gnorton@novell.com>
2659 * mini-darwin.c: Work around apple bug rdar://7209349 See
2660 http://openradar.appspot.com/7209349 for details. Synopsis,
2661 CoreFoundation SIGTRAP's if you dlopen it off the main thread if its
2662 never been initialized before.
2664 2009-11-24 Zoltan Varga <vargaz@gmail.com>
2666 * tramp-arm.c: Use blx instead of mov pc, reg to improve support for thumb.
2668 * mini-arm.c (mono_arm_thumb_supported): New helper function.
2670 2009-11-24 Zoltan Varga <vargaz@gmail.com>
2672 * cfold.c (mono_constant_fold_ins): Fix a problem in the previous change,
2673 OP_SHL_IMM is not 32 bit.
2675 2009-11-24 Zoltan Varga <vargaz@gmail.com>
2677 * aot-compiler.c (encode_patch): Fix the encoding of R8 on big-endian systems.
2679 2009-11-24 Zoltan Varga <vargaz@gmail.com>
2681 * aot-compiler.c: Avoid infinite recursion when generic virtual recursion is
2684 * debugger-agent.c (resume_vm): Signal the suspend_cond even if suspend_count
2685 > 0 since some threads can resume if their resume_count is > 0.
2686 (invoke_method): Avoid reading freed memory.
2688 * debugger-agent.c (process_suspend): Extract the suspend code from
2689 process_single_step_inner () to a separate function. Rework the code to prevent
2690 races between this function and thread interrupts.
2692 * debugger-agent.c (suspend_current): Check the resume_count field instead
2693 of resume_one so suspends+resumes during single threaded invokes work
2696 2009-11-23 Zoltan Varga <vargaz@gmail.com>
2698 * aot-compiler.c (emit_llvm_file): Enable some llvm optimizations which seem
2699 to make the generated code smaller.
2701 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Add a code
2702 sequence generated by recent LLVM versions.
2704 * mini-llvm.c: Add support for a few simple cases which weren't supported
2707 * mini-trampolines.c (mono_magic_trampoline): Don't call
2708 mono_arch_get_vcall_slot () when llvm is enabled.
2710 * aot-compiler.c (emit_llvm_file): Add code to run the 'opt' llvm tool.
2712 * mini-trampolines.c (mono_magic_trampoline): Extract the bulk of this function
2713 into a new function called common_call_trampoline () which is used by the
2714 llvm vcall trampoline as well.
2716 * debugger-agent.c: Implement single threaded invokes.
2718 * debugger-agent.c: Revert change which broke the agent on linux.
2720 * method-to-ir.c (inline_method): Prevent infinite recursion. Fixes
2723 * generics.cs: Add a test.
2725 2009-11-22 Zoltan Varga <vargaz@gmail.com>
2727 * debugger-agent.c: Fix the cygwin build.
2729 2009-11-21 Zoltan Varga <vargaz@gmail.com>
2731 * cprop.c: Remove this unused file.
2733 2009-11-21 Zoltan Varga <vargaz@gmail.com>
2735 * cfold.c (mono_constant_fold_ins): Fix constant folding of shr_imm. Fixes
2738 * basic.cs: Add a test.
2740 2009-11-21 Zoltan Varga <vargaz@gmail.com>
2742 * method-to-ir.c (mono_method_to_ir): Use mono_use_llvm instead of ENABLE_LLVM
2745 2009-11-20 Zoltan Varga <vargaz@gmail.com>
2747 * mini.c mini-trampolines.c driver.c: Add a 'mono_use_llvm' flag to control
2748 whenever the runtime uses LLVM code. Add a '--llvm' command line option to set
2749 it. Use this flag to control llvm related code paths instead of #ifdef
2750 ENABLE_LLVM, so a runtime configured without --enable-llvm can use LLVM compiled
2753 * aot-runtime.c aot-compiler.c: Add a 'flag' field to MonoAotFileInfo.
2755 * mini.h: Bump AOT file format version.
2757 * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline_full): These
2758 receive their argument in MONO_ARCH_VTABLE_REG, not in the first argument reg.
2760 * debugger-agent.c (create_event_list): Fix a crash if an empty assembly list
2761 was used as an assembly filter.
2763 2009-11-19 Zoltan Varga <vargaz@gmail.com>
2765 * unwind.c: Fix support for ppc.
2767 * exceptions-ppc.c (mono_arch_find_jit_info): Change this to use dwarf frame
2768 unwind info. Change to the mono_arch_find_jit_info_ext () interface.
2770 2009-11-19 Zoltan Varga <vargaz@gmail.com>
2772 * mini-ppc.c (mono_arch_emit_prolog): Fix a copy-paste error to fix the ppc64
2774 (mono_arch_cpu_init): Don't set cpu_hw_flags to 0 at the end, this was somehow
2775 added by the ps3 changes.
2777 2009-11-19 Zoltan Varga <vargaz@gmail.com>
2779 * mini-gc.c: Resurrect this, so at least it compiles.
2781 * debugger-agent.c (assembly_commands): Implement GET_NAME command.
2783 2009-11-18 Zoltan Varga <vargaz@gmail.com>
2785 * debugger-agent.c (mono_debugger_agent_handle_exception): Pass a MonoJitInfo to
2786 create_event_list () so assembly filters can be used.
2788 * exceptions-ppc.c (mono_arch_find_jit_info): Fix the restoration of registers
2791 2009-11-17 Zoltan Varga <vargaz@gmail.com>
2793 * debugger-agent.c (mono_debugger_agent_breakpoint_hit): Fix a warning.
2794 (mono_debugger_agent_thread_interrupt): Make this return FALSE if the agent
2797 * aot-compiler.c (add_generic_instances): Emit instances of common generic
2798 classes for char/bool too.
2800 * debugger-agent.c (DebuggerTlsData): Honor the DISABLE_SOFT_DEBUG option.
2802 * debugger-agent.c (DebuggerTlsData): Add a 'really_suspended' flag, not yet
2805 * debugger-agent.c: Add some definitions to make backporting to 2.6 easier.
2808 2009-11-15 Andreas Faerber <andreas.faerber@web.de>
2810 * debugger-agent.c (mono_debugger_agent_thread_interrupt): Signature fix.
2812 Code contributed under MIT/X11 license.
2814 2009-11-14 Zoltan Varga <vargaz@gmail.com>
2816 (mono_debugger_agent_thread_interrupt): Save the context so stacktraces for
2817 threads in native code work.
2819 * debugger-agent.c: Pass the 'flags' argument to VM_INVOKE_METHOD earlier in
2820 the parameter list, so it can be acted upon by vm_commands (). Bump protocol
2823 2009-11-13 Jonathan Chambers <joncham@gmail.com>
2825 * debugger-agent.c: Implementation for Windows platform.
2827 * mini-x86.c: Add support for Windows. Use mono-* synchronization
2828 primitives. Use SEH to implement breakpoints and single stepping.
2830 * mini-x86.h: Enable soft debugger on Windows.
2832 Code contributed under MIT/X11 license.
2834 2009-11-13 Zoltan Varga <vargaz@gmail.com>
2836 * mini-amd64.c (emit_call_body): Disable usage of near calls when running
2837 under XEN. Fixes #522894.
2839 * patch-info.h: Add LLVM_IMT_TRAMPOLINE.
2841 * mini-llvm.c aot-compiler.c aot-runtime.c mini.c: Add support for making
2842 interface calls in LLVM AOT code.
2844 * aot-compiler.c mini-llvm.c: Abort llvm compilation if a non-encodable patch
2847 * mini-llvm.c: Add support for OP_VPHI.
2849 * objects.cs: Add a test.
2851 2009-11-13 Zoltan Varga <vargaz@gmail.com>
2853 * debugger-agent.c (mono_debugger_agent_single_step_event): Avoid a crash if
2854 this is called on the debugger thread.
2856 2009-11-12 Zoltan Varga <vargaz@gmail.com>
2858 * mini-llvm.c: Add soft-float support.
2860 * method-to-ir.c (mono_decompose_soft_float): Restart after decomposing an
2861 FCALL which returns an R4.
2863 * driver.c (mono_main): Add a missing '\n'.
2865 * mini-trampolines.c (mono_create_llvm_imt_trampoline): Fix the build on
2866 platforms which doesn't support the LLVM IMT trampoline.
2868 2009-11-11 Zoltan Varga <vargaz@gmail.com>
2870 * mini-llvm.c (mono_llvm_emit_method): Fix LOCALLOC.
2872 * mini-llvm-cpp.cpp: Update to latest LLVM SVN.
2874 * mini-llvm.c (mono_llvm_emit_method): Avoid creating plt entries for
2877 * aot-runtime.c: Don't define HAVE_DL_ITERATE_PHDR, configure now does that.
2879 2009-11-10 Zoltan Varga <vargaz@gmail.com>
2881 * aot-compiler.c aot-runtime.c: Change how mono_arch_find_jit_info () works.
2882 Instead of emitting a method_order table, sort the contents of the code_offsets
2883 table and do a binary search in the sorted table. The previous approach doesn't
2884 work with LLVM which emits methods in a arbitrary order.
2886 * aot-runtime.c: Add support for creating MonoJitInfo structures by searching
2887 in the .eh_frame section in ELF files.
2889 * mini.h: Bump corlib file format version.
2891 * mini-llvm.c aot-compiler.c: Add support for AOT to the LLVM back end.
2893 * exceptions-arm.c (mono_arch_get_call_filter_full): Update after the
2894 LDMIA->LDM macro name change.
2896 2009-11-09 Zoltan Varga <vargaz@gmail.com>
2898 * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Fix and enable this for
2901 * mini-llvm-cpp.cpp (JITMemoryManager): Fix compilation with LLVM 2.7
2904 * aot-compiler.c: Ditto.
2906 * mini-arm.c (mono_arch_allocate_vars): Fix the previous change by passing
2907 &align to mini_type_stack_size_full ().
2909 * mini-arm.c (mono_arch_emit_prolog): Implement support for varargs.
2911 * mini-ops.h: Add documentation for the OP_ARGLIST opcode.
2913 2009-11-08 Zoltan Varga <vargaz@gmail.com>
2915 * mini-arm.c: Compute the stack space used by arguments using
2916 mini_type_stack_size_full ().
2918 2009-11-08 Zoltan Varga <vargaz@gmail.com>
2920 * optflags-def.h: Remove dead TREEPROP optimization.
2922 2009-11-08 Rodrigo Kumpera <rkumpera@novell.com>
2924 * mini-ppc.h: Make mono compiler under FreeBSD/ppc64.
2926 Patch by Justin Hibbits <chmeeedalf@gmail.com>.
2928 2009-11-07 Zoltan Varga <vargaz@gmail.com>
2930 * driver.c (mono_jit_parse_options): New public API function to parse options
2931 as done by the runtime executable.
2933 * debugger-agent.c (buffer_add_cattrs): Fix reading an uninitialized variable
2934 when handling named arguments.
2936 2009-11-07 Zoltan Varga <vargaz@gmail.com>
2938 * mini-arm.c: Implement support for returning vtypes in registers, fix support
2939 for passing small vtypes in registers, make the CallInfo structures more
2940 similar to the code on the other platforms.
2942 * mini-arm.c (mono_arch_allocate_vars): Align small vtypes to 4 bytes too since
2943 the code in the prolog requires it.
2945 2009-11-06 Zoltan Varga <vargaz@gmail.com>
2947 * mini-arm.c debugger-agent.c: Android changes from Koushik K. Dutta
2948 (koush@koushikdutta.com).
2950 * mini-arm.c (handle_thunk): Add a domain argument to control the domain
2951 where the thunk memory should be allocated from. Fixes appdomain unloading
2954 2009-11-06 Zoltan Varga <vargaz@gmail.com>
2956 * mini-arm.c exceptions-arm.c: Make ctx->regs map directly to the 16 hardware
2957 registers, instead of r4..r11,ip,lr. Make restore_context () restore r0..r3 too.
2959 2009-11-05 Zoltan Varga <vargaz@gmail.com>
2961 * mini-amd64.c (mono_arch_output_basic_block): Don't allow OP_SEQ_POINT in
2962 AOT, as it is not implemented yet.
2964 * mini-x86.c (mono_arch_output_basic_block): Ditto.
2966 2009-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2968 * debugger-agent.c: Fix windows build.
2970 2009-11-05 Zoltan Varga <vargaz@gmail.com>
2972 * debugger-agent.c (debugger_thread): Call mono_set_is_debugger_attached ()
2973 after the client connects/disconnects.
2975 * debugger-agent.c: Add an 'onthrow' option to start the debugger agent
2976 when an exception of a given type is thrown.
2978 * debugger-agent.c: Add a 'onuncaught' option to start the debugger agent
2979 only on an uncaught exception.
2981 * mini-exceptions.c: Notify the debugger agent on an uncaught exception.
2983 * debugger-agent.c: Add a 'launch' option.
2985 2009-11-05 Zoltan Varga <vargaz@gmail.com>
2987 * debugger-agent.c: Add a 'timeout' option.
2989 2009-11-05 Zoltan Varga <vargaz@gmail.com>
2991 * debugger-agent.c: Implement the 'server' and 'suspend' options supported by
2994 2009-11-05 Zoltan Varga <vargaz@gmail.com>
2996 * debugger-agent.c (set_breakpoint): Emit a log message.
2998 2009-11-04 Zoltan Varga <vargaz@gmail.com>
3000 * mini-arm.c: Fix the arm build.
3002 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3004 * aot-compiler.c: don't leak the value returned from
3005 mono_type_full_name().
3007 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3009 * debugger-agent.c: defer including mono-mutex.h until we know the
3012 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3014 * debugger-agent.c: Changes to build on windows. Use mono-mutex instead
3015 of pthreads directly.
3017 * mini.c (mono_sigfpe_signal_handler): Changed signature of Windows
3018 exception handlers. Pass info argument.
3020 * mini.h: Adjust signatures of soft debugger functions to pass void*
3021 instead of siginfo_t. Adjust SIG_HANDLER_SIGNATURE on Windows.
3023 * mini-amd64.c (mono_arch_is_single_step_event): Adjust signature to pass void*
3024 instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3025 (mono_arch_is_breakpoint_event): Adjust signature to pass void*
3026 instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3028 * mini-amd64.h: Adjust MonoW32ExceptionHandler signature.
3030 * mini-x86.c (mono_arch_is_single_step_event): Adjust signature to pass void*
3031 instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3032 (mono_arch_is_breakpoint_event): Adjust signature to pass void*
3033 instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3035 * mini-x86.h: Adjust MonoW32ExceptionHandler signature.
3037 * exceptions-x86.c: Adjust W32_SEH_HANDLE_EX for new signature.
3039 * exceptions-amd64.c: Adjust W32_SEH_HANDLE_EX for new signature.
3041 * mono-semaphore.h: Skeleton implementation for Windows.
3043 Code contributed under MIT/X11 license.
3045 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3047 * simd-intrinsics.c (simd_intrinsic_emit_setter): Unfix my fix.
3049 Code contributed under MIT/X11 license.
3051 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3053 * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix windows build.
3055 Code contributed under MIT/X11 license.
3057 2009-11-04 Zoltan Varga <vargaz@gmail.com>
3059 * aot-compiler.c (mono_save_xdebug_info): Bump the threshold for flushing
3060 debug info to 100 because 10 still slows down gdb too much.
3062 * method-to-ir.c (mono_method_to_ir): Avoid rethrowing thread abort exceptions
3063 inside runtime invoke wrappers. This avoids the need to call ResetAbort () on
3064 them in the wrappers.
3066 2009-11-03 Zoltan Varga <vargaz@gmail.com>
3068 * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
3070 * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix a warning.
3072 * aot-runtime.c (mono_aot_get_method): Refactor some code into a new helper
3073 function mono_aot_get_array_helper_from_wrapper ().
3075 * aot-compiler.c (add_generic_class): Refactor the code a bit, really emit
3076 array helper methods.
3078 2009-11-03 Rodrigo Kumpera <rkumpera@novell.com>
3080 * simd-intrinsics.c (load_simd_vreg): Add extra argument to signal if
3081 the value was loaded from memory.
3083 * simd-intrinsics.c (simd_intrinsic_emit_setter): Store back to memory if
3084 the value was loader from there.
3086 * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Fail correctly for Shuffle
3087 without constant swizzle.
3089 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3091 * mini-amd64.c: Put soft debugger functions behind a
3092 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
3094 * mini-amd64.h: disable the soft debugger in windows.
3096 Code contributed under MIT/X11 license.
3098 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3100 * mini-x86.c: Put soft debugger functions behind a
3101 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
3103 Code contributed under MIT/X11 license.
3105 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3107 * exceptions-x86.c (win32_handle_stack_overflow): Fix parameters
3108 to mono_arch_find_jit_info_ext.
3110 Code contributed under MIT/X11 license.
3112 2009-11-03 Zoltan Varga <vargaz@gmail.com>
3114 * debugger-agent.c: Include netinet/in.h to fix the bsd build.
3116 * debugger-agent.c: Add support for filtering events by assemblies.
3118 * debugger-agent.c (mono_debugger_agent_thread_interrupt): Return false if
3119 the agent is not enabled.
3121 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3123 * exceptions-x86.c: hopefully last change to fix the windows build.
3124 This one courtesy of Jonathan Chambers.
3126 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3128 * debugger-agent.c: remove unused function.
3130 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3132 * debugger-agent.c: add #ifdefs for a few header files.
3133 * mini-x86.h: disable the soft debugger in windows.
3134 Step 1 of 2 to make this compile on windows with gcc.
3136 2009-11-02 Zoltan Varga <vargaz@gmail.com>
3138 * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Comment this out for now
3139 as it breaks the build.
3141 2009-07-01 Zoltan Varga <vargaz@gmail.com>
3143 Merge the soft debugger branch.
3145 * debugger-agent.h debugger-agent.c: New files containing the soft
3146 mode debugger module.
3148 * method-to-ir.c (mono_method_to_ir): Generate OP_SEQ_POINT opcodes
3149 at the appropriate locations.
3151 * mini-<ARCH>.c (mono_arch_output_basic_block): Handle OP_SEQ_POINT
3154 * mini-<ARCH>.c: Add new arch-specific functions to set/clear breakpoints,
3155 enable/disable single stepping.
3157 * exceptions-<ARCH>.c (mono_arch_find_jit_info_ext): New stack unwinding api
3158 which returns all information in a StackFrameInfo structure, and can handle the
3159 LMF frames added by the debugger.
3161 * mini-<ARCH>.h (MonoLMFExt): New structure containing additional information
3164 * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): New stack
3165 walker function which works on a specific thread and passes a StackFrameInfo
3166 structure to its callback.
3168 * mini.c (mini_init): Initialize the debugger agent.
3170 * aot-compiler.c aot-runtime.c: Add soft-debug support.
3172 * mini-ops.h: Add OP_SEQ_POINT opcode.
3174 * driver.c (mono_main): Add new '--debugger-agent' option for passing
3175 arguments to the debugger agent.
3177 2009-11-02 Zoltan Varga <vargaz@gmail.com>
3179 * mini.c (mini_method_compile): Disable llvm for methods with an lmf here to
3182 * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOCALLOC.
3184 * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Implement this for x86.
3186 * mini.c (mini_init): Avoid using the IMT trampoline in the LLVM case.
3188 * mini-trampolines.c (mono_llvm_vcall_trampoline): Add a static rgctx trampoline
3190 (mono_create_llvm_imt_trampoline): New function to create a trampoline which
3191 sets the IMT argument and makes a virtual call.
3193 * mini-llvm.c: Enable interface calls using the llvm imt trampoline.
3195 2009-11-01 Zoltan Varga <vargaz@gmail.com>
3197 * Makefile.am (llvm_sources): Enable the llvm option since it no longer breaks
3200 2009-10-30 Zoltan Varga <vargaz@gmail.com>
3202 * mini.c (mini_cleanup): Call profiler shutdown before shutting down the
3203 runtime. Fixes #551228.
3205 2009-10-29 Zoltan Varga <vargaz@gmail.com>
3207 * mini-x86.c (mono_arch_output_basic_block): Fix % 1. Fixes #550970.
3209 * basic.cs: Add a test.
3211 * method-to-ir.c (mono_method_to_ir): Use EMIT_NEW_LOAD_MEMBASE_TYPE to
3212 load vtypes instead if OP_LOADV_MEMBASE in the implementation of
3213 CONSTRAINED. Fixes #550964.
3215 * generics.cs: Add a test.
3217 2009-10-28 Mark Probst <mark.probst@gmail.com>
3219 * mini-posix.c (add_signal_handler): Use
3220 mono_gc_get_suspend_signal() instead of GC_get_suspend_signal().
3222 2009-10-28 Jerry Maine <crashfourit@gmail.com>
3224 Contributed under the terms of the MIT/X11 license by
3225 Jerry Maine <crashfourit@gail.com>.
3227 * mini-x86.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
3228 sse4a for simd intrinsics.
3230 * mini-amd64.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
3231 sse4a for simd intrinsics.
3233 2009-10-27 Zoltan Varga <vargaz@gmail.com>
3235 * ir-emit.h method-to-ir.c: Change a few _IMM macros to assign to inst_imm
3236 instead of inst_p1 which is not the same on ILP32 platforms.
3238 2009-10-24 Zoltan Varga <vargaz@gmail.com>
3240 * mini-ppc.c (mono_arch_emit_prolog): Load the current got address,
3241 not the mscorlib one before calling mono_get_lmf_addr.
3243 * tramp-ppc.c (mono_arch_create_trampoline_code_full): Fix the storing
3244 of the ip to the LMF.
3246 * method-to-ir.c (mono_method_to_ir): Fix the handling of the
3247 immediate in the op->op_imm optimization.
3249 * mini-ppc.c: Add a 'vtregs' field to ArgInfo to make the code easier to
3250 understand. VTypes now work, but are not abi compliant, as they are
3251 split into 4 byte parts instead of 8.
3252 (emit_memcpy): Fix the unrolled case to work on the PS3.
3254 * mini-ppc.c (get_delegate_invoke_impl): Fix this for the PS3.
3256 * aot-compiler.c (mono_compile_assembly): Make the autoreg option
3257 the default when static linking.
3259 * mini-ppc.c (mono_arch_emit_prolog): Fix handling of I8 arguments.
3261 * aot-compiler.c: Add an autoreg option to automatically register
3262 statically linked aot modules using ELF .ctors.
3264 * genmdesc.pl: Add __ppc64__ to allowed defines.
3266 2009-10-25 Zoltan Varga <vargaz@gmail.com>
3268 * mini-posix.c (add_signal_handler): Delay the GC suspend signal while
3269 executing a SIGSEGV handler on an altstack, since libgc can't handle that.
3271 2009-10-24 Mark Probst <mark.probst@gmail.com>
3273 * exceptions-x86.c (mono_arch_find_jit_info): Fix build.
3275 2009-10-24 Zoltan Varga <vargaz@gmail.com>
3277 * mini-exceptions.c (mini_jit_info_table_find): Add an 'out_domain' argument
3278 which will contain the domain where the method was found.
3280 * exceptions-<ARCH>.c mini-exceptions.c: Update callers of
3281 mini_jit_info_table_find ().
3283 * aot-compiler.c (xdebug_end_emit): Remove so stray debug code.
3285 * branch-opts.c (mono_if_conversion): Avoid running deadce if it is disabled.
3287 2009-10-22 Zoltan Varga <vargaz@gmail.com>
3289 * mini-x86.c (mono_arch_emit_prolog): Disable aot for methods with save_lmf
3290 set, its not supported yet.
3292 2009-10-22 Zoltan Varga <vargaz@gmail.com>
3294 * aot-runtime.c (mono_aot_get_method): Avoid asserting if a array generic
3295 iface wrapper is not found.
3296 (mono_aot_get_method): Ditto for GetGenericValueImpl.
3298 2009-10-21 Zoltan Varga <vargaz@gmail.com>
3300 * aot-runtime.c (mono_aot_get_method): Fix support for the IList<T> wrappers,
3301 which have a different name.
3303 * aot-runtime.c (mono_aot_get_method): Special case the array generic iface
3304 wrappers and Array.GetGenericValueImpl ().
3306 * aot-compiler.c: Avoid emitting some wrappers which are not needed anymore
3307 because of the change above.
3309 * generics.cs: Add a test for full aot + generic array ifaces.
3311 2009-10-19 Sebastien Pouliot <sebastien@ximian.com>
3313 * aot-compiler.c (emit_plt): Remove duplicate 'debug_sym' variable
3314 that hides the previous one.
3316 2009-10-18 Zoltan Varga <vargaz@gmail.com>
3318 * aot-compiler.c (can_marshal_struct): Allow some System.dll structs to be
3319 marshalled. Fixes #541623.
3321 2009-10-16 Zoltan Varga <vargaz@gmail.com>
3323 * aot-compiler.c (emit_extra_methods): Remove some asserts which are not needed.
3325 2009-10-15 Zoltan Varga <vargaz@gmail.com>
3327 * mini.c (mono_op_imm_to_op): Handle OP_AND/OR/XOR_IMM.
3329 2009-10-14 Massimiliano Mantione <massi@ximian.com>
3331 * mini-posix.c (sigprof_signal_handler):
3332 Implemented support for building stat call chans in different ways.
3334 2009-10-14 Massimiliano Mantione <massi@ximian.com>
3336 * mini-exceptions.c (mono_find_jit_info):
3337 Also check that a jit info has been found (fixes a profiler crash).
3339 2009-10-14 Massimiliano Mantione <massi@ximian.com>
3341 * mini.c (mono_codegen):
3342 Call mono_profiler_code_buffer_new with correct code address.
3344 2009-10-14 Zoltan Varga <vargaz@gmail.com>
3346 * driver.c (mono_main): Change the date in the copyright.
3348 2009-10-14 Mark Probst <mark.probst@gmail.com>
3350 * method-to-ir.c (mono_method_to_ir): Don't use a managed array
3351 allocator in shared generic code for open classes, because we
3352 can't get those classes' vtables. We need to make managed
3353 allocators not depend on the vtable at compile-time to solve this.
3355 2009-10-13 Martin Baulig <martin@ximian.com>
3357 * debug-mini.c (mono_debugger_trampoline_compiled): Add
3358 `const guint8 *trampoline' argument; send both the old and the new
3361 2009-09-30 Zoltan Varga <vargaz@gmail.com>
3363 * aot-compiler.c (add_wrappers): Add a runtime invoke wrapper which is used by
3364 mono_runtime_capture_context () without calling mono_runtime_invoke ().
3365 (can_marshal_struct): Skip structures with auto layout.
3367 * tramp-arm.c (GEN_TRAMP_SIZE): Increase this by 4.
3369 2009-10-02 Zoltan Varga <vargaz@gmail.com>
3371 * mini-sparc.c (mono_arch_emit_setret): Emit long return values using OP_LMOVE.
3372 (mono_arch_create_vars): Instead of allocating a stack slot by hand, allocate
3373 a variable to hold the stack slot used by the int<->float conversion opcodes.
3375 * mini-sparc.c (mono_arch_build_imt_thunk): Implement support for fail_tramp.
3377 2009-10-04 Zoltan Varga <vargaz@gmail.com>
3379 * aot-compiler.c (add_generic_class): Only add GetGenericValueImpl wrappers
3380 when using full-aot.
3382 2009-10-06 Zoltan Varga <vargaz@gmail.com>
3384 * aot-compiler.c (add_generic_class): Add an instance of GenericComparer<T> for
3385 each instance of Comparer<T>.
3387 * generics.cs: Add a new test.
3389 2009-10-09 Zoltan Varga <vargaz@gmail.com>
3391 * driver.c (parse_debug_options): Add a 'gdb' option.
3393 * mini.c (mini_parse_debug_options): Add a 'gdb' option.
3395 * image-writer.c: Add support for emitting the image into a memory buffer.
3397 * dwarfwriter.c: Add support for sharing one IL file between multiple images.
3399 * aot-compiler.c: Add support for registering debug info with GDB using the
3400 new JIT debugging interface in GDB 7.0. It can be turned on by setting
3401 MONO_XDEBUG to 'gdb'.
3403 2009-10-10 Zoltan Varga <vargaz@gmail.com>
3405 * aot-compiler.c (mono_save_trampoline_xdebug_info): Implement this for the
3408 2009-10-11 Zoltan Varga <vargaz@gmail.com>
3410 * aot-compiler.c (mono_save_xdebug_info): Emit a symbol for the method which
3411 can be used to set breakpoints in gdb.
3413 * image-writer.c (bin_writer_emit_writeout): Add support for setting the text
3414 segment to an absolute address.
3416 2009-10-13 Mark Probst <mark.probst@gmail.com>
3418 * method-to-ir.c: Use the managed array allocator method if
3421 2009-10-13 Bill Holmes <billholmes54@gmail.com>
3423 * aot-compiler.c : Fix the MSVC builds
3425 Code is contributed under MIT/X11 license.
3427 2009-10-13 Zoltan Varga <vargaz@gmail.com>
3429 * aot-compiler.c (mono_save_xdebug_info): Group methods into groups of 10 to
3430 avoid registering 1 symbol file per method with gdb.
3432 2009-09-29 Zoltan Varga <vargaz@gmail.com>
3434 * mini-sparc.c: Fix the handling of enums with base type long.
3436 * mini-sparc.c (mono_arch_output_basic_block): Fix IREM_UN_IMM.
3438 * mini-sparc.c (mono_arch_allocate_vars): Use mono_class_from_mono_type ()
3439 instead of using type->data.klass as the later doesn't work with generics.
3441 2009-09-25 Mark Probst <mark.probst@gmail.com>
3443 * method-to-ir.c, mini.h, mini-alpha.c, mini-amd64.c, mini-arm.c,
3444 mini-hppa.c, mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c,
3445 mini-s390x.c, mini-sparc.c, mini-x86.c: Thread.get_CurrentThread
3446 works differently now and we don't handle it in the JIT anymore.
3448 * mini.c, mini-exceptions.c, mini-posix.c, debug-debugger.c,
3449 debug-mini.c, tramp-amd64.c, tramp-x86.c: Changes resulting from
3450 the Thread class split.
3452 2009-09-25 Zoltan Varga <vargaz@gmail.com>
3454 * driver.c: Don't run tests with the obsolete treeprop optimization.
3456 * mini-sparc.c (mono_arch_create_vars): Make the component vars of a long ret
3457 variable volatile. Fixes #541577.
3459 * basic-calls.cs: Add a new test.
3461 * basic-long.cs: Remove tests which are now in basic-calls.cs.
3463 2009-09-24 Zoltan Varga <vargaz@gmail.com>
3465 * dwarfwriter.c (emit_debug_info_end): Disable this as it doesn't seem to
3466 work/required with recent iphone sdk versions.
3468 * aot-compiler.c (add_wrappers): Generate PtrToStructure wrappers for more
3471 * decompose.c (mono_decompose_vtype_opts): Avoid reading uninitialized memory
3472 in the VCALL decomposition code.
3474 2009-09-22 Zoltan Varga <vargaz@gmail.com>
3476 * mini-ia64.c (mono_arch_output_basic_block): Fix ISHR/ISHR_IMM.
3478 * basic.cs: Add a test.
3480 * mini-ia64.c (mono_arch_build_imt_thunk): Implement support the virtual
3483 * mini-exceptions.c (mini_jit_info_table_find): New helper function which
3484 searches all the domains of the current thread.
3486 * exceptions-<ARCH>.c: Use it. Fixes #539394.
3488 2009-09-21 Zoltan Varga <vargaz@gmail.com>
3490 * exceptions-arm.c (mono_arm_throw_exception): Set ctx->ebp to fp instead of sp
3491 so catching exceptions thrown in the same method works. Fixes exception17.exe.
3493 * tramp-arm.c (mono_arch_create_trampoline_code_full): Store NULL into lmf->method
3494 for non-jit trampolines.
3496 * mini.c (mono_jit_runtime_invoke): Allow string ctors with dyn runtime invoke.
3498 * aot-compiler.c (add_wrappers): Ditto.
3500 * mini-arm.c: Implement support for passing vtypes and floats, and increase
3501 the size of the param area used by dyn_call to 6 which covers the majority of
3504 * mini.c aot-compiler.c: Allow dyn_call for string methods except ctors.
3506 * mini-arm.c: Implement support for passing/receiving
3507 longs and receiving floats in the dyn_call code.
3509 * mini-amd64.c: Implement support for receiving vtypes in registers in
3512 * mini.c mini-amd64.c: Implement partial support for passing vtypes in
3515 2009-09-20 Zoltan Varga <vargaz@gmail.com>
3517 * mini-arm.c (get_call_info): Return more precise information in
3519 (dyn_call_supported): Use the information in CallInfo.
3521 * mini-arm.c: Enable support for returning vtypes in the dyn_call code.
3523 * mini.c mini-amd64.c: Enable support for returning vtypes in the dyn_call
3526 * mini-arm.c: Update after the dyn_call api changes.
3528 * mini.c (mini_create_jit_domain_info): Register a destructor function
3529 for the runtime_invoke_hash.
3531 * mini-amd64.c (mono_arch_get_dyn_call_args): Rename this to
3532 'mono_arch_dyn_call_start'. Pass the pointer to the return value buffer to
3534 (mono_arch_get_dyn_call_ret): Rename this to 'mono_arch_dyn_call_finish'.
3535 (dyn_call_supported): Simplify this by using get_call_info ().
3536 (mono_arch_dyn_call_free): New destructor function.
3538 * generics.cs: Remove a printf.
3540 * method-to-ir.c (mono_method_to_ir): Allocate some param area for DYN_CALL.
3542 * mini-arm.c: Add support for enum return values and passing a few arguments
3545 * mini.c (mono_jit_runtime_invoke): Add support for enum return values to
3548 * mini-amd64.c (mono_arch_get_dyn_call_ret): Ditto.
3550 * aot-compiler.c (add_wrappers): Add a few restrictions for the use of
3551 the dynamic invoke wrappers.
3553 * mini-arm.c: Implement OP_DYN_CALL for arm.
3555 * aot-compiler.c (add_wrappers): Avoid aot-ing runtime invoke wrappers
3556 supported by the dynamic runtime invoke wrapper.
3558 * aot-compiler.c aot-runtime.c: Add support for encoding the dynamic
3559 runtime invoke wrapper.
3561 * mini.c (mono_jit_runtime_invoke): Use the dynamic runtime invoke wrappers
3562 if possible when running with full-aot.
3564 * mini-ops.h: Add OP_DYN_CALL opcode.
3566 * mini-amd64.c method-to-ir.c: Add infrastructure for making method calls
3567 with dynamic arguments lists similar to libffi.
3569 2009-09-19 Zoltan Varga <vargaz@gmail.com>
3571 * method-to-ir.c: Fix the previous change on 64 bit platforms.
3573 * method-to-ir.c: Applied patch from Rodrigo Kumpera. Allow an i8 argument
3576 * iltests.il.in: Add a new test.
3578 2009-09-18 Zoltan Varga <vargaz@gmail.com>
3580 * aot-compiler.c (add_generic_instances): Add more instances of
3581 GenericEqualityComparer.
3583 2009-09-18 Rodrigo Kumpera <rkumpera@novell.com>
3585 * mini.c: Add asserts for mono_class_vtable calls that are not meant to fail.
3587 2009-09-18 Rodrigo Kumpera <rkumpera@novell.com>
3589 * method-to-ir.c: Handle failures from mono_class_vtable. Added some
3590 comments on some functions that now can fail.
3592 2009-09-17 Andrew Jorgensen <ajorgensen@novell.com>
3594 * Makefile.am: Add Info.plist to EXTRA_DIST
3596 2009-09-16 Zoltan Varga <vargaz@gmail.com>
3598 * method-to-ir.c (mono_method_to_ir): Allow AOT for CEE_LDTOKEN in
3599 static synchronized wrappers. Fixes #539500.
3601 2009-09-14 Rodrigo Kumpera <rkumpera@novell.com>
3603 * jit-icalls.c (mono_class_static_field_address): handle vtable failure
3606 2009-09-16 Zoltan Varga <vargaz@gmail.com>
3608 * mini-exceptions.c (mono_handle_exception_internal): Store the computed
3609 lmf before calling filter clauses as well. Fixes #539550.
3611 * exceptions.cs: Add a test.
3613 2009-09-14 Zoltan Varga <vargaz@gmail.com>
3615 * aot-compiler.c (add_generic_class): Add instances of
3616 Array.GetGenericValueImpl as well.
3618 * Makefile.am (fullaotcheck): Copy and aot more assemblies so linq
3621 * generics.cs: Add a fullaot linq test.
3623 2009-09-10 Zoltan Varga <vargaz@gmail.com>
3625 * aot-compiler.c (arch_emit_static_rgctx_trampoline): Don't clobber argument
3628 2009-09-10 Bill Holmes <billholmes54@gmail.com>
3630 * mini-trampolines.c (mono_delegate_trampoline) : Call
3631 mono_cominterop_get_invoke if the delegate target object
3634 Code is contributed under MIT/X11 license.
3636 2009-09-09 Sebastien Pouliot <sebastien@ximian.com>
3638 * method-to-ir.c: For CoreCLR throw a SecurityException if an
3639 internal call is defined outside platform code. Reduce code
3640 duplication with existing [Method|Field]AccessException
3642 2009-09-08 Rodrigo Kumpera <rkumpera@novell.com>
3644 * mini-x86.c (mono_arch_emit_call): Don't reduce stack usage by 4
3645 if the return value is a small struct passed on regs.
3647 2009-09-09 Zoltan Varga <vargaz@gmail.com>
3649 * cpu-arm.md mini-arm.c: Remove unused opcodes.
3651 * mini-codegen.c: Enable the cpu description validation for arm.
3653 2009-09-08 Zoltan Varga <vargaz@gmail.com>
3655 * basic-calls.cs: Move the test_0_float_load_and_store_with_big_offset ()
3656 test which depends on structs to objects.cs.
3658 * basic-calls.cs: Remove calls to Console.WriteLine and throws, since those
3659 require object model related stuff working.
3661 * cpu-x86.md mini-x86.c: Remove more unused opcodes.
3663 * mini-ops.h: Fix OP_BIGMUL instruction descriptions.
3665 * mini-codegen.c (mono_local_regalloc): Validate the cpu description
3666 against the instruction metadata in mini-ops.h. amd64 only for now.
3668 * mini-ops.h: Fix some instruction descriptions.
3670 * mini-ops.h mini-x86.c mini-amd64.c cpu-<ARCH>.md: Remove some
3671 unused instructions.
3673 2009-09-06 Zoltan Varga <vargaz@gmail.com>
3675 * exceptions.cs: Add a new test.
3677 2009-09-05 Rodrigo Kumpera <rkumpera@novell.com>
3679 * mini-x86.c (needs_stack_frame): OSX requires full frames to keep proper alignment.
3681 2009-09-06 Zoltan Varga <vargaz@gmail.com>
3683 * mini-llvm.c (mono_llvm_emit_method): Add a few more missing casts,
3684 skip empty phi opcodes.
3686 * mini-llvm.c (mono_llvm_emit_method): Handle unsigned volatile variables
3687 correctly by zero extending after loads. Skip methods containing calls
3688 to the monitor enter/exit trampolines.
3690 * tramp-x86.c (mono_arch_create_trampoline_code): Align the stack
3691 when calling mono_thread_force_interruption_checkpoint ().
3693 * mini.c (mini_method_compile): Disable llvm when AOT compiling.
3695 * tramp-amd64.c (mono_arch_patch_callsite): Add support for 32 bit ->
3697 (mono_arch_nullify_class_init_trampoline): Read 'buf' instead of 'code'.
3699 * mini-llvm.c (mono_llvm_emit_method): Add a few missing conversions so a
3700 bootstrap could run.
3702 2009-09-04 Zoltan Varga <vargaz@gmail.com>
3704 * mini.c (mini_init): Set callbacks.get_runtime_build_info ().
3706 2009-09-03 Zoltan Varga <vargaz@gmail.com>
3708 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass the start
3710 mono_breakpoint_clean_code () when using LLVM as the prologues generated by
3711 LLVM might be very short.
3713 * mini-x86.c (mono_arch_output_basic_block): Maintain stack alignment
3714 in OP_THROW/RETHROW.
3716 * exceptions-x86.c: Rewrite the throw trampolines so they maintain stack
3719 2009-09-03 Zoltan Varga <vargaz@gmail.com>
3721 * mini-amd64.c (mono_arch_get_vcall_slot): Pass the start of the method to
3722 mono_breakpoint_clean_code () when using LLVM as the prologues generated by
3723 LLVM might be very short.
3725 2009-09-01 Zoltan Varga <vargaz@gmail.com>
3727 * exceptions-x86.c (throw_exception): Fix the previous change by substracting
3728 the alignment for the value of sp.
3730 2009-09-01 Geoff Norton <gnorton@novell.com>
3732 * mini.c (mono_get_lmf_addr): Fix jit_thread_attach for native to
3733 managed wrappers in full aot.
3735 2009-08-31 Zoltan Varga <vargaz@gmail.com>
3737 * exceptions-x86.c (get_throw_exception): Align the stack on osx.
3739 2009-08-28 Zoltan Varga <vargaz@gmail.com>
3741 * mini-llvm-cpp.cpp mini-llvm.c: Update to latest llvm api.
3743 2009-08-25 Zoltan Varga <vargaz@gmail.com>
3745 * aot-compiler.c (emit_exception_debug_info): Emit ei->flags too.
3747 * aot-runtime.c (decode_exception_debug_info): Decode ei->flags from the
3750 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3752 * aot-runtime.c aot-compiler.c: Emit exception causes fully so we don't
3753 depend on the info MonoMethodHeader which could be missing in IL stripped
3756 2009-08-25 Zoltan Varga <vargaz@gmail.com>
3758 * mini-arm.c (add_general): Fix the passing of 64 bit values on darwin, where
3759 they are only 4 byte aligned.
3761 2009-08-21 Zoltan Varga <vargaz@gmail.com>
3763 * mini-arm.c (mono_arch_allocate_vars): Use FP as the frame pointer as
3764 was done previously, since using SP causes too many problems.
3766 * exceptions-arm.c: Fix the handling of sp/fp so unwinding through
3767 frames without a frame pointer works.
3769 * mini-arm.c (mono_arch_get_global_int_regs): Avoid using V5 as a
3770 global register in methods with calls, since the calls can go through
3771 a static rgctx trampoline which doesn't save it.
3773 2009-08-19 Zoltan Varga <vargaz@gmail.com>
3775 * mini-arm.c (mono_arch_context_get_int_reg): Handle SP as well.
3777 2009-08-18 Zoltan Varga <vargaz@gmail.com>
3779 * aot-compiler.c (add_generic_instances): Fix the net 1.1 build.
3781 2009-08-18 Christian Hergert <chris@dronelabs.com>
3783 * method-to-ir.c: Fix warnings for uninitialized variables.
3785 2009-08-18 Christian Hergert <chris@dronelabs.com>
3787 * mini-exceptions.c:
3788 * aot-compiler.c: Fix printf warnings.
3790 2009-08-18 Zoltan Varga <vargaz@gmail.com>
3792 * aot-compiler.c (add_generic_instances): Add string[] wrapper methods.
3793 Add GetGenericValueImpl<string>.
3795 * aot-compiler.c (add_generic_instances): Add instances of
3796 GenericEqualityComparer<T> for primitive types. Only emit the array
3797 wrappers into the mscorlib image.
3799 2009-08-15 Zoltan Varga <vargaz@gmail.com>
3801 * aot-runtime.c (load_method): Rename 'aot_module' -> 'amodule'. Allocate
3802 the methods_loaded array using amodule->info->nmethods.
3804 * mini.h (MonoAotFileInfo): Add an 'nmethods' field.
3805 (MONO_AOT_FILE_VERSION): Bump this.
3807 * aot-compiler.c: Emit more generic instances allowing some parts of linq
3810 * aot-runtime.c (mono_aot_get_unwind_info): Handle the case when the
3811 MonoJitInfo doesn't belong to its methods aot image.
3813 2009-08-14 Zoltan Varga <vargaz@gmail.com>
3815 * mini-arm.c (mono_arch_allocate_vars): Use SP as the default frame reg.
3817 * mini-arm.c: Fix warnings.
3819 * mini-arm.c (mono_arm_emit_load_imm): Only emit a movt if needed.
3821 * mini-arm.c (mono_arm_emit_load_imm): Use movt/movw if the cpu
3824 2009-08-12 Zoltan Varga <vargaz@gmail.com>
3826 * aot-compiler.c (arch_emit_imt_thunk): Rework the arm code to
3827 avoid clobbering IP.
3829 * mini-trampolines.c (mono_magic_trampoline): Allocate a local to
3830 hold the trampoline argument, so its initial value is available during
3833 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3836 * exceptions-hppa.c:
3838 * exceptions-s390x.c:
3839 * exceptions-mips.c:
3841 * exceptions-sparc.c:
3842 * exceptions-alpha.c:
3844 * mini-trampolines.c:
3846 * exceptions-s390.c: add and use #define's instead of sizeof()
3847 for MonoJitInfo and MonoJitInfoTable.
3849 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3854 * tramp-x86.c: use a #define instead of sizeof() for a few
3855 structures that use a zero-length array.
3857 2009-08-07 Rodrigo Kumpera <rkumpera@novell.com>
3859 * method-to-ir.c (mono_method_to_ir/CEE_CONSTRAINED_): Handle the
3860 case when the method is dynamic. Fixes #529238.
3862 2009-08-06 Zoltan Varga <vargaz@gmail.com>
3864 * mini.c (mono_jit_compile_method_inner): Throw an exception instead
3865 of asserting when a method is JIT compiled in full-aot mode.
3867 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3869 Contributed under the terms of the MIT/X11 license by
3870 Jerry Maine <crashfourit@gail.com>.
3872 * fixed wrong dates in changelog.
3874 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3876 Contributed under the terms of the MIT/X11 license by
3877 Jerry Maine <crashfourit@gail.com>.
3879 * basic-simd.cs: added test for packed double square root.
3880 * cpu-amd64.md: added opcode info for packed double square root.
3881 * cpu-x86.md: added opcode info for packed double square root.
3882 * mini-ops.h: added IR opcode for packed double square root.
3883 * mini-x86.c: added IR to native translation code for packed double square root.
3884 * mini-amd64.c: removed todo for packed double square root.
3885 * simd-intrinsics.c: added method to IR opcode converstion for
3886 packed double square root.
3888 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3890 Contributed under the terms of the MIT/X11 license by
3891 Jerry Maine <crashfourit@gail.com>.
3893 * mini-amd64.c: Added a change to help tell the difference as
3894 to what perpose the xmm register is being used--mainly to help
3896 * mini-amd64.h: Changed callee regs to use 15 out of 16
3897 (one used for special cases) xmm registers for both fp
3898 and simd ops. Added define to turn on new feature in the regalloc
3899 that allows fp and simd ops to share the xmm regs happily.
3900 * codegen.c: Added code to detect for which perpose an xmm reg is
3901 being used (fp or simd) and to translate back and forth to the
3902 correct logical reg bank (fp or simd) for 'spill load's.
3904 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3906 Contributed under the terms of the MIT/X11 license by
3907 Jerry Maine <crashfourit@gail.com>.
3909 * basic-simd.cs: Added tests for stressing the regalloc when running with
3910 16 simd regs and when simd and fp ops share the same reg bank.
3912 2009-08-01 Mark Probst <mark.probst@gmail.com>
3914 * method-to-ir.c (mini_emit_stobj): If we call mono_value_copy()
3915 in shared generic code, we might have to look up the class in the
3916 RGCTX. If we use the class directly, compute its GC descriptor.
3918 2009-07-31 Rodrigo Kumpera <rkumpera@novell.com>
3920 * mini.c (mono_jit_runtime_invoke): Fix a warning.
3922 2009-07-31 Rodrigo Kumpera <rkumpera@novell.com>
3924 * mini.c (mono_jit_runtime_invoke): Initialize the class and
3925 check for errors. Fixed the case when the class with the Main
3928 2009-07-31 Jerry Maine <crashfourit@gmail.com>
3930 Contributed under the terms of the MIT/X11 license by
3931 Jerry Maine <crashfourit@gail.com>.
3933 * cpu-amd64.md: Fixed simple bug in machine discrition file.
3935 2009-07-31 Zoltan Varga <vargaz@gmail.com>
3937 * mini-sparc.c (mono_arch_output_basic_block): Implement OP_IREM_UN_IMM.
3939 2009-08-30 Rodrigo Kumpera <rkumpera@novell.com>
3941 * method-to-ir.c: Fix naming of stelem and ldelem.
3943 2009-07-30 Zoltan Varga <vargaz@gmail.com>
3945 * driver.c (main_thread_handler): Check that the assembly loaded
3946 matches the filename when doing AOT.
3948 2009-07-30 Mark Probst <mark.probst@gmail.com>
3950 * mini.c: get_ip_from_sigctx installer has been removed, so don't
3953 * mini-x86.h, mini-amd64.h, mini-ppc.h: UCONTEXT macros moved (to
3954 utils/mono-sigcontext.h).
3956 * exceptions-amd64.c: Use the UCONTEXT_GREGS macro instead of an
3959 2009-07-29 Massimiliano Mantione <massi@ximian.com>
3961 * mini.c (mono_codegen):
3962 Call profiler hook to keep track of method code buffers.
3964 2009-07-27 Mark Probst <mark.probst@gmail.com>
3966 * method-to-ir.c: Invoke write barriers for the
3967 Interlocked.(Compare)Exchange JIT intrinsics.
3969 2009-07-26 Raja R Harinath <harinath@hurrynot.org>
3971 * Makefile.am (version.h): Fix issues when built out of tree.
3972 Remove some redundant 'grep's piped through 'sed's.
3974 Fri Jul 24 17:28:37 CEST 2009 Steven Munroe <munroesj@us.ibm.com>
3976 This patch is contributed under the terms of the MIT/X11 license
3978 * mini-ppc.c (mono_arch_output_basic_block):
3979 (OP_STOREI1_MEMBASE_REG): Handle 32-bit offsets combining addis
3980 for bits 32-47 with signed load/store diplacements for bits
3981 48-63. Use prefered base/offset order for indexed form.
3982 (OP_STOREI2_MEMBASE_REG, OP_STORE_MEMBASE_REG): Same.
3983 (OP_LOAD_MEMBASE, OP_LOADI4_MEMBASE, OP_LOADU4_MEMBASE,
3984 OP_LOADI1_MEMBASE, OP_LOADU1_MEMBASE, OP_LOADU2_MEMBASE,
3985 OP_LOADI2_MEMBASE): Same.
3986 (OP_STORER8_MEMBASE_REG, OP_LOADR8_MEMBASE,
3987 OP_STORER4_MEMBASE_REG, OP_LOADR4_MEMBASE): Same.
3988 (OP_STOREI1_MEMINDEX): Use prefered base/offset order for
3990 (OP_STOREI2_MEMINDEX, OP_STORE_MEMINDEX): Same.
3991 (OP_LOAD_MEMINDEX, OP_LOADI4_MEMINDEX, OP_LOADU4_MEMINDEX,
3992 OP_LOADU2_MEMINDEX, OP_LOADI2_MEMINDEX, OP_LOADU1_MEMINDEX,
3993 OP_LOADI1_MEMINDEX): Same
3994 (OP_LOADR4_MEMINDEX, OP_LOADR8_MEMINDEX, OP_STORER4_MEMINDEX,
3995 OP_STORER8_MEMINDEX): Same
3996 (OP_JMP): Use addis/addi sequence for int cfg->stack_usage
3998 (mono_arch_emit_prolog): Handle 32-bit offsets combining addis
3999 for bits 32-47 with signed load/store diplacements for bits
4000 48-63. Use prefered base/offset order for indexed form.
4002 Fri Jul 24 16:57:12 CEST 2009 Steven Munroe <munroesj@us.ibm.com>
4004 This patch is contributed under the terms of the MIT/X11 license
4006 * mini-ppc.c: Define PPC_MOVE_FPR_GPR and PPC_ISA_64.
4007 (mono_arch_get_vcall_slot): Fx pointer to int cast warning.
4008 (mono_arch_decompose_opts): Make OP_ICONV_TO_R4 and
4009 OP_ICONV_TO_R8 decompose conditional on !PPC_ISA_64.
4010 (mono_arch_output_basic_block) [OP_JMP]: Use ppc_load32 for
4011 cfg->stack_usage to avoid size warnings.
4012 (mono_arch_output_basic_block) [__mono_ppc64__]: Replace
4013 store/load sequence with mffgpr if PPC_MOVE_FPR_GPR is true.
4014 (mono_arch_output_basic_block) [!__mono_ppc64__]: For
4015 OP_ICONV_TO_R4 or OP_ICONV_TO_R8 and PPC_ISA_64 use fcfid
4017 (mono_arch_emit_prolog): Move mono_emit_unwind_op_def_cfa
4018 after code varible is initialized.
4019 Add g_assert ppc_is_imm16 for ainfo->offset. Handle
4020 ainfo->size == 8 when ainfo->offset !ppc_is_imm16.
4021 (mono_arch_emit_epilog):
4022 Move Use ppc_load32 for cfg->stack_usage to avoid size
4025 2009-07-24 Mark Probst <mark.probst@gmail.com>
4027 * method-to-ir.c: The write barrier doesn't do the store anymore,
4028 so we have always to emit it. Also, emit the wbarrier after the
4031 2009-07-24 Zoltan Varga <vargaz@gmail.com>
4033 * mini-arm.c (mono_arch_get_delegate_invoke_impls): Add a trampoline
4034 for argument count 3 too.
4036 2009-07-23 Zoltan Varga <vargaz@gmail.com>
4038 * mini.c (mono_jit_compile_method_with_opt): Add an 'ex' argument to let
4039 the caller handle the exceptions.
4040 (mono_jit_runtime_invoke): Handle exceptions thrown while compiling the
4041 method. Fixes #524498.
4043 2009-07-22 Geoff Norton <gnorton@novell.com>
4045 * mini-exceptions.c: Fix build on ia64.
4047 2009-07-22 Mark Probst <mark.probst@gmail.com>
4049 * mini-exceptions.c (ves_icall_get_frame_info): Use write
4052 2009-07-21 Zoltan Varga <vargaz@gmail.com>
4054 * mini-arm.c (mono_arch_emit_prolog): Fix thread attaching in aot
4057 2009-07-20 Zoltan Varga <vargaz@gmail.com>
4059 * basic-simd.cs (Main): Pass args to the test driver.
4061 2009-07-20 Geoff Norton <gnorton@novell.com>
4063 * mini-x86.h: Fix the x86 version guards to use Apple's
4064 properly defined macros.
4066 2009-07-20 Geoff Norton <gnorton@novell.com>
4068 * mini-x86.c: Fix --trace on darwin-x86 and other systems which require
4071 2009-07-20 Zoltan Varga <vargaz@gmail.com>
4073 * mini.c (mono_jit_runtime_invoke): Speed this up by adding a hash to
4074 MonoJitDomainInfo which maps MonoMethod's to a structure containing all
4075 the information which is needed for invokes, so only one locking+hash table
4078 * aot-compiler.c: Add a 'tool-prefix' option to be used when cross-compiling.
4080 * aot-compiler.c (add_generic_instances): Emit instances of
4081 GenericComparer<T> for primitive types.
4083 2009-07-19 Rodrigo Kumpera <rkumpera@novell.com>
4085 * mini-posix.c: Fix linux build.
4087 2009-07-19 Geoff Norton <gnorton@novell.com>
4089 * mini.h: Add prototypes for mono_runtime_syscall_fork and
4090 mono_gdb_render_native_backtraces
4091 * mini-darwin.c: Apple's syscall(SYS_fork) is very weird on x86,
4092 so we implement the sane semantics to the runtime here
4093 (mono_gdb_render_native_backtraces). Apple also uses an ancient gdb
4094 so we need to call it differently (mono_gdb_render_native_backtraces)
4095 * mini-posix.c: Move the old semantics from mini.c to the prototypes
4096 here for default implementations.
4097 * mini.c: Refactor mono_handle_native_sigsegv so that we can properly
4098 support Apple's weird syscall (SYS_fork) implementation and not busy
4099 loop in abort() on native crashes on OSX anymore.
4101 2009-07-18 Zoltan Varga <vargaz@gmail.com>
4103 * aot-runtime.c (load_method): Change the handling of the
4104 MONO_LASTAOT env variable so MONO_LASTAOT=0 means that no aot methods
4107 * mini.c (mono_patch_info_equal): Really fix the handling of RGCTX_FETCH.
4109 2009-07-17 Zoltan Varga <vargaz@gmail.com>
4111 * mini.c (mono_patch_info_equal): Revert the last change for now as it
4112 seems to break the aot tests.
4114 * mini.c (mono_patch_info_equal): Fix the handling of
4115 MONO_PATCH_INFO_RGCTX_FETCH.
4117 2009-07-16 Zoltan Varga <vargaz@gmail.com>
4119 * unwind.c: Use TARGET_AMD64 instead of __x86_64__.
4121 * mini.c (mono_patch_info_hash): Fix the handling of
4122 MONO_PATCH_INFO_INTERNAL_METHOD.
4123 (mono_patch_info_equal): Ditto.
4125 2009-07-16 Zoltan Varga <vargaz@gmail.com>
4127 * mini-llvm.c (mono_llvm_emit_method): Use module instead of ctx->module
4130 * mini-llvm.c: Add some infrastructure for AOT support.
4132 2009-07-15 Zoltan Varga <vargaz@gmail.com>
4134 * mini-llvm-cpp.c: Update to the latest llvm api.
4136 * mini-llvm-cpp.cpp (mono_llvm_create_ee): Set the EnablePrettyStackTrace
4137 option to false to prevent llvm from installing signal handlers which
4140 2009-07-15 Rodrigo Kumpera <rkumpera@novell.com>
4143 * cpu-amd64.md: Revert previous change as those instructions
4144 take 2 separate arguments. Remember to read the arch docs more
4145 carefully next time.
4147 2009-07-15 Zoltan Varga <vargaz@gmail.com>
4149 * mini-llvm-cpp.cpp (mono_llvm_build_alloca): Update to latest llvm api.
4151 Wed Jul 15 17:20:27 CEST 2009 Paolo Molaro <lupus@ximian.com>
4153 * mini-ppc.c: exploit multiple load/store units if available (rest of
4154 the change from Steven Munroe (<munroesj@us.ibm.com>) first patch at
4155 http://bugzilla.novell.com/show_bug.cgi?id=487846).
4157 Wed Jul 15 16:24:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4159 * mini-ppc.c: integrate most of Steven Munroe (<munroesj@us.ibm.com>)
4160 first patch at http://bugzilla.novell.com/show_bug.cgi?id=487846.
4162 2009-07-14 Rodrigo Kumpera <rkumpera@novell.com>
4164 * cpu-x86.md: Fix missing clobbering from trancendental simd
4167 * cpu-amd64.md: Same.
4169 2009-07-14 Jerry Maine <crashfourit@gmail.com>
4171 Contributed under the terms of the MIT/X11 license by
4172 Jerry Maine <crashfourit@gail.com>.
4174 * basic-simd.cs: Added tests for single and doulble indexers.
4176 * cpu-amd64.md: Added simd opcode information.
4178 * mini-amd64.c: Added IR to native simd generation code.
4179 Added simd register names and function that returns them.
4181 * mini-amd64.h: Added marcos to turn on simd code compilation in
4182 amd64. Added max simd register count marco. Added caller/callee
4183 register mask marcos. Added marcos to use simd register bank.
4185 * mini.h: Added helper marco for shufling dwords and simple
4188 2009-07-14 Zoltan Varga <vargaz@gmail.com>
4190 * mini-llvm-cpp.cpp: Update to latest llvm SVN api.
4192 * Makefile.am (mono_LDADD): Pass LLVM_LDFLAGS to the linked.
4194 * unwind.c (mono_unwind_get_ops_from_fde): Make this return
4195 the length of the native code as well.
4197 * basic-simd.cs: Add a test for #521662.
4199 Mon Jul 13 17:58:50 CEST 2009 Paolo Molaro <lupus@ximian.com>
4201 * mini-ppc.c: fixed bug introduced by Steven's TLS changes.
4203 2009-07-13 Mark Probst <mark.probst@gmail.com>
4205 * mini.c: Register function for getting the IP from a signal
4206 context with metadata.
4208 2009-07-13 Zoltan Varga <vargaz@gmail.com>
4210 * method-to-ir.c (mono_method_to_ir): When calling a gshared method,
4211 call a generic class init trampoline if needed. Fixes #519336.
4213 * generics.cs: Add a test.
4215 2009-07-09 Mark Probst <mark.probst@gmail.com>
4217 * method-to-ir.c: When doing a call which might be remote from
4218 shared generic code to other shared code with open type arguments,
4219 get the remoting invoke wrapper from the RGCTX and do an indirect
4222 2009-07-03 Zoltan Varga <vargaz@gmail.com>
4224 * mini-trampolines.c (get_unbox_trampoline): Add an rgctx trampoline
4225 after the unbox trampoline in the full-aot case.
4227 2009-07-02 jonas echterhoff <jonas@unity3d.com>
4229 * mini.c: Move initialization of jit_mutex before debugger initialization
4234 * Info.plist: added Info.plist and link flag to enable the mono executable
4235 to access other processes. Requires codesigning of the executable to work.
4237 * mdb-debug-info32-darwin.s: The same as mdb-debug-info32.s, changed to
4242 2009-06-30 Zoltan Varga <vargaz@gmail.com>
4244 * driver.c (mini_regression): Handle loading errors. Fixes #508869.
4246 2009-06-29 Zoltan Varga <vargaz@gmail.com>
4248 * mini-exceptions.c (get_generic_context_from_stack_frame): Fix the case
4249 when the generic instance is an instantiation of a subclass of the
4250 methods class. Fixes #517166.
4252 2009-06-26 Zoltan Varga <vargaz@gmail.com>
4254 * mini-amd64.c (mono_arch_emit_prolog): Fix thread attaching in AOTed
4257 * mini.c (mono_jit_thread_attach): Allow domain to be NULL for calls from
4260 * CMakeLists.txt: Add minimal support for installation.
4262 2009-06-25 Zoltan Varga <vargaz@gmail.com>
4264 * aot-compiler.c (emit_and_reloc_code): Factor out the code to
4265 determine whenever a method is directly callable to a separate function.
4267 * mini-<ARCH>.c tramp-<ARCH>.c: Remove needless casts and add new
4268 needed ones as a result of the previous change.
4270 * mini-<ARCH>.c tramp-<ARCH>.c: Use mgreg_t* as the
4271 type of register arrays.
4273 * mini-trampolines.c tramp-<ARCH>.c aot-runtime.c: Use mgreg_t* as the
4274 type of register arrays.
4276 2009-06-24 Jerry Maine <crashfourit@gmail.com>
4278 Contributed under the terms of the MIT/X11 license by
4279 Jerry Maine <crashfourit@gail.com>.
4281 * mini-amd64.c: Added code to convert simd IR to native amd64 sse.
4283 2009-06-24 Zoltan Varga <vargaz@gmail.com>
4285 * aot-compiler.c (emit_plt): Define debug labels for most plt entries.
4287 2009-06-24 Neale Ferguson <neale@sinenomine.net>
4289 * mini-s390x.c: Correct LCONV_TO_Ix and ICONV_TO_Ix routines. Fix leave_method
4290 dump of structure return value. Fix some formatting.
4291 * cpu-s390x.md: Fix lengths of instruction sequences.
4292 * mini-s390.c: Minor formatting changes.
4294 2009-06-24 Zoltan Varga <vargaz@gmail.com>
4296 * mini-x86.h: Applied patch from Romain Tartiere (romain@blogreen.org).
4297 Use sigaction on freebsd as well.
4299 2009-06-23 Zoltan Varga <vargaz@gmail.com>
4301 * mini.h: Don't define MONO_ARCH_HAVE_TLS_GET to 0, as some code
4304 * mini.c (mini_init): Revert a change which breaks cross-compilation.
4306 2009-06-22 Mark Probst <mark.probst@gmail.com>
4308 * mini-ppc.c, cpu-ppc.md: Enable TLS on Darwin/G4.
4310 2009-06-22 Mark Probst <mark.probst@gmail.com>
4312 * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
4314 2009-06-20 Martin Baulig <martin@ximian.com>
4317 (MonoDebuggerThreadFlags): New enum typedef.
4318 (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
4319 (mono_debugger_thread_created): Added `gpointer func' argument;
4320 initialize the new `thread_flags' field.
4322 2009-06-18 Martin Baulig <martin@ximian.com>
4324 * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
4325 (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
4328 (mini_debugger_set_attach_ok): New function; sets the attach-ok
4329 flag in `MONO_DEBUGGER__info.runtime_info'.
4332 (mono_main): Call mini_debugger_set_attach_ok() if generics
4333 sharing is disabled.
4335 2009-06-22 Zoltan Varga <vargaz@gmail.com>
4337 * aot-compiler.c (add_wrappers): Fix a warning.
4339 * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
4340 the ppc load/store macro changes.
4342 2009-06-21 Zoltan Varga <vargaz@gmail.com>
4344 * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
4346 * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
4347 not just the got symbol.
4349 * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
4352 * aot-compiler.c unwind.c: Add infrastructure for unwind support on
4355 * aot-compiler.c: Remove some fixmes.
4357 * driver.c (mono_main): Print a helpful message when cross-compiling.
4359 * mini.c (mini_init): Disable signal handlers when cross-compiling.
4361 * method-to-ir.c (initialize_array_data): Do the optimization if the
4362 target byte order is little endian, instead of the host byte order.
4364 * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
4365 wrappers into the mscorlib image, Emit a unique plt symbol for each
4366 image, emit symbols for plt entries.
4368 * image-writer.c (img_writer_emit_symbol_size): New function to emit
4371 2009-06-20 Zoltan Varga <vargaz@gmail.com>
4373 * aot-compiler.c (add_wrappers): Avoid calling
4374 mono_marshal_get_type_info () since it can assert for some types.
4376 * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of
4377 ldtoken are used inside wrappers.
4379 * helpers.c: Add support for prefixing tools with the arch name.
4381 * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
4382 quantities when using ilp32.
4384 * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
4385 spill slots. Use sizeof(mgreg_t) for the spill slot size.
4387 * image-writer.c: Use .long on ilp32.
4389 * aot-compiler.c: Use 32 bit loads on ilp32.
4391 2009-06-19 Zoltan Varga <vargaz@gmail.com>
4393 * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
4395 * mini-ops.h: Use TARGET_POWERPC define for consistency.
4397 * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
4399 * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the
4400 second got slot of every aot image.
4402 * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
4403 aot on platforms with function pointers.
4405 * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
4406 support for aot/full aot on ppc/ppc64.
4408 * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
4409 arguments which are needed on ppc.
4411 * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
4414 * mini-trampolines.c aot-runtime.c: Update after the above changes.
4416 * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
4418 * regalloc2.c (BITS_PER_CHUNK): Ditto.
4420 * aot-compiler.c (emit_got_info): Fix reading unused memory.
4422 * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
4424 2009-06-17 Geoff Norton <gnorton@novell.com>
4426 * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
4428 2009-06-17 Zoltan Varga <vargaz@gmail.com>
4430 * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
4431 to control whenever the dwarf writer is in xdebug or aot mode.
4432 (emit_class_dwarf_info): Use a separate abbrev for structures without
4435 * aot-compiler.c: Pass the appending parameter to
4436 mono_dwarf_writer_create ().
4438 * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
4439 falls through to its next bblock. Fixes #513931.
4441 * iltests.il: Add a test.
4443 * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
4444 infor even if emit_line is FALSE, as the apple linker seems to require it.
4446 * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
4448 * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
4452 2009-06-15 Zoltan Varga <vargaz@gmail.com>
4454 * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
4457 2009-06-13 Zoltan Varga <vargaz@gmail.com>
4459 * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and
4460 'has_call_handler' fields.
4462 * method-to-ir.c (mono_method_to_ir): Set them if needed.
4464 * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
4465 first bblock if not needed. Fixes #512790.
4467 2009-06-11 Zoltan Varga <vargaz@gmail.com>
4469 * aot-compiler.c (mono_compile_assembly): Fix a warning.
4471 * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
4474 * aot-runtime.c (mono_aot_get_method): Use the original method's code for
4475 remoting-invoke-with-check wrappers, which are not needed when running with
4476 full-aot, since it doesn't support remoting.
4478 2009-06-10 Zoltan Varga <vargaz@gmail.com>
4480 * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
4482 * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
4483 method info, it is not used anymore.
4485 * mini.h: Bump AOT file format version.
4487 * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
4490 * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
4493 * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
4495 * mini.h: Bump AOT file format version.
4497 2009-06-10 Zoltan Varga <vargaz@gmail.com>
4499 * image-writer.c (asm_writer_emit_symbol_diff): Disable the
4500 TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
4503 * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
4504 of CKFINITE and FBGE for VFP.
4506 2009-06-09 Zoltan Varga <vargaz@gmail.com>
4508 * aot-compiler.c: Don't align code to 16 bytes on arm.
4510 * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
4511 before the methods they belong to.
4513 * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
4514 the full-aot case if possible, since the trampoline will be called right
4517 * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
4518 trampolines to 1024 after the change above.
4520 * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
4521 trampoline to save 8 bytes per trampoline.
4523 * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
4526 2009-06-08 Zoltan Varga <vargaz@gmail.com>
4528 * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
4530 2009-06-08 Martin Baulig <martin@ximian.com>
4533 (MonoDebuggerExceptionAction): Moved into debug-mini.h.
4534 (_mono_debugger_throw_exception): Don't make this static.
4535 (_mono_debugger_unhandled_exception): Likewise.
4536 (mono_debugger_handle_exception): Moved to mini-exceptions.c
4539 (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
4540 (_mono_debugger_throw_exception): Add function prototype.
4541 (_mono_debugger_unhandled_exception): Likewise.
4544 (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
4545 arg; return the first exception handler if the exception is caught
4546 and we're running inside the debugger.
4547 (mono_debugger_handle_exception): Moved here from debug-mini.c;
4548 improve exception handle inside runtime-invoke, check whether the
4549 exception is actually caught in the method being invoked and not
4550 by the runtime-invoke-wrapper.
4552 2009-06-08 Zoltan Varga <vargaz@gmail.com>
4554 * image-writer.c: Improve support for the osx assembler.
4556 * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
4559 2009-06-08 Martin Baulig <martin@ximian.com>
4562 (MonoDebuggerExceptionAction): Moved into debug-mini.h.
4563 (_mono_debugger_throw_exception): Don't make this static.
4564 (_mono_debugger_unhandled_exception): Likewise.
4565 (mono_debugger_handle_exception): Moved to mini-exceptions.c
4568 (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
4569 (_mono_debugger_throw_exception): Add function prototype.
4570 (_mono_debugger_unhandled_exception): Likewise.
4573 (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
4574 arg; return the first exception handler if the exception is caught
4575 and we're running inside the debugger.
4576 (mono_debugger_handle_exception): Moved here from debug-mini.c;
4577 improve exception handle inside runtime-invoke, check whether the
4578 exception is actually caught in the method being invoked and not
4579 by the runtime-invoke-wrapper.
4581 2009-06-07 Zoltan Varga <vargaz@gmail.com>
4583 * image-writer.c (append_subsection): Don't align subsections of the
4584 debug_line section as a workaround.
4586 * dwarfwriter.c: Emit line number info in the AOT case as well.
4588 2009-06-06 Steven Munroe <munroesj@us.ibm.com>
4590 This patch is contributed under the terms of the MIT/X11 license
4592 * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
4593 code_len <= code_size
4595 2009-06-06 Zoltan Varga <vargaz@gmail.com>
4597 * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
4599 2009-06-04 Zoltan Varga <vargaz@gmail.com>
4601 * aot-compiler.c aot-runtime.c: Delete references to static rgctx
4602 invoke wrappers, we now use trampolines instead.
4604 2009-06-04 Mark Probst <mark.probst@gmail.com>
4606 * mini-darwin.c: The exception thread must not be registered with
4609 2009-06-04 Mark Probst <mark.probst@gmail.com>
4611 * mini-gc.c: Disable the code because it makes SGen crash.
4613 2009-06-03 Zoltan Varga <vargaz@gmail.com>
4615 * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
4616 instead of asserting.
4618 2009-05-31 Zoltan Varga <vargaz@gmail.com>
4620 * aot-compiler.c (mono_compile_assembly): Move the creation of the
4621 output file after the code has been compiled.
4623 2009-05-30 Zoltan Varga <vargaz@gmail.com>
4625 * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
4627 2009-05-31 Zoltan Varga <vargaz@gmail.com>
4629 * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
4630 entries distinction to simplify the code.
4632 * mini.h: Bump AOT file format version.
4634 2009-05-28 Zoltan Varga <vargaz@gmail.com>
4636 * objects.cs: Fix the signature of one of the tests.
4638 * mini.c (mini_create_ftnptr): New helper function, moved here from
4640 (mini_get_addr_from_ftnptr): Ditto.
4641 (mini_init): Install the new helpers.
4643 2009-05-28 Martin Baulig <martin@ximian.com>
4645 Correctly initialize the debugger when embedding Mono.
4647 * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
4648 `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
4649 see documentation in mini_debug_running_inside_mdb().
4652 (mini_debug_running_inside_mdb): New function to check whether
4653 we're running inside mdb.
4655 * mini.c (mini_init): Call mini_debugger_init() if we're running
4656 inside the debugger.
4658 * driver.c (mono_main): Moved the call to mini_debugger_init()
4659 into mini_init() to make this work when embedding Mono.
4661 * debug-debugger.c (mini_debugger_init): Warn about duplicate
4662 calls to mini_debugger_init().
4664 * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
4665 mono_debugger_main() -> mini_debugger_main() and put them inside a
4666 `MONO_DEBUGGER_SUPPORTED' conditional.
4668 2009-05-26 Rodrigo Kumpera <rkumpera@novell.com>
4670 * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
4671 this is no longer in use.
4674 2009-05-26 Zoltan Varga <vargaz@gmail.com>
4676 * mini-sparc.c (add_outarg_load): Fix the sparc build.
4678 * aot-compiler.c (emit_method_code): Always write out C style symbols for
4681 2009-05-27 Martin Baulig <martin@ximian.com>
4683 2009-05-25 Rodrigo Kumpera <rkumpera@novell.com>
4685 * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
4686 long_conv_to_r_un to 64 bits.
4688 * cpu-x86.md: Increase the instruction size due to the changes.
4690 * iltests.il.in: Add regression test.
4694 2009-05-25 Rodrigo Kumpera <rkumpera@novell.com>
4696 * objects.cs: Move the previous test from basic.cs to here.
4698 2009-05-25 Rodrigo Kumpera <rkumpera@novell.com>
4700 * basic.cs: Add regression test for #506915.
4702 2009-05-25 Rodrigo Kumpera <rkumpera@novell.com>
4704 * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
4705 optimization we must check the bb of the first byte of stobj as
4706 it's the only one set in cil_offset_to_bb.
4710 2009-05-25 Zoltan Varga <vargaz@gmail.com>
4712 * image-writer.c: Fix pointer directive on ppc64.
4714 2009-05-24 Zoltan Varga <vargaz@gmail.com>
4716 * image-writer.c (asm_writer_emit_section_change): Avoid using
4717 .bss subsections on ppc too.
4719 2009-05-23 Zoltan Varga <vargaz@gmail.com>
4721 * image-writer.c: Fix the definition of TARGET_ASM_....
4723 * image-writer.c: Fix the emission of assembler directives in the last
4726 * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
4727 exception throwing code to accomodate ppc64.
4729 * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
4730 size to work on ppc64 too.
4732 * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
4735 * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
4736 the assembler dialect instead of using platform specific defines.
4738 2009-05-22 Geoff Norton <gnorton@novell.com>
4740 * mini-arm.c (get_call_info): If a structure is split between the stack
4741 and argument registers, we should not advance the stack pointer by the entire
4742 native size, but just by the amount that spilled.
4744 2009-05-22 Zoltan Varga <vargaz@gmail.com>
4746 * mini-arm.c (get_call_info): Handle structures with alignment requirements
4749 2009-05-21 Zoltan Varga <vargaz@gmail.com>
4751 * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
4754 * aot-compiler.c (add_extra_method): Fix up the collection of extra
4755 methods so wrapper don't get added twice.
4756 (add_generic_instances): Don't add methods of arrays.
4758 * generics.cs: Mark one test as !FULLAOT.
4760 2009-05-21 Rodrigo Kumpera <rkumpera@novell.com>
4762 * mini-x86.c (emit_move_return_value): Remove unused vars.
4764 2009-05-21 Rodrigo Kumpera <rkumpera@novell.com>
4766 * mini-x86.c (mono_arch_emit_call): The decompose code now supports
4767 decomposing 8 bytes structs into a LCALL.
4769 * mini-x86.c (emit_move_return_value): We no longer push the vtype
4770 pointer for where to store the returned regs.
4772 * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
4775 Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
4777 2009-05-20 Miguel de Icaza <miguel@novell.com>
4779 * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
4782 2009-05-21 Zoltan Varga <vargaz@gmail.com>
4784 * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
4786 * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
4789 2009-05-20 Rodrigo Kumpera <rkumpera@novell.com>
4791 * local-propagation.c (mono_local_cprop): Avoid local propagation
4792 across paired add/sub if the first instruction dest reg is it's
4793 source reg. For example:
4795 int_add_imm R12 <- R12 [1] clobbers: 1
4796 int_sub_imm R42 <- R12 [1] clobbers: 1
4798 The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
4799 maintain the math identify.
4803 2009-05-20 Andreia Gaita <avidigal@novell.com>
4805 * Makefile.am: avoid going on the network just to get the revision,
4808 2009-05-19 Massimiliano Mantione <massi@ximian.com>
4810 Fixed estimate for short branches on amd64 (they were off mark, and
4811 enabling call prolog-epilog instrumentations caused assertions).
4812 * mini.h (struct MonoBasicBlock): added max_length field to hold the
4813 estimate for the maximum length of this basic block.
4815 - mono_arch_emit_prolog: compute max_length for each basic block
4816 (instead of max_offset), and inflate size estimate also for entry bb
4817 in case of code instrumentation.
4818 - mono_arch_output_basic_block: get rid of "cpos" (the current
4819 estimated "position" in the code), and always use "offset" instead,
4820 which is accurate; at the beginning of the function quickly recompute
4821 max_offset for all the remaining blocks, starting from the current
4822 cfg->code_len (which is correct, and not estimated) and using the
4823 estimated block lengths computed previously.
4825 2009-05-17 Zoltan Varga <vargaz@gmail.com>
4827 * exceptions-ppc.c: Remove the caching from the trampoline creation
4828 functions, it is already done in the caller.
4830 * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
4832 * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add
4833 MONO_ARCH_GSHARED_SUPPORTED define.
4835 * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
4837 * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
4840 2009-05-16 Zoltan Varga <vargaz@gmail.com>
4842 * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the
4843 call to mono_marshal_get_rgctx_invoke ().
4845 * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
4846 mono_marshal_get_static_rgctx_invoke (), all platforms which support
4847 gshared use the static rgctx trampolines now.
4849 * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
4850 platform supports it.
4852 2009-05-15 Zoltan Varga <vargaz@gmail.com>
4854 * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
4856 * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
4858 2009-05-15 Zoltan Varga <vargaz@gmail.com>
4860 * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
4862 * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
4865 2009-05-15 Massimiliano Mantione <massi@ximian.com>
4867 Made it possible for mono_arch_instrument_epilog to preserve
4868 argument registers, otherwise instrumenting the "epilogue" before
4869 a tail call would clobber them.
4870 * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
4871 if like mono_arch_instrument_epilog but with an additional parameter
4872 that states if argument registers must be preserved.
4873 * mini.c: implemented mono_arch_instrument_epilog as a call to
4874 mono_arch_instrument_epilog_full without asking to preserve argument
4875 registers (this makes the existing code work as usual).
4877 - mono_arch_instrument_epilog: add parameter to transform it into
4878 mono_arch_instrument_epilog_full, and preserve argument registers
4880 - mono_arch_output_basic_block, OP_TAILCALL case: call
4881 mono_arch_instrument_epilog_full.
4882 * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
4883 mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
4884 only transformed mono_arch_instrument_epilog into
4885 mono_arch_instrument_epilog_full.
4887 2009-05-15 Geoff Norton <gnorton@novell.com>
4889 * mini-darwin.c: This works on arm now.
4891 2009-05-14 Geoff Norton <gnorton@novell.com>
4893 * jit.h, driver.c: Allow full-aot to be decided programatically by the
4896 2009-05-15 Zoltan Varga <vargaz@gmail.com>
4898 * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
4901 * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
4902 wrappers during full aot mode correctly.
4904 * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
4907 * aot-compiler.c (mono_aot_method_hash): Use our internal version of
4908 mono_metadata_type_hash ().
4910 2009-05-14 Massimiliano Mantione <massi@ximian.com>
4912 * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
4913 mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
4914 mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
4915 Removed MONO_INST_BRLABEL from the instruction flags, and the
4916 remaining code that used it, because we do not support branches inside
4917 basic blocks (and branch target labels) anymore.
4918 * Makefile.am: As part of the above cleanup, remove reference to
4919 BURG files which don't exist anymore.
4921 2009-05-14 Zoltan Varga <vargaz@gmail.com>
4923 * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
4926 * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
4927 to use mono_arch_throw_corlib_exception.
4929 * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use
4930 mono_arch_throw_corlib_exception for throwing corlib exceptions.
4932 * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
4935 * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
4937 * aot-compiler.c: Emit a local symbol prefixed with the assembly name
4938 for the got to make debugging easier and to avoid confusing it with the
4941 * aot-compiler.c (emit_method_code): Emit a C style symbol for each
4942 method so a breakpoint can be set when using gdb.
4944 2009-05-13 Zoltan Varga <vargaz@gmail.com>
4946 * aot-compiler.c (mono_aot_method_hash): Implement this properly based
4947 on mono_method_get_imt_slot ().
4949 * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
4950 num_decodes variables.
4952 * aot-compiler.c (mono_aot_method_hash): Revert part of the last
4953 change as it doesn't seem to work.
4955 * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
4958 2009-05-12 Zoltan Varga <vargaz@gmail.com>
4960 * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill
4961 MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
4963 * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
4964 builder when using full aot.
4966 * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
4967 here, it is already handled.
4969 * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
4972 * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
4974 * mini-arm.h: Enable IMT for full aot.
4976 * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
4977 arch doesn't support it.
4979 * mini.c (mini_init): Don't disable IMT for full aot if the
4980 architecture supports it.
4982 * mini.h (MonoAotTrampoline): New enum containing the different types
4983 of 'numerous' trampolines.
4984 (MONO_AOT_FILE_VERSION): Bump this.
4986 * aot-compiler.c aot-runtime.c: Unify the handling of specific and
4987 static rgctx trampolines. Add support for full-aot IMT thunks.
4989 * mini-amd64.h: Enable IMT for full aot.
4991 * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
4992 to exclude tests belonging to a category.
4994 * generics.cs: Mark some tests with a !FULLAOT category.
4996 * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
4999 2009-05-11 Zoltan Varga <vargaz@gmail.com>
5001 * aot-compiler.c (emit_and_reloc_code): Move the implementation of
5002 MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
5003 (emit_plt): Fix a warning.
5005 2009-05-10 Zoltan Varga <vargaz@gmail.com>
5007 * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
5008 back into aot-compiler.c to a place where the other functions shared by
5009 the runtime and aot compiler are.
5011 * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
5012 as done previously, instead of in MonoAotFileInfo, since pointers might have
5013 alignment requirements.
5015 * mini.h: Bump AOT file format version.
5017 2009-05-10 Miguel de Icaza <miguel@novell.com>
5019 * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
5020 that is used at runtime from the aot-compiler.c, this makes it
5021 work on setups that remove the AOT compiler from the output
5024 2009-05-09 Zoltan Varga <vargaz@gmail.com>
5026 * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
5029 * mini-ppc.h: Enable static rgctx trampolines for ppc.
5031 * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
5033 * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific
5034 stuff to mono_arch_decompose_long_opts ().
5035 (mono_decompose_opcode): Remove some dead code.
5037 2009-05-08 Rodrigo Kumpera <rkumpera@novell.com>
5039 * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
5040 cmethod can be null for quite a some reasons.
5042 2009-05-08 Rodrigo Kumpera <rkumpera@novell.com>
5044 * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
5046 2009-05-08 Zoltan Varga <vargaz@gmail.com>
5048 * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
5050 2009-05-08 Zoltan Varga <vargaz@gmail.com>
5052 * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
5053 (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
5054 whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
5055 calls returning structures by addr on amd64.
5057 * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
5059 * iltests.il.in: Restructure the tail call tests a bit.
5061 2009-05-07 Zoltan Varga <vargaz@gmail.com>
5063 * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
5064 for virtual methods too.
5066 2009-05-06 Raja R Harinath <harinath@hurrynot.org>
5068 * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
5069 due to regression in verifying System.dll.
5071 2009-05-06 Zoltan Varga <vargaz@gmail.com>
5073 * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
5076 * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
5079 * aot-compiler.c aot-runtime.c: Use our own hash function instead of
5080 g_str_hash () which can change.
5082 * driver.c (mini_regression): Disable optimizations not supported by
5083 the cpu. Fixes #500019.
5085 * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
5088 2009-05-06 Zoltan Varga <vargaz@gmail.com>
5090 * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
5091 to the latest LLVM code.
5093 2009-05-05 Zoltan Varga <vargaz@gmail.com>
5095 * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
5097 2009-05-04 Zoltan Varga <vargaz@gmail.com>
5099 * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on
5102 * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
5103 no longer saving offsets, so just save the patch types along with the other
5105 * aot-runtime.c (load_patch_info): Update after the changes to
5106 encode_patch_list ().
5107 (decode_got_entry): Removed, merged into load_patch_info ().
5108 (is_shared_got_patch): Removed, call the same function from
5111 * mini.h: Bump aot file format version.
5113 * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
5114 half-finished no-dlsym code.
5116 * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
5119 * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the
5120 MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
5122 2009-05-02 Zoltan Varga <vargaz@gmail.com>
5124 * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
5125 buffer length to work with AOT code.
5127 * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
5128 ldfld/stfld opcodes.
5130 * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
5133 * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
5135 * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
5137 * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
5140 * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
5141 if needed. Don't decompose long operations when using llvm.
5143 2009-05-01 Zoltan Varga <vargaz@gmail.com>
5145 * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
5148 * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
5150 2009-05-03 Martin Baulig <martin@ximian.com>
5152 * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
5153 mono_debugger_insert_method_breakpoint() since the class init
5154 handler we're inserting at the top of the method already gives us
5157 2009-04-30 Zoltan Varga <vargaz@gmail.com>
5159 * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
5160 to mono_arch_decompose_long_opts () for x86 and arm.
5162 2009-04-29 Zoltan Varga <vargaz@gmail.com>
5164 * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
5167 2009-04-28 Zoltan Varga <vargaz@gmail.com>
5169 * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
5172 2009-04-26 Zoltan Varga <vargaz@gmail.com>
5174 * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
5175 number of trampolines used in full-aot mode.
5177 * aot-compiler.c: Add an ntrampolines option to set the number of
5178 trampolines emitted in full-aot mode.
5180 2009-04-27 Zoltan Varga <vargaz@gmail.com>
5182 * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
5183 a volatile load. Get rid of get_tempname (), llvm assigns names
5186 * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
5189 * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
5192 * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
5195 * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
5196 to the same register as a fixed sreg2. Fixes #497271.
5198 * iltests.il.in: Add a new test.
5200 2009-04-26 Zoltan Varga <vargaz@gmail.com>
5202 * mini-amd64.c: Use moves instead of pushes for passing arguments on the
5203 stack, since pushes complicate exception handling.
5205 * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
5206 the stack if they are passed using moves.
5208 * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
5210 * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
5213 * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the
5214 icalls themselves. Convert arguments of FCOMPARE. Convert the destination
5215 of FMOVE if it is an R4.
5217 2009-04-25 Zoltan Varga <vargaz@gmail.com>
5219 * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
5221 * mini.h (LLVMCallInfo): New structure to store calling convention
5222 information for the LLVM back end similar to the CallInfo structures in
5225 * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
5226 call information in a format usable by LLVM.
5227 (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
5229 * method-to-ir.c (mono_emit_call_args): Emit calls using
5230 mono_llvm_emit_call () when compiling using LLVM.
5232 * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
5233 comments to all functions. Fix memory leaks. Add a public init/cleanup
5236 * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
5238 * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
5239 mono_array_new_va () jit icall.
5241 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
5243 * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
5244 multiple machine description files to be specified.
5245 * mini-ops.h: fixes for cross-compilation.
5247 2009-04-22 Miguel de Icaza <miguel@novell.com>
5249 * aot-runtime.c (make_writable): Use mono_mprotect to simplify
5252 2009-04-22 Zoltan Varga <vargaz@gmail.com>
5254 * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
5255 to prevent asserts in various passes. Fixes #497220.
5257 2009-04-21 Zoltan Varga <vargaz@gmail.com>
5259 * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
5262 * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
5263 table to avoid duplicates.
5265 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5267 * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
5270 2009-04-20 Rodrigo Kumpera <rkumpera@novell.com>
5272 * mini.c (mini_method_verify): Fail fulltrust code if the exception
5273 is for method or field access.
5275 2009-04-20 Zoltan Varga <vargaz@gmail.com>
5277 * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
5280 * mini-llvm.c (mono_llvm_emit_method): Use it.
5282 * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
5283 (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
5286 * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for
5287 synchronized methods.
5289 * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
5291 * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
5293 * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
5296 * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
5297 allowing some options to be set dynamically.
5299 2009-04-19 Zoltan Varga <vargaz@gmail.com>
5301 * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
5302 unconditional branch.
5304 * mini.h (MonoTrampolineType): Add new trampoline type
5305 'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
5308 * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline
5311 * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
5314 * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
5315 is enabled. Instead, use the llvm vcall trampoline.
5317 * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
5319 * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
5321 * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
5324 * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of
5325 MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
5327 * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
5328 OP_IA64_CSET opcode.
5330 * mini.c: Fix a warning.
5332 * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
5333 THROW to the appropriate llvm type.
5335 2009-04-18 Zoltan Varga <vargaz@gmail.com>
5337 * mini.c (mini_method_compile): Add statistics for methods JITted
5340 2009-04-17 Zoltan Varga <vargaz@gmail.com>
5342 * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
5343 OP_IA64_CMP_<cond>_IMM opcodes.
5345 2009-04-17 Zoltan Varga <vargaz@gmail.com>
5347 * mini-llvm.c (emit_cond_system_exception): Implement throwing of
5350 * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
5353 * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
5356 2009-04-17 Atsushi Enomoto <atsushi@ximian.com>
5358 * mini-exceptions.c : add thread id to EXCEPTION trace message.
5360 2009-04-17 Zoltan Varga <vargaz@gmail.com>
5362 * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
5365 * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
5366 rgctx invoke trampolines for x86.
5368 * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
5369 indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
5370 (mono_arch_get_vcall_slot): Simplify this.
5372 2009-04-16 Zoltan Varga <vargaz@gmail.com>
5374 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
5375 mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
5377 2009-04-14 Zoltan Varga <vargaz@gmail.com>
5379 * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx
5380 trampolines for ARM. Add full-aot support for delegate invokes for ARM.
5382 * mini-trampolines.c (mono_magic_trampoline): Fix the build.
5384 * liveness.c (visit_bb): Remove a needless assert.
5386 2009-04-13 Zoltan Varga <vargaz@gmail.com>
5388 * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
5389 full aot support to the arch specific code.
5391 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
5393 * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
5395 * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
5397 * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
5398 collect information about the delegate invoke impl trampolines.
5400 * mini.h (MonoAotTrampInfo): New structure collecting the information needed
5401 to save trampolines during full-aot mode.
5403 * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
5404 creation function which returns a trampoline which sets the rgctx
5406 (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
5407 wrapper if possible.
5408 (mono_delegate_trampoline): Ditto.
5410 * mini.c (mono_jit_runtime_invoke): Ditto.
5412 * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
5414 * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
5416 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5418 2009-04-12 Zoltan Varga <vargaz@gmail.com>
5420 * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
5421 just setting the opcode to OP_NOP.
5423 2009-04-11 Zoltan Varga <vargaz@gmail.com>
5425 * mini.c (mini_method_compile): Put the last change inside an
5426 #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
5428 * mini.c (mini_method_compile): Disable sharing of stack slots/registers
5429 and extend live ranges to cover the whole method when using xdb.
5431 * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
5432 do it in the trampolines.
5434 * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
5437 * mini-trampolines.c (mono_delegate_trampoline): Ditto.
5439 * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
5440 call code in full-aot mode since IMT is disabled there.
5441 (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
5442 new JIT no longer has that restriction.
5444 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5446 * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
5447 a more compact format.
5448 (mono_aot_wrapper_name): New function to return a unique name for a
5449 wrapper method, also used by the AOT runtime.
5451 * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
5454 * aot-compiler.c (add_generic_class): Add the helper methods from T[]
5455 when a ICollection<T> etc is encountered.
5456 (add_generic_instances): Process method arguments/locals too.
5457 (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
5460 * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
5462 2009-04-10 Zoltan Varga <vargaz@gmail.com>
5464 * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
5466 * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
5468 * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
5469 representing the result of the decomposition. Nullify instructions
5470 instead of setting them to OP_NOP since nops can't have registers
5473 2009-04-09 Zoltan Varga <vargaz@gmail.com>
5475 * aot-compiler.c (mono_compile_assembly): Split this huge function into
5476 smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
5477 info. Strip 'mapping symbols' on ARM.
5479 * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
5481 * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
5482 this with the native genmdesc.
5484 2009-04-08 Bill Holmes <billholmes54@gmail.com>
5486 * aot-runtime.c: Fixing the MSVC build.
5488 Code is contributed under MIT/X11 license.
5490 2009-04-08 Zoltan Varga <vargaz@gmail.com>
5492 * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since
5493 JITted code depends on it.
5495 2009-04-08 Raja R Harinath <harinath@hurrynot.org>
5497 * aot-compiler.c: Use new MonoGenericParam accessors.
5499 2009-04-08 Raja R Harinath <harinath@hurrynot.org>
5501 Reduce memory usage and improve correctness wrt MonoGenericParam
5502 * aot-runtime.c (decode_klass_ref): Simplify generic parameter
5503 handing. Avoid allocating MonoGenericParams, but use the ones in
5504 the container itself.
5506 2009-04-07 Miguel de Icaza <miguel@novell.com>
5508 * tasklets.c: Return exceptions in the out argument.
5510 2009-04-08 Zoltan Varga <vargaz@gmail.com>
5512 * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
5513 opcode. Use pointer types in more places instead of casting them to
5516 * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
5518 (mono_llvm_optimize_method): New helper function to optimize a method.
5520 * method-to-ir.c (mono_emit_widen_call_res): Extract the call result
5521 widening code so it could be called from more places.
5522 (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
5523 code paths in the call opcodes.
5525 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
5527 * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
5529 2009-04-06 Zoltan Varga <vargaz@gmail.com>
5531 * dwarfwriter.c: Use _ to separate class name
5532 components as gdb can't handle '.'. Represent reference variables
5535 * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
5537 * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
5539 * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
5541 * gc-test.cs: New file with GC stack marking tests.
5543 * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
5544 negative numbers for vfp.
5546 * basic-float.cs: Add a test.
5548 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
5550 * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
5552 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
5554 * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
5555 part of tasklet/continuation support.
5557 2009-04-05 Zoltan Varga <vargaz@gmail.com>
5559 * mini-llvm.c (mono_llvm_emit_method): Move the handling of
5560 amd64 opcodes inside an ifdef.
5562 * dwarfwriter.c: Emit inheritance information for classes, emit fields
5565 * dwarfwriter.c (emit_type): Emit the class info for classes.
5567 2009-04-04 Zoltan Varga <vargaz@gmail.com>
5569 * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
5571 * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
5573 * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
5575 * ssa.c (mono_ssa_compute): Fix some memory leaks.
5577 2009-04-03 Zoltan Varga <vargaz@gmail.com>
5579 * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
5581 * mini-llvm.c: Update comments.
5583 * mini.h (COMPILE_LLVM): New macro.
5585 * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
5587 * ssa.c (mono_ssa_compute): Ditto.
5589 * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
5590 the unwind ops from a DWARF FDE.
5592 * mini-llvm.c: Implement generation of unwind info for LLVM compiled
5593 methods by extracting the dwarf unwind ops from the unwind info generated
5596 * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
5599 * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
5602 2009-04-02 Zoltan Varga <vargaz@gmail.com>
5604 * Makefile.am (llvm_sources): Enable this.
5606 * mini.c (mini_method_compile): Add support for compiling with LLVM,
5607 failing back to the JIT if something cannot be handled.
5609 * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
5610 compiling with LLVM.
5612 * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
5613 compiling with LLVM.
5615 * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when
5616 compiling with LLVM.
5618 * mini-ops.h: Add a few opcodes needed by LLVM.
5620 * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
5623 * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
5626 * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
5628 * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
5630 2009-04-01 Mark Probst <mark.probst@gmail.com>
5632 * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
5633 ridiculously large methods.
5635 2009-03-31 Martin Baulig <martin@ximian.com>
5637 * debug-debugger.c (debugger_remove_breakpoint): Call
5638 mono_debugger_remove_class_init_callback ().
5640 2009-03-31 Zoltan Varga <vargaz@gmail.com>
5642 * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
5643 right before emitting code, not at the start.
5645 * mini.c (mono_postprocess_patches): Extract this into a separate function
5646 from mono_codegen ().
5648 * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
5649 byref types correctly.
5651 2009-03-30 Zoltan Varga <vargaz@gmail.com>
5653 * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
5656 2009-03-29 Zoltan Varga <vargaz@gmail.com>
5658 * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before
5659 indirect calls, this avoids problems where get_vcall_slot () would get
5660 confused by the native code for the instruction preceeding the call.
5661 (mono_arch_get_vcall_slot): Simplify this.
5662 (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
5664 * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
5665 register allocator now seems to depend on them instead of the data in
5668 * mini.c (mini_method_compile): Throw the correct type of exception if
5669 mono_method_get_header () fails because of a loading error.
5671 2009-03-28 Zoltan Varga <vargaz@gmail.com>
5673 * mini.c (mini_method_compile): Clear the loader error if the method
5674 header cannot be decoded.
5676 * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual
5677 interface methods on proxies correctly.
5679 * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
5680 this argument for vtype methods. Add precise liveness info for arguments.
5682 * mini-codegen.c (mono_print_ins_index): Print the vreg of the
5683 LIVERANGE_START/END opcodes.
5685 * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
5686 for arguments and values in registers.
5688 2009-03-27 Zoltan Varga <vargaz@gmail.com>
5690 * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
5691 return a valuetype. Fixes #487518.
5693 * iltests.il: Add a test.
5695 * aot-compiler.c: Use mono_thread_create () to create helper threads.
5697 * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
5698 closed over a null reference correctly.
5700 2009-03-26 Zoltan Varga <vargaz@gmail.com>
5702 * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
5704 2009-03-25 Mark Probst <mark.probst@gmail.com>
5706 * mini-codegen.c (mono_local_regalloc): Don't let sregs get
5707 allocated to the same registers as fixed sregs.
5709 2009-03-24 Mark Probst <mark.probst@gmail.com>
5711 * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
5714 * method-to-ir.c: Handle more cases for
5715 Interlocked.CompareExchange.
5717 * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
5718 mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
5719 ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
5721 2009-03-23 Zoltan Varga <vargaz@gmail.com>
5723 * aot-runtime.c (decode_method_ref): Fix a warning.
5725 * unwind.c (mono_unwind_frame): Ditto.
5727 2009-03-22 Zoltan Varga <vargaz@gmail.com>
5729 * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
5730 (mono_compile_assembly): Enable the binary writer for full-aot as well.
5732 * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
5733 fix the handling of large values in the ALU_PC_G0_NC relocation.
5735 2009-03-22 Zoltan Varga <vargaz@gmail.com>
5737 * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
5739 2009-03-22 Mark Probst <mark.probst@gmail.com>
5741 * method-to-ir.c (mono_spill_global_vars): Support for ternary
5744 2009-03-22 Mark Probst <mark.probst@gmail.com>
5746 * method-to-ir.c: MINI_OP3 needs a comma.
5748 * method-to-ir.c, mini.h, mini.c: Remove
5749 mono_init_op_sreg_counts ().
5751 2009-03-22 Zoltan Varga <vargaz@gmail.com>
5753 * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
5756 * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
5759 * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
5761 * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
5764 2009-03-21 Mark Probst <mark.probst@gmail.com>
5766 * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
5767 liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
5768 mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
5771 2009-03-20 Zoltan Varga <vargaz@gmail.com>
5773 * driver.c: Change location of gc_wrapper.h.
5775 * method-to-ir.c (mono_find_block_region): Handle try clauses nested
5776 inside finally clauses correctly. Fixes #485721.
5778 * mini.c (mono_find_spvar_for_region): This needs to handle try regions
5779 after the change above.
5781 * exceptions.cs: Add a test.
5783 2009-03-19 Zoltan Varga <vargaz@gmail.com>
5785 * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
5787 * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
5788 into cfg->used_int_regs, it is not needed with the dwarf unwinder.
5789 (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
5791 * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
5792 the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
5794 2009-03-19 Sebastien Pouliot <sebastien@ximian.com>
5796 * method-to-ir.c: Allow CoreCLR to throw FieldAccessException.
5797 Simplify logic for ensure_method_is_allowed_to_call_method.
5798 Handle wrappers on callers.
5800 2009-03-19 Zoltan Varga <vargaz@gmail.com>
5802 * Makefile.am (fullaotcheck): Don't run the generics tests, some of
5805 * basic-simd.cs: Fix the names of some test methods.
5807 2009-03-18 Geoff Norton <gnorton@novell.com>
5809 * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
5811 2009-03-18 Zoltan Varga <vargaz@gmail.com>
5813 * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
5815 2009-03-17 Jb Evain <jbevain@novell.com>
5817 * driver.c: remove now uneeded call to mono_gc_base_init before
5820 2009-03-17 Jb Evain <jbevain@novell.com>
5822 * dwarfwriter.c (token_handler): handle more cases.
5824 2009-03-17 Sebastien Pouliot <sebastien@ximian.com>
5826 * method-to-ir.c: Remove more dead code (that was required only
5827 because of method_is_safe). Fix compiler warnings.
5829 2009-03-17 Sebastien Pouliot <sebastien@ximian.com>
5831 * method-to-ir.c: Remove unneeded/useless method_is_safe
5832 http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
5834 2009-03-16 Rodrigo Kumpera <rkumpera@novell.com>
5836 * mini.c (mini_method_compile): Print the method been compiled with
5837 verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
5838 for people not familiar with the runtime.
5840 2009-03-17 Zoltan Varga <vargaz@gmail.com>
5842 * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
5843 a managed object which is later put into a GList. Return its class instead.
5845 * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
5846 stack slots when using sgen.
5848 2009-03-16 Zoltan Varga <vargaz@gmail.com>
5850 * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
5852 2009-03-14 Zoltan Varga <vargaz@gmail.com>
5854 * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
5855 > so it works on the first vreg as well.
5857 2009-03-13 Zoltan Varga <vargaz@gmail.com>
5859 * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
5862 * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
5864 * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
5867 2009-03-12 Zoltan Varga <vargaz@gmail.com>
5869 * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
5870 native->IL offset mapping.
5872 2009-03-11 Zoltan Varga <vargaz@gmail.com>
5874 * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
5876 * basic.cs: Add a test.
5878 2009-03-11 Mark Probst <mark.probst@gmail.com>
5880 * mini-x86.c (mono_arch_output_basic_block): Use different
5881 registers in case the ones we want to overwrite are used by the
5882 other operand. Fixes regression in #480807.
5884 2009-03-10 Zoltan Varga <vargaz@gmail.com>
5886 * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
5888 * dwarfwriter.c (emit_line_number_info): The line number info for
5889 IL code was off by one. Fix that.
5891 * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
5894 2009-03-09 Mark Probst <mark.probst@gmail.com>
5896 Contributed under the terms of the MIT/X11 license by Steven
5897 Munroe <munroesj@us.ibm.com>.
5899 * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
5902 2009-03-08 Zoltan Varga <vargaz@gmail.com>
5904 * dwarfwriter.c (token_handler): Decode method references in non-wrappers
5907 2009-03-06 Zoltan Varga <vargaz@gmail.com>
5909 * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
5910 the delegate ctor handling code. Fixes #482638.
5912 * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
5915 * iltests.il.in: Add a test.
5917 * mini-darwin.c (mono_chain_signal): Remove this, it is already in
5920 2009-03-05 Mark Probst <mark.probst@gmail.com>
5922 * mini-trampolines.c (mono_create_jump_trampoline): If the method
5923 is shared generic code, return the trampoline, even if the method
5924 has already been compiled. Fixes #479763.
5926 * mini.c, mini.h: New function
5927 mono_jit_find_compiled_method_with_jit_info() which is the same as
5928 mono_jit_find_compiled_method() but also returns the jit info.
5930 2009-03-05 Mark Probst <mark.probst@gmail.com>
5932 * method-to-ir.c (mono_method_to_ir): Only force the vtable var
5933 for methods which actually have one. For all other methods, make
5934 sure the this argument var is live the whole method.
5936 * mini.c (mini_method_compile): Every shared method has a
5937 this/vtable/mrgctx info. Fixes #480807.
5939 2009-03-05 Mark Probst <mark.probst@gmail.com>
5941 * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
5942 generic/imt thunks where some entries branch through the vtable,
5943 while other entries branch directly.
5945 2009-03-05 Zoltan Varga <vargaz@gmail.com>
5947 * mini-darwin.c (mono_chain_signal): Define this to fix the build.
5949 * mini-windows.c: Ditto.
5951 * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
5954 2009-03-04 Zoltan Varga <vargaz@gmail.com>
5956 * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
5959 2009-03-04 Mark Probst <mark.probst@gmail.com>
5961 * method-to-ir.c: Don't inline methods that use JMP. Fixes
5964 2009-03-04 Mark Probst <mark.probst@gmail.com>
5966 * exceptions-x86.c: Include debug-mini.h - fixes build.
5968 2009-03-04 Martin Baulig <martin@ximian.com>
5970 * debug-mini.c: Clean up the exception API and add documentation.
5971 (mono_debugger_handle_exception): New public method; this is
5972 called when throwing an exception or encountering an unhandled one.
5973 (mono_debugger_call_exception_handler): Formerly known as
5974 mono_debugger_handle_exception(); this is used to tell the
5975 debugger that we're about to invoke an exception handler.
5977 2009-03-04 Martin Baulig <martin@ximian.com>
5979 * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
5980 ../metadata/mono-debug-debugger.c; save and reset exception state.
5982 2009-03-02 Martin Baulig <martin@ximian.com>
5984 * debug-mini.c: Moved the debugger exception handling here from
5985 ../metadata/mono-debug-debugger.c.
5988 (MonoDebuggerExceptionAction): New exception typedef.
5991 (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
5993 * exceptions-amd64.c
5994 (mono_amd64_throw_exception): Use the new debugger exception
5998 (mono_handle_exception_internal): Don't call
5999 mono_debugger_unhandled_exception() here.
6001 2009-03-03 Zoltan Varga <vargaz@gmail.com>
6003 * mini.c aot-compiler.c: Update after the changes to
6004 mono_marshal_get_runtime_invoke ().
6006 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot):
6007 Virtual generic methods might not have method->slot set, work around
6010 * generics.cs: Add a test.
6012 2009-03-02 Geoff Norton <gnorton@novell.com>
6015 * driver.c: Allow signal chaining of SIGFPE as well.
6017 2009-03-02 Zoltan Varga <vargaz@gmail.com>
6019 * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
6020 this since it now receives the method not its generic context in the
6023 * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
6024 generic/imt thunks where some entries branch through the vtable, while
6025 other entries branch directly.
6027 * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
6029 * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call
6030 support for interface methods as well.
6032 * mini-trampolines.c: Add support for virtual generic methods in interfaces
6033 using the normal IMT thunks.
6035 generics.cs: Add new tests.
6037 * method-to-ir.c (mono_method_to_ir): Pass the method instead of
6038 the generic inst to the generic imt thunks. This fixes AOT support,
6039 improves consistency with the normal IMT thunks, and makes it easier to
6040 add support for interface generic virtual methods later.
6042 * mini-trampolines.c (mono_magic_trampoline): Ditto.
6044 2009-02-28 Zoltan Varga <vargaz@gmail.com>
6046 * driver.c (mono_set_signal_chaining): New public API function to enable
6047 signal chaining on POSIX platforms.
6049 * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland
6050 (si@lindenlab.com) to implement signal chaining. The original patch was
6051 contributed under the MIT X/11 license:
6052 https://bugzilla.novell.com/show_bug.cgi?id=318894
6054 2009-02-27 Zoltan Varga <vargaz@gmail.com>
6056 * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
6057 too until it can be made to run on amd64.
6059 2009-02-26 Zoltan Varga <vargaz@gmail.com>
6061 * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
6062 to get_generic_context_from_code () + get_call_info () if possible.
6064 2009-02-25 Zoltan Varga <vargaz@gmail.com>
6066 * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
6067 suspend-on-sigsegv functionality.
6069 * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
6070 to suspend when a native SIGSEGV is received. This is useful for debugging
6071 crashes which don't happen under gdb, since a live process contains more
6072 information than a core file.
6074 * mini-exceptions.c (mono_print_thread_dump): Use
6075 MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
6077 * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
6079 * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
6081 * basic-float.cs: Disable the tests which currently fail on amd64.
6083 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null
6084 value to mono_arch_patch_callsite () to fix crashes.
6086 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
6088 2009-02-23 Zoltan Varga <vargaz@gmail.com>
6090 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
6091 nop code by patching the call address to point to the nullified class init
6092 trampoline, as the former does not seem to be safe on SMP machines.
6094 2009-02-23 Mark Probst <mark.probst@gmail.com>
6096 * mini-ops.h: Fix the argument types for a few x86 opcodes where
6099 2009-02-23 Zoltan Varga <vargaz@gmail.com>
6101 * basic-float.cs basic-calls.cs: Fix warnings.
6103 2009-02-22 Mark Probst <mark.probst@gmail.com>
6105 * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
6106 correct frame pointer in the LMF. Should fix #478394.
6108 2009-02-22 Zoltan Varga <vargaz@gmail.com>
6110 * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
6112 * image-writer.c: Make the binary writer less verbose.
6114 2009-02-21 Zoltan Varga <vargaz@gmail.com>
6116 * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
6117 are called from runtime invoke wrappers.
6119 2009-02-20 Zoltan Varga <vargaz@gmail.com>
6121 * cpu-ppc.md (store_memindex): Increase the size of this.
6123 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
6125 Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6127 * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
6129 * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
6132 Last fix for of #467201.
6135 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
6137 Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6139 * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
6140 and long_conv_to_r8_2:
6142 Fixed part of #467201.
6144 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
6146 Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6148 * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
6149 conversion to 32 bits.
6151 * cpu-x86.md: Increase the size of int_conv_to_r4.
6153 * basic-float.cs: Add a test for this.
6155 Fixed part of #467201.
6157 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
6159 Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6161 * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
6162 conversion to 64 bits.
6164 * basic-float.cs: Add a test for this.
6166 Fixed part of #467201.
6168 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
6170 Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6172 * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
6173 This behavior is compatible with MS.
6175 * iltest.il.in: Add a test for this.
6177 Fixed part of #467201.
6179 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
6181 Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6183 * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
6184 change the precision of the value.
6186 * cpu-x86.md: Define len for float_conv_to_r4.
6188 * basic-float.cs: Add a test for this.
6190 Fixed part of #467201.
6192 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
6194 * mini.c: Adjust locking order to the new semantics where the loader lock
6197 2009-02-18 Rodrigo Kumpera <rkumpera@novell.com>
6206 * mini-trampolines.c:
6219 * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
6221 2009-02-18 Zoltan Varga <vargaz@gmail.com>
6223 * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
6226 2009-02-17 Zoltan Varga <vargaz@gmail.com>
6228 * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
6229 for cctors if needed.
6231 2009-02-17 Mark Probst <mark.probst@gmail.com>
6233 * mini-ppc.c: Fix build on Darwin.
6235 2009-02-17 Zoltan Varga <vargaz@gmail.com>
6237 * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
6238 version instead of 3 as valgrind doesn't like version 3.
6240 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
6242 * aot-compiler.c (mono_aot_method_hash): New function to return a hash
6243 usable for hashing methods.
6244 (emit_extra_methods): Use the new hash to avoid putting every method in the
6247 * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
6249 * aot-runtime.c (can_method_ref_match_method): New function to quickly check
6250 whenever a method ref could match a method.
6252 * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
6255 * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded
6258 * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
6260 * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
6261 the encoding buffer.
6263 * method-to-ir.c (mono_method_check_inlining): Avoid calling
6264 mono_method_get_header () on inflated methods as an optimization.
6266 2009-02-16 Zoltan Varga <vargaz@gmail.com>
6268 * ssa.c (fold_ins): Fix another crash if the instruction following the
6269 switch was optimized away.
6271 2009-02-16 Mark Probst <mark.probst@gmail.com>
6273 Contributed under the terms of the MIT/X11 license by Steven
6274 Munroe <munroesj@us.ibm.com>.
6276 * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
6278 2009-02-16 Zoltan Varga <vargaz@gmail.com>
6280 * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
6281 around the mono_domain_alloc calls, it is now done by the functions
6284 * aot-compiler.c (compile_method): Only add wrappers referenced by
6285 the method if compiling with full AOT.
6286 (mono_compile_assembly): Error out if --aot=full is specified on
6287 a platform where it is not supported.
6289 * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
6292 * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
6295 * aot-runtime.c (load_named_code): Handle
6296 mono_arm_throw_exception_by_token.
6298 * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
6300 * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
6303 * Makefile.am (fullaotcheck): Exit if a test fails.
6305 * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
6307 (mono_compile_assembly): Handle the assembler failing.
6309 * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
6310 accepting subsections of .bss.
6312 * ssa.c (visit_inst): Fix a crash if the instruction following a switch
6315 * aot-compiler.c: Remove some unused includes.
6317 * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
6318 now in MonoImageWriter.
6320 * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
6321 code sequence which matches a non-virtual call. Fixes #472654.
6323 2009-02-15 Zoltan Varga <vargaz@gmail.com>
6325 * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
6328 * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
6329 use the image/dwarf writers directly.
6331 * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
6334 * aot-compiler.c (MonoAotCompile): Remove fields which are now in
6337 * image-writer.h: Fix some typos.
6339 * dwarfwriter.h dwarfwriter.c: New files.
6341 * aot-compiler.c: Extract the DWARF info writing functionality into a
6344 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
6345 argument to return unwind info.
6347 * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
6349 * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
6351 * aot-runtime.c (decode_method_ref): Add a case for
6352 MONO_AOT_METHODREF_WRAPPER_NAME.
6354 * mini.h: Add constants for the magic numbers used in encode_method_ref ()
6357 * aot-compiler.c (encode_method_ref): Use the new constants.
6359 * aot-runtime.c (decode_method_ref): Ditto.
6361 * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
6362 be compiled, not the icall itself.
6364 2009-02-14 Zoltan Varga <vargaz@gmail.com>
6366 * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
6367 using decode_method_ref ().
6369 * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
6370 convert it to an in32. Fixes #475859.
6372 * arrays.cs: Add a test.
6374 2009-02-12 Zoltan Varga <vargaz@gmail.com>
6376 * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in
6379 * basic-long.cs: Add a test.
6381 2009-02-12 Mark Probst <mark.probst@gmail.com>
6383 * mini-x86.c, mini-x86.h: Very simple frame pointer removal. We
6384 remove the frame pointer in leaf methods which don't receive any
6385 arguments, don't throw exceptions and don't do dynamic stack
6388 2009-02-12 Zoltan Varga <vargaz@gmail.com>
6390 * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
6391 the fail_tramp changes. Hopefully fixes #475132.
6393 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
6395 * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
6396 instead of mono_metadata_signature_dup_full.
6398 2009-02-12 Zoltan Varga <vargaz@gmail.com>
6400 * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
6401 for processing jump tables. Fixes #473787.
6403 2009-02-11 Mark Probst <mark.probst@gmail.com>
6405 * mini-generic-sharing.c: mini_method_get_context() just calls
6406 mono_method_get_context_general() now.
6408 * mini.c, mini.h: Moved get_object_generic_inst(),
6409 construct_object_context_for_method() and
6410 mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
6412 2009-02-11 Zoltan Varga <vargaz@gmail.com>
6414 * branch-opts.c (mono_if_conversion): Handle the case where the merged
6415 basic block fell through to its successor bblock without a branch. Fixes
6418 * iltests.il.in: Add a test.
6420 * aot-compiler.c (encode_method_ref): Encode methods of array types.
6421 (can_encode_patch): We can now handle arrays of generic parameters and
6424 * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
6426 * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
6427 the AOT file to avoid some #ifdefs in aot-runtime.c
6429 * mini.h: Bump AOT file format version.
6431 2009-02-10 Zoltan Varga <vargaz@gmail.com>
6433 * Makefile.am (fullaotcheck): Make this run the tests.
6435 * aot-compiler.c: Make the printing of skipped methods runtime configurable.
6437 2009-02-10 Mark Probst <mark.probst@gmail.com>
6439 * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
6440 individually. Fixes #473482.
6442 2009-02-10 Zoltan Varga <vargaz@gmail.com>
6444 * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
6446 2009-02-09 Jeffrey Stedfast <fejj@novell.com>
6448 * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
6449 (mono_compile_assembly): Hush compile warnings about
6450 uninitialized [tmp_]outfile_name variables in the !use_bin_writer
6453 2009-02-10 Zoltan Varga <vargaz@gmail.com>
6455 * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
6457 * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
6459 * aot-compiler.c: Fix arm support.
6461 * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
6462 img_writer_emit_unset_mode () function.
6464 * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
6465 (mono_unwind_get_dwarf_pc_reg): Ditto.
6467 * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
6468 Move almost all platform specific code to a set of arch_ functions,
6469 and document them to ease porting.
6471 * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
6473 * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
6475 * aot-compiler.c: Extract the image writing functionality into a separate
6476 module to reduce the size of this file.
6478 2009-02-09 Geoff Norton <gnorton@novell.com>
6480 * mini-s390.c: Fix the signature of emit_sig_cookie.
6482 2009-02-09 Zoltan Varga <vargaz@gmail.com>
6484 * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
6486 * aot-runtime.c (is_shared_got_patch): Ditto.
6488 * aot-runtime.c (load_named_code): Cope with the fact that
6489 decode_got_entry () won't decode the patch fully if its corresponding got
6490 entry is already filled.
6492 * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full):
6494 (mono_arch_create_monitor_exit_trampoline_full): Ditto.
6496 * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
6497 as the moving pointer instead of 'buf' for consistency with the rest of the
6499 (mono_arch_create_monitor_exit_trampoline): Ditto.
6501 * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
6502 generic_class_init trampolines.
6503 (add_generic_class): Extract some code from add_generic_instances () into a
6504 separate function so it can be called from other places too.
6505 (compile_method): Call add_generic_class () for the classes of inflated methods
6506 referenced by the method.
6507 (can_encode_patch): Allow references to generic parameters.
6509 * aot-runtime.c: Add support the patches required by the new trampolines.
6511 * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
6514 * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
6517 * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
6518 this from get_throw_pending_exception, make the signature full aot compatible.
6520 * Makefile.am (fullaotcheck): New target to run full-aot tests.
6522 * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
6524 * exceptions.cs: Add a test.
6526 2009-02-07 Zoltan Varga <vargaz@gmail.com>
6528 * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
6529 use the DWARF_DATA_ALIGN constant instead.
6531 * exception-<ARCH>.c: Update after the above change.
6533 * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
6536 * mini-arm.c: Enable the dwarf unwinder.
6538 * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
6539 instead of mono_class_setup_vtable ().
6541 2009-02-07 Zoltan Varga <vargaz@gmail.com>
6543 * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
6546 * mini-x86.h: Enable the dwarf unwinder.
6548 2009-02-06 Raja R Harinath <harinath@hurrynot.org>
6550 Fix mcs/tests/test-7.cs
6551 * mini-amd64.c (mono_arch_allocate_vars): Revert change from
6554 2009-02-06 Zoltan Varga <vargaz@gmail.com>
6556 * mini.c (print_jit_stats): Remove some unused statistics.
6558 2009-02-05 Zoltan Varga <vargaz@gmail.com>
6560 * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
6562 2009-02-05 Mark Probst <mark.probst@gmail.com>
6564 * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
6565 the method we get from mono_object_get_virtual_method() because
6566 that function does it properly, now.
6568 2009-02-05 Zoltan Varga <vargaz@gmail.com>
6570 * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
6571 opcodes. Fixes #472775.
6573 2009-02-05 Mark Probst <mark.probst@gmail.com>
6575 * mini-exceptions.c (ves_icall_get_frame_info): Account for the
6576 fact that mono_find_jit_info() sometimes returns the context
6577 corresponding to the jit info in new_ctx. Fixes #472600.
6579 2009-02-05 Zoltan Varga <vargaz@gmail.com>
6581 * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
6582 mini-s390.c: Use mono_class_enum_basetype () instead of accessing
6583 klass->enum_basetype directly.
6585 * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
6588 * unwind.c: Avoid 0 sized arrays.
6590 2009-02-04 Zoltan Varga <vargaz@gmail.com>
6592 * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
6593 size on systems with 64k pages. Fixes #471389.
6595 2009-02-04 Mark Probst <mark.probst@gmail.com>
6597 Contributed under the terms of the MIT/X11 license by Steven
6598 Munroe <munroesj@us.ibm.com>.
6600 * mini-ppc.c (mono_arch_output_basic_block): Generate better code
6601 for LOADI4_MEMBASE. Use addi instead of addic if it's not
6604 2009-02-04 Mark Probst <mark.probst@gmail.com>
6606 Contributed under the terms of the MIT/X11 license by Steven
6607 Munroe <munroesj@us.ibm.com>.
6609 * exceptions-ppc.c (mono_arch_get_restore_context): Code size
6612 * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
6613 The trampoline can be longer on PPC64.
6615 2009-02-04 Mark Probst <mark.probst@gmail.com>
6617 Contributed under the terms of the MIT/X11 license by Steven
6618 Munroe <munroesj@us.ibm.com>.
6620 * mini-ppc.c: Compiler warning fixes and trivial code
6623 2009-02-04 Zoltan Varga <vargaz@gmail.com>
6625 * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
6626 ins->dreg which could be a hardware register, not a vreg.
6628 * aot-compiler.c (emit_method_dwarf_info): Ditto.
6630 * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
6631 (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
6633 * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
6635 * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
6636 ->dreg, that is not the vreg we are looking for.
6638 * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
6640 * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
6643 * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
6646 2009-02-03 Zoltan Varga <vargaz@gmail.com>
6648 * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
6650 * aot-compiler.c (emit_line_number_info): Fix line number emission when
6653 * aot-compiler.c: Add xdebug support on x86.
6655 * unwind.c: Add x86 support.
6657 * aot-compiler.c (emit_exception_debug_info): Control the emission of
6658 unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
6660 * mini.c (mini_method_compile): Ditto.
6662 * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
6665 * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
6666 which mimic .push_section/.pop_section in GAS.
6668 * aot-compiler.c: Emit precise live range information for variables.
6670 * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
6672 * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
6673 the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
6676 * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
6677 the live ranges of variables.
6679 * mini.h (struct MonoMethodVar): Add two fields containing the live range
6680 of the variable in terms of native offsets.
6682 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
6684 * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
6686 2009-02-02 Mark Probst <mark.probst@gmail.com>
6688 Contributed under the terms of the MIT/X11 license by Steven
6689 Munroe <munroesj@us.ibm.com>.
6691 * exceptions-ppc.c (restore_regs_from_context): Correct operand
6692 order (offset then base reg) for ppc_load_multiple_regs.
6693 (emit_save_saved_regs) Correct operand order for
6694 ppc_store_multiple_regs.
6695 (mono_arch_get_call_filter): Correct operand order for
6696 ppc_load_multiple_regs.
6698 * mini-ppc.c (emit_memcpy): Fix operand order for
6699 ppc_load_reg_update and ppc_store_reg_update.
6700 (mono_arch_output_basic_block): Correct operand order for ppc_lha.
6701 (mono_arch_emit_epilog): Correct operand order for
6702 ppc_load_multiple_regs.
6704 * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
6705 order for ppc_store_multiple_regs and ppc_load_multiple_regs.
6707 2009-02-02 Mark Probst <mark.probst@gmail.com>
6709 * cpu-ppc64.md: Fixed storer4_memindex length.
6711 2009-02-02 Zoltan Varga <vargaz@gmail.com>
6713 * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
6716 * aot-compiler.c (emit_line_number_info): Optimize this.
6718 2009-02-01 Zoltan Varga <vargaz@gmail.com>
6720 * aot-compiler.c: Disassemble tokens in the IL disassembly.
6722 * aot-compiler.c: Add debug info for methods without debug info by
6723 emitting an IL file and having the line number info referencing that file.
6725 * aot-compiler.c: Optimize the size of the generated line number info.
6727 * aot-compiler.c: Emit line number info in xdebug mode.
6729 * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
6732 2009-01-31 Zoltan Varga <vargaz@gmail.com>
6734 * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
6736 * driver.c (mono_main): Enable debugging support automatically if XDEBUG
6739 2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
6741 * basic-calls.cs: Test for the weird crash found on arm.
6743 2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
6745 * cpu-arm.md: Increase the size of storer8_membase_reg and
6746 loadr8_membase_reg to 24 bytes to accomodate the extra add.
6748 * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
6749 OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
6750 reg to LR otherwise we'll be loading/storing from just the offset.
6752 2009-01-30 Miguel de Icaza <miguel@novell.com>
6754 Question: if we are storing gint32's inside the "*native_offset",
6755 should we change the signature to "gint32 *native_offset" to
6756 ensure that we do not have type definition problems?
6758 * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
6759 an int * as this is what the other function expects, causes
6760 problems with Freescale's compiler that defined int32_t to be a
6761 long and makes int incompatible
6763 2009-01-30 Miguel de Icaza <miguel@novell.com>
6765 * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
6766 filename conflict with bjam.
6768 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
6770 * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
6771 as it might use decomposed ops.
6773 2009-01-30 Zoltan Varga <vargaz@gmail.com>
6775 * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
6777 * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
6780 * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
6782 * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
6785 * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
6786 way registers are stored in MonoContext on arm.
6788 * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
6789 instead of locking so mono_get_cached_unwind_info () becomes signal safe.
6791 * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
6793 * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
6795 * mini.c (mini_init): Register mono_isfinite.
6797 * jit-icalls.c (mono_isfinite): New jit icall.
6799 * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
6801 * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
6802 set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
6805 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
6807 * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
6808 separate frame and stack pointers, so we must use FP to find the register
6810 The FP reg is retrieved from the MonoContext::regs array.
6812 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
6814 * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
6817 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
6819 * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
6820 return R4 and R8 when not running under softfloat.
6822 Fixes basic-calls.exe
6824 2009-01-30 Zoltan Varga <vargaz@gmail.com>
6826 * mini-arm.c: Implement some overflow opcodes.
6828 2009-01-29 Miguel de Icaza <miguel@novell.com>
6830 * ssa.c: handle another alloca.h
6832 * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
6833 PLATFORM_WIN32 for detecting if we have sigaction. Instead use
6834 MONO_ARCH_USE_SIGACTION.
6836 * aot-runtime.c, mini-exceptions.c: Replace platform define with
6839 * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
6841 * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
6842 PPC targets as sigaction does not exist on all platforms, define
6843 this on a per-platform basis.
6845 Instead of erroring out if the platform is not defined, include
6846 mini-ppc-os.h, and expect that the OS specific setting provides
6847 the required information.
6849 2009-01-30 Zoltan Varga <vargaz@gmail.com>
6851 * aot-compiler.c: Fix --enable-minimal=aot.
6853 2009-01-30 Zoltan Varga <vargaz@gmail.com>
6855 * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
6858 2009-01-29 Zoltan Varga <vargaz@gmail.com>
6860 * exceptions-arm.c: Fix warnings.
6862 * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
6865 * mini-x86.c: Fix --enable-minimal=jit build.
6867 * mini.c: Really fix --enable-minimal=jit build.
6869 * mini.c (construct_object_context_for_method): Move this outside
6870 the DISABLE_JIT block to fix the --enable-minimal=jit build.
6872 "Backported" of r124984 from 2.0 branch.
6874 * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
6876 "Backport" of r124977 + r124978 from 2.0 branch.
6878 * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
6879 to avoid calling mono_exception_from_token () from the throw trampoline.
6880 (mono_arch_get_throw_exception_generic): call throw_exception_by_token
6881 for throwing corlib exceptions, this fixes full-aot support for corlib
6884 * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
6886 2009-01-29 Miguel de Icaza <miguel@novell.com>
6888 * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
6889 part of the changes to split the code in mini into operating
6890 system specific files.
6892 This patch was done by copying mini.c to the respective files to
6893 preserve SVN history.
6895 2009-01-29 Zoltan Varga <vargaz@gmail.com>
6897 * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
6899 2009-01-28 Zoltan Varga <vargaz@gmail.com>
6901 * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
6902 remoting-invoke-with-check wrappers of shared methods.
6904 * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
6906 2009-01-27 Mark Probst <mark.probst@gmail.com>
6908 * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
6909 optimization if the top of stack is the last instruction in the
6910 bblock. Otherwise it might have been used after its definition.
6913 2009-01-27 Zoltan Varga <vargaz@gmail.com>
6915 * mini-trampolines.c (mono_magic_trampoline): Print out the caller
6916 method as well when get_vcall_slot () fails to match a code sequence.
6918 * mini-arm.c: Fix the android build, which doesn't have
6921 2009-01-26 Zoltan Varga <vargaz@gmail.com>
6923 * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
6926 2009-01-26 Rodrigo Kumpera <rkumpera@novell.com>
6928 * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
6930 2009-01-26 Zoltan Varga <vargaz@gmail.com>
6932 * mini.c (mini_method_compile): Save the unwind info generated by the JIT
6933 and put its id into jinfo->used_regs. This is only used on amd64,
6934 which is currently the only platform generating unwind info.
6936 * exceptions-amd64.c: Instead of unwinding based on a register mask, use
6937 the dwarf unwinder. This is required to correctly handle async exceptions
6938 like thread abort and stack overflows, which can happen while a method
6939 is in the middle of its prolog or epilog.
6941 * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
6942 the unwind info belonging to an AOTed method.
6944 * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
6945 into cfg->unwind_ops.
6947 * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
6949 * mini.c (mini_init): Call mono_unwind_init ().
6950 (mini_cleanup): Call mono_unwind_cleanup ().
6952 * unwind.c: Add functions for managing a set of unwind info entries, allowing
6953 unwind info to be shared between methods.
6955 * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
6958 * exceptions-amd64.c (mono_arch_exceptions_init): Call
6959 get_throw_pending_exception () to avoid initialization races.
6961 * mini-exceptions.c (mono_exceptions_init): Call an arch specific
6962 mono_arch_exceptions_init () function.
6964 * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
6966 2009-01-25 Zoltan Varga <vargaz@gmail.com>
6968 * mini.c (mono_get_domain_intrinsic): New helper function.
6969 (mono_get_thread_intrinsic): Ditto.
6971 * mini-arm.c mini-ia64.c: Use the new helper functions.
6973 * method-to-ir.c (mono_method_to_ir): Fix the comment for
6974 the last constrained_call change, since it is needed in the non-AOT
6977 * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
6979 * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of
6980 mono_get_lmf_addr () on arm eabi linux.
6982 2009-01-24 Zoltan Varga <vargaz@gmail.com>
6984 * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
6985 code sequence which matches a non-virtual call.
6987 2009-01-23 Mark Probst <mark.probst@gmail.com>
6989 * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
6992 2009-01-23 Zoltan Varga <vargaz@gmail.com>
6994 * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
6995 runtime-invoke wrappers, since they are also shared based on signature.
6997 2009-01-22 Mark Probst <mark.probst@gmail.com>
6999 * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
7000 info from the (correct) context.
7002 2009-01-22 Zoltan Varga <vargaz@gmail.com>
7004 * unwind.c (mono_unwind_frame): Remove a stray g_free ().
7006 * unwind.c (mono_unwind_frame): New function to unwind through a frame
7007 using dwarf unwinding info. Not yet used.
7009 * mini.c (mini_init): When using xdebug, disable freeing of domains.
7011 2009-01-21 Mark Probst <mark.probst@gmail.com>
7013 * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
7016 * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
7017 special case and handle mono_arch_delegate_invoke_impl() returning
7018 function descriptors.
7020 * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
7021 trampolines return function descriptors, too.
7023 2009-01-21 Zoltan Varga <vargaz@gmail.com>
7025 * method-to-ir.c (handle_alloc): Avoid generic instances in the
7026 out_of_line optimization.
7028 2009-01-21 Martin Baulig <martin@ximian.com>
7031 (MonoCompile): Added `disable_deadce_vars' to disable removing
7035 (mini_method_compile): Set `cfg->disable_deadce_vars' when running
7036 inside the debugger.
7038 * liveness.c (mono_analyze_liveness): Don't remove any unused
7039 variables if `cfg->disable_deadce_vars' is set.
7041 2009-01-21 Mark Probst <mark.probst@gmail.com>
7043 * method-to-ir.c: Only apply exception constructor optimization if
7044 the the method actually belongs to an exception class. Fixes
7047 2009-01-21 Zoltan Varga <vargaz@gmail.com>
7049 * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
7050 change inside a #ifdef __mono_ppc64__.
7052 * aot-compiler.c (compile_method): Remove the previous limitation.
7054 * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
7055 on type variables in AOTed code.
7057 * aot-compiler.c (compile_method): Skip generic methods having type
7058 constraints on their generic parameters.
7060 * aot-compiler.c (compile_method): Check for methods which cannot be
7061 encoded inside RGCTX_FETCH patches as well.
7063 * mini-exceptions.c (mono_print_thread_dump): Fix the windows
7066 2009-01-20 Mark Probst <mark.probst@gmail.com>
7068 * method-to-ir.c: Force the vtable variable in shared generic code
7069 for the case that they might show up on a stack trace where they
7072 * mini-exceptions.c: Save and use generic sharing info as well as
7073 IP in stack traces to resolve shared generic instantiations.
7075 2009-01-20 Zoltan Varga <vargaz@gmail.com>
7077 * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
7078 added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
7080 2009-01-20 Mark Probst <mark.probst@gmail.com>
7082 * method-to-ir.c: Do generic sharing for array constructors.
7084 2009-01-20 Rodrigo Kumpera <rkumpera@novell.com>
7086 * mini-exceptions.c (mono_print_thread_dump): Add information
7087 about the thread state using wapi_current_thread_desc.
7089 2009-01-19 Rodrigo Kumpera <rkumpera@novell.com>
7091 * basic-simd.cs: Tests for the new constructors.
7093 2009-01-19 Rodrigo Kumpera <rkumpera@novell.com>
7095 * mini-ops.h: Added OP_EXPAND_*
7099 * mini-x86.c (mono_arch_output_basic_block): Same.
7101 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
7103 2009-01-19 Zoltan Varga <vargaz@gmail.com>
7105 * iltests.il.in: Add a test for #467385.
7107 2009-01-18 Rodrigo Kumpera <rkumpera@novell.com>
7109 * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
7110 thread been cleaned up is not the same currently in execution.
7112 Fixes appdomain-unload crashes on windows, osx and linux variants
7113 without the __thread keyword.
7115 2009-01-18 Zoltan Varga <vargaz@gmail.com>
7117 * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
7118 (koush@koushikdutta.com). Implement this for android.
7120 * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
7121 begins with a digit.
7123 * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
7124 mono_marshal_get_write_barrier ().
7126 2009-01-17 Rodrigo Kumpera <rkumpera@novell.com>
7128 * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
7129 of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
7130 that pass them on a register pair.
7132 This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
7133 test was crashing due to that.
7135 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
7137 * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
7138 trampoline code. Include ucontext.h only if available.
7140 2009-01-15 Mark Probst <mark.probst@gmail.com>
7142 * mini.c: mono_domain_lookup_shared_generic() takes an open method
7143 and doesn't check whether it's sharable, like it was before
7144 removing the shared generics hash. This brings IronPython
7145 performance back to what it was before that change.
7147 2009-01-14 Mark Probst <mark.probst@gmail.com>
7149 * method-to-ir.c: Handle delegate invocation optimization earlier,
7150 otherwise it would be handled (much more slowly) by the
7151 final/sealed optimization.
7153 2009-01-13 Zoltan Varga <vargaz@gmail.com>
7155 * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
7156 domain is not set. Fixes #465864.
7158 2009-01-12 Mark Probst <mark.probst@gmail.com>
7160 * method-to-ir.c: Don't stop sharing of generic methods with catch
7161 clauses - we already handle those.
7163 2009-01-12 Mark Probst <mark.probst@gmail.com>
7165 * mini.c, mini.h: lookup_generic_method() is now
7166 mono_domain_lookup_shared_generic() and uses the jit_code_hash,
7167 making the shared_generics_hash obsolete.
7169 2009-01-12 Mark Probst <mark.probst@gmail.com>
7171 * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
7172 use the red zone. Make room on the stack first and then use it,
7173 not the other way around.
7175 2009-01-12 Zoltan Varga <vargaz@gmail.com>
7177 * mini.c (mini_init): Call mono_xdebug_init ().
7179 * aot-compiler.c (mono_xdebug_init): Make this non-static.
7181 2009-01-11 Zoltan Varga <vargaz@gmail.com>
7183 * TestDriver.cs: Add an --iter argument to run tests multiple times.
7185 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
7188 * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
7189 debug+unwind info for trampolines.
7191 * mini.c (mono_create_unwind_op): New helper function.
7193 * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
7195 2009-01-10 Zoltan Varga <vargaz@gmail.com>
7197 * aot-compiler.c: Fix the build.
7199 2009-01-09 Zoltan Varga <vargaz@gmail.com>
7201 * Makefile.am: Update dtrace-prelink.sh location.
7203 2009-01-08 Zoltan Varga <vargaz@gmail.com>
7205 * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr
7206 optimization. Fixes #464520.
7208 2009-01-07 Bill Holmes <billholmes54@gmail.com>
7210 * mini-amd64.c : Adding code to save/restore non-volatile registers
7213 * exceptions-amd64.c : Adding code to save/restore non-volatile
7214 registers on Winx64.
7216 Contributed under MIT/X11 license.
7218 2009-01-07 Zoltan Varga <vargaz@gmail.com>
7220 * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
7221 __GNUC_MINOR__ which can break when the major version changes.
7223 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
7225 * basic-simd.cs: Add tests for usage of the sizeof opcode.
7227 2009-01-07 Geoff Norton <gnorton@novell.com>
7229 * helpers.c: Allow mono -v -v -v to work on darwin.
7231 2009-01-05 Bill Holmes <billholmes54@gmail.com>
7233 * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
7236 Contributed under MIT/X11 license.
7238 2009-01-05 Zoltan Varga <vargaz@gmail.com>
7240 * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
7241 instead of directly accessing type->data.klass. Fixes #462016.
7242 (mono_allocate_stack_slots_full): Ditto.
7244 * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio
7245 <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
7247 * aot-compiler.c (emit_plt): Fix ARM build.
7249 2009-01-04 Zoltan Varga <vargaz@gmail.com>
7251 * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
7253 * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
7256 * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
7257 instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
7260 * iltests.il.in: Add a regression test.
7262 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
7264 * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
7266 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
7268 * basic-simd.cs: Add a regression test for #462457.
7270 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
7272 * mini-ops.h: Add a definition of XPHI.
7274 * mini.h (MONO_IS_PHI): Make is aware of simd instrincs.
7276 * ssa.c (op_phi_to_move): Handle XPHI.
7278 * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
7282 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
7284 * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
7286 2008-12-31 Geoff Norton <gnorton@novell.com>
7288 * mini-ppc.c: The prolog size allocated can be too small for darwin
7289 ppc32 under certain circumstances. Also fix a small logic bug.
7291 2008-12-29 Zoltan Varga <vargaz@gmail.com>
7293 * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
7294 while loading AOT methods.
7296 * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
7297 since only the former is nulled out after a successful cast. This prevents
7298 crashes with rethrown exceptions when using --debug=casts.
7300 2008-12-24 Mark Probst <mark.probst@gmail.com>
7302 * mini.h: New macro for checking whether a method is final,
7303 i.e. whether the method or its class is marked final.
7305 * method-to-ir.c: Use the new macro for all final-checks
7306 consistently. Fixes the crash in the System.ServiceModel tests.
7308 2008-12-23 Mark Probst <mark.probst@gmail.com>
7310 * mini-exceptions.c (get_exception_catch_class): Corrected another
7311 overly strict assertion.
7313 2008-12-23 Mark Probst <mark.probst@gmail.com>
7315 * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
7316 Clobbering it is not allowed because the caller might use it as
7317 the vtable register in the interface call.
7319 2008-12-19 Mark Probst <mark.probst@gmail.com>
7321 * mini-exceptions.c (get_exception_catch_class): Corrected an
7322 overly strict assertion.
7324 2008-12-18 Mark Mason <mmason@upwardaccess.com>
7326 * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
7328 * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
7330 * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
7332 * cpu-mips.md: correct lengths for certain long_ opcodes.
7334 * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
7336 * 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().
7338 2008-12-17 Mark Mason <mmason@upwardaccess.com>
7340 * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
7342 2008-12-17 Mark Mason <mmason@upwardaccess.com>
7344 * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
7346 2008-12-16 Rodrigo Kumpera <rkumpera@novell.com>
7348 * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
7351 2008-12-16 Mark Mason <mmason@upwardaccess.com>
7353 * 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
7355 * 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)
7357 2008-12-15 Mark Mason <mmason@upwardaccess.com>
7359 * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
7361 2008-12-14 Zoltan Varga <vargaz@gmail.com>
7363 * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
7364 gshared code. Fixes #458947.
7366 * generics.cs: Add a test.
7368 2008-12-12 Mark Mason <mmason@upwardaccess.com>
7370 * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7372 * mini-mips.c: first pass n32 code generation.
7374 * mini-mips.h: datatypes and defines for n32 support.
7376 * exceptions-mips.c: first pass n32 code generation.
7378 * tramp-mips.c: first pass n32 code generation.
7380 * cpu-mips.md: add long_ opcodes.
7382 2008-12-12 Mark Mason <mmason@upwardaccess.com>
7384 * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7386 * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7388 * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7390 * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7392 * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7394 * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7396 * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7398 * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7400 * helpers.c: for mips/n32, don't pass -mips32 to objdump
7402 2008-12-12 Zoltan Varga <vargaz@gmail.com>
7404 * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
7406 2008-12-12 Andres G. Aragoneses <aaragoneses@novell.com>
7408 * driver.c: Sync --help-trace with man page (EXPR,EXPR).
7410 2008-12-12 Mark Probst <mark.probst@gmail.com>
7412 * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
7413 descriptors for helper functions directly in front of the code.
7415 2008-12-11 Mark Probst <mark.probst@gmail.com>
7417 * method-to-ir.c: Removed an unnecessary assertion.
7419 2008-12-10 Zoltan Varga <vargaz@gmail.com>
7421 * method-to-ir.c: Merge SGEN changes from the old JIT.
7423 2008-12-10 Zoltan Varga <vargaz@gmail.com>
7425 * driver.c (compile_all_methods_thread_main): Handle failure of
7428 2008-12-10 Mark Probst <mark.probst@gmail.com>
7430 * mini-ppc.c: Merged with mini-ppc64.c.
7432 * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
7434 * Makefile.am: Use the same sources for PPC and PPC64.
7436 * mini-ppc64.c: Removed.
7438 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
7440 * branch-opts.c (remove_block_if_useless): Extract fall through detection
7441 code to mono_bb_is_fall_through.
7443 * branch-opts.c (mono_remove_critical_edges): Same.
7445 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
7447 * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
7448 expect that an OP_BR_REG will be there.
7450 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
7452 * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
7453 for the many branch ops. The original check miss OP_BR_REG.
7457 2008-12-09 Mark Mason <mmason@upwardaccess.com>
7459 * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
7461 2008-12-09 Zoltan Varga <vargaz@gmail.com>
7463 * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
7464 while holding the aot lock.
7466 2008-12-09 Mark Mason <mmason@upwardaccess.com>
7468 * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
7470 2008-12-09 Bill Holmes <billholmes54@gmail.com>
7472 * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws
7473 to release all runtime callable wrappers held by the runtime.
7475 Contributed under MIT/X11 license.
7477 2008-12-09 Bill Holmes <billholmes54@gmail.com>
7479 * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
7482 Contributed under MIT/X11 license.
7484 2008-12-09 Zoltan Varga <vargaz@gmail.com>
7486 * aot-runtime.c (decode_exception_debug_info): Acquire the domain
7487 lock when calling mono_domain_alloc (). Hopefully fixes #415608.
7489 2008-12-09 Mark Mason <mmason@upwardaccess.com>
7491 * cpu-mips.md: fix ckfinite length
7493 * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
7494 (mono_arch_lowering_pass): cleanup, rearrange for clarity
7495 (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
7497 2008-12-08 Mark Mason <mmason@upwardaccess.com>
7499 * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
7501 2008-12-08 Geoff Norton <gnorton@novell.com>
7503 * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
7504 size by 8 bytes as well.
7506 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7508 * basic-simd.cs: Fix method names for Vector16b.
7510 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7512 * basic-simd.cs: Fix method names for Vector16sb.
7514 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7516 * basic-simd.cs: Fix method names for Vector8us.
7518 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7520 * basic-simd.cs: Fix method names for Vector8s.
7522 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7524 * basic-simd.cs: Fix method names for Vector4ui.
7526 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7528 * basic-simd.cs: Fix method names for Vector2l.
7530 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7532 * basic-simd.cs: Fix method names for Vector2d.
7534 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7536 * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
7537 that are extension methods.
7539 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
7541 * basic-simd.cs: Fix method names for Vector4f.
7543 2008-12-08 Zoltan Varga <vargaz@gmail.com>
7545 * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
7546 as such. Fixes #456669.
7548 2008-12-07 Mark Mason <mmason@upwardaccess.com>
7550 * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
7552 2008-12-07 Mark Mason <mmason@upwardaccess.com>
7554 * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
7555 (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
7556 (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
7557 (mips_adjust_stackframe): handle FP spills
7559 * mini-ops.h: add mips_mtc1_s2
7561 * cpu-mips.md: add mips_mtc1_s2
7563 2008-12-07 Zoltan Varga <vargaz@gmail.com>
7565 * unwind.c: New file, move the unwind info encoding functions here from
7566 aot-compiler.c, so they could be used at runtime too.
7568 2008-12-05 Mark Mason <mmason@upwardaccess.com>
7570 * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
7571 (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
7573 2008-12-05 Mark Mason <mmason@upwardaccess.com>
7575 * mini-mips.c: cleanup warnings
7576 (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
7577 (mips_adjust_stackframe): handle case of taking the address of stack locals
7579 2008-12-05 Zoltan Varga <vargaz@gmail.com>
7581 * aot-compiler.c: Implement a few functions missing from the asm writer.
7582 (emit_method_code): Only write symbols for methods when using the bin
7583 writer, since the assembler can't deal with the characters in our method
7586 * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
7588 * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
7591 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
7592 a bit to also restore %rax.
7594 2008-12-05 Mark Probst <mark.probst@gmail.com>
7596 * mini-ppc.c: Some simple merges from mini-ppc64.c.
7598 2008-12-05 Zoltan Varga <vargaz@gmail.com>
7600 * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
7603 2008-12-05 Mark Probst <mark.probst@gmail.com>
7605 * exceptions-ppc.c: Merged with exceptions-ppc64.c.
7607 * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
7608 MONO_ARCH_FRAME_ALIGNMENT. Struct for PPC64 function descriptors.
7610 * exceptions-ppc64.c: Removed.
7612 * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
7614 2008-12-05 Mark Probst <mark.probst@gmail.com>
7616 * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
7619 * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
7621 * tramp-ppc64.c: Removed.
7623 2008-12-05 Zoltan Varga <vargaz@gmail.com>
7625 * aot-compiler.c (add_generic_instances): Skip non-generic classes in
7628 2008-12-05 Mark Probst <mark.probst@gmail.com>
7630 * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
7632 * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
7633 mini-ppc.h instead of mini-ppc64.h.
7635 * mini-ppc64.h: Removed.
7637 2008-12-04 Mark Mason <mmason@upwardaccess.com>
7639 * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
7641 * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
7643 2008-12-05 Mark Probst <mark.probst@gmail.com>
7645 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
7646 Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
7649 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
7651 * basic-simd.cs: Tests for operator == and != on Vector8us and Vector16b.
7653 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
7655 * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
7657 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
7659 * basic-simd.cs: Tests for operator == and != on Vector4f.
7661 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
7663 * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
7665 * simd-intrinsics.c: Kill useless enum.
7667 2008-12-04 Mark Mason <mmason@upwardaccess.com>
7669 * cpu-mips.md: add long_conv_to_ovf_i4_2
7670 * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
7672 2008-12-04 Mark Mason <mmason@upwardaccess.com>
7674 * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
7676 * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
7678 2008-12-04 Mark Mason <mmason@upwardaccess.com>
7680 * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
7682 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
7684 * basic-simd.cs: Add tests for new methods.
7686 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
7688 * simd-intrinsics.c: Add support for operator == and !=
7691 * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
7693 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
7695 * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
7697 2008-12-04 Zoltan Varga <vargaz@gmail.com>
7699 * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
7701 * mini.c (mono_resolve_patch_target): Allow pinvoke methods in
7702 MONO_PATCH_INFO_ICALL_ADDR.
7704 * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
7706 * aot-compiler.c: Resurrect full-aot support.
7708 2008-12-04 Mark Mason <mmason@upwardaccess.com>
7710 * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
7712 2008-12-04 Mark Mason <mmason@upwardaccess.com>
7714 * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
7716 2008-12-03 Rodrigo Kumpera <rkumpera@novell.com>
7718 * basic-simd.cs: Fix tests to work under ppc.
7719 Remove tests for methods that will be removed.
7721 2008-12-03 Mark Probst <mark.probst@gmail.com>
7723 * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
7724 generic type (via a typedef or typeref) correctly.
7726 2008-12-03 Zoltan Varga <vargaz@gmail.com>
7728 * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
7729 diagnose an assertion failure.
7731 2008-12-02 Mark Probst <mark.probst@gmail.com>
7733 * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
7734 Fix trampoline size.
7736 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
7737 conversion opcodes are implemented natively instead via emulation.
7739 2008-12-01 Mark Mason <mmason@upwardaccess.com>
7741 * cpu-mips.md: remove mips_xori
7743 * mini-ops.h: remove mips_xori
7745 * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
7747 * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
7749 * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
7751 2008-12-01 Mark Mason <mmason@upwardaccess.com>
7753 * cpu-mips.md: fix instruction lengths.
7755 * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
7757 * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
7759 * mini-ops.h: fix slti / sltiu op profiles.
7761 2008-12-02 Martin Baulig <martin@ximian.com>
7763 * method-to-ir.c (mono_method_to_ir): Disable debugging
7764 information for the init locals block to make the debugger stop
7765 after all locals have been initalized.
7767 2008-12-02 Martin Baulig <martin@ximian.com>
7769 * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
7770 running inside the debugger.
7772 2008-12-01 Zoltan Varga <vargaz@gmail.com>
7774 * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
7777 * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the
7778 alu->alu imm optimization which only shows if deadce is disabled.
7780 * aot-compiler.c: Rename the function names for the binary and asm writers
7781 so they can coexist in the same process. Rework the xdebug code to use the
7782 asm writer. This avoids the need to call into the runtime to dump the
7783 debugging info. Add more debugging info for types.
7785 * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
7787 * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
7788 cpu description tables, they can't occur in cpu-<ARCH>.md.
7790 * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
7791 the stack in CEE_LDFLDA. Fixes #450542.
7793 * generics.cs: Add a new test.
7795 2008-12-01 Mark Mason <mmason@upwardaccess.com>
7797 * mini-ops.h: updated MIPS opcodes
7798 * mini-mips.c: decompose long opts
7799 * mini-mips.h: decompose long opts
7801 2008-11-29 Mark Mason <mmason@upwardaccess.com>
7803 * cpu-mips.md: fix length on int_rem_un
7804 * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
7806 2008-11-29 Zoltan Varga <vargaz@gmail.com>
7808 * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
7810 * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
7812 2008-11-29 Martin Baulig <martin@ximian.com>
7814 * mini-exceptions.c (mono_handle_native_sigsegv): Check
7815 mono_debug_using_mono_debugger() in addition to the
7816 `no_gdb_backtrace' flag in the `MonoDebugOptions'.
7818 2008-11-28 Mark Mason <mmason@upwardaccess.com>
7820 * mini-ops.h: updated more MIPS opcodes
7821 * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
7822 * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
7824 2008-11-28 Mark Probst <mark.probst@gmail.com>
7826 * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
7828 2008-11-28 Mark Mason <mmason@upwardaccess.com>
7830 * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
7831 * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
7832 * mini-ops.h: correct selected mips opcode entries
7834 2008-11-28 Mark Probst <mark.probst@gmail.com>
7836 * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
7839 2008-11-28 Mark Probst <mark.probst@gmail.com>
7841 * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
7843 2008-11-28 Mark Mason <mmason@upwardaccess.com>
7845 * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
7846 * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
7847 * mini-mips.h: disable IMT
7848 * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
7850 2008-11-28 Mark Probst <mark.probst@gmail.com>
7852 * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
7854 2008-11-28 Mark Probst <mark.probst@gmail.com>
7856 * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
7858 2008-11-28 Zoltan Varga <vargaz@gmail.com>
7860 * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
7863 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
7865 * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
7866 for Set/GetVector aligned versions.
7868 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
7870 * basic-simd.cs: Add tests for Get/SetVector.
7872 2008-11-27 Mark Probst <mark.probst@gmail.com>
7874 * mini.c: Removed g_slist_append_mempool(). Now in
7877 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
7879 * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
7880 size properly and make the bounds check optional.
7882 * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
7883 for SetVector and IsAligned.
7885 2008-11-27 Zoltan Varga <vargaz@gmail.com>
7887 * mini.c: Remove unused mono_normalize_opcodes () function.
7889 2008-11-26 Mark Probst <mark.probst@gmail.com>
7891 * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
7892 using the new atomic add ops now.
7894 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
7897 2008-11-26 Mark Probst <mark.probst@gmail.com>
7899 * mini-ppc64.c: Several fixes.
7901 2008-11-25 Mark Mason <mmason@upwardaccess.com>
7903 * cpu-mips.md: added jump_table
7904 * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.
7906 2008-11-25 Mark Mason <mmason@upwardaccess.com>
7908 * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
7910 2008-11-25 Mark Mason <mmason@upwardaccess.com>
7912 * mini-ops.h: corrected a handful of MIPS opcodes.
7914 2008-11-25 Mark Mason <mmason@upwardaccess.com>
7916 * aot-compiler.c: MIPS to use ELF writer
7918 2008-11-25 Mark Mason <mmason@upwardaccess.com>
7920 * mini-codegen.c: remove MIPS specific assert.
7922 2008-11-25 Mark Probst <mark.probst@gmail.com>
7924 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
7925 fixes. PPC64 now passes most of the runtime regressions.
7927 2008-11-24 Zoltan Varga <vargaz@gmail.com>
7929 * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
7930 volatile intervals a bit.
7932 2008-11-24 Mark Probst <mark.probst@gmail.com>
7934 * basic-long.cs: New test case.
7936 2008-11-23 Zoltan Varga <vargaz@gmail.com>
7938 * mini.c (mini_method_compile): Disable globalra for large methods for
7941 * regalloc2.c (order_moves): Add fp support.
7943 * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
7944 source bblock ends with an OP_BR_REG.
7946 * ratests.cs: Add a new test.
7948 2008-11-23 Mark Probst <mark.probst@gmail.com>
7950 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
7951 sharing. PPC64 now passes generics.exe.
7953 2008-11-23 Mark Probst <mark.probst@gmail.com>
7955 * mini-ppc64.c: Several fixes. PPC64 now runs iltests.exe.
7957 2008-11-23 Zoltan Varga <vargaz@gmail.com>
7959 * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
7960 memory when mono_jit_info_table_find () can't find the method in the
7963 * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
7966 * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
7969 2008-11-23 Mark Probst <mark.probst@gmail.com>
7971 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
7972 Several fixes. PPC64 now runs exceptions.exe and
7973 devirtualization.exe.
7975 2008-11-22 Mark Probst <mark.probst@gmail.com>
7977 * mini-ppc64.c, tramp-ppc64.c: Small fixes. PPC64 now runs
7978 arrays.exe and basic-math.exe.
7980 2008-11-22 Mark Probst <mark.probst@gmail.com>
7982 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
7983 cpu-ppc64.md: Several fixes. PPC64 now runs objects.exe.
7985 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
7987 * simd-intrinsics.c: Add support ArrayExtension intrinsics.
7989 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
7991 * method-to-ir.c: Move bounds checking macros to ir-emit.h
7993 * ir-emit.h: Move macros from method-to-ir.c to here.
7995 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
7997 * mini-ops.h: Correct the long simd ops to use LREG.
7999 2008-11-21 Zoltan Varga <vargaz@gmail.com>
8001 * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
8003 * mini-ops.h: Correct the dreg type of a few long opcodes.
8005 * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
8008 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
8010 * mini-ppc.c: remove negative stack references in epilog
8011 for platforms that don't support the red zone.
8013 2008-11-21 Mark Probst <mark.probst@gmail.com>
8015 * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
8016 point regs. Now PPC64 passes basic-calls.exe.
8018 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8020 * basic-simd.cs: Add tests for accessors of Vector2l.
8022 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8024 * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
8026 * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
8028 * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
8030 2008-11-21 Mark Probst <mark.probst@gmail.com>
8032 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes. Now
8033 PPC64 passes basic-long.exe.
8035 2008-11-20 Mark Probst <mark.probst@gmail.com>
8037 * decompose.c: Decompose carry and overflow add on PPC64 like on
8038 other 64 bit archs. Don't decompose sub at all on PPC64.
8040 * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
8041 Several fixes and new opcodes. Now PPC64 runs (but doesn't pass)
8044 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8046 * basic-simd.cs: Add tests for accessors of Vector2d.
8048 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8050 * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
8054 * mini-x86.c (mono_arch_output_basic_block): Same.
8056 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
8058 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8060 * basic-simd.cs: Add tests for accessors of Vector4f.
8062 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8064 * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
8068 * mini-x86.c (mono_arch_output_basic_block): Same.
8070 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
8072 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8074 * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
8076 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8078 * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
8082 * mini-x86.c (mono_arch_output_basic_block): Same.
8084 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
8086 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8088 * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
8090 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8092 * simd-intrinsics.c: Enable setters for Vector16sb.
8094 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
8096 * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
8100 * mini-x86.c (mono_arch_output_basic_block): Same.
8102 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
8104 2008-11-19 Rodrigo Kumpera <rkumpera@novell.com>
8106 * simd-intrinsics.c: Implement setter for Vector8us.
8108 2008-11-19 Zoltan Varga <vargaz@gmail.com>
8110 * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
8113 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8115 * mini-ppc.c: remove references to the red zone in the prolog
8116 (for systems that don't support it).
8118 2008-11-19 Mark Probst <mark.probst@gmail.com>
8120 * cpu-ppc64.md: Fixed a few instruction lengths.
8122 * mini-ppc64.c: Don't emit SETLRET. PPC64 passes basic-float.exe,
8125 2008-11-19 Mark Probst <mark.probst@gmail.com>
8127 * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes. PPC64 passes
8130 2008-11-19 Zoltan Varga <vargaz@gmail.com>
8132 * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
8134 2008-11-18 Rodrigo Kumpera <rkumpera@novell.com>
8136 * mini-ops.h: Added OP_INSERT_I2.
8140 * mini-x86.c (mono_arch_output_basic_block): Same.
8142 * simd-intrinsics.c: Implement setter for Vector8s.
8144 * simd-methods.h: Add the names of get setters of Vector8s.
8146 2008-11-18 Zoltan Varga <vargaz@gmail.com>
8148 * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
8150 * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
8153 * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
8155 2008-11-18 Mark Probst <mark.probst@gmail.com>
8157 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
8158 for PPC64. An empty program runs now.
8160 2008-11-18 Zoltan Varga <vargaz@gmail.com>
8162 * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
8164 * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
8165 a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
8166 info for JITted code is emitted into a shared library, loadable into gdb.
8168 2008-11-18 Mark Probst <mark.probst@gmail.com>
8170 * Makefile.am: Changes to build PPC64.
8172 * mini-arch.h: Include mini-ppc64.h on PPC64.
8174 2008-11-18 Mark Probst <mark.probst@gmail.com>
8176 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
8177 in PPC code up to r119147.
8179 2008-11-18 Mark Probst <mark.probst@gmail.com>
8181 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
8182 cpu-ppc64.md: Changes for PPC64.
8184 Based on code submitted by andreas.faerber@web.de at
8185 https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
8188 2008-11-18 Mark Probst <mark.probst@gmail.com>
8190 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
8191 cpu-ppc64.md: Copied from the corresponding PPC files from
8194 2008-11-18 Scott Peterson <lunchtimemama@novell.com>
8196 * mini-ops.h: Added OP_ROUND.
8198 * cpu-x86.md: Added round.
8200 * mini-x86.c: Added support for intrinsicing Math.Round (double).
8202 * basic-math.cs: Added test_0_round to test rounding.
8204 Contributed under MIT/X11 license.
8206 2008-11-17 Bill Holmes <billholmes54@gmail.com>
8208 * aot-compiler.c : Fix the Winx64 build.
8210 Contributed under MIT/X11 license.
8212 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
8214 * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
8215 in OP_EXTRACT_R8 to avoid possible stack corruption.
8217 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
8219 * mini-ops.h: Added OP_EXTRACT_R8/I8.
8221 * cpu-x86.md: Added extract_r8.
8223 * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
8225 * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
8226 a couple of OP_EXTRACT_I4.
8228 * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
8230 * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
8232 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
8234 * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
8237 2008-11-17 Zoltan Varga <vargaz@gmail.com>
8239 * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
8240 trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
8242 * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
8243 are not needed any more.
8245 * mini.h: Remove the unused INS_LIST macros.
8247 * mini.c (mini_method_compile): Remove a disable globalra case which is no
8250 * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
8253 * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
8254 mono_alloc_ireg () instead.
8256 * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
8259 * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
8262 * aot-runtime.c (load_aot_module): Disable AOT when running under
8265 * mini-amd64.h: Change the monitor fastpath defines to check for
8266 !PLATFORM_WIN32 so they work on *bsd too.
8268 * mini.h mini.c mini-hhpa.c: Remove more unused code.
8270 * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
8272 * mini.h (MonoCompile): Remove new_ir flag.
8274 * regalloc.h regalloc.c: Remove unused code.
8276 * cpu-*.md: Remove more unused opcodes.
8278 * simple-cee-ops.h simple-mini-ops.h: Removed.
8280 * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
8282 2008-11-17 Zoltan Varga <vargaz@gmail.com>
8284 * aliasing.h: Removed.
8286 * *.c: Remove references to aliasing.h and inssel.h.
8288 * mini.c: Remove additional unused functions.
8290 * mini-ops.h cpu-*.md: Remove unused opcodes.
8292 2008-11-16 Zoltan Varga <vargaz@gmail.com>
8294 Remove the old JIT code.
8296 * inssel*.brg: Removed.
8298 * ssa.c abcremoval.c aliasing.c: Removed.
8300 * ssa2.c: Renamed to ssa.c.
8302 * abcremoval2.c: Renamed to abcremoval.c.
8304 * *.c: Removed all !cfg->new_ir code.
8306 * mini-<ARCH>.c: Removed mono_arch_call_opcode (),
8307 mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
8309 * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
8311 2008-11-16 Zoltan Varga <vargaz@gmail.com>
8313 * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
8314 to simplify the code and cut back on the number of global symbols in the AOT
8317 * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
8319 2008-11-15 Zoltan Varga <vargaz@gmail.com>
8321 * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
8322 with the got/got_info tables.
8324 * mini.h: Bump AOT file format version.
8326 * unwind.h: New file, contains definitions for stack unwinding.
8328 * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
8331 * aot-compiler.c: Generalize the emitting of unwind information to use the
8332 information in cfg->unwind_ops.
8334 * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
8336 * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
8337 AOT method frames. Enable writing symbols for methods by default.
8339 2008-11-14 Rodrigo Kumpera <rkumpera@novell.com>
8341 * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
8342 and make it work with vectors of element sizes 1, 2 and 4.
8344 * simd-intrinsics.c: Enable getter for all vectors with element size
8347 * simd-methods.h: Add the names of other getters.
8349 * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
8355 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
8357 * mini-ppc.h: portability fix.
8359 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
8361 * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
8362 buggy and will overwrite it.
8364 2008-11-14 Zoltan Varga <vargaz@gmail.com>
8366 * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
8367 Use it to emit local symbols for all methods so AOTed methods show up with
8368 their full name in gdb/valgrind output.
8370 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
8372 * mini-ppc.c: portability fixes.
8374 2008-11-14 Zoltan Varga <vargaz@gmail.com>
8376 * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
8377 entries out of the if (!generic_shared...) code so it is always done.
8378 (mono_class_init_trampoline): Do the patching when running under valgrind
8379 too, newer versions of valgrind have no problems with it.
8381 2008-11-13 Zoltan Varga <vargaz@gmail.com>
8383 * aot-compiler.c (emit_writeout): Rework this to make it easier to add
8386 2008-11-13 Mark Probst <mark.probst@gmail.com>
8388 * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
8391 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
8393 * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui.
8395 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
8397 * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
8403 * simd-intrinsics.c: Same.
8405 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
8407 * simd-intrinsics.c: Enable constructor intrinsics for all types.
8409 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
8411 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
8412 to work with more Vector types.
8414 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
8416 * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
8417 store the elemens directly instead of using and intermediate.
8419 2008-11-13 Zoltan Varga <vargaz@gmail.com>
8421 * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
8423 * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
8424 to preserve %eax for aot plt trampolines.
8426 * aot-compiler.c (compile_method): Don't skip synchronized methods.
8427 (encode_method_ref): Flag synchronized methods so they won't go through
8430 * aot-compiler.c: Additional work to support AOTing synchronized methods/
8433 * cpu-ia64.md (jmp): Increase max length.
8435 2008-11-12 Zoltan Varga <vargaz@gmail.com>
8437 * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
8438 open generic classes.
8440 * aot-compiler.c: Enable the ELF writer on ELF platforms.
8442 * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
8443 box+brtrue optimization since it causes test failures on x86.
8445 2008-11-12 Rodrigo Kumpera <rkumpera@novell.com>
8447 * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
8453 * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
8454 for simd ctor values.
8456 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
8457 instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
8459 2008-11-12 Rodrigo Kumpera <rkumpera@novell.com>
8461 * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
8464 * simd-instrincs.c: Same.
8466 * basic-simd.cs: Same.
8468 2008-11-12 Zoltan Varga <vargaz@gmail.com>
8470 * ratests.cs: Add more tests.
8472 * regalloc2.c (add_spill_code): Handle more corner cases.
8474 2008-11-11 Zoltan Varga <vargaz@gmail.com>
8476 * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
8477 (update_liveness): Avoid holes in the liveness ranges of hregs if they are
8478 both the source an destination of an instruction.
8480 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
8482 * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
8483 wapihandles.c: more portability changes.
8485 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
8487 * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
8488 * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
8489 safe to execute in a signal handler and the kernel provides better
8490 the info in /proc/self/smaps. Avoid the assert on sigaction during
8493 2008-11-11 Zoltan Varga <vargaz@gmail.com>
8495 * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
8496 do the bblock linking hack if it is actually needed.
8498 * Makefile.am (patch-libtool): New helper target to patch libtool to speed
8501 * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
8502 crash problem is fixed.
8504 * branch-opts.c (mono_remove_critical_edges): Link up newly added
8507 * mini.c (mini_method_compile): Compute unreachable bblocks properly even
8509 (mini_method_compile): Set the starting value of next_vreg to
8510 MAX_IREGS + MAX_FREGS when using globalra.
8512 * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
8513 filter clauses with BB_EXCEPTION_HANDLER.
8515 * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
8517 2008-11-10 Mark Probst <mark.probst@gmail.com>
8519 * mini-x86.c (mono_arch_get_argument_info): Don't align argument
8520 space for stdcall. Fixes regressions on Win32.
8522 2008-11-10 Zoltan Varga <vargaz@gmail.com>
8524 * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
8526 (linear_scan): Remove an assert which doesn't seem to be needed.
8528 * local-propagation.c (mono_local_deadce): Avoid a call to
8529 MONO_DELETE_INS which would screw up the instruction linking.
8531 * mini.c (mono_decompose_op_imm): Make this work with globalra.
8533 * regalloc2.c: Upgrade to work the current JIT code.
8535 2008-11-09 Zoltan Varga <vargaz@gmail.com>
8537 * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
8540 * aot-runtime.c: Remove some dead code.
8542 * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
8544 (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
8546 * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
8547 trampolines using sscanf since atoi doesn't work on large unsigned values.
8549 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full):
8550 Initialize code_size.
8552 2008-11-08 Mark Probst <mark.probst@gmail.com>
8554 * method-to-ir.c (mini_emit_inst_for_method): Make
8555 Interlocked.CompareExchange work for Int arguments on 32 bit
8558 2008-11-07 Mark Probst <mark.probst@gmail.com>
8560 * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
8562 2008-11-06 Bill Holmes <billholmes54@gmail.com>
8564 * main.c Fix MSVC build.
8566 Contributed under MIT/X11 license.
8568 2008-11-06 Mark Probst <mark.probst@gmail.com>
8570 * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
8571 alignment larger than 8 bytes are aligned correctly, too.
8573 * mini.c: Honor the min_align field of MonoClass when laying out
8576 2008-11-06 Zoltan Varga <vargaz@gmail.com>
8578 * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
8580 * aot-compiler.c (emit_plt): Fix a warning.
8582 * aot-compiler.c: Implement ARM support in the binary writer.
8584 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
8586 * basic-simd.cs: Add test for getter with byref arg.
8587 Fix the naming of a few tests.
8588 Add missing checks to a test.
8590 2008-11-05 Zoltan Varga <vargaz@gmail.com>
8592 * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
8594 * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
8595 most of the full-aot support for monitor enter/exit trampolines.
8597 * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
8598 enter/exit trampoline creation functions.
8600 * Makefile.am: Fix the generation of buildver.h so it is not invoked during
8603 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
8605 * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
8606 incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
8607 implement the needed functionality without adding crap to the runtime.
8609 2008-11-05 Zoltan Varga <vargaz@gmail.com>
8611 * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
8614 * mini.c (mono_build_date): New global version holding the build date in
8617 * Makefile.am (buildver.c): Generate a file containing the build date.
8619 * main.c: Set the build date from the generated file.
8621 * mini.c (mono_get_runtime_build_info): New helper function returning build
8622 information in a string format.
8624 * driver.c (mono_main): Print the build date in --version.
8626 * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
8627 file when the bind-to-runtime-version option is used.
8629 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
8631 * simd-intrinsics.c: Fix bug when using getters and byref args.
8633 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
8635 * simd-methods.h: Rename prefetch methods.
8637 * simd-intrinsics.c: Same.
8639 2008-11-05 Mark Probst <mark.probst@gmail.com>
8641 * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
8644 2008-11-04 Zoltan Varga <vargaz@gmail.com>
8646 * aot-compiler.c: Use the bundled elf header files instead of depending on
8649 * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
8652 * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
8655 2008-11-04 Rodrigo Kumpera <rkumpera@novell.com>
8657 * cpu-x86.md: Add store nta ops.
8663 * mini.h: Add an enum for simd prefetch modes.
8665 * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
8666 of store. Use the changed code to support store nta.
8668 * simd-intrinsics.c: Add prefetch ops for all vector types.
8670 2008-11-04 Zoltan Varga <vargaz@gmail.com>
8672 * aot-compiler.c: Add an option for JIT compiling the methods by multiple
8675 * aot-compiler.c: Use statically allocated buffers for constructing symbol
8678 * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
8681 2008-11-04 Mark Probst <mark.probst@gmail.com>
8683 * mini-x86.c: Fixed commit.
8685 2008-11-04 Zoltan Varga <vargaz@gmail.com>
8687 * aot-compiler.c (emit_plt): Align the plt section only on x86.
8689 2008-11-04 Mark Probst <mark.probst@gmail.com>
8691 * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
8692 and MONITOR_EXIT, for the ASM fastpaths.
8694 * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
8697 * mini.c, patch-info.h: Signature and patch infos for
8698 Monitor.Enter/Exit trampolines.
8700 * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
8702 * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
8703 Monitor.Enter/Exit ASM fastpath for Linux.
8705 2008-11-04 Zoltan Varga <vargaz@gmail.com>
8707 * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
8709 * objects.cs: Add a new test.
8711 * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
8713 * aot-runtime.c (load_method): Run class initialization in the PLT case even
8714 if MONO_LOG_LEVEL is set.
8716 * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
8718 * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
8720 * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
8722 * aot-compiler.c: Change the relocation code to use virtual addresses instead
8723 of file offsets. Align the sections belonging to the data segment to
8726 2008-11-03 Zoltan Varga <vargaz@gmail.com>
8728 * aot-compiler.c: Simplify the elf writer by depending on the definitions in
8729 elf.h. Port it to amd64.
8731 2008-11-03 Rodrigo Kumpera <rkumpera@novell.com>
8733 * driver.c: Enable SIMD by default.
8735 2008-11-03 Rodrigo Kumpera <rkumpera@novell.com>
8737 * cpu-x86.md: Add prefetch op.
8743 * mini.h: Add an enum for simd prefetch modes.
8745 * simd-methods.h: Add prefetch function names.
8747 * simd-intrinsics.c: Add prefetch ops for all vector types.
8749 2008-11-03 Zoltan Varga <vargaz@gmail.com>
8751 * aot-compiler.c (emit_bytes): Speed this up a little.
8753 2008-11-02 Zoltan Varga <vargaz@gmail.com>
8755 * aot-compiler.c: Add JIT time etc. statistics.
8757 * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
8759 * mini.h (MonoCompile): Add 'got_offset' field.
8761 * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
8762 method_got_offsets array.
8764 * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
8767 * aot-compiler.c (compile_method): Add generic method instances referenced
8768 by the method to the list of methods to be compiled, this is required so if
8769 A<T> references B<T>, and another assembly references A<int>, then it will
8770 also get a copy of B<int>.
8772 * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
8773 when checking for monitor enter/exit.
8775 2008-10-30 Mark Probst <mark.probst@gmail.com>
8777 * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
8778 for Monitor.Enter and Monitor.Exit if enabled.
8780 * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
8783 2008-10-30 Zoltan Varga <vargaz@gmail.com>
8785 * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
8786 of an OP_MOVE. Fixes #440046.
8788 * basic-long.cs: Add a new test.
8790 2008-10-29 Rodrigo Kumpera <rkumpera@novell.com>
8792 * mini.h: Add synchronization note for the managed counter-part.
8794 * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
8795 returns the simd caps of the current cpu.
8797 2008-10-29 Rodrigo Kumpera <rkumpera@novell.com>
8799 * basic-simd.cs: Remove Console.WriteLine.
8801 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
8803 * basic-simd.cs: New tests for Vector2ul.
8805 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
8807 * simd-intrinsics.c: Add new vector type Vector2ul.
8809 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
8811 * basic-simd.cs: New tests for Vector2l.
8813 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
8815 * cpu-x86.md: Add long version of most packed int ops.
8821 * simd-intrinsics.c: Add new vector type Vector2l.
8823 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
8825 * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
8827 * simd-methods.h: Remove SN_op_BitwiseXor.
8829 2008-10-28 Zoltan Varga <vargaz@gmail.com>
8831 * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
8834 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
8836 * basic-simd.cs: Test for Vector2d.
8838 * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
8841 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
8843 * cpu-x86.md: Add double version of all packed float ops.
8849 * simd-intrinsics.c: Add new vector type Vector2d.
8851 * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
8853 * simd-methods.h: Add Duplicate.
8855 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
8857 * basic-simd.cs: Test for packing with signed saturation.
8859 2008-10-28 Zoltan Varga <vargaz@gmail.com>
8861 * aot-compiler.c (add_generic_instances): Add all methods of generic instances
8862 found in the TYPESPEC table.
8864 2008-10-26 Zoltan Varga <vargaz@gmail.com>
8866 * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
8869 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
8871 * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
8872 instead of the RVA, since the RVA can be changed by tools like the cil
8875 * method-to-ir.c (mono_method_to_ir2): Ditto.
8877 * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
8878 (deserialize_variable): Ditto.
8880 2008-10-25 Martin Baulig <martin@ximian.com>
8882 * debug-mini.c (write_variable): Use
8883 `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
8885 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8887 * cpu-x86.md: Add unsigned variants of packd and packw.
8891 * mini-x86.h: Emit the right instruction for packd and packw.
8892 Add unsigned variants of packd and packw.
8894 * simd-intrinsics.c: Packd and packw were used in place of their
8895 unsigned variants. Change that.
8896 Add intrinsics for (Signed)PackWithSignedSaturation.
8898 * simd-methods.h: Add (Signed)PackWithSignedSaturation.
8900 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8902 * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
8904 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8906 * mini-ops.h: Remove dword packed add/sub with saturation ops.
8908 * cpu-x86.md: Remove dword packed add/sub with saturation ops.
8910 * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
8913 * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
8915 2008-10-24 Mark Probst <mark.probst@gmail.com>
8917 * method-to-ir.c, mini.c: Special casing for the synchronized
8918 wrapper for the ldtoken+GetTypeFromHandle case.
8920 2008-10-24 Zoltan Varga <vargaz@gmail.com>
8922 * mini.c (mono_replace_ins): Move this to branch-opts.c.
8924 * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
8925 created/split bblocks.
8927 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8929 * mini-ops.h: Add packed signed mul high.
8933 * mini-x86.c (mono_arch_output_basic_block): Same.
8935 * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
8937 * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
8939 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8941 * basic-simd.cs: Tests for Vector16sb.
8943 2008-10-24 Zoltan Varga <vargaz@gmail.com>
8945 * inssel.brg (stmt): Fix OP_HARD_NOP rule.
8947 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
8949 * mini-ops.h: Add packed signed min, max and compare greater.
8953 * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
8956 * simd-methods.h: Add CompareGreaterThan.
8958 * simd-methods.h: Remove CompareEquals.
8960 * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
8962 * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
8964 * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
8967 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
8969 * basic-simd.cs: Fix tests due to change in the API.
8971 2008-10-21 Zoltan Varga <vargaz@gmail.com>
8973 * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
8975 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
8977 * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
8979 * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
8980 inst_offset as this has invalid values for LDADDR.
8982 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
8984 * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
8986 * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
8988 2008-10-21 Zoltan Varga <vargaz@gmail.com>
8990 * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
8991 for accessing field->data.
8993 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
8995 * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
8997 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
8999 * simd-methods.h: Add SignedPackWithUnsignedSaturation.
9001 * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
9003 2008-10-21 Zoltan Varga <vargaz@gmail.com>
9005 * dominators.c (mono_compute_natural_loops): Allocate GList enties
9006 from the cfg mempool.
9008 2008-10-20 Rodrigo Kumpera <rkumpera@novell.com>
9010 * basic-simd.cs: Tests for new methods in Vector8us.
9012 2008-10-20 Rodrigo Kumpera <rkumpera@novell.com>
9014 * mini-ops.h: Add multiply and store high.
9018 * mini-x86.c (mono_arch_output_basic_block): Same.
9020 * simd-methods.h: Same.
9022 * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
9025 2008-10-19 Zoltan Varga <vargaz@gmail.com>
9027 * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
9028 mono_class_setup_vtable ().
9030 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
9031 mono_class_get_vtable_entry () for accessing klass->vtable.
9033 * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
9035 * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
9038 * method-to-ir.c (mono_save_token_info): Don't save references made from
9041 * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
9042 of generic instances.
9044 * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
9046 2008-10-19 Mark Probst <mark.probst@gmail.com>
9048 * cpu-ppc.md, mini-ppc.c: The length of the code generated for
9049 OP_JMP depends on the method signature. Calculate it properly.
9051 2008-10-19 Zoltan Varga <vargaz@gmail.com>
9053 * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
9056 * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
9058 (emit_extra_methods): Add another table mapping method indexes to
9059 offsets in the extra_method_info table.
9061 * mini.h: Bump AOT file format version.
9063 * aot-runtime.c: Merge most of the code from mono_aot_get_method
9064 and mono_aot_get_method_from_token () into one function.
9066 2008-10-19 Mark Probst <mark.probst@gmail.com>
9068 * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
9071 2008-10-18 Zoltan Varga <vargaz@gmail.com>
9073 * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
9076 * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
9079 * mini.c (mono_patch_info_equal): Compare the generic context as well.
9081 * mini.h: Bump aot file format version.
9083 * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
9084 AOT file can contain native code for methods which are not in the METHOD
9085 table. Generate code for non-sharable generic instances of generic methods
9086 found in the METHODSPEC table.
9088 * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
9089 encoding generic type handles.
9091 * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
9092 (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
9094 * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
9095 macros + MONO_ADD_INS.
9097 * mini.c (mono_jump_info_token_new2): New function which takes a generic
9100 * mini.h (MonoJumpInfoToken): Include fields for a generic context.
9102 * mini.h: Bump aot file format version.
9104 * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
9106 2008-10-17 Mark Probst <mark.probst@gmail.com>
9108 * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
9109 platforms, with definable stack alignment value. Set to 16 now
9112 * mini.c, mini.h, driver.c: Command line option for disabling
9115 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
9117 * basic-simd.cs: Tests for new methods in Vector4ui.
9119 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
9121 * mini-ops.h: Add packed int shuffle.
9125 * mini-x86.c (mono_arch_output_basic_block): Same.
9127 * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
9128 extract mask, max, min, shuffle.
9130 * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
9132 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
9134 * basic-simd.cs: Tests for new methods in Vector8us.
9136 2008-10-17 Mark Probst <mark.probst@gmail.com>
9138 * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
9139 RuntimeTypeHandle, not a TypedReference.
9141 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
9143 * simd-intrinsics.c: remove relocations.
9145 2008-10-17 Zoltan Varga <vargaz@gmail.com>
9147 * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM
9148 optimizations from the x86 backend.
9150 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
9152 * simd-methods.h, simd-intrinsics.c: debloat method names and
9153 prepare for no relocations.
9155 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
9157 * mini-ops.h: Add packed min/equal and sum of absolute differences.
9161 * mini-x86.c (mono_arch_output_basic_block): Same.
9163 * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
9164 extract mask, max, min and sum of absolute differences.
9166 * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
9169 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
9171 * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
9172 Renamed one test for consistency.
9174 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
9176 * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
9177 fix to the code that deal with other blocks.
9179 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
9181 * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
9183 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
9185 * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
9186 that deals with vreg interference. Explicitly check for OP_LDADDR to be
9187 able to process the source reg.
9189 2008-10-16 Martin Baulig <martin@ximian.com>
9191 * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
9193 * inssel.brg: Add `OP_HARD_NOP'.
9195 * mini.h (MonoCompile): Added `keep_cil_nops' flag.
9197 * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
9198 `OP_HARD_NOP' instruction when running inside the debugger.
9200 * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
9201 `OP_HARD_NOP' instruction when running inside the debugger.
9203 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
9205 * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
9206 now works. The issue with the regalloc tripping up no longer
9209 * simd-intrinsics.c (load_simd_vreg): Same.
9211 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
9213 * basic-simd.cs: Tests for new Vector8ui methods.
9215 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
9217 * simd-intrinsics.c (get_simd_vreg): Simplify code and test
9218 only for type. This fixes crashes where MonoInst::klass is checked
9219 for ops of type != VTYPE or OBJ.
9221 * simd-intrinsics.c (load_simd_vreg): Same.
9223 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
9225 * mini-ops.h: Add ops for packed shuffle/max/avg and
9230 * mini-x86.c (mono_arch_output_basic_block): Same.
9232 * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
9235 * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
9236 to emit extract mask op.
9238 * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
9239 to emit word shuffles.
9241 2008-10-15 Mark Probst <mark.probst@gmail.com>
9243 * mini.c (mono_allocate_stack_slots_full): Align stack frame to
9244 the largest alignment needed by a variable, but at least
9247 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
9249 * basic-simd.cs: Tests for the fixes in the last commit.
9251 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
9253 * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
9254 no longer handles STACK_PTR input.
9256 * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
9258 * simd-intrinsics.c (load_simd_vreg): New function that works like
9259 get_simd_vreg but handles STACK_PTR input.
9261 * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
9262 as the input can be an arbitrary pointer.
9264 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
9265 LDADDR local optimization directly otherwise use a store op.
9267 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
9269 * basic-simd.cs: Tests for dup low and dup high.
9271 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
9273 * mini-ops.h: Add dup low and dup high ops.
9277 * mini-x86.c (mono_arch_output_basic_block): Same.
9279 * simd-intrinsics.c (vector4f_intrinsics): Same.
9281 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
9283 * basic-simd.cs: Tests for recently added functionality.
9285 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
9287 * mini-ops.h: Add remaining sse1 fp ops.
9289 * cpu-x86.md: Add remaining sse1 fp ops.
9291 * mini-x86.c (mono_arch_output_basic_block): Same.
9293 * mini.h: Add enum for simd FP compare conditions.
9295 * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
9297 * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
9298 so the backed can generate the appropriate op.
9300 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
9301 This patch squeese one more byte from the SimdIntrinsc struct.
9303 * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
9304 a a shift amount intead of simply or'ing it.
9306 * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
9308 * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
9309 byte so we can have an aditional flags field without increasing struct size.
9311 * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
9312 against the simd_supported_versions bitmask.
9314 * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
9316 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
9318 * mini.c: remove rawbuffer code (the only use here is unsafe because
9319 it takes locks during signal handling and the kernel now provides much
9320 better info in proc/pid/smaps these days).
9322 2008-10-13 Zoltan Varga <vargaz@gmail.com>
9324 * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
9325 OP_X86_PUSH_OBJ. Fixes #434620.
9327 * objects.cs: Add a test.
9329 2008-10-12 Rodrigo Kumpera <rkumpera@novell.com>
9331 * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
9332 that the packuswb/packusdw don't work with unsigned numbers for what
9333 would be negative numbers in signed format.
9335 * cpu-x86.md: Add doubleword forms of many ops and packing ones.
9336 Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
9338 * mini-ops.h: Add doubleword forms of many ops and packing ones.
9340 * mini-x86.c: Emit doubleword forms of many ops and packing ones.
9342 * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
9344 * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
9346 * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
9349 * simd-intrinsics.c (simd_version_name): New function, returns the name of the
9350 version as the enum in mini.h.
9352 * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
9353 for sse3 ops, check the simd_version field if present. This way the code
9354 works with all versions of sse.
9356 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9358 * simd-intrinsics.c: Fixed intrinsic name typo.
9360 * mini.h: Added missing simd exported function.
9362 * basic-simd.cs: Added tests for Vector4ui.
9363 Fixed broken test for Vector16b.
9365 2008-10-10 Zoltan Varga <vargaz@gmail.com>
9367 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
9368 the max length to 64.
9370 2008-10-10 Mark Probst <mark.probst@gmail.com>
9372 * method-to-ir.c: Only do the fast virtual generic method call for
9373 non-wrapper methods.
9375 * mini.h, mini-trampolines.c: The new generic virtual remoting
9376 trampoline handles virtual method calls via the vtable (as done by
9377 the fast virtual generic method calls) to remoting proxies.
9379 * mini.c (mono_jit_create_remoting_trampoline): For generic
9380 methods reate a generic virtual remoting trampoline.
9382 * mini-amd64.h: Enable fast virtual generic method calls again.
9384 2008-10-10 Mark Probst <mark.probst@gmail.com>
9386 * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
9387 restore registers when doing tail calls.
9389 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9391 * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
9394 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9396 * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
9398 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9400 * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
9402 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9404 * basic-simd.cs: Retrofit for API changes.
9406 2008-10-10 Mark Probst <mark.probst@gmail.com>
9408 * mini-ppc.c: Handle integer stack arguments for tail calls.
9410 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9412 * optflags-def.h: Removed sse3 optimization.
9416 * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
9419 * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
9421 * mini.h: Added enumeration with simd versions.
9423 * simd-intrinsics.c (emit_intrinsics): Use the new static var
9426 * simd-intrinsics.c: Added mono_simd_intrinsics_init.
9428 * mini.c (mini_init): Call mono_simd_intrinsics_init.
9430 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
9432 * basic-simd.cs: Added tests for Vector8u and Vector16u.
9434 * basic-simd.cs: Fixed test naming.
9436 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
9438 * mini-ops.h: Added ops for packed and saturated math, shifts
9439 and packing/unpacking.
9441 * cpu-x86.md: Added descriptors for the above ops.
9443 * mini-x86.c: Added code to emmit the above ops.
9445 * simd-intrinsics.c: Added support for Vector16u and Vector8u.
9447 2008-10-08 Zoltan Varga <vargaz@gmail.com>
9449 * aot-compiler.c (compile_method): Enable AOT for generic code.
9451 * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
9453 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
9455 * mini.c: add a workaround for a common screwup that ends up blamed
9456 to mono (other processes blocking signal delivery).
9458 2008-10-07 Zoltan Varga <vargaz@gmail.com>
9460 * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
9461 in the LDFLD/STFLD opcodes. Fixes #432673.
9463 * iltests.il.in: Add a new test.
9465 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
9467 * mini-arm.c: attach the thread in unmanaged->managed transitions
9468 using delegates (bug #433148).
9470 2008-10-07 Rodrigo Kumpera <rkumpera@novell.com>
9472 * basic-simd.cs: Use new ShuffleSel constants.
9474 2008-10-07 Rodrigo Kumpera <rkumpera@novell.com>
9476 * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
9478 * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
9479 only disable simd intrinsics if no sse2 is detected.
9481 * optflags-def.h: Added sse3.
9483 * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
9486 2008-10-07 Zoltan Varga <vargaz@gmail.com>
9488 * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
9489 when adding delegate-invoke wrappers.
9491 2008-10-07 Zoltan Varga <vargaz@gmail.com>
9493 * Makefile.am: Reenable the simd tests.
9495 2008-10-07 Bill Holmes <billholmes54@gmail.com>
9497 * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
9498 add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
9499 other vreg is allocated to that hreg.
9501 Contributed under MIT/X11 license.
9503 2008-10-07 Zoltan Varga <vargaz@gmail.com>
9505 * Makefile.am: Disable the simd tests for now as Mono.Simd is not
9508 2008-10-06 Rodrigo Kumpera <rkumpera@novell.com>
9510 * basic-simd.cs: New test suite for SIMD intrinsics.
9512 * Makefile.am: Added new tests.
9514 2008-10-06 Rodrigo Kumpera <rkumpera@novell.com>
9516 * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
9520 * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
9522 * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
9523 using SSE2 aware opcodes.
9525 * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
9526 is enabled, this code path is only reachable if conversion ops are emmited after
9529 * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
9531 This optimization saves 6 bytes per conversion against the old version.
9533 2008-10-06 Zoltan Varga <vargaz@gmail.com>
9535 * aot-compiler.c (compile_method): Don't skip methods referencing
9536 generic methods without a corresponding entry in token_info_hash, since
9537 encode_method_ref () can handle all generic methods now.
9539 * method-to-ir.c (mono_save_token_info): Don't save the token info if a
9540 generic context is set.
9542 * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
9543 generic sharing of LDTOKEN.
9545 2008-10-06 Mark Probst <mark.probst@gmail.com>
9547 * mini-amd64.h: Temporarily disabled fast virtual generic method
9548 calls because it breaks the System.Runtime.Remoting tests.
9550 2008-10-06 Zoltan Varga <vargaz@gmail.com>
9552 * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
9554 * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
9555 so inlining actually works.
9556 (check_inline_caller_method_name_limit): Ditto.
9558 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
9560 * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
9561 64 bit safety (from Olaf Hering and Andreas Farber).
9563 2008-10-06 Zoltan Varga <vargaz@gmail.com>
9565 * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
9566 mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
9567 unused virtual call support code.
9569 * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
9571 * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
9572 which can't use aot trampolines.
9573 (decode_patch): Don't create aot trampolines for methods which can't use
9576 * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
9577 use aot trampolines.
9579 * mini.h: Bump AOT image format version.
9581 2008-10-05 Zoltan Varga <vargaz@gmail.com>
9583 * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
9584 to save_token_info () since cmethod is inflated for constrained calls.
9586 * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
9588 2008-10-04 Andreas Farber <andreas.faerber@web.de>
9590 * Makefile.am: Add build rules for ppc64.
9591 This avoids the build failing at pedump with unresolved symbols
9592 due to lack of arch_sources. Instead it will now fail earlier
9593 due to lack of cpu-ppc64.md.
9595 Contributed under MIT/X11 license.
9597 2008-10-04 Mark Probst <mark.probst@gmail.com>
9599 * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
9602 * iltests.il.in: Add test case for tail call with many arguments.
9604 2008-10-03 Zoltan Varga <vargaz@gmail.com>
9606 * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
9607 to the fast virtual generic method code until the aot case is fixed.
9609 2008-10-03 Mark Probst <mark.probst@gmail.com>
9611 * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
9613 2008-10-03 Mark Probst <mark.probst@gmail.com>
9615 * mini-amd64.c, mini-amd64.h: Implement generic virtual method
9618 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
9620 * simd-intrinsics.c: Forgot to add this one.
9622 * mini-codegen.c: Fix macro in case SIMD is not supported.
9624 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
9626 This patch land initial JIT support for simd intrinsics.
9628 * mini-x86.h: Added new define to make --enable_minimal work on x86.
9630 * Makefile.am: Added simd-intrinsics.c
9632 * simd-intrinsics.c: New file with simd instrinsic related
9635 * cfold.c (mono_constant_fold_ins2): Fold XZERO.
9637 * cpu-x86.md: Add simd related instructions.
9639 * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
9641 * driver.c: Added two new --regression variants.
9643 * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
9645 * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
9647 * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
9648 extract some complicated logic to helper functions.
9650 * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
9652 * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
9654 * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
9655 the specialized simplification pass.
9657 * method-to-ir.c (mono_spill_global_vars): Use new macro.
9659 * mini-codegen.c: Added SIMD constants to all regbanks arrays.
9661 * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
9664 * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
9665 if MONO_ARCH_NEED_SIMD_BANK is defined.
9667 * mini-ops.h: Added the new simd ops.
9669 * mini-x86.c: Added mono_arch_xregname.
9671 * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
9673 * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
9675 * mini-x86.h: Define simd related MONO_ARCH macros.
9677 * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
9679 * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
9681 * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
9682 MONO_CLASS_IS_SIMD to deal with simd related IR.
9684 * mini.h (MonoInst): Added spill_var to the backend union.
9686 * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
9688 * mini.h: Added forward declarations of the new simd fuctions.
9690 * optflags-def.h: Added new optimization names SIMD.
9692 * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
9694 * regalloc.h: Added support for working with 3 register banks.
9696 * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
9698 * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
9700 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
9702 * mini-exceptions.c: remove 64 bit related ifdef clutter.
9704 2008-10-03 Zoltan Varga <vargaz@gmail.com>
9706 * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
9707 instead of one on 64 bit systems.
9709 * method-to-ir.c: Remove unused includes.
9711 2008-10-02 Zoltan Varga <vargaz@gmail.com>
9713 * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
9714 cfg->used_int_regs, since the two are different on arm.
9716 2008-10-02 Mark Probst <mark.probst@gmail.com>
9718 * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
9719 mono_method_get_vtable_index() to get the vtable index.
9721 2008-10-02 Mark Probst <mark.probst@gmail.com>
9723 * method-to-ir.c (mono_method_to_ir2): Don't create native
9724 wrappers for array methods, because they're never called (and if
9725 they were called they wouldn't work).
9727 2008-10-02 Mark Probst <mark.probst@gmail.com>
9729 * method-to-ir.c (mono_method_to_ir2): Array methods are
9730 special-cased and must not be invoked indirectly via the (M)RGCTX
9731 when generic sharing is turned on. Fixes #431413.
9733 2008-10-01 Mark Probst <mark.probst@gmail.com>
9735 * method-to-ir.c: When generic sharing is active, call
9736 non-interface virtual generic methods via the standard trampoline.
9738 * mini-trampolines.c: Handle virtual generic shared methods.
9740 * mini.h, mini-x86.c, mini-x86.h: New argument for
9741 mono_arch_build_imt_thunk() which is non-NULL for virtual generic
9742 method thunks and which is the trampoline to call if the lookup
9743 fails. Enable the virtual generic method thunk for x86.
9745 * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
9746 mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
9747 argument but assert that it's NULL, because these archs don't yet
9748 implement the virtual generic method thunk. Changes in the IMT
9749 thunk data structures.
9751 2008-10-01 Zoltan Varga <vargaz@gmail.com>
9753 * aot-compiler.c (emit_globals): Avoid invalid characters in
9754 the static linking symbol.
9756 * objects.cs: Add a test for the range check optimization. Fix warnings.
9758 * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
9759 optimization from the current JIT.
9761 * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
9762 later in decompose_array_access_opts () to allow more optimizations.
9764 * method-to-ir.c (mono_handle_soft_float): Rename this to
9765 mono_decompose_soft_float () for consistency.
9767 * mini-ops.h: Fix arguments of OP_STRLEN.
9769 * method-to-ir.c (save_cast_details): Extract the cast details saving code
9770 into a separate function.
9771 (reset_cast_details): Ditto.
9772 (handle_unbox): Save cast details. Fixes #431254.
9774 * method-to-ir.c: Remove some obsolete FIXMEs.
9776 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9778 * ir-emit.h (alloc_dreg): Write a warning before crashing.
9780 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9782 * mini-codegen.c: More work on macros to make them
9783 ready for multiple regbanks.
9785 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9787 * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
9789 * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
9791 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9793 * mini-codegen.c (mono_spillvar_offset): Proper support for
9796 2008-09-30 Zoltan Varga <vargaz@gmail.com>
9798 * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
9799 the stack overflow changes.
9801 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9803 * mini-codegen.c: Make all bank macros depend on reg_bank.
9805 * mini-codegen.c (mono_local_regalloc): Make free mask
9806 initialization regbank aware.
9808 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9810 * mini-codegen.c (mono_local_regalloc): Extract callee
9811 mask selection to a function and make it regbank aware.
9813 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
9815 * mini-codegen.c (mono_local_regalloc): Changed the cloberring
9816 code to deal with many regbanks.
9818 2008-09-30 Zoltan Varga <vargaz@gmail.com>
9820 * mini-codegen.c: More fp->regbank changes.
9822 2008-09-29 Rodrigo Kumpera <rkumpera@novell.com>
9824 * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
9825 of a hardcoded constant.
9827 2008-09-29 Rodrigo Kumpera <rkumpera@novell.com>
9829 * method-to-ir.c (type_from_stack_type): Fix typo.
9831 2008-09-29 Zoltan Varga <vargaz@gmail.com>
9833 * mini-ia64.c (emit_move_return_value): Convert float return values to
9836 * objects.cs: Add a new test.
9838 * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
9839 VARARG methods to fix an assert later.
9841 * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
9842 end so it at least compiles.
9844 2008-09-28 Zoltan Varga <vargaz@gmail.com>
9846 * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
9848 2008-09-28 Rodrigo Kumpera <rkumpera@novell.com>
9850 * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
9851 optimization to a new function (emit_optimized_ldloca_ir) and enable
9852 it for both ldloca and ldloca_s.
9854 2008-09-28 Zoltan Varga <vargaz@gmail.com>
9856 * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
9857 gshared CASTCLASS code.
9859 * driver.c (mono_main): Add a workaround for shutdown crashes seen on
9860 amd64, where the libc stack unwinder encounters stack frames referring to
9861 native code in unmapped memory.
9863 * method-to-ir.c (mini_emit_check_array_type): Add support for generic
9866 * generics.cs: Add new test.
9868 2008-09-27 Zoltan Varga <vargaz@gmail.com>
9870 * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
9871 add a check that one of the ARM_FPU_ constants is defined.
9873 * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
9875 * mini-exceptions.c: Fix build on non-altstack platforms.
9877 * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
9880 * ir-emit.h: Add a comment to NEW_PCONST.
9882 * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
9884 * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
9886 * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
9887 after the changes to MonoJitDomainInfo.
9889 2008-09-27 Mark Probst <mark.probst@gmail.com>
9891 * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
9893 2008-09-27 Mark Probst <mark.probst@gmail.com>
9895 * mini-ppc.c: Compiler warning fixes.
9897 2008-09-27 Mark Probst <mark.probst@gmail.com>
9899 * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
9902 2008-09-27 Mark Probst <mark.probst@gmail.com>
9904 * exceptions-ppc.c, mini-ppc.h: Compile
9905 mono_arch_handle_altstack_exception() on Darwin, too.
9907 2008-09-27 Mark Probst <mark.probst@gmail.com>
9909 * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
9910 work on archs which don't have generic sharing implemented, only
9911 without the vtable_arg.
9913 2008-09-26 Mark Probst <mark.probst@gmail.com>
9915 * mini.c: Added comment explaining why delegate ctor icall
9916 wrappers are compiled.
9918 2008-09-26 Mark Probst <mark.probst@gmail.com>
9920 * mini.c: Don't produce trampolines to delegate ctor icall
9921 wrappers but compile them upfront.
9923 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9925 * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
9926 runtime-set function when going back to managed code. Currently this
9927 is used to set back the protection on the soft ovf pages and/or to
9928 throw the stack overflow exception that happened in unmanaged code.
9930 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9932 * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
9933 runtime-set function when going back to managed code. Currently this
9934 is used to set back the protection on the soft ovf pages and/or to
9935 throw the stack overflow exception that happened in unmanaged code.
9937 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
9939 * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
9940 the support code for restoring stack protection after stack overflows
9941 that happen in unmanaged code. Don't set the exec permission on the
9944 2008-09-26 Zoltan Varga <vargaz@gmail.com>
9946 * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
9947 delegate->method_ptr is set. Fixes #428054.
9949 2008-09-25 Zoltan Varga <vargaz@gmail.com>
9951 * tests.cs: Rename to ratests.cs.
9953 * method-to-ir.c: Merge the emit_get_rgctx () calls into the
9954 emit_get_rgctx_... functions.
9956 2008-09-25 Mark Probst <mark.probst@gmail.com>
9958 * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
9960 2008-09-25 Mark Probst <mark.probst@gmail.com>
9962 * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
9963 before asserting that method is sharable.
9965 2008-09-25 Mark Probst <mark.probst@gmail.com>
9967 * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
9968 whether method needs a static RGCTX wrapper used instead of
9971 * generic-sharing.c, mini.h: A few functions moved to
9972 metadata/generic-sharing.c.
9974 2008-09-25 Mark Probst <mark.probst@gmail.com>
9976 * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
9977 Generic code sharing for value types, which essentially means
9978 treating value type methods like static methods. The RGCTX is
9979 passed in the same way.
9981 2008-09-25 Zoltan Varga <vargaz@gmail.com>
9983 * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
9984 opcode when creating multi-dimensional arrays of open types.
9986 * generic-sharing.c (mono_method_check_context_used): Handle arrays of
9989 * generics.cs: Add a test.
9991 * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
9993 2008-09-24 Zoltan Varga <vargaz@gmail.com>
9995 * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
9997 * mini.c (mini_method_compile): Set it when running under the debugger.
9999 * method-to-ir.c (mono_handle_global_vregs): Disable global->local
10000 vreg optimization if the flag is set.
10002 * driver.c (mono_main): Add --attach= option to pass options to
10005 * mini.c (sigquit_signal_handler): Start the attach agent.
10007 * ssapre.c: Disable this to save space since it is not yet ported to
10010 * regalloc2.c: Disable this to save space.
10012 * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
10014 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
10016 * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
10017 the -v option useful again.
10019 2008-09-24 Zoltan Varga <vargaz@gmail.com>
10021 * mini-amd64.c (mono_arch_output_basic_block): Add support for
10024 * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
10025 arrays of arrays. Fixes #428406.
10027 * method-to-ir.c (mini_emit_castclass): Ditto.
10029 * objects.cs: Add new test.
10031 2008-09-23 Rodrigo Kumpera <rkumpera@novell.com>
10033 * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
10034 was wrong at it choked against target_type_is_incompatible for byref types.
10036 2008-09-23 Zoltan Varga <vargaz@gmail.com>
10038 * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most
10041 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
10043 * mini-exceptions.c: update a few more exceptions-related counters.
10045 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
10047 * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
10048 new functions to allocate from persistent mempools.
10050 2008-09-23 Zoltan Varga <vargaz@gmail.com>
10052 * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow
10053 multiple register banks in the future.
10055 * mini-codegen.c (mono_local_regalloc): Fix a warning.
10057 2008-09-22 Rodrigo Kumpera <rkumpera@novell.com>
10059 * mini.c (type_to_eval_stack_type): Remove duplicated function.
10061 * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
10063 * mini.h: Export type_to_eval_stack_type.
10065 This function was nearly duplicated in method-to-ir.c and mini.c. The difference
10066 is only ins->klass of byref types.
10068 2008-09-22 Zoltan Varga <vargaz@gmail.com>
10070 * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
10071 (mini_emit_memcpy2): Ditto.
10073 * mini-amd64.c: Fix a warning.
10075 2008-09-21 Mark Probst <mark.probst@gmail.com>
10077 * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
10080 2008-09-19 Rodrigo Kumpera <rkumpera@novell.com>
10082 * method-to-ir.c: Extract stloc micro-optimization to a
10083 function and apply it to all cases.
10085 2008-09-19 Mark Probst <mark.probst@gmail.com>
10087 * method-to-ir.c: Don't fail generic code sharing in cases we
10090 2008-09-18 Mark Probst <mark.probst@gmail.com>
10092 * mini-ppc.c: Handle structs in tailcalls on Darwin.
10094 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
10096 * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
10099 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
10101 * trace.c: make tracing more useful and correct, with per-thread
10102 id and indent info.
10104 2008-09-15 Mark Probst <mark.probst@gmail.com>
10106 * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
10107 doing a method call and the argument is an R4.
10109 2008-09-14 Zoltan Varga <vargaz@gmail.com>
10111 * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
10114 2008-09-13 Mark Probst <mark.probst@gmail.com>
10116 * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
10118 2008-09-12 Zoltan Varga <vargaz@gmail.com>
10120 * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
10121 (MONO_JUMP_TABLE_FROM_INS): Ditto.
10123 2008-09-11 Zoltan Varga <vargaz@gmail.com>
10125 * driver.c: Add a --agent argument (not supported yet) to load managed
10126 agent assemblies before loading the main assembly, similarly to how the
10127 Java VM handles agents.
10129 2008-09-11 Mark Probst <mark.probst@gmail.com>
10131 * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
10132 function to do stack layout of local variables.
10134 2008-09-11 Mark Probst <mark.probst@gmail.com>
10136 * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
10139 2008-09-11 Zoltan Varga <vargaz@gmail.com>
10141 * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
10142 abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
10143 JIT if DISABLE_JIT is defined.
10145 * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
10148 2008-09-10 Mark Probst <mark.probst@gmail.com>
10150 * iltests.il.in: Disable the fconv test on PPC (the result is
10151 undefined according to ECMA).
10153 2008-09-10 Mark Probst <mark.probst@gmail.com>
10155 * iltests.il.in: Enable tail call tests for PPC.
10157 * mini.h: Add variable for storing incoming valuetype argument
10158 addresses for tail calls.
10160 * mini-ppc.c: Implement valuetype arguments and return values for
10161 tailcalls on Linux.
10163 2008-09-09 Mark Probst <mark.probst@gmail.com>
10165 * mini-ppc.c: Partially implement tail calls (struct arguments and
10166 return values not supported).
10168 * method-to-ir.c: Enable tail calls on PPC.
10170 2008-09-08 Zoltan Varga <vargaz@gmail.com>
10172 * aot-compiler.c (emit_wrapper_info): Omit the klass name from
10173 runtime-invoke wrappers to work around the problem of them getting
10174 assigned to a random class.
10176 * aot-runtime.c (mono_aot_get_method): Ditto.
10178 2008-09-07 Zoltan Varga <vargaz@gmail.com>
10180 * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
10181 the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
10183 2008-09-07 Mark Probst <mark.probst@gmail.com>
10185 * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
10186 until they're implemented properly.
10188 * exceptions-ppc.c: Use arch-independent exception-handling code
10189 instead of custom one.
10191 * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
10194 * tramp-ppc.c, mini-ppc.c: Fixed warnings.
10196 * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
10197 applies when __powerpc__ is defined.
10199 2008-09-06 Zoltan Varga <vargaz@gmail.com>
10201 * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
10202 methods to their code to avoid computing the full name of wrappers and
10203 doing a lookup in a string hash table.
10205 2008-09-05 Zoltan Varga <vargaz@gmail.com>
10207 * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
10208 we identify bblocks before method_to_ir () is ran.
10210 * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
10211 Also avoid optimizing branches pointing to themselves.
10213 * mini.c (mini_method_compile): Ditto. Fixes #422947.
10215 2008-09-05 Rodrigo Kumpera <rkumpera@novell.com>
10217 * driver.c (mono_main): Enable the new verifier under core-clr and cas.
10219 2008-09-05 Zoltan Varga <vargaz@gmail.com>
10221 * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
10222 (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
10223 (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
10226 * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all
10227 jumped to the same entry in plt_jump_table.
10229 2008-09-02 Rodrigo Kumpera <rkumpera@novell.com>
10231 * method-to-ir.c (initialize_array_data): Handle field with RVA from
10234 2008-08-31 Zoltan Varga <vargaz@gmail.com>
10236 * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
10237 other assignment can be if converted. Saves 1.5% on corlib size and fixes
10240 2008-08-29 Geoff Norton <gnorton@novell.com>
10242 * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
10243 segment, and doesn't properly handle .space as .text. Fixes
10246 2008-08-29 Geoff Norton <gnorton@novell.com>
10248 * mini.c: Disable the mach exception handler when running on
10251 2008-08-29 Geoff Norton <gnorton@novell.com>
10253 * aot-compiler.c: Patch from Renaldas Zioma to properly register
10254 globals on Darwin/ARM
10256 2008-08-28 Zoltan Varga <vargaz@gmail.com>
10258 * mini.c: Avoid not initializing the runtime when doing AOT compilation,
10259 since too many things depend on it. Instead, call
10260 mono_runtime_set_no_exec ().
10262 * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
10265 * aot-compiler.c: Add an 'asm-only' AOT option.
10267 * mini.c: Avoid initializing the runtime when doing AOT compilation.
10269 * aot-compiler.c (compile_method): Disable gshared support for now as it
10272 2008-08-27 Bill Holmes <billholmes54@gmail.com>
10274 * mini-amd64.h : Fix a compiler warning.
10276 * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
10277 Changed to use a callback function to retrieve the unwind info.
10278 This avoids problems observed when code blocks were removed by
10279 unloading an app domain.
10281 * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole
10282 and branch excludes for Winx64. The fix in exceptions-amd64.c allows them
10285 Contributed under MIT/X11 license.
10287 2008-08-27 Bill Holmes <billholmes54@gmail.com>
10289 * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
10290 case to keep the stack aligned to 8.
10292 Contributed under MIT/X11 license.
10294 2008-08-26 Zoltan Varga <vargaz@gmail.com>
10296 * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
10297 avoid repeated linear searches.
10299 2008-08-25 Zoltan Varga <vargaz@gmail.com>
10301 * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
10302 methods it can't handle.
10304 * aot-compiler.c (add_method): Avoid adding a method twice.
10305 (add_wrappers): Add runtime invoke wrappers for all methods.
10307 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
10308 function to create an aot-compatible version of this trampoline.
10310 * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
10312 2008-08-24 Zoltan Varga <vargaz@gmail.com>
10314 * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
10316 * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
10317 with a generic sharing failure.
10319 * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
10321 * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
10322 CEE_RETHROW. Fixes #419634.
10324 * mini.c (mono_method_to_ir): Ditto.
10326 * exceptions.cs: Add a new test.
10328 * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
10329 to mono_type_stack_size_internal () since some callers might not pass in
10332 * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
10333 instrument_prolog. Fixes #419878.
10335 * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
10336 doubles in soft float mode volatile.
10338 2008-08-23 Zoltan Varga <vargaz@gmail.com>
10340 * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
10342 * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
10343 to handle soft float correctly.
10345 * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
10348 * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
10350 * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
10351 to sp, since the generics catch code requires it.
10353 * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
10356 * method-to-ir.c (emit_imt_argument): Pass imt_arg to
10357 mono_arch_emit_imt_argument ().
10359 * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
10361 * mini-arm.c tramp-arm.c: Generic sharing updates.
10363 2008-08-22 Zoltan Varga <vargaz@gmail.com>
10365 * mini-arm.c: Fix the arm build.
10367 * generic-sharing.c (mini_type_get_underlying_type): New helper function
10368 handling enums, generic instances and generic sharing.
10369 (mini_type_stack_size_full): Ditto.
10371 * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
10373 * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
10375 * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
10377 * tramp-arm.c: Implement the rgctx fetch and the generic class init
10380 * mini-arm.c: Various small generic sharing changes.
10382 * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
10384 (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
10387 * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
10388 helper function to return a generic class init trampoline.
10390 * method-to-ir.c mini.c: Use it.
10392 * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
10393 arch-specfic function to return a generic class init trampoline.
10395 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
10396 the GENERIC_CLASS_INIT custom code.
10398 * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
10399 a fatal error, not a sharing failure.
10401 * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
10404 * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
10405 trampoline argument from MONO_ARCH_VTABLE_REG.
10407 * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
10408 order of the arguments to the C trampoline: pass 'slot' as the trampoline
10409 argument, and pass the vtable in VTABLE_REG.
10411 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
10412 order of the arguments to the C trampoline: pass 'slot' as the trampoline
10413 argument, and pass the vtable in VTABLE_REG.
10414 (mono_arch_create_trampoline_code_full): Remove some special casing for
10415 the rgctx fetch trampoline.
10417 * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
10420 * iltests.il: Add a test for it.
10422 2008-08-21 Zoltan Varga <vargaz@gmail.com>
10424 * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
10426 * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
10429 * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
10430 use mono_jit_info_table_find () to avoid recursion.
10431 (mono_delegate_trampoline): Add a sync wrapper here.
10433 * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
10436 * mini.c (mono_method_to_ir): Ditto.
10438 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
10439 add_sync_wrapper argument. Don't add a sync wrapper here.
10440 (mono_create_jump_trampoline): Don't add a sync wrapper here.
10442 * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
10444 2008-08-20 Bill Holmes <billholmes54@gmail.com>
10446 * exceptions-amd64.c (seh_handler): For Winx64 adding missing copy
10447 of nonvolatile registers back from MonoContext to CONTEXT.
10449 Contributed under MIT/X11 license.
10451 2008-08-20 Bill Holmes <billholmes54@gmail.com>
10453 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): When shifting the
10454 arguments on Winx64 there are only 4 argument registers. For this
10455 logic to work the last argument must be pulled from the stack.
10457 Contributed under MIT/X11 license.
10459 2008-08-20 Zoltan Varga <vargaz@gmail.com>
10461 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10463 * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
10464 MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
10465 encode/decode_method_ref ().
10467 * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
10469 * aot-runtime.c (decode_patch): Ditto.
10471 * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
10472 MONO_PATCH_INFO_METHOD.
10474 * aot-runtime.c (decode_exception_debug_info): Decode the contents of
10475 MonoGenericJitInfo.
10477 * aot-compiler.c (emit_exception_debug_info): Emit the contents of
10478 MonoGenericJitInfo.
10480 * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
10482 * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
10483 one from the caller.
10485 * aot-runtime.c (decode_generic_inst): New function to decode and
10486 return a interned generic inst.
10487 (decode_klass_ref): Use it.
10488 (decode_method_ref): Ditto.
10490 * aot-compiler.c (emit_exception_debug_info): Save
10491 jinfo->has_generic_jit_info too.
10493 2008-08-19 Zoltan Varga <vargaz@gmail.com>
10495 * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
10497 * iltests.il.in: Add a test for fconv_to_i.
10499 * liveness.c: Disable the liveness2 pass for now to save space.
10501 * regalloc2.c: Include mempool-internals.h to fix warnings.
10503 * aot-compiler.c (encode_method_ref): Encode the context of generic
10506 * aot-runtime.c (decode_method_ref): Inflate generic methods using
10507 the context saved in the aot file.
10509 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10511 * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
10513 * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
10514 volatile so they won't be optimized away.
10516 2008-08-19 Rodrigo Kumpera <rkumpera@novell.com>
10522 * dominators.c: Remove duplicated functions that now are in
10523 mempool-internals.h.
10525 2008-08-19 Zoltan Varga <vargaz@gmail.com>
10527 * aot-compiler.c: Fix warnings.
10529 * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
10531 * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
10533 * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
10536 * mini.c (mono_resolve_patch_target): Ditto.
10538 * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
10539 (encode_klass_ref): Add support for encoding VARs/MVARs.
10541 * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
10543 * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
10544 the handling of the got entries into a separate 'decode_got_entry' function.
10545 Add support for RGCTX_FETCH.
10547 * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
10548 clobbered by the trampoline code.
10550 * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
10551 not clobbered by the indirect calling code.
10553 2008-08-18 Zoltan Varga <vargaz@gmail.com>
10555 * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
10558 2008-08-18 Rodrigo Kumpera <rkumpera@novell.com>
10560 * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
10561 signature using the compilation mempool otherwise we would leak it.
10563 2008-08-18 Zoltan Varga <vargaz@gmail.com>
10565 * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
10566 mono_emit_abs_call ().
10568 * patch-info.h: Add GENERIC_CLASS_INIT.
10570 * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
10572 * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
10573 as their target as a near call.
10575 * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
10577 (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
10579 * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
10580 call to a runtime function described by a patch.
10582 * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
10583 mono_emit_abs_call, this has the advantage that the ABS handling code in
10584 mono_codegen () can handle them both, and can handle other stuff in the
10585 future without additional code.
10587 * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
10589 (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
10592 * mini.h: Add missing bblock related prototypes.
10594 * mini.h (MonoCompile): Remove unused reverse_inst_list and
10595 reverse_inst_list_len fields.
10597 * mini.c: Refactor this file a bit by moving branch optimizations to
10600 * method-to-ir.c: Merge generic sharing changes missed earlier.
10602 * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
10604 * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
10605 shared patches. Process METHODCONST as a shared patch.
10607 * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
10608 as it crashes on the 2.0 mscorlib.
10610 * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
10613 * aot-compiler.c: Use is_plt_patch () in a few additional places.
10614 (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
10617 * aot-compiler.c: Reorganize the got handling code to be a bit more
10620 2008-08-17 Zoltan Varga <vargaz@gmail.com>
10622 * aot-compiler.c: Make the patch_to_plt_offset hash table use
10623 mono_patch_info_equals/hash, and use it to massively simplify
10626 * mini.c (mono_patch_info_hash): Simplify this and add support for
10629 * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
10631 * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
10632 handling code, since an offset is not enough to identify a trampoline.
10634 * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
10636 2008-08-17 Mark Probst <mark.probst@gmail.com>
10638 * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
10640 * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
10642 * mini-ops.h: Argument and result types for OVF_CARRY ops.
10644 * decompose.c: PPC decompositions for various ops.
10646 * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
10648 2008-08-17 Zoltan Varga <vargaz@gmail.com>
10650 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
10651 call the generic trampoline code using a call, instead of a jump, to
10652 remove some special casing from the generic trampoline code.
10654 * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
10655 (mono_codegen): Ditto.
10657 * aot-compiler.c aot-runtime.c: Ditto.
10659 * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
10661 * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
10662 helper function to find the offset corresponding to a lazy fetch trampoline.
10664 * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
10665 when doing generic sharing.
10667 * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
10670 * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
10671 mini-trampolines.c to be with the other trampoline creation functions.
10673 * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
10674 as it is equal to method->signature in most cases, add a
10675 mono_emit_method_call_full variant which takes a signature and an imt
10678 2008-08-16 Zoltan Varga <vargaz@gmail.com>
10680 * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
10681 to this function, since it could be computed easily from the method
10683 (mono_helper_compile_generic_method_wo_context): Removed, not needed any
10686 * method-to-ir.c mini.c: Remove references to
10687 compile_generic_method_wo_context.
10689 * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
10690 generic method calls.
10692 * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
10693 dimensional non-szarrays.
10695 * mini.c (mini_init): Register mono_array_new_1.
10697 * jit-icalls.c (mono_array_new_1): New jit icall.
10699 * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
10700 pointing to the method.
10702 * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
10703 method addresses belonging to METHOD_JUMP patches in the
10704 jump_target_got_slot_hash.
10705 (mono_aot_load_method): Ditto.
10707 * aot-compiler.c (compile_method): Allow AOT compilation of methods with
10708 METHOD_JUMP patches.
10710 * mini.c (mini_create_jit_domain_info): New helper function which
10711 initializes/frees domain->runtime_info.
10712 (mini_free_jit_domain_info): Ditto.
10713 (mini_init): Install the domain hook functions with the runtime.
10715 * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
10716 information maintained by the JIT.
10718 * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
10719 insertion into jump_table_hash into mono_codegen (), also implement proper
10722 * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
10723 tail calls, it is already done by the aot code.
10725 * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
10726 mechanism on amd64.
10728 * iltests.il.in: Make the jmp test a bit more complex.
10730 * aot-compiler.c (encode_method_ref): Handle references to normal methods of
10731 generic instances which doesn't have a token.
10733 * aot-runtime.c (decode_method_ref): Ditto.
10735 * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
10736 can handle this case now.
10737 (handle_box): Ditto.
10739 2008-08-15 Geoff Norton <gnorton@novell.com>
10741 * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
10744 2008-08-15 Zoltan Varga <vargaz@gmail.com>
10746 * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
10747 calling generic methods.
10749 * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
10751 * aot-runtime.c (decode_patch_info): Ditto.
10753 * mini.c (mono_resolve_patch_target): Ditto.
10755 * patch-info.h: Add METHOD_RGCTX.
10757 * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
10759 2008-08-14 Zoltan Varga <vargaz@gmail.com>
10761 * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
10762 arguments in registers.
10764 * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
10765 OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
10767 * mini.c (mini_method_compile): Abort aot compilation for generic
10768 methods if generic sharing is disabled.
10770 * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
10773 * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls
10774 requiring an mrgctx.
10776 * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
10777 store instructions when converting a vcall to a normal call.
10779 * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
10780 mono_arch_find_jit_info.
10782 2008-08-13 Zoltan Varga <vargaz@gmail.com>
10784 * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
10785 avoid calling mono_method_full_name () for every method even if the
10786 env var is not set.
10787 (check_inline_caller_method_name_limit): Ditto.
10789 2008-08-12 Zoltan Varga <vargaz@gmail.com>
10791 * driver.c (main_thread_handler): Allow AOT compilation of multiple
10792 assemblies in one run.
10794 * aot-compiler.c (mono_compile_assembly): Only print out a count of
10795 skipped methods if it is not 0.
10797 * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
10799 2008-08-12 Bill Holmes <billholmes54@gmail.com>
10801 * mini.c (mono_codegen): Changing a preprocessor check from WIN64 to
10802 MONO_ARCH_HAVE_UNWIND_TABLE.
10804 Contributed under MIT/X11 license.
10806 2008-08-12 Bill Holmes <billholmes54@gmail.com>
10808 * mini-amd64.c (mono_arch_cpu_optimizazions): Remove peephole and branch
10809 from default optimizaton list on Winx64.
10811 * mini-amd64.c (emit_tls_get): Added Winx64 specific implementation for GetTLS.
10813 * mini-amd64.c (mono_arch_emit_prolog): Adding an offset on Winx64 to get
10814 the LMF from the MonoJitTlsData structure.
10816 * mini-amd64.c (mono_arch_setup_jit_tls_data): Added Winx64 implementation.
10818 Contributed under MIT/X11 license.
10820 2008-08-12 Zoltan Varga <vargaz@gmail.com>
10822 * mini.c (sigsegv_signal_handler): Fix the build.
10824 * mini-amd64.c (emit_call_body): Use image->aot_module instead of
10825 assembly->aot_module.
10827 * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
10828 hash table. This simplifies and speeds up a lot of code, and fixes support
10831 * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
10834 * mini-exceptions.c: Ditto.
10836 * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
10837 'native_offset' argument, since these are computed in the
10838 mono_find_jit_info () function.
10840 * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
10841 is used by exceptions-ppc.c.
10843 * exceptions-ppc.c: Call mono_find_jit_info () instead of
10844 mono_arch_find_jit_info ().
10846 * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
10847 mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
10848 generic code in mini-exceptions.c.
10850 2008-08-11 Zoltan Varga <vargaz@gmail.com>
10852 * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
10854 * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
10856 * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
10857 the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
10858 called while holding the loader lock. Fixes #415608.
10859 (mono_aot_get_method_from_token_inner): Ditto.
10861 2008-08-09 Zoltan Varga <vargaz@gmail.com>
10863 * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
10864 to reduce differences between this and the generic implementation in
10866 (ves_icall_get_frame_info): Ditto.
10868 * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
10870 * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
10873 * exceptions-ppc.c (arch_get_call_filter): Rename this to
10874 mono_arch_get_call_filter () and make it non-static, for consistency with the
10875 other architectures.
10877 2008-08-09 Rodrigo Kumpera <rkumpera@novell.com>
10880 * local-propagation.c:
10881 * mini-x86.c: Correct the name of arch defines.
10883 2008-08-09 Zoltan Varga <vargaz@gmail.com>
10885 * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
10886 NO_EMULATE_LONG_SHIFT_OPS define.
10888 2008-08-08 Zoltan Varga <vargaz@gmail.com>
10890 * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
10891 now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
10893 * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
10894 MACH fixes. Merged from the 2.0 branch.
10896 * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
10898 * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
10899 (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
10901 * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
10903 * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
10904 mono_marshal_get_native_wrapper () signature changes.
10906 2008-08-07 Rodrigo Kumpera <rkumpera@novell.com>
10908 * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
10909 conversion bug under arm.
10911 2008-08-06 Rodrigo Kumpera <rkumpera@novell.com>
10913 * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
10915 * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
10916 with overflow checking.
10918 2008-08-05 Marek Habersack <mhabersack@novell.com>
10920 * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
10921 to the genmdesc.pl file
10923 2008-08-05 Zoltan Varga <vargaz@gmail.com>
10925 * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
10926 arg_array in the soft-float versions of the LOAD/STORE macros.
10928 * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
10931 * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
10933 2008-08-02 Zoltan Varga <vargaz@gmail.com>
10935 * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
10936 a float HFA. Fixes #413621.
10938 2008-08-02 Gert Driesen <drieseng@users.sourceforge.net>
10940 * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
10941 frame_size to args_size. Fixes build.
10943 2008-08-02 Zoltan Varga <vargaz@gmail.com>
10945 * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
10946 and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
10948 * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
10949 the stack are not unaligned. Fixes #413247.
10951 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10953 * mini.c: update jitted methods performance counters.
10955 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
10957 * mini-exceptions.c: increase the exceptions thrown performance
10958 counter in mono_handle_exception ().
10960 2008-07-29 Zoltan Varga <vargaz@gmail.com>
10962 * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
10963 can work with netmodules.
10965 2008-07-28 Geoff Norton <gnorton@novell.com>
10967 * mini-x86.h: Correct the frame alignment on OSX. Fixes the jit
10970 2008-07-28 Zoltan Varga <vargaz@gmail.com>
10972 * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
10975 2008-07-28 Bill Holmes <billholmes54@gmail.com>
10977 * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
10978 The float param registers and other param registers must be the
10979 same index on Windows x64.
10981 * mini-amd64.c (mono_arch_allocate_vars) : Implementing the
10982 ArgValuetypeAddrInIReg argument case. Setting the argument
10983 op to OP_VTARG_ADDR (OP_REGOFFSET)).
10985 * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix. Use the size
10986 variable computed above as the copy length for arguments of storage
10987 type ArgValuetypeAddrInIReg.
10989 * mini-amd64.c (mono_arch_emit_call) : Implementing the
10990 ArgValuetypeAddrInIReg argument case. This case will rely on
10991 mono_arch_emit_outarg_vt to emit the correct code later in the process.
10993 * mini-amd64.c (mono_arch_emit_call) : On Winx64 there always needs to be
10994 a 32 byte stack allocation for all calls. We will omit the adjustment for
10995 jump and tail call instructoins as they do not follow the typical call behavior.
10997 * mini-amd64.c (mono_arch_emit_outarg_vt) : Implementing the case for
10998 ArgValuetypeAddrInIReg. The code emitted will copy the argument to a
10999 local variable and pass the local variable by reference to the called method.
11001 * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
11002 Implementing the ArgValuetypeAddrInIReg argument case. When the address
11003 of a struct is passed in a register it must be saved with the other
11004 volatile argument on the stack.
11006 * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix. When omitting the
11007 frame pointer the stack adjustment value must be saved to the unwind
11010 Contributed under MIT/X11 license.
11012 2008-07-28 Zoltan Varga <vargaz@gmail.com>
11014 * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
11015 which got lost in the merge.
11017 2008-07-27 Zoltan Varga <vargaz@gmail.com>
11019 * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
11022 * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
11024 * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
11025 icalls, since they won't be patched.
11027 * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
11028 different code sequence when running under valgrind to prevent some valgrind
11031 * iltests.il.in: Add new regression test.
11033 * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
11036 * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
11037 accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
11039 * iltests.il.in: Add new test.
11041 * aot-compiler.c: Fix some warnings.
11043 * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
11046 2008-07-27 Zoltan Varga <vargaz@gmail.com>
11048 * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
11049 (mini_usage_jitdeveloper): Add a missing --wapi option.
11051 2008-07-25 Zoltan Varga <vargaz@gmail.com>
11053 * mini-codegen.c: Simplify the is_fp macros.
11054 (free_up_ireg): Remove, use free_up_reg instead.
11055 (free_up_reg): Fix the fp case.
11057 2008-07-26 Zoltan Varga <vargaz@gmail.com>
11059 * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
11062 * exceptions-x86.c: Merge some changes which seemed to have got lost
11063 in the linear-ir merge.
11065 * liveness.c: Disable the liveness2 pass on 32 bit platforms.
11067 * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
11068 long vreg volatile even if the variable was already created.
11070 * liveness.c (update_liveness2): Avoid eliminating dead definitions of
11071 volatile variables.
11073 2008-07-26 Zoltan Varga <vargaz@gmail.com>
11075 * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
11077 * mini.c (mono_jit_compile_method_inner): Add support for
11078 MONO_EXCEPTION_BAD_IMAGE.
11080 * method-to-ir.c (mono_method_to_ir2): Avoid a crash if
11081 mini_method_get_context () returns NULL. Fixes #356531.
11083 * mini.c (mono_method_to_ir): Ditto.
11085 * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
11086 accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
11088 2008-07-25 Zoltan Varga <vargaz@gmail.com>
11090 * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
11091 in the LDFTN implementation.
11093 2008-07-25 Mark Probst <mark.probst@gmail.com>
11095 * mini-trampolines.c (mono_magic_trampoline): When sharing generic
11096 code, patch calls to icalls, too, even if they're not in the
11097 shared generic code hash. Fixes #411962.
11099 2008-07-25 Zoltan Varga <vargaz@gmail.com>
11101 * cpu-x86.md: Increase the length of the fcall opcodes.
11103 * mini-x86.c (emit_move_return_value): Avoid some precision issues for
11104 calls returning floats.
11106 * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
11109 * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
11112 * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
11113 into the domain->method_code_hash.
11115 * aot-compiler.c: Fix win32 build.
11117 * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
11119 * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
11120 gshared NEWARR implementation.
11122 * cpu-sparc.md: Remove duplicate localloc_imm opcode.
11124 * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
11125 can be used outside of method_to_ir.
11127 * mini.h (MonoCompile): Add arg_types field.
11129 * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
11131 * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
11132 the values of the local arg_array and param_types array.
11134 2008-07-24 Zoltan Varga <vargaz@gmail.com>
11136 * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
11137 got accesses might only get generated later when NEWOBJ is decomposed.
11139 * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
11140 looking up the native code of the target method when a delegate is called
11141 for the first time.
11143 * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
11146 * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
11148 * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
11149 AOT work on platforms without a working dlsym implementation.
11151 * mini.h: Bump AOT image format version.
11153 2008-07-24 Mark Probst <mark.probst@gmail.com>
11155 * mini-exceptions.c: Free a MonoType with
11156 mono_metadata_free_type() instead of g_free().
11158 * aot-runtime.c: Free a MonoType.
11160 2008-07-24 Zoltan Varga <vargaz@gmail.com>
11162 * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
11165 * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
11168 2008-07-23 Massimiliano Mantione <massi@ximian.com>
11169 * mini.c (sigprof_signal_handler): call the new "runtime initialized"
11172 2008-07-23 Zoltan Varga <vargaz@gmail.com>
11174 * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
11175 NEWOBJ calls on valuetypes.
11177 * iltests.il.in: Add new test.
11179 * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
11181 2008-07-22 Zoltan Varga <vargaz@gmail.com>
11183 * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
11184 is no longer needed.
11186 * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
11187 non register sized integer arguments.
11188 (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
11189 (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to
11192 * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
11195 * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
11196 two a binop with different sized arguments is emitted.
11198 * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
11199 instruction in the ins==NULL case.
11201 2008-07-23 Zoltan Varga <vargaz@gmail.com>
11203 * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
11205 * mini-x86.c: Fix osx build.
11207 * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
11210 * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
11211 instruction for non int sized variables.
11213 * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
11216 2008-07-23 Robert Jordan <robertj@gmx.net>
11218 * method-to-ir.c: Fix MSVC build.
11220 2008-07-22 Zoltan Varga <vargaz@gmail.com>
11222 * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
11223 a non int sized type, widen it to an int since newer versions of gcc seem to
11224 generate code which needs this.
11226 * ssa2.c abcremoval2.c: Fix warnings.
11228 * *: Merge the Linear IR branch.
11230 The original branch is at trunk/branches/vargaz/mini-linear-il, and
11231 the ChangeLog file there describes all the changes done over the years.
11232 Further documentation can be found at www.mono-project.com/Linear_IL.
11234 2008-07-21 Bill Holmes <billholmes54@gmail.com>
11236 * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
11237 The float param registers and other param registers must be the
11238 same index on Windows x64.
11240 Contributed under MIT/X11 license.
11242 2008-07-21 Rodrigo Kumpera <rkumpera@novell.com>
11244 * mini.c: Make the previous fix GC safe.
11246 2008-07-21 Raja R Harinath <harinath@hurrynot.org>
11248 * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
11250 2008-07-21 Bill Holmes <billholmes54@gmail.com>
11252 * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
11253 on Winx64. This type will not be passed on the stack (ArgOnStack), but
11254 ArgValuetypeAddrInIReg instead.
11256 Contributed under MIT/X11 license.
11258 2008-07-21 Zoltan Varga <vargaz@gmail.com>
11260 * mini-codegen.c (get_register_spilling): Fix a warning.
11262 2008-07-17 Rodrigo Kumpera <rkumpera@novell.com>
11264 * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
11265 for types which the initialization fails. Raises the provided exception
11266 at the right stop after cleanup.
11268 2008-07-16 Zoltan Varga <vargaz@gmail.com>
11270 * aot-compiler.c: Free most of the memory allocated during compilation.
11272 * mini.c (mini_parse_debug_options): Fix a leak.
11274 * mini.c (mini_method_compile): Don't add the method to the jit info tables
11275 during aot compilation.
11277 2008-07-14 Zoltan Varga <vargaz@gmail.com>
11279 * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as
11280 it has too much register pressure.
11282 2008-07-13 Zoltan Varga <vargaz@gmail.com>
11284 * inssel.brg (CEE_CASTCLASS): Remove some dead code.
11286 2008-07-12 Zoltan Varga <vargaz@gmail.com>
11288 * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
11291 * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
11292 on amd64 similar to the way it is done on arm.
11294 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
11296 * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for
11297 consistency, normalize error messages, avoid loading aot-only modules in
11300 * driver.c (mono_main): Rename --aot-only command line option to --full-aot
11303 * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
11305 2008-07-11 Martin Baulig <martin@ximian.com>
11308 (MonoDebuggerInfo): Add `interruption_request'.
11310 2008-07-12 Zoltan Varga <vargaz@gmail.com>
11312 * aot-compiler.c (emit_plt): Remove some dead code.
11314 * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
11316 * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
11317 return the plt info offset belonging to a given plt entry.
11319 * mini-trampolines.c (mono_aot_plt_trampoline): Use
11320 mono_aot_get_plt_info_offset.
11322 * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
11323 similar to the amd64 code by makeing jumps through a separate jump table
11324 instead of embedding the jump addresses into the code.
11326 2008-07-11 Zoltan Varga <vargaz@gmail.com>
11328 * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
11331 2008-07-10 Martin Baulig <martin@ximian.com>
11333 * mini.c (mini_method_compile): Disable generics sharing when
11334 running in the debugger.
11336 2008-07-10 Zoltan Varga <vargaz@gmail.com>
11338 * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
11340 * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
11341 the local register allocator from running out of registers on x86 when
11344 2008-07-10 Bill Holmes <billholmes54@gmail.com>
11346 * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when
11347 expressing IntMin for the VS Compiler. See Compiler Warning (level 2)
11350 Contributed under MIT/X11 license.
11352 2008-07-10 Zoltan Varga <vargaz@gmail.com>
11354 * aot-compiler.c: Get rid of whitespace in the generated assembly file to
11355 speed up the assembler.
11357 2008-07-09 Zoltan Varga <vargaz@gmail.com>
11359 * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
11362 * mini.c: Move the soft float handling macros a bit earlier, add
11363 NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
11366 * mini.h: Add prototype for mono_arch_fixup_jinfo.
11368 * mini.c (mini_init): In aot-only mode, set the root domain code manager to
11369 read-only to help catch code allocation requests.
11371 * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
11372 and turn it off when using --aot-only or when compiling with --aot=full.
11374 * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
11375 jump table for switches from the normal domain mempool, not the code
11378 * mini-trampolines.c (get_unbox_trampoline): New function to return an
11379 unbox trampoline which handles aot-only mode too.
11381 * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
11382 an AOTed unbox trampoline.
11384 * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
11386 2008-07-09 Bill Holmes <billholmes54@gmail.com>
11388 * wapihandles.c: Fixing MSVC builds. Include statement changed from <> to
11391 Contributed under MIT/X11 license.
11393 2008-07-09 Bill Holmes <billholmes54@gmail.com>
11395 * mini.c (mono_codegen): Allocate space at the end of the code block and store
11396 the unwind information for the method at the end of the allocated block.
11398 * mini-amd64.h: Added declarations for the unwind routines and adding field to
11399 MonoCompileArch to hold the unwind info for SEH on Winx64
11401 * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
11402 frame pointer info for the method being compiled.
11404 * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
11405 the call to mono_exception_from_token.
11407 * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations. This code is responsible
11408 storing the method prolog information in a format that the Winx64 SEH can understand. This
11409 information is stored a the end of the method block because it is all 32-bit offset based.
11411 Contributed under MIT/X11 license.
11413 2008-07-09 Zoltan Varga <vargaz@gmail.com>
11415 * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
11417 * wapihandles.c: Fix warnings.
11419 * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
11422 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling
11423 mono_jit_compile_method in aot-only mode since that calls the type
11426 * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
11427 get_delegate_invoke_impl in aot-only mode.
11429 * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
11431 2008-07-08 Zoltan Varga <vargaz@gmail.com>
11433 * trace.c (mono_trace_enter_method): Fix printing of Type instances.
11435 * aot-compiler.c (compile_method): Disable the check for GSHARED since it
11438 * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
11440 * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
11441 init trampoline from the AOT file as well.
11443 * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
11444 mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
11447 * mini.c (mini_init): Move the call to mono_exceptions_init () after
11450 * exceptions-amd64.c: Add _full variants for the remaining exception code
11451 creation functions as well, allow emission of relocatable code, remove
11452 caching since that is now done by the caller.
11454 * mini-exceptions.c: Add _full variants for the remaining exception code
11455 creation functions as well, add aot-only support.
11457 * aot-compiler.c (compile_method): Allow calls to methods of constructed types
11458 if we can determine a proper token for them.
11459 (add_wrappers): Add a few more wrappers.
11460 (emit_method_code): Remove some dead code.
11461 (emit_trampolines): Emit exception code too.
11463 * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
11465 * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
11466 mono_array_new_va which avoids varargs.
11468 * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
11470 * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
11471 mono_arch_create_specific_trampoline () in all places.
11473 * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
11474 a bit so it can be used for other things as well.
11476 * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
11479 * exceptions-amd64.c: Rename the caching from the exception code creation
11480 functions, it is done by the caller instead.
11482 * exceptions-amd64.c: Change the signature of the exception code creation
11483 functions to allow the creation of relocatable code later.
11485 * mini-exceptions.c: Add a set of functions to query the various
11486 runtime-generated exception functions.
11488 * mini.c mini-exceptions.c: Use the newly added functions instead of the
11489 mono_arch_.. () functions.
11491 2008-07-07 Zoltan Varga <vargaz@gmail.com>
11493 * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
11495 * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
11497 * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
11498 (mini_get_vtable_trampoline): Ditto.
11500 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
11501 code in the AOT case by returning the code size and a list of relocations to
11504 * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
11506 2008-07-07 Bill Holmes <billholmes54@gmail.com>
11508 * mini-amd64.c: On Winx64 the calling convention always requires the caller to
11511 Contributed under MIT/X11 license.
11513 2008-07-07 Zoltan Varga <vargaz@gmail.com>
11515 * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
11516 so the buffer size can be computed correctly. Fixes #404735.
11518 * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
11519 normally as cfg->debug_info is already freed.
11521 2008-07-06 Zoltan Varga <vargaz@gmail.com>
11523 * mini-amd64.c: For calls returning vtypes in registers, don't store
11524 the return address on the stack, instead allocate a separate local for
11527 2008-07-05 Mark Probst <mark.probst@gmail.com>
11529 * mini-trampolines.c, mini.h: Add an argument to
11530 mono_create_jit_trampoline_in_domain() for turning off the adding
11531 of the sync wrapper.
11533 * mini.c: Use the JIT trampoline without sync instead of
11534 ldftn_nosync in static RGCTX invoke wrappers so that the call can
11537 2008-07-04 Mark Probst <mark.probst@gmail.com>
11539 * driver.c: Turn on GSHARED optimization by default.
11541 2008-07-04 Zoltan Varga <vargaz@gmail.com>
11543 * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
11544 to MONO_TRAMPOLINE_JIT since it better reflects what it does.
11546 * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
11547 create a variant of the generic trampoline code callable from AOTed trampolines.
11549 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
11550 trampoline code callable from AOTed trampolines.
11552 * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
11554 2008-07-04 Mark Probst <mark.probst@gmail.com>
11556 * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
11557 pass-through manner.
11559 * mini.c: Generic method sharing. Pass MRGCTX to generic methods
11560 and don't fail sharing for them anymore.
11562 * mini-exceptions.c: Handle exceptions in shared generic methods.
11564 * generic-sharing.c: When checking the context of a generic
11565 method, also check its class's context. Don't treat wrappers as
11568 * mini-trampolines.c: Some code factored out to
11569 metadata/generic-sharing.c. Handle the MRGCTX case.
11571 * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
11572 we must deal with the method being of another instantiation of the
11573 class. Add static rgctx invoke wrappers to generic methods.
11575 2008-07-04 Mark Probst <mark.probst@gmail.com>
11577 * mini.c: Provide all jit infos of generic shared methods with a
11580 * mini-exceptions.c: Handle the new situation that a generic info
11581 might be available, but not info about the this/vtable/mrgctx
11584 2008-07-03 Mark Probst <mark.probst@gmail.com>
11586 * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
11589 2008-07-03 Zoltan Varga <vargaz@gmail.com>
11591 * dominators.c (check_dominance_frontier): Fix a warning.
11593 * mini.h: Add some missing prototypes.
11595 * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
11597 * driver.c (mono_jit_init_version): Correct the comments since the first
11598 argument should be the name of the root domain, not a filename.
11600 * aot-runtime.c (make_writable): Error out if this is called while running
11602 (load_aot_module): Ditto.
11604 * aot-compiler.c: Really fix the computation of method indexes.
11606 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous
11607 optimizations as this is no longer called frequently.
11609 * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
11610 method and the invoke impl code and pass it to the delegate trampoline instead of
11611 just the delegate class.
11613 2008-07-02 Zoltan Varga <vargaz@gmail.com>
11615 * aot-compiler.c: Fixup the computation of method indexes.
11616 (add_wrappers): Create the base methods of the runtime invoke wrappers using
11617 the method builder infrastructure.
11619 * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
11622 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
11623 mode, load the method right away instead of creating a trampoline.
11625 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
11627 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
11630 2008-07-01 Zoltan Varga <vargaz@gmail.com>
11632 * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
11633 (mono_aot_load_method): Use method_index instead of method->token.
11635 * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
11636 can handle icalls etc. properly.
11638 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
11640 * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
11642 * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
11643 (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
11644 JIT_ICALL_ADDR patch type.
11646 * patch-info.h: Add JIT_ICALL_ADDR patch type.
11648 * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
11650 (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
11652 * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
11654 2008-06-30 Zoltan Varga <vargaz@gmail.com>
11656 * mini.c: Use domain->jit_code_hash_lock for controlling access to
11657 domain->jit_code_hash.
11659 2008-06-29 Zoltan Varga <vargaz@gmail.com>
11661 * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
11663 2008-06-27 Zoltan Varga <vargaz@gmail.com>
11665 * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
11666 get_this_arg_from_call, let it compute it when needed.
11668 * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
11669 gsctx from code only when needed.
11671 * mini-trampolines.c (get_generic_context): Rename this to
11672 mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
11673 it can be called by the arch backends.
11675 * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
11677 2008-06-26 Zoltan Varga <vargaz@gmail.com>
11679 * driver.c (mono_main): Add experimental --aot-only command line option.
11681 * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
11684 2008-06-26 Kornel Pal <kornelpal@gmail.com>
11686 * driver.c (DllMain): Remove mono_module_handle.
11688 Contributed under MIT/X11 license.
11690 2008-06-25 Zoltan Varga <vargaz@gmail.com>
11692 * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
11693 for emitting methods which are not in the source assembly. Detect and report
11694 failure of assembling+linking.
11696 * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
11698 * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
11700 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
11702 * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
11704 2008-06-24 Zoltan Varga <vargaz@gmail.com>
11706 * mini.h: Remove some obsolete prototypes.
11708 * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
11710 2008-06-24 Mark Probst <mark.probst@gmail.com>
11712 * mini.c (get_object_generic_inst): Variable-sized arrays are not
11713 supported by Visual Studio, so use alloca().
11715 2008-06-23 Zoltan Varga <vargaz@gmail.com>
11717 * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
11720 2008-06-23 Mark Probst <mark.probst@gmail.com>
11722 * mini.c: Fail sharing of a generic method if it contains an open
11723 catch clause (because we don't pass MRGCTXs yet).
11725 2008-06-23 Mark Probst <mark.probst@gmail.com>
11727 * mini.c: When compiling a method with generic sharing, insert the
11728 method instantiated with an all-Object generic context into the
11729 jit info table, instead of the context of the first instantiation
11730 of the method we happen to compile.
11732 2008-06-18 Martin Baulig <martin@ximian.com>
11734 * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
11735 `major_version' and `minor_version'.
11737 2008-06-17 Mark Probst <mark.probst@gmail.com>
11739 * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
11740 mono_method_is_generic_sharable_impl() takes an additional
11741 argument specifying whether to treat type variables as reference
11744 2008-06-17 Mark Probst <mark.probst@gmail.com>
11746 * mini.h: Removed obsolete prototypes.
11748 2008-06-17 Mark Probst <mark.probst@gmail.com>
11750 * mini.c: Don't fail generic sharing for initobj and sizeof - we
11751 already handle them.
11753 2008-06-17 Mark Probst <mark.probst@gmail.com>
11755 * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
11756 tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
11757 tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
11758 tramp-x86.c: Added a MonoGenericContext* argument to
11759 mono_arch_get_unbox_trampoline() so that it can call other
11760 functions which require it.
11762 2008-06-17 Mark Probst <mark.probst@gmail.com>
11764 * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
11765 mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
11766 mono_arch_get_this_arg_from_call() takes a
11767 MonoGenericSharingContext* as well.
11769 2008-06-17 Mark Probst <mark.probst@gmail.com>
11771 * mini.c: Factor out code for emitting unbox into emit_unbox() and
11772 implement generic sharing of unbox.
11774 2008-06-17 Mark Probst <mark.probst@gmail.com>
11776 * mini.c: Don't compute the vtable to determine whether a field is
11777 special static, because it might not work for open types.
11779 2008-06-17 Mark Probst <mark.probst@gmail.com>
11781 * mini.c: Removed the unused token_type and token_source arguments
11782 from get_runtime_generic_context_ptr().
11784 2008-06-17 Marek Habersack <mhabersack@novell.com>
11786 * mini.c (ADD_BINOP): fix the build
11788 2008-06-16 Zoltan Varga <vargaz@gmail.com>
11790 * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
11793 2008-06-16 Mark Probst <mark.probst@gmail.com>
11795 * mini.h: Removed class relations enum that's not used anymore.
11797 2008-06-16 Mark Probst <mark.probst@gmail.com>
11799 * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
11801 * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
11802 the lazy fetch trampoline access code.
11804 2008-06-15 Zoltan Varga <vargaz@gmail.com>
11806 * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
11808 2008-06-14 Zoltan Varga <vargaz@gmail.com>
11810 * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
11812 * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
11814 * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
11816 2008-06-13 Zoltan Varga <vargaz@gmail.com>
11818 * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
11821 * mini-ops.h: Add MIN/MAX_UN opcodes.
11823 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
11826 * basic-math.cs: Add more min/max tests.
11828 * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
11830 2008-06-13 Mark Probst <mark.probst@gmail.com>
11832 * mini.c: Small fix in the prologue of emit_castclass.
11834 2008-06-13 Zoltan Varga <vargaz@gmail.com>
11836 * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
11838 * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
11839 do not work even for unsigned types. Fixes #400014.
11841 * basic-math.cs: Add regression tests for unsigned Min/Max.
11843 2008-06-13 Mark Probst <mark.probst@gmail.com>
11845 * mini.c: Added additional context_used argument to several
11846 functions, which will be needed for sharing generic methods. Use
11847 GET_RGCTX macro wherever appropriate. Declare only one
11848 context_used in mono_method_to_ir().
11850 2008-06-13 Mark Probst <mark.probst@gmail.com>
11852 * mini.c, generic-sharing.c: Removed generic class relations.
11854 * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
11855 functions due to MRGCTX changes.
11857 2008-06-13 Mark Probst <mark.probst@gmail.com>
11859 * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
11860 graph.c, local-propagation.c, aliasing.c: New opcodes for calls
11861 with calculated IMT.
11863 * mini.c: Generic sharing of calls via generic interfaces.
11865 * jit-icalls.c, jit-icalls.h: Helper function for compiling a
11866 generic method with non-constant MonoGenericContext*. Instead,
11867 the context is taken out of the method itself.
11869 2008-06-13 Mark Probst <mark.probst@gmail.com>
11871 * mini.c: Generic sharing of ldvirtftn.
11873 2008-06-13 Mark Probst <mark.probst@gmail.com>
11875 * mini.c: Generic sharing of ldftn.
11877 2008-06-13 Mark Probst <mark.probst@gmail.com>
11879 * mini.c: Do pass VTable/RGCTX argument to static generic methods.
11881 2008-06-13 Mark Probst <mark.probst@gmail.com>
11883 * mini.c: Generic sharing of the special case of ldtoken followed
11884 by a call to GetTypeFromHandle.
11886 2008-06-13 Mark Probst <mark.probst@gmail.com>
11888 * mini.c: Generic sharing of box for nullable types.
11890 2008-06-13 Zoltan Varga <vargaz@gmail.com>
11892 * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
11893 are passed on the stack. Fixes #324807.
11895 2008-06-12 Bill Holmes <billholmes54@gmail.com>
11897 * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
11898 for the ArgValuetypeAddrInIReg case.
11900 * mini-amd64.c:mono_arch_allocate_vars: Adding a case for
11901 ArgValuetypeAddrInIReg to avoid asserts. Code needs to be added here.
11903 * mini-amd64.c: mono_arch_call_opcode: Adding Winx64 code for an ArgInfo of
11904 type ArgValuetypeAddrInIReg. The code emitted will copy the argument to a
11905 local variable and pass the local variable by reference to the called method.
11907 * mini-amd64.c: mono_arch_emit_prolog: Adjust the stack for calls to
11908 mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
11910 Contributed under MIT/X11 license.
11912 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11914 * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
11916 * debug-mini.c (mono_debug_print_vars): Release memory after printing
11919 2008-06-10 Martin Baulig <martin@ximian.com>
11922 (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
11924 2008-06-09 Kornel Pal <kornelpal@gmail.com>
11926 * main.c: Add and set argv [argc] to NULL to match C specification that fixes
11927 possible error when no arguments are passed.
11929 Contributed under MIT/X11 license.
11931 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
11933 * mini-exceptions.c (ves_icall_get_trace): Skip source locations
11934 where the file name is NULL.
11936 2008-06-09 Zoltan Varga <vargaz@gmail.com>
11938 * mini.c: Fix s390 build.
11940 2008-06-08 Zoltan Varga <vargaz@gmail.com>
11942 * trace.c (mono_trace_parse_options): Fix warnings.
11944 * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
11946 2008-06-07 Zoltan Varga <vargaz@gmail.com>
11948 * mini.c (remove_block_if_useless): Avoid printing the method name.
11950 * mini.c: Remove needless setting of ins->cil_code which is now done by
11953 * mini-amd64.c: Add some code to avoid saving callee saved registers in the
11956 * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
11957 translated code after it has been patched.
11959 2008-06-06 Zoltan Varga <vargaz@gmail.com>
11961 * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
11962 avoid problems during code patching on SMP systems.
11963 (emit_call): Avoid adding a patch info which is already added by
11965 (mono_arch_emit_exceptions): Ditto.
11967 2008-06-05 Zoltan Varga <vargaz@gmail.com>
11969 * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
11970 MONO_TYPE_ISSTRUCT already checks for it.
11972 2008-06-05 Bill Holmes <billholmes54@gmail.com>
11974 * mini-amd64.c:merge_argument_class_from_type: When marshaling
11975 structs with floats on Winx64 the float registers are not used.
11976 The integer registers are always used..
11977 * mini-amd64.c:add_valuetype: When marshaling structs on Winx64
11978 only one register will be used and only if the size of the struct
11979 is 1,2,4, or 8 bytes.
11981 * tramp-amd64.c : Adjusting size used for mono_global_codeman_reserve
11982 to work for Winx64.
11984 Contributed under MIT/X11 license.
11986 2008-06-05 Martin Baulig <martin@ximian.com>
11988 * debug-debugger.c (debugger_lookup_class): Also call
11989 mono_class_setup_methods() here; we're only called from RTI.
11991 2008-06-05 Andreas Farber <andreas.faerber@web.de>
11993 * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
11994 (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
11995 * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
11996 Post-process object files and add dtrace-generated object, if necessary.
11998 Contributed under MIT/X11 license.
12000 2008-06-04 Mark Probst <mark.probst@gmail.com>
12002 * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
12005 * mini.c: Generic sharing for unbox.any and castclass.
12007 2008-06-04 Mark Probst <mark.probst@gmail.com>
12009 * mini.c: Ignore tailcall prefix in shared generic code and when
12010 doing calls which require a vtable/rgctx argument.
12012 2008-06-04 Mark Probst <mark.probst@gmail.com>
12014 * mini.c: Don't free the JIT info.
12016 * driver.c: Changes in the JIT info table testing code.
12018 2008-06-03 Zoltan Varga <vargaz@gmail.com>
12020 * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread
12021 interruption. Fix some warnings.
12023 * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
12024 interruption_checkpoint.
12026 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
12028 * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
12029 from embedding applications.
12031 2008-06-02 William Holmes <billholmes54@gmail.com>
12033 * mini-amd64.c : Correcting some of the issues for Winx64 dealing with
12034 reserving 32 bytes on the stack when making calls.
12036 Contributed under MIT/X11 license.
12038 2008-06-01 Zoltan Varga <vargaz@gmail.com>
12040 * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
12041 the linear IL branch.
12043 * driver.c: Print out more information for --version on arm.
12045 2008-05-30 Zoltan Varga <vargaz@gmail.com>
12047 * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
12048 bb_exit instead, since out of line bblocks might not actually be emitted
12051 * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
12052 maximum epilog size for out of line bblocks if tracing is enabled.
12054 * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
12056 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
12058 * arrays.cs: Regression tests for allocating arrays with negative sizes.
12060 2008-05-28 Zoltan Varga <vargaz@gmail.com>
12062 * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
12063 CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE
12066 2008-05-27 Zoltan Varga <vargaz@gmail.com>
12068 * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
12069 the 'value' to store is a constant.
12071 * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
12073 * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
12074 of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
12076 2008-05-26 Zoltan Varga <vargaz@gmail.com>
12078 * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
12079 for accessing method->generic_container.
12081 2008-05-24 Zoltan Varga <vargaz@gmail.com>
12083 * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
12085 * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
12087 * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
12089 * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
12092 2008-05-23 Zoltan Varga <vargaz@gmail.com>
12094 * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
12096 * mini.c: Handle the case when mono_class_vtable () fails.
12098 2008-05-23 Massimiliano Mantione <massi@ximian.com>
12099 * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
12102 2008-05-22 Mark Probst <mark.probst@gmail.com>
12104 * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
12105 together with domain sharing.
12107 2008-05-22 Mark Probst <mark.probst@gmail.com>
12109 * mini.c: Treat callvirts to final methods like non-virtual calls
12110 when doing generic sharing, i.e. look them up in the runtime
12113 2008-05-22 Mark Probst <mark.probst@gmail.com>
12115 * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
12116 with computed types (for generic sharing).
12118 * mini.c: Generic sharing for mkrefany and refanyval.
12120 2008-05-22 Zoltan Varga <vargaz@gmail.com>
12122 * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
12125 * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
12126 the generic sharing code.
12128 * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
12131 2008-05-21 Zoltan Varga <vargaz@gmail.com>
12133 * mini.h: Remove the declaration of mono_aot_init_vtable ().
12135 2008-05-21 C.J. Adams-collier <cjac@colliertech.org>
12137 * driver.c: updated copyright date
12139 2008-05-21 Zoltan Varga <vargaz@gmail.com>
12141 * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
12144 2008-05-19 Martin Baulig <martin@ximian.com>
12146 * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
12147 pointing to the new `_mono_debug_using_mono_debugger' variable.
12150 (mono_main): Check mono_debug_using_mono_debugger() rather than
12151 the `MONO_INSIDE_MDB' environment variable to check whether we're
12152 inside the debugger.
12154 2008-05-19 Zoltan Varga <vargaz@gmail.com>
12156 * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
12159 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
12161 * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
12163 * mini.c: Added mini_assembly_can_skip_verification. This
12164 function checks if the assembly requested to skip verification.
12165 Fixes part of #387274.
12167 2008-05-07 Zoltan Varga <vargaz@gmail.com>
12169 * mini.c (mini_get_method): Disable the check for open generic classes when
12170 using generic sharing.
12172 * generics.cs: Add a test for #387034.
12174 * mini.c (mini_get_method): Check whenever the method class is an open generic
12175 type, and return NULL in that case, causing a verification error. Fixes
12178 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
12180 * driver.c (mono_main): Revert r102623. The right
12181 thing to do is to enable the verifier under verifiable
12182 unless a --security flag was passed.
12184 We need this non-trivial behavior for --verify-all otherwise
12185 mcs-compileall won't be able to use it. As it needs everything to
12186 be verified under validil.
12188 2008-05-06 Martin Baulig <martin@ximian.com>
12192 * debug-mini.c (mono_debugger_thread_created): Add proper locking.
12193 (mono_debugger_thread_cleanup): Likewise.
12194 (mono_debugger_extended_notification): Likewise.
12196 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
12198 * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
12199 against both inflated and non-inflated methods. We need to check against the
12200 generic definition for cases where the instantiated method is not visible.
12201 We need to check against the inflated types for cases where the instantiation
12202 changes any super type. This fixes #382986.
12204 Note that this doesn't need to be applied to other parts of mono_method_to_ir
12205 that check for visibiliy as generic params only appears as the type subject
12206 of tokens on call opcodes. Field manipulation and ldftn must always
12207 target an exact type.
12209 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
12211 * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
12212 if no related --security flag is passed.
12214 2008-05-05 Andreas Farber <andreas.faerber@web.de>
12216 * mini-arch.h: Prepare support for ppc64.
12218 Contributed under MIT/X11 license.
12220 2008-05-05 Andreas Farber <andreas.faerber@web.de>
12222 * aot-runtime.c: Prepare support for ppc64.
12224 Contributed under MIT/X11 license.
12226 2008-05-05 Andreas Farber <andreas.faerber@web.de>
12228 * mini-ops.h: Prepare support for ppc64.
12230 Contributed under MIT/X11 license.
12232 2008-05-04 Andreas Farber <andreas.faerber@web.de>
12234 * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
12236 Contributed under MIT/X11 license.
12238 2008-05-03 Zoltan Varga <vargaz@gmail.com>
12240 * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
12241 assemblies, since aot_name is not a full path, causing us to load MS.NET
12242 assemblies on windows.
12244 ?2008-04-28 Kornel Pal <kornelpal@gmail.com>
12246 * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
12247 for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
12248 * main.c: Use UTF-8 encoded command line instead of Windows default code
12249 page on Windows to support Unicode.
12250 * driver.c (DllMain): New function for mixed-mode assembly support.
12251 * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
12252 export __stdcall functions without decoration.
12254 Contributed under MIT/X11 license.
12256 2008-04-28 Mark Probst <mark.probst@gmail.com>
12258 * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
12259 saving it very early.
12261 2008-04-28 Mark Probst <mark.probst@gmail.com>
12263 * mini.h, mini.c: Lots of code for accessing the old RGCTX
12264 deleted. The only way to access the new RGCTX is via the
12267 * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
12268 vtable instead of the RGCTX to static methods.
12270 * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
12271 accessing the new RGCTX.
12273 * generic-sharing.c: There is no separation between self, type
12274 arguments and other types in the RGCTX anymore.
12276 2008-04-25 Jonathan Chambers <joncham@gmail.com>
12278 * mini-amd64.c (add_general): Remove previous stack adjustment.
12279 (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
12280 adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
12281 for 32 bytes of stack space reserved for all calls.
12283 * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
12284 (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack
12287 Code contributed under MIT/X11 license.
12289 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
12291 * mini.c (mini_method_verify): Only verify non-inflated methods, check
12292 against the root definition, peeling out method and type instantiations.
12293 Cache verify success results, code that fails verification is still
12294 checked multiple times.
12296 2008-04-23 Zoltan Varga <vargaz@gmail.com>
12298 * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
12300 2008-04-23 Jonathan Chambers <joncham@gmail.com>
12302 * mini-amd64.c (add_general): Always increment stack on Win64.
12303 (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
12306 * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for
12307 stack based argument handling on Win64.
12309 Code contributed under MIT/X11 license.
12311 2008-04-23 Raja R Harinath <harinath@hurrynot.org>
12313 * Makefile.am (version.h): Add support for git-svn.
12315 2008-04-22 Zoltan Varga <vargaz@gmail.com>
12317 * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
12318 so instead of calling g_spawn_command_line_sync, we do everything by hand,
12319 avoiding allocations and libc functions which might deadlock.
12321 * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
12322 'no-gdb-backtrace' option is set.
12324 * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
12326 * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
12328 2008-04-21 Martin Baulig <martin@ximian.com>
12330 * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
12331 and `get_lmf_addr'; `notification_address' is no longer a pointer.
12333 2008-04-21 Martin Baulig <martin@ximian.com>
12335 * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
12336 `thread_vtable', `event_handler_ptr' and `event_handler'.
12338 2008-04-21 Martin Baulig <martin@ximian.com>
12340 * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
12341 allows delayed initialization of the `executable_code_buffer' when
12344 2008-04-21 Martin Baulig <martin@ximian.com>
12346 * mini.h (mono_debugger_create_notification_function): Removed.
12347 * tramp-*.c (mono_debugger_create_notification_function): Removed.
12349 * mdb-debug-info64.s
12350 (MONO_DEBUGGER__notification_function): Added this in the .text section.
12352 * mdb-debug-info32.s
12353 (MONO_DEBUGGER__notification_function): Added this in the .text section.
12355 * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
12356 currently only works on x86 and x86_64, so don't create it on ppc.
12358 2008-04-21 Martin Baulig <martin@ximian.com>
12360 * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
12363 (mini_method_compile): In the fp elimination check, check
12364 `debug_options.mdb_optimizations' in addition to
12365 mono_debug_using_mono_debugger().
12367 * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
12368 disable some JIT optimizations which are only disabled when
12369 running inside the debugger.
12370 Added `--help-debug' option to describe the debugging options.
12371 (parse_debug_options): New static function to parse the `--debug'
12372 options, so we can easily add more stuff in future.
12374 2008-04-20 Zoltan Varga <vargaz@gmail.com>
12376 * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
12377 the method has no body.
12379 2008-04-19 Jonathan Chambers <joncham@gmail.com>
12381 * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
12382 assembly is not allowed in MSVC 64-bit compiler.
12383 (mono_arch_cpu_init): Don't set floating point precision on MSVC build
12384 as we get floating point exceptions everywhere.
12386 * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
12387 correctly align arguments for call to throw_exception.
12388 (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
12390 Code contributed under MIT/X11 license.
12392 2008-04-19 Zoltan Varga <vargaz@gmail.com>
12394 * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
12396 2008-04-17 Zoltan Varga <vargaz@gmail.com>
12398 * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
12400 * mini-amd64.c (NEW_INS): Set cil_code.
12402 * mini.c (mini_method_compile): Move the disabling of fp elimination to here
12403 from mini-amd64.c so all debugger related logic is in one place.
12405 * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
12406 later won't have a random ip assigned to them.
12408 2008-04-16 Zoltan Varga <vargaz@gmail.com>
12410 * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
12411 the arch specific function initializes code_size.
12412 (mono_create_delegate_trampoline): Ditto.
12414 * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
12415 tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
12418 * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if
12419 running under the debugger.
12421 * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
12424 * mini.c (mini_method_compile): Set a few flags in cfg if running under the
12425 debugger. Also move the disabling of optimizations here from driver.c.
12426 (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
12429 * mini.h (MonoCompile): Add a few new flags.
12431 2008-04-15 Zoltan Varga <vargaz@gmail.com>
12433 * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
12434 so the cil_code field of created MonoInst's is properly set.
12435 (mini_select_instructions): Ditto.
12437 * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
12438 (MONO_INST_NEW_CALL): Ditto.
12440 * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
12441 in many places so the ins->cil_code field is properly initialized.
12443 * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
12446 2008-04-14 Zoltan Varga <vargaz@gmail.com>
12448 * mini.c (mini_method_compile): Print a different message when compiling a
12451 * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
12454 2008-04-11 Zoltan Varga <vargaz@gmail.com>
12456 * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
12459 * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
12461 2008-04-11 Zoltan Varga <vargaz@gmail.com>
12463 * mini.c (handle_stack_args): Make this return void since its return value was
12464 never used. Also set cfg->unverifiable for invalid IL instead of calling
12467 2008-04-10 Mark Probst <mark.probst@gmail.com>
12469 * mini.c: Make sure "this" is live in catch clauses with type
12470 variables in shared generic code.
12472 2008-04-08 Mark Probst <mark.probst@gmail.com>
12474 * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
12475 generic_class_is_reference_type() to ensure the proper behaviour
12476 when sharing generic code and the type in question is a type
12479 2008-04-08 Zoltan Varga <vargaz@gmail.com>
12481 * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
12482 race conditions when printing thread dumps. Fixes #377738.
12484 2008-04-08 Massimiliano Mantione <massi@ximian.com>
12486 aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
12487 shows up when both MonoInst arguments can cause aliasig.
12488 There is likely no way in the current JIT to trigger this problem, but
12489 it showed up in the development of generics sharing, when in a new
12490 opcode both args of an OP_GROUP can be aliases (addresses of a local).
12491 When the generics sharing code will be committed, its tests will be
12492 valid also for this bug.
12494 2008-04-08 Zoltan Varga <vargaz@gmail.com>
12496 * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
12499 * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
12502 2008-04-07 Zoltan Varga <vargaz@gmail.com>
12504 * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
12505 use a more detailed exception message for InvalidCastException.
12507 * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
12509 * driver.c (mono_main): Add --debug=casts option to turn on better
12510 InvalidCastException message details.
12512 * mini.c (mini_get_debug_options): New helper function to return the address of
12513 the debug_options variable.
12515 * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
12516 the jit_tls TLS variable.
12518 * mini.c (mono_jit_tls): New TLS variable.
12520 * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
12523 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
12525 * mini.h: Removed verifer related stuff. This code was moved to verify.c
12527 * mini.c: Removed verifer related stuff, code moved to verify.c.
12529 * driver.c: Using code from verify.c instead of mini.c.
12531 2008-04-05 Zoltan Varga <vargaz@gmail.com>
12533 * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
12536 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
12538 * mini.c (check_for_method_verify): Enabling verification of
12539 corlib if mono_verify_all is set. Bugs in the verifier preventing that
12542 2008-04-04 Zoltan Varga <vargaz@gmail.com>
12544 * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
12545 caller saved registers as well.
12547 * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
12548 saved registers as well.
12550 2008-03-30 Zoltan Varga <vargaz@gmail.com>
12552 * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
12554 * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
12557 2008-03-27 Zoltan Varga <vargaz@gmail.com>
12559 * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
12561 (get_call_info): Take a gsctx argument instead of 'cfg'.
12563 2008-03-26 Zoltan Varga <vargaz@gmail.com>
12565 * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
12566 mono_verify_all is set.
12568 * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
12570 * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
12572 2008-03-25 Zoltan Varga <vargaz@gmail.com>
12574 * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
12577 * driver.c mini.c mini.h: Add a --verify-all development option to test the
12578 verifier and the code generated by the compiler.
12580 2008-03-25 Mark Probst <mark.probst@gmail.com>
12582 * mini.c: Generic sharing of the non-nullable case of the box
12585 2008-03-24 Zoltan Varga <vargaz@gmail.com>
12587 * inssel.brg: Fix the build.
12589 * iltests.il.in: Add a test for lconv.ovf.u8.un.
12591 2008-03-24 Rodrigo Kumpera <rkumpera@novell.com>
12593 * mini.c (mono_method_to_ir): Implement readonly for ldelema and
12594 Array:Address. Fixes #372410.
12596 * iltests.il.in: New tests for readonly prefix.
12598 2008-03-23 Zoltan Varga <vargaz@gmail.com>
12600 * mini.h mini.c mini-trampolines.c: Move trampoline related code to
12601 mini-trampolines.c.
12603 * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to
12606 * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
12608 * mini.c (mono_decompose_op_imm): New helper function.
12610 * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
12611 with the other architectures, add an 'mp' argument, fold 'sz' argument into the
12614 * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in
12615 mono_arch_output_basic_block. Fix warnings.
12617 * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
12620 2008-03-22 Zoltan Varga <vargaz@gmail.com>
12622 * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
12623 since the extra frame is now detected automatically inside the loop.
12625 * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole
12626 opts which are now in mono_peephole_ins ().
12628 * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
12630 * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
12631 frames and skip duplicate managed-to-native frames. Fixes #367665.
12633 * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
12634 opts which are now in mono_peephole_ins ().
12635 (mono_arch_peephole_pass_2): Ditto.
12637 * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
12639 * mini-codegen.c (mono_peephole_ins): New helper function containing the
12640 arch independent peephole optimizations.
12642 * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
12643 opts which are now in mono_peephole_ins ().
12645 * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
12647 * mini-s390.c (mono_arch_output_basic_block): Fix build.
12649 * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
12652 * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
12653 CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
12656 2008-03-21 Zoltan Varga <vargaz@gmail.com>
12658 * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
12659 with the other architectures, add an 'mp' argument, fold 'sz' argument into the
12662 * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in
12663 mono_arch_output_basic_block. Fix warnings.
12665 2008-03-20 Zoltan Varga <vargaz@gmail.com>
12667 * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
12670 2008-03-20 Zoltan Varga <vargaz@gmail.com>
12672 * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
12675 * iltests.il: Add new tests.
12677 2008-03-20 Kornel Pal <kornelpal@gmail.com>
12679 * mini.c: Removed Windows version macros.
12681 2008-03-20 Mark Probst <mark.probst@gmail.com>
12683 * generic-sharing.c: Put reflection types in the extensible part
12684 of the runtime generic context.
12686 * mini.c: Generic sharing of the GetTypeHandle special case of the
12687 ldtoken instruction.
12689 2008-03-20 Zoltan Varga <vargaz@gmail.com>
12691 * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
12693 * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
12695 * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for
12696 consistency with the other version on the linear IR branch.
12698 * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
12700 * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
12702 * iltests.il.in: Add new tests.
12704 2008-03-19 Zoltan Varga <vargaz@gmail.com>
12706 * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
12708 * iltests.il.in: Add new tests.
12710 2008-03-19 Mark Probst <mark.probst@gmail.com>
12712 * mini.c: Two variables with the same name were declared in
12713 nesting contexts and one wasn't initialized. Fixed.
12715 2008-03-19 Mark Probst <mark.probst@gmail.com>
12717 * mini.c: Generic sharing of the initobj instruction.
12719 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12721 * mini.c: make the test to optimize ldtoken from typeof() more
12724 2008-03-18 Mark Probst <mark.probst@gmail.com>
12726 * mini.c: Generic sharing of the initobj instruction for reference
12729 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
12731 * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
12732 the mono_breakpoint_clean_code() code to perform bound checks.
12734 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
12736 * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
12737 mono_arch_patch_callsite() to include the start of the managed method
12738 to be able to perform bound checks.
12740 2008-03-17 Mark Probst <mark.probst@gmail.com>
12742 * mini.c: Generic sharing for the isinst instruction.
12744 2008-03-17 Mark Probst <mark.probst@gmail.com>
12746 * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
12747 inssel-long32-mips.brg: Added opcodes for doing indirect calls
12748 with the runtime generic context argument.
12750 * mini.c: Share calls to several types of unsharable methods by
12751 putting the address of the method code in the runtime generic
12752 context and doing an indirect call.
12754 * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
12757 2008-03-16 Mark Probst <mark.probst@gmail.com>
12759 * generic-sharing.c: Change due to a change in the runtime genric
12762 2008-03-15 Martin Baulig <martin@ximian.com>
12765 (mono_arch_nullify_class_init_trampoline): Add call to
12766 mono_breakpoint_clean_code() to make things work when running
12767 inside the debugger.
12770 (mono_arch_nullify_class_init_trampoline): Add call to
12771 mono_breakpoint_clean_code() to make things work when running
12772 inside the debugger.
12774 2008-03-14 Zoltan Varga <vargaz@gmail.com>
12776 * inssel-long.brg (reg): Fix 64 bit build.
12778 2008-03-14 Mark Probst <mark.probst@gmail.com>
12780 * mini.c, mini.h: Share static generic code by passing it an
12781 implicit argument pointing to the runtime generic context.
12783 * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
12784 inssel-long32-mips.brg: New opcodes for calling shared static,
12785 which need to be passed the runtime generic context.
12787 * mini-amd64.c, mini-x86.c: Save the runtime generic context
12788 argument on the stack in the prologue if needed. New function for
12789 finding the runtime generic context argument from the registers
12790 saved by the trampoline.
12792 * mini-amd64.h, mini-x86.h: Specify which register to use for the
12793 runtime generic context argument.
12795 * tramp-amd64.c: Also restore the register used for the runtime
12796 generic context argument.
12798 * mini-trampoline.c: Resolve shared static calls by consulting the
12799 runtime generic context via the new argument.
12801 * generic-sharing.c: Add an argument to sharability-checking
12802 functions that specifies whether type variables should be treated
12803 as sharable type arguments.
12805 * inssel-x86.brg: Removed a superfluous, buggy rule.
12807 * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
12810 2008-03-14 Martin Baulig <martin@ximian.com>
12812 * debug-debugger.c (main_thread_handler): Call
12813 mono_runtime_run_main() without sending any notifications.
12815 * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
12817 2008-03-14 Zoltan Varga <vargaz@gmail.com>
12819 * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
12821 2008-03-14 Mark Probst <mark.probst@gmail.com>
12823 * tramp-x86.c: Fixed register restore offsets in the trampoline
12824 code for ECX and EDX.
12826 2008-03-12 Geoff Norton <gnorton@novell.com>
12828 * mini-arm.h: Add some #defines for locating sp, pc, r4 with
12829 different ucontext_t implementations.
12830 * exceptions-arm.c: Use the above defines to get exceptions working on
12831 iPhone (based on a patch by Luke Howard lukeh@padl.com)
12832 * mini-arm.c: Implement iPhone icache support (based on a patch by
12833 Luke Howard lukeh@padl.com)
12835 2008-03-12 Mark Probst <mark.probst@gmail.com>
12837 * mini.c: Enable generic sharing of calls to non-static
12838 non-interface non-generic non-value-type methods.
12840 * mini-trampolines.c: Resolve calls from shared generic code.
12842 2008-03-11 Zoltan Varga <vargaz@gmail.com>
12844 * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
12846 * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
12848 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
12850 * mini.c: some fixes for the AOT compiler.
12852 2008-03-07 Zoltan Varga <vargaz@gmail.com>
12854 * cpu-amd64.md: Add clob:1 to some float opcodes.
12856 2008-03-07 Rodrigo Kumpera <rkumpera@novell.com>
12858 * mini.h: Added MiniVerifierMode enumeration.
12860 * mini.c: Added mini_verifier_set_mode to control
12861 the usage of the new verifier.
12863 * mini.c (mono_method): Integrated the new verifier.
12865 * driver.c: Extended --security option with validil and
12866 verifiable options to activate the new verifier.
12868 2008-03-07 Zoltan Varga <vargaz@gmail.com>
12870 * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation
12871 optimization to ctors taking 0 or 2 arguments too.
12873 * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
12876 * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
12878 * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
12880 2008-03-06 Zoltan Varga <vargaz@gmail.com>
12882 * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
12883 non-aot case as well.
12885 * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
12887 * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
12890 * aot-compiler.c (encode_patch): Ditto.
12892 * mini.h (G_MININT32): Fix the definition of this.
12894 2008-03-05 Zoltan Varga <vargaz@gmail.com>
12896 * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
12898 * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
12900 2008-03-04 Zoltan Varga <vargaz@gmail.com>
12902 * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for
12903 methods returning vtypes in registers.
12904 (mono_arch_allocate_vars): Ditto.
12906 * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
12908 * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().
12910 * generics.cs: Add a test from the linear IR branch.
12912 * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
12914 * mini.c (inline_method): Cache failed inline attempts.
12916 2008-03-04 Mark Probst <mark.probst@gmail.com>
12918 * mini.c: For shared methods of generic classes put the location
12919 of "this" into the MonoGenericJitInfo.
12921 * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
12922 register out of a MonoContext by register number. Add the generic
12923 sharing context as an argument to mono_arch_find_this_argument().
12925 * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
12926 mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
12927 for new arch function.
12929 * mini-exception.c: Handle open exception clauses in shared
12932 * mini-trampolines.c: Supply additional argument to
12933 mono_arch_find_this_argument().
12935 2008-03-04 Zoltan Varga <vargaz@gmail.com>
12937 * Makefile.am (regtests): Run the bench.exe tests last.
12939 2008-03-03 Zoltan Varga <vargaz@gmail.com>
12941 * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
12944 2008-03-02 Zoltan Varga <vargaz@gmail.com>
12946 * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
12949 * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
12951 * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
12953 * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
12954 whose class has no cctor.
12956 * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
12958 2008-03-01 Zoltan Varga <vargaz@gmail.com>
12960 * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
12963 2008-02-29 Zoltan Varga <vargaz@gmail.com>
12965 * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
12966 to be in sync with the code on the linear IR branch.
12968 * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
12970 * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
12972 2008-02-27 Zoltan Varga <vargaz@gmail.com>
12974 * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
12976 * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
12978 * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
12980 * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
12982 * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
12984 * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
12987 2007-11-14 Yoichi NAKAYAMA <nakayama@pixela.co.jp>
12989 * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
12990 OP_LOADR4_MEMBASE emission.
12992 * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
12993 (mono_spillvar_offset_float): Ditto.
12995 * mini-mips.c (mono_arch_emit_prolog): Ditto.
12997 * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
13000 * basic-long.cs: Add regression tests for them.
13002 * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
13004 (mono_arch_allocate_vars): Fix representation of single-precision float
13006 (mono_arch_output_basic_block): Ditto.
13008 * inssel-mips.brg: Ditto, remove duplicate items.
13010 * mini-mips.c (emit_load_volatile_arguments): New function to handle
13011 arguments of tail calls as on other platforms.
13012 (mono_arch_output_basic_block): Handle tail calls.
13014 * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
13017 * objects.cs (test_5_pass_static_struct): Add test for it.
13019 Contributed under MIT/X11 license.
13021 2008-02-26 Zoltan Varga <vargaz@gmail.com>
13023 * Makefile.am: Use gmcs for compiling the regression tests.
13025 * *.2.cs *.2.il: Rename to *.cs and *.il.
13027 2008-02-24 Zoltan Varga <vargaz@gmail.com>
13029 * regalloc.h: Make the vassign array smaller.
13031 * mini.c (mini_method_compile): Remove an unused field in cfg.
13033 * mini-codegen.c: Add a bunch of micro optimizations.
13035 2008-02-23 Zoltan Varga <vargaz@gmail.com>
13037 * regalloc.h: Remove some unused fields.
13039 2008-02-22 Zoltan Varga <vargaz@gmail.com>
13041 * mini-amd64.c (mono_arch_patch_code): Fix a warning.
13043 * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
13045 2008-02-22 Mark Probst <mark.probst@gmail.com>
13047 * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
13049 * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
13050 trampoline: Fetch an entry from the runtime generic context. If
13051 it's NULL, jump to the actual trampoline to fill the runtime
13052 generic context. Otherwise, return it.
13054 * mini.c: Call the lazy fetch trampoline to get entries out of the
13055 runtime generic context.
13057 * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
13058 tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
13059 tramp-sparc.c: Stubs for the lazy fetch trampoline.
13061 2008-02-21 Mark Probst <mark.probst@gmail.com>
13063 * mini.c: Fetch data out of the extensible part of the runtime
13064 generic context instead of calling a helper function.
13066 * generic-sharing.c: Some functions moved into
13067 metadata/generic-sharing.c. Helper function for fetching other
13068 types now checks and asserts against extensible rgctx (just for
13069 debugging purposes - the helper function isn't called anymore
13070 unless for debugging).
13072 2008-02-21 Zoltan Varga <vargaz@gmail.com>
13074 * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
13075 for tail calls up to the point that the tests in iltests.exe run. Also add a
13076 dummy CKFINITE implementation.
13077 (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
13078 needed for trampoline LMF frames.
13080 * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for
13081 trampoline LMF frames.
13083 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
13085 * mini.c (inline_method): clean any pending loader error when inlining fail.
13086 Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
13088 2008-02-21 Zoltan Varga <vargaz@gmail.com>
13090 * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
13092 * aot-runtime.c (decode_patch_info): Ditto.
13094 * mini.c (mono_resolve_patch_target): Ditto.
13096 * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
13099 * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
13101 * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
13102 if it references an icall address.
13104 2008-02-20 Zoltan Varga <vargaz@gmail.com>
13106 * cpu-s390x.md: Remove some more unused opcodes.
13108 * cpu-s390x.md: Remove some unused opcodes.
13110 * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
13111 mono_op_imm_to_op ().
13113 * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
13114 instead of a switch statement.
13116 * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
13117 the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
13119 * mini-codegen.c: Eliminate rassign macro which is no longer needed.
13121 * mini-codegen.c: Remove unused mono_regstate2_... functions.
13123 * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
13126 2008-02-19 Zoltan Varga <vargaz@gmail.com>
13128 * driver.c (mono_main): Improve error reporting when an assembly cannot be
13129 opened. Fixes #362607.
13131 * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
13133 * iltests.il.in: Add a test for static methods in interfaces.
13135 2008-02-18 Zoltan Varga <vargaz@gmail.com>
13137 * genmdesc.c (build_table): Fix a crash on older glib versions.
13139 * cpu-sparc.md: Remove some unused opcodes.
13141 * genmdesc.c: Error out if the .md contains CEE_ opcodes if
13142 MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
13144 * cpu-amd64.md: Remove some unused opcodes.
13146 * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
13147 like the other opcodes.
13149 2008-02-17 Zoltan Varga <vargaz@gmail.com>
13151 * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
13153 * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
13155 * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
13156 variables 'cfg' instead of 'm' for consistency.
13158 * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
13160 * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
13161 argument holding the vtype return address, to avoid the ambigious use of
13162 cfg->ret for this purpose.
13164 * mini.c (NEW_RETLOADA): Use vret_addr if set.
13166 * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
13168 * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
13169 new mono_print_ins () function which only takes one argument.
13171 2008-02-15 Zoltan Varga <vargaz@gmail.com>
13173 * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
13176 2008-02-14 Zoltan Varga <vargaz@gmail.com>
13178 * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
13180 * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
13182 * mini-x86.c: Sync with the version on the linear IR branch by adding new
13183 opcodes and other small changes.
13185 * mini-ops.h: Add some new opcodes from the linear IR branch.
13187 * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
13189 * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
13190 opcodes, use the REG_MEMBASE opcodes instead.
13192 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
13193 opcodes, use the REG_MEMBASE opcodes instead.
13195 * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
13198 * mini.c (mono_op_imm_to_op): New helper function.
13200 * mini-ops.h: Add some opcodes from linear IR branch.
13202 2008-02-13 Zoltan Varga <vargaz@gmail.com>
13204 * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov
13207 2008-02-12 Zoltan Varga <vargaz@gmail.com>
13209 * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to
13212 * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
13214 2008-02-09 Zoltan Varga <vargaz@gmail.com>
13216 * aot-compiler.c (emit_method_code): Add an assert.
13218 * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
13219 the IMT code so it is AOT friendly. Enable AOT for methods which call interface
13222 2008-02-08 Zoltan Varga <vargaz@gmail.com>
13224 * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for
13225 some load/store opcodes so they are consistent.
13226 (mono_arch_emit_prolog): Simplify some code.
13228 * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
13230 * objects.cs: Add tests for large argument offsets on ARM.
13232 * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large
13233 stack offsets. Fixes #359651.
13235 * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
13237 * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
13239 * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
13241 * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
13243 * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
13245 * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
13246 rid of CEE_CONV_R_UN.
13248 * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
13250 2008-02-07 Zoltan Varga <vargaz@gmail.com>
13252 * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
13254 * mini.c (mono_normalize_opcodes): Add some more opcodes.
13256 * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
13258 * cpu-amd64.md: Remove some unused opcodes.
13260 * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
13262 * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
13264 * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make
13265 arch specific functions for its parts. Call the peephole pass after local
13266 regalloc so the prolog can compute a more accurate max_offset.
13268 * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
13269 the corresponding OP_I/OP_L opcodes.
13271 * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
13273 * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
13275 2008-02-06 Zoltan Varga <vargaz@gmail.com>
13277 * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
13278 as they are handled in mini.c.
13280 * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
13282 * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
13283 case since it is handled in mini.c.
13285 * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
13287 * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
13289 * *.c: Use the new opcodes in the IR and back end code.
13291 * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
13293 * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
13295 2008-02-06 Mark Probst <mark.probst@gmail.com>
13297 * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
13298 an assert because it has a race condition.
13300 2008-02-06 Zoltan Varga <vargaz@gmail.com>
13302 * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
13304 * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
13306 * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
13308 * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
13309 use OP_MOVE/OP_FMOVE/OP_ICONST instead.
13311 2008-02-05 Zoltan Varga <vargaz@gmail.com>
13313 * cpu-amd64.md (move): Correct the maximum size of move.
13315 2008-02-05 Mark Probst <mark.probst@gmail.com>
13317 * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
13318 the generic class init trampoline to return quickly if the class
13321 2008-02-04 Zoltan Varga <vargaz@gmail.com>
13323 * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
13324 issues where an 32 bit callsite cannot be patched by a 64 bit address.
13326 2008-02-03 Zoltan Varga <vargaz@gmail.com>
13328 * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
13331 2008-01-31 Zoltan Varga <vargaz@gmail.com>
13333 * objects.cs: Add some soft-float tests.
13335 * mini.c: Fix a couple more soft-float issues.
13337 * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
13339 * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
13340 avoid a REX prefix.
13342 2008-01-30 Zoltan Varga <vargaz@gmail.com>
13344 * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
13345 exception happens while compiling a virtual method.
13347 2008-01-29 Zoltan Varga <vargaz@gmail.com>
13349 * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
13351 * mini-sparc.c: Fix build.
13353 * mini-sparc.c (get_call_info): Add support for generic sharing.
13355 * mini-exceptions.c: Add a FIXME.
13357 2008-01-27 Zoltan Varga <vargaz@gmail.com>
13359 * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
13360 altstack handling code.
13362 * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
13364 * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
13366 * mini-s390.c: Add support for generic sharing.
13368 * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame):
13370 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
13372 * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
13374 * mini-s390x.c: Add support for generic sharing.
13376 * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame):
13378 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
13380 * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
13381 can be used since it takes a 16 bit signed immediate.
13383 * inssel-s390x.brg: Fix OP_SETRET.
13385 * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
13387 * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
13389 * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
13391 * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
13393 * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
13396 * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline
13399 * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
13400 of the unused mono_arch_patch_delegate_trampoline stuff.
13402 2008-01-26 Zoltan Varga <vargaz@gmail.com>
13404 * basic-long.cs: Move the fp related tests to basic-float.cs.
13406 * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
13408 * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
13410 * basic-calls.cs: Add a test for proper float argument passing.
13412 * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
13413 if the context corresponds to an exception received through a signal.
13415 * exceptions.cs: Add a test for nullref handling at the start of a try
13418 * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
13420 * jit-icalls.c (mono_break): New JIT icall.
13422 * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
13424 * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
13426 2008-01-25 Zoltan Varga <vargaz@gmail.com>
13428 * cpu-*.md: Get rid of unused opcodes.
13430 * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
13432 * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
13435 * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
13438 * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
13439 the arch independent trampoline code in mini-trampolines.c.
13441 * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
13443 * mini.c (get_runtime_generic_context_ptr): Fix a warning.
13445 * mini-s390.h: Remove an unused define.
13447 * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
13448 the arch independent trampoline code in mini-trampolines.c.
13450 * mini-arm.c (mono_arch_emit_prolog): Fix build.
13452 2008-01-24 Zoltan Varga <vargaz@gmail.com>
13454 * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
13456 * mini-s390.c (mono_arch_emit_prolog): Fix build.
13458 * mini-s390x.c (mono_arch_emit_prolog): Fix build.
13460 * mini-ppc.c (mono_arch_emit_prolog): Fix build.
13462 * cpu-amd64.md: Use smaller sizes for int opcodes.
13464 * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
13466 * *.cs: Add some tests from the linear-ir branch. Move structs tests to
13469 * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
13472 * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
13473 instead of though a pointer to save an indirection when accessing elements of
13476 * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
13478 (NOT_IMPLEMENTED): New helper macro.
13479 (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
13482 * *.c: Use the new helper macro.
13484 2008-01-21 Zoltan Varga <vargaz@gmail.com>
13486 * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
13488 2008-01-20 Zoltan Varga <vargaz@gmail.com>
13490 * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
13493 2008-01-18 Zoltan Varga <vargaz@gmail.com>
13495 * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
13496 profiling is enabled.
13498 * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
13500 (mono_arch_emit_prolog): Add more first bblock optimizations.
13502 * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
13503 in order if possible.
13504 (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
13505 bblock, since the arguments are still in their original registers.
13507 * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
13509 2008-01-17 Zoltan Varga <vargaz@gmail.com>
13511 * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
13514 * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
13517 * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
13519 * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to
13520 process async exceptions received while in unmanaged code.
13522 * mini.c (mini_init): Install a callback with the runtime which will be called
13523 when a thread receives an async exception while in unmanaged code.
13525 * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
13527 * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
13529 2008-01-16 Wade Berrier <wberrier@novell.com>
13536 2008-01-16 Zoltan Varga <vargaz@gmail.com>
13538 * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
13539 compilation with sun cc.
13541 * cpu-*.md: Fix the build.
13543 * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
13545 * mini-amd64.h: Add some comments to the MonoLMF structure.
13547 * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
13549 * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
13550 in the LMF structure if possible. This saves two instructions in the
13551 managed->native wrappers.
13553 * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
13555 2008-01-16 Mark Probst <mark.probst@gmail.com>
13557 * generic-sharing.c: New type argument lookup code which uses the
13558 runtime generic context template.
13560 2008-01-15 Zoltan Varga <vargaz@gmail.com>
13562 * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
13564 * mini-arm.c (add_general): Fix arm eabi parameter passing.
13565 (mono_arch_output_basic_block): Fix localloc implementation.
13567 * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
13569 * mini-ia64.c (peephole_pass): Fix ia64 build.
13571 * mini-amd64.c (peephole_pass): Fix a warning.
13573 * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
13574 at a constant offset from sp/fp.
13576 * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
13577 instead of obtaining it from *lmf in the managed method case.
13579 2008-01-14 Zoltan Varga <vargaz@gmail.com>
13581 * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
13583 Mon Jan 14 12:33:06 CET 2008 David S. Miller <davem@davemloft.net>
13585 * mini.h (MonoInstList): New type.
13586 (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
13587 __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
13588 MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
13589 __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
13590 MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
13591 MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
13592 MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
13593 MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
13594 MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
13595 MONO_INST_LIST_FOR_EACH_PREV_SAFE,
13596 MONO_INST_LIST_FOR_EACH_ENTRY,
13597 MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
13598 MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
13599 mono_inst_list_first, mono_inst_list_last,
13600 mono_inst_list_next, mono_inst_list_prev): New instruction
13601 list handling interfaces.
13602 (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
13603 list head 'ins_list'.
13604 (MonoInst): Replace next pointer with list head 'node'.
13605 (MonoCallInst): Make 'out_args' a MonoInstList.
13606 (MONO_INST_NEW_CALL): Explicitly init ->out_args.
13607 (MonoCompile): Delete reverse_inst_list and
13608 reverse_inst_list_len.
13609 * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
13610 mono_arch_lowering_pass, mono_arch_local_regalloc,
13611 mono_arch_output_basic_block, mono_arch_emit_prolog):
13612 Convert to new instruction lists.
13613 (insert_after_ins): Delete.
13614 * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
13616 * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
13617 * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
13618 split_bblock, mono_add_ins_to_end, mono_emit_call_args,
13619 mono_emulate_opcode, mono_emit_load_got_addr,
13620 inline_method, mono_method_to_ir, mono_print_bb_code,
13621 print_dfn, decompose_pass, nullify_basic_block,
13622 replace_out_block_in_code, remove_block_if_useless,
13623 merge_basic_blocks, move_basic_block_to_end,
13624 try_unsigned_compare, optimize_branches, mono_print_code,
13625 mini_select_instructions, remove_critical_edges): Likewise.
13626 * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
13627 peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
13628 mono_arch_output_basic_block, mono_arch_emit_prolog):
13630 * mini-mips.c (mono_arch_call_opcode, peephole_pass,
13631 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13632 mono_arch_output_basic_block): Likewise.
13633 (inst_list_prepend, insert_after_ins): Delete.
13634 * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
13635 MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
13637 * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
13638 peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
13639 mono_arch_emit_prolog): Likewise.
13640 * cfold.c (mono_constant_fold): Likewise.
13641 * liveness.c (visit_bb, mono_analyze_liveness,
13642 optimize_initlocals): Likewise.
13643 * ssapre.c (dump_code, process_bb, code_motion): Likewise.
13644 * graph.c (mono_draw_code_cfg): Likewise.
13645 * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
13646 mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
13647 mono_ssa_cprop): Likewise.
13648 * abcremoval (get_relations_from_previous_bb, process_block):
13650 * local-propagation (mono_cprop_invalidate_values,
13651 mono_local_cprop_bb): Likewise.
13652 * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
13653 peephole_pass, mono_arch_output_basic_block,
13654 mono_arch_emit_prolog): Likewise.
13655 * mini-arm.c (mono_arch_call_opcode, peephole_pass,
13656 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13657 mono_arch_emit_prolog): Likewise.
13658 (insert_after_ins): Delete.
13659 * aliasing.c (print_code_with_aliasing_information,
13660 mono_build_aliasing_information, mono_aliasing_deadce):
13661 Convert to new instruction lists.
13662 * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
13663 peephole_pass, NEW_INS, mono_arch_lowering_pass,
13664 mono_arch_local_regalloc, mono_arch_output_basic_block):
13666 (insert_after_ins): Delete.
13667 * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
13668 peephole_pass, mono_arch_output_basic_block): Convert to
13669 new instruction lists.
13670 * mini-codegen (InstList, inst_list_prepend,
13671 insert_after_ins): Delete.
13672 (insert_before_ins, get_register_force_spilling,
13673 get_register_spilling, free_up_ireg, free_up_reg,
13674 create_copy_ins, create_spilled_store, alloc_int_reg,
13675 alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
13676 to new instruction lists.
13677 * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
13678 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13679 mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
13680 (insert_after_ins): Delete.
13681 * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
13682 mono_arch_local_regalloc, mono_arch_output_basic_block,
13683 mono_arch_call_opcode): Convert to new instruction lists.
13684 (insert_after_ins): Delete.
13685 * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
13686 peephole_pass, mono_arch_output_basic_block,
13687 mono_arch_emit_prolog): Convert to new instruction lists.
13689 2008-01-11 Zoltan Varga <vargaz@gmail.com>
13691 * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
13693 * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
13696 * Makefile.am (version.h): Make this work with non-bash shells.
13698 2008-01-10 Zoltan Varga <vargaz@gmail.com>
13700 * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
13702 2008-01-08 Zoltan Varga <vargaz@gmail.com>
13704 * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in
13705 the InitializeArray optimization.
13707 2008-01-06 Zoltan Varga <vargaz@gmail.com>
13709 * mini.c driver.c: Don't include os/gc_wrapper.h.
13711 2008-01-05 Zoltan Varga <vargaz@gmail.com>
13713 * mini.c (print_jit_stats): Print GC statistics if available.
13715 2008-01-04 Zoltan Varga <vargaz@gmail.com>
13717 * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
13719 2007-12-29 Zoltan Varga <vargaz@gmail.com>
13721 * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
13723 2007-12-26 Zoltan Varga <vargaz@gmail.com>
13725 * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
13727 * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13729 * driver.c (mono_main): Ditto.
13731 2007-12-23 Zoltan Varga <vargaz@gmail.com>
13733 * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
13735 * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
13736 in the vtable can't be encoded.
13737 (compile_method): Ditto.
13739 2007-12-21 Zoltan Varga <vargaz@gmail.com>
13741 * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
13744 * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to
13747 * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
13748 the top LMF entry belongs to the current method.
13750 * mini.c: Update after renaming of mono_thread_get_pending_exception ().
13752 2007-12-20 Zoltan Varga <vargaz@gmail.com>
13754 * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
13756 * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
13758 * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
13760 * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
13762 * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
13764 * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double
13767 * basic-float.cs: Add an ulong->double cast test.
13769 2007-12-15 Zoltan Varga <vargaz@gmail.com>
13771 * mini.c (mono_method_to_ir): Fix a warning.
13773 2007-12-14 Zoltan Varga <vargaz@gmail.com>
13775 * mini-ops.h: Add OP_SWITCH.
13777 * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
13778 CEE_SWITCH in back-end code, use OP_SWITCH instead.
13780 2007-12-11 Geoff Norton <gnorton@novell.com>
13782 * mini-s390x.c: Minor change to the MAX() define to allow
13783 it to compile with other gcc versions.
13785 2007-12-11 Geoff Norton <gnorton@novell.com>
13788 * mini-s390x.c: Implement sext_i4 to fix the build on s390x
13790 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
13792 exceptions-arm.c (mono_arch_get_restore_context): Restore
13795 exceptions-arm.c (throw_exception): Save the frame pointer.
13796 This is a partial fix for #323747. Only the client side is
13799 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
13801 * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
13802 was using an unrelated variable to log the class which
13803 needed the cctor to be called. This was crashing on arm.
13805 2007-12-09 Robert Jordan <robertj@gmx.net>
13807 * mini-x86.c (mono_arch_emit_epilog):
13808 Consider all kinds of 64-bit types. Fixes #323114.
13810 2007-12-08 Zoltan Varga <vargaz@gmail.com>
13812 * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
13814 2007-12-07 Zoltan Varga <vargaz@gmail.com>
13816 * mini-amd64.c (peephole_pass): Add a missing instruction check.
13818 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13820 * mini.c: run type ctor before allocating an object, not only
13821 when running it's constructor method (fixes at least part of bug #342507).
13823 2007-12-07 Zoltan Varga <vargaz@gmail.com>
13825 * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
13827 * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
13828 * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable ()
13831 * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
13832 mono_generic_class_init_trampoline () the same as it is done with the other
13835 * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md
13836 aot-runtime.c aot-compiler.c: Implement AOT support.
13838 2007-12-07 Mark Probst <mark.probst@gmail.com>
13840 * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
13841 build for archs which don't have the vtable trampoline defined
13844 2007-12-07 Zoltan Varga <vargaz@gmail.com>
13846 * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
13848 * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
13850 * mini-trampolines.c (mono_get_trampoline_func): New helper function.
13852 * tramp-<ARCH>.c: Use the new helper function.
13854 2007-12-07 Mark Probst <mark.probst@gmail.com>
13856 * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
13857 trampoline call, which takes a vtable argument.
13859 * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
13860 OP_TRAMPCALL_VTABLEs like other calls.
13862 * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
13863 register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
13864 call. Implemented a support function which fetches the vtable
13865 from a register set.
13867 * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
13868 Implemented a generic class init trampoline, using the
13869 OP_TRAMPCALL_VTABLE opcode.
13871 * mini.c: Implemented static field access when sharing generic
13872 code. This implies initing the class using the new
13873 OP_TRAMPCALL_VTABLE call.
13875 2007-12-07 Mark Probst <mark.probst@gmail.com>
13877 * mini.c: Don't compile methods with sharing enabled if their
13878 classes are disabled for sharing.
13880 2007-12-06 Zoltan Varga <vargaz@gmail.com>
13882 * inssel.brg: Add a missing sign extension to the GETCHR and array access
13883 opcodes. Fixes #346563.
13885 * objects.cs: Add a new test.
13887 * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
13889 * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
13890 HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
13892 2007-12-06 Zoltan Varga <vargaz@gmail.com>
13894 * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
13896 2007-12-03 Zoltan Varga <vargaz@gmail.com>
13898 * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
13901 2007-12-02 Zoltan Varga <vargaz@gmail.com>
13903 * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
13905 * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation
13906 optimization in the AOT case.
13908 2007-11-30 Zoltan Varga <vargaz@gmail.com>
13910 * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
13912 * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
13914 * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
13916 * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
13918 * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
13919 is created by the inlined delegate ctor.
13921 * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
13923 * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
13925 2007-11-29 Zoltan Varga <vargaz@gmail.com>
13927 * cpu-x86.md: Fix the length of ckfinite.
13929 2007-11-28 Zoltan Varga <vargaz@gmail.com>
13931 * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
13933 * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
13934 (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
13936 * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
13938 * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the
13939 OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
13941 2007-11-28 Martin Baulig <martin@ximian.com>
13944 (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
13945 after creating the trampoline.
13947 2007-11-27 Zoltan Varga <vargaz@gmail.com>
13949 * aot-runtime.c (load_aot_module): Check runtime version if needed.
13951 * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
13954 * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
13955 instead of the calling method to help AOT.
13957 * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
13959 2007-11-26 Zoltan Varga <vargaz@gmail.com>
13961 * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
13964 2007-11-23 Zoltan Varga <vargaz@gmail.com>
13966 * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
13968 * aot-compiler.c (compile_method): Correct check for generic method definitions.
13969 (encode_method_ref): No need to handle generic method definitions specially.
13971 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
13973 * aot-runtime.c (decode_klass_ref): Clean this up and rename from
13976 * aot-compiler.c (encode_klass_ref): Clean this up and rename from
13978 (compile_method): Enable generic sharing.
13980 2007-11-22 Zoltan Varga <vargaz@gmail.com>
13982 * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
13983 (mini_method_compile): Add preliminary support for AOTing shared generic code.
13985 * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
13988 * mini-trampolines.c: Fix a warning.
13990 * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
13992 (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
13993 (generic_class_is_reference_type): Remove unused function.
13995 * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
13996 in the generic vtable trampoline case.
13998 * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
14000 * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
14001 return an AOT method based on a vtable slot.
14003 * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
14005 * mini.c (mini_get_vtable_trampoline): Export this.
14007 2007-11-22 Martin Baulig <martin@ximian.com>
14010 (MonoDebuggerInfo): Move `debugger_version' up.
14012 2007-11-22 Martin Baulig <martin@ximian.com>
14015 (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
14017 * mini-trampolines.c
14018 (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
14019 after compiling the method.
14021 2007-11-20 Martin Baulig <martin@ximian.com>
14024 (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
14025 (mono_debugger_remove_breakpoint): Likewise.
14026 (mono_debugger_check_breakpoints): Likewise.
14028 * debug-debugger.c: Implement the new breakpoint interface here.
14030 2007-11-18 Zoltan Varga <vargaz@gmail.com>
14032 * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
14033 CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
14035 * mini-x86.c (mono_arch_output_basic_block): Ditto.
14037 2007-11-17 Zoltan Varga <vargaz@gmail.com>
14039 * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
14041 * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
14044 * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
14047 * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
14048 returning a vtype in a register.
14050 * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
14051 here from the arch specific code.
14053 * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
14056 * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
14057 (mono_arch_emit_prolog): Increment maximum prolog size.
14059 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
14060 START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
14062 * mini-x86.c (get_call_info): Receive a MonoCompile instead of a
14063 MonoGenericSharingContext.
14065 * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a
14066 MonoGenericSharingContext. Allocate memory from the cfg mempool.
14068 2007-11-15 Mark Probst <mark.probst@gmail.com>
14070 * mini.c, mini.h, generic-sharing.c: Functions for producing code
14071 which extract fields out of the runtime generic context. Full
14072 sharing of the NEWARR opcode.
14074 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14076 * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
14077 --enable-minimal=ssa.
14079 2007-11-13 Zoltan Varga <vargaz@gmail.com>
14081 * mini-trampolines.c (mono_delegate_trampoline): Update after
14082 mono_marshal_get_delegate_invoke () signature change.
14084 2007-11-13 Mark Probst <mark.probst@gmail.com>
14086 * mini.c: Removed the shared context in favor of the generic
14087 sharing context. Allocate the MonoJitInfo structure with room for
14088 the generic sharing context if it's needed.
14090 * mini.h: Remove MonoGenericSharingContext declaration. It's in
14091 domain-internals.h now.
14093 * mini-x86.c: Pass the generic sharing context to get_call_info ().
14095 * generic-sharing.c: Several changes for working without a shared
14096 context and instead operating on open types instead.
14098 2007-11-12 David S. Miller <davem@davemloft.net>
14100 * inssel-sparc.brg: Fix double instruction emit.
14102 2007-11-12 Zoltan Varga <vargaz@gmail.com>
14104 * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array
14105 Get/Set/Address methods.
14107 * mini.c debug-debugger.c mini-trampolines.c: Update after
14108 mono_marshal_get_delegate_invoke signature change.
14110 2007-11-12 Rodrigo Kumpera <rkumpera@novell.com>
14112 * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
14113 This can happens with dynamic methods. Fixes the other bug in #322722.
14115 2007-11-12 Rodrigo Kumpera <rkumpera@novell.com>
14117 * tramp-arm.c (mono_arch_patch_callsite): Support patching
14120 * mini-arm.c (arm_patch): Implement patching of BX call
14121 sequence. Fixes one of the bugs in #322722.
14123 2007-11-03 David S. Miller <davem@huronp11.davemloft.net>
14125 * mini-sparc.c (mono_arch_flush_icache): Make more efficient
14126 under Linux. We only need to flush every 32-byte cache line.
14128 2007-11-07 Massimiliano Mantione <massi@ximian.com>
14131 move_basic_block_to_end: Add branches when needed, eventually creating
14133 optimize_branches: added a parameter that tells if it's ok to create
14134 new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
14135 and avoid calling move_basic_block_to_end when it's not ok.
14138 2007-11-07 Mark Probst <mark.probst@gmail.com>
14140 * mini.c: Abort inlining call to InitializeArray if something
14141 looks wrong. Let the icall handle it, which now has proper safety
14144 2007-11-05 Rodrigo Kumpera <rkumpera@novell.com>
14146 * mini.c (mono_spill_call): add support for soft-float.
14148 * mini.c (mono_method_to_ir): add support for soft-float
14149 to inlined functions that return float.
14151 * mini.c (mono_method_to_ir): add support for soft-float
14152 to cee_stsfld opcode on float fields.
14154 2007-11-05 Geoff Norton <gnorton@novell.com>
14156 * mini-x86.h: Fix the structure access for X86 Leopard.
14159 2007-11-05 Martin Baulig <martin@ximian.com>
14161 * mini-trampolines.c
14162 (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
14163 after compiling the method to notify the debugger.
14165 2007-11-05 Martin Baulig <martin@ximian.com>
14167 * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
14169 2007-11-02 Zoltan Varga <vargaz@gmail.com>
14171 * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
14172 David Miller <davem@davemloft.net>. Allow larger offsets in branches.
14174 2007-11-01 Zoltan Varga <vargaz@gmail.com>
14176 * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
14177 native-to-managed wrappers.
14179 2007-11-01 Geoff Norton <gnorton@novell.com>
14181 * mini-ppc.h, mini-x86.h: Handle Leopards renaming of some structure
14184 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
14186 * mini.c, mini-x86.c: when getting back from unmanaged code
14187 to managed via a marshaled delegate we also need to set the
14190 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
14192 * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
14195 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14197 * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
14198 let the debugger or other external agents to tell the JIT when
14199 a sw breakpoint has been inserted in the code that the JIT needs
14200 to be able to inspect.
14202 2007-10-31 Martin Baulig <martin@ximian.com>
14205 (MonoDebuggerInfo): Remove `runtime_class_init'.
14207 2007-10-30 Martin Baulig <martin@ximian.com>
14210 (mono_debugger_thread_created): Added `MonoThread *' argument.
14211 (mono_debugger_extended_notification): New public method.
14212 (mono_debugger_trampoline_compiled): New public method.
14215 (MonoDebuggerThreadInfo): Added `thread' and
14216 `extended_notifications' fields.
14219 (debugger_executable_code_buffer): New static variable.
14222 (MonoDebuggerInfo): Added `executable_code_buffer',
14223 `executable_code_buffer_size', `breakpoint_info_area',
14224 `breakpoint_table' and `breakpoint_table_size'.
14226 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14228 * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
14229 that IP either is an unused value or the vtable pointer. IMT
14230 calls use vtable + offset now. Reduced by almost half the size
14233 2007-10-26 Jonathan Chambers <joncham@gmail.com>
14235 * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
14236 defines to access param registers. Replace long usage with
14237 gsize as sizeof(long) != sizeof(void*) on Win64.
14239 * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
14240 on Win64. Fix intrinsic, use _AddressOfReturnAddress
14241 instead of non-existant _GetAddressOfReturnAddress.
14243 * tramp-amd64.c: Use AMD64_ARG_REG# defines to access
14244 param registers. Save/restore %rdi and %rsi in MonoLMF.
14246 * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access
14247 param registers. Modify (throw_exception) signature to take
14248 %rdi and %rsi on Win64.
14250 Code is contributed under MIT/X11 license.
14252 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14254 * helpers.c: unlink debugging output files.
14256 2007-10-25 Zoltan Varga <vargaz@gmail.com>
14258 * mini.c: Move mono_create_ftnptr () to object.c.
14260 2007-10-24 Rodrigo Kumpera <rkumpera@novell.com>
14262 * helpers.c (mono_disassemble_code): MonoCompile parameter is now
14263 optional. This function can now be used to disassemble code generated
14264 outside the JIT such as trampolines and IMT thunks.
14266 * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
14268 * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
14269 vtable pointer from a ldr instruction.
14271 * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
14272 new IMT call sequence.
14274 * mini-arm.c (mono_arch_output_basic_block): emit the IMT
14275 call sequence for interface invocations.
14277 * mini-arm.c (mono_arch_emit_imt_argument): added, required
14278 for imt support. This function is empty since IMT on ARM requires no
14279 special handling on the IR side.
14281 * mini-arm.c (mono_arch_find_imt_method): added, required for
14284 * mini-arm.c (mono_arch_find_this_argument): added, required
14287 * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
14288 a ldr instruction to load a value stored in the code stream.
14290 * mini-arm.c (mono_arch_build_imt_thunk):added, required
14294 2007-10-23 Zoltan Varga <vargaz@gmail.com>
14296 * mini.c (mini_init): Install the jump trampoline callback.
14298 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14300 * mini-trampolines.c: handle synchronized methods with the common
14301 vtable trampoline (bug #335601).
14303 2007-10-17 Zoltan Varga <vargaz@gmail.com>
14305 * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
14307 * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
14310 * mini-ia64.h mini-ia64.c: Add support for IMT.
14312 * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
14313 prolog. Fixes #331958.
14315 2007-10-15 Zoltan Varga <vargaz@gmail.com>
14317 * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
14319 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14321 * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
14324 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14326 * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
14329 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
14331 * mini-x86.c, mini-x86.h: x86 support for the common vtable
14334 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14336 * mini-trampolines.c: changed the magic rampoline to understand
14337 the common vtable trampoline method: the method to invoke is
14338 determined by the vtable displacement of the call.
14340 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14342 * mini.c, mini.h: register the common vtable trampoline if the
14343 architecture supports it.
14345 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14347 * cpu-amd64.md: use the correct max length for tls_get.
14349 2007-10-14 Zoltan Varga <vargaz@gmail.com>
14351 * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
14352 CEE_STELEM_ANY. Fixes #333696.
14354 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
14356 * exceptions-x86.c: provide more graceful handling of the case where
14357 we followed a bogus function pointer from managed code (bug #332866).
14359 2007-10-11 Mark Probst <mark.probst@gmail.com>
14361 * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
14362 replaces the generic_shared flag and will carry more information
14365 * generic-sharing.c: Added mini_type_stack_size() which allows
14366 allows open types if given a generic sharing context.
14367 mini_get_basic_type_from_generic() takes a
14368 MonoGenericSharingContext* instead of a MonoCompile* now.
14370 * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
14371 mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
14372 mini-sparc.c, mini-x86.c: Trivial changes required by the two
14373 changes above. Just passing arguments through to the right
14376 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14378 * mini-arm.c: unify the call emission to emit_code_seq().
14380 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
14382 * tramp-arm.c: reduced the trampoline size.
14384 2007-10-10 Mark Probst <mark.probst@gmail.com>
14386 * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
14387 variable handling out of arch-specific code.
14389 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
14391 * mini-arm.c: implemented fast delegate dispatch.
14393 2007-10-09 Zoltan Varga <vargaz@gmail.com>
14395 * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
14396 that fp elimination is turned off if the space required by locals is too
14397 big. Fixes #331958.
14399 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14401 * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
14402 ARM to the new style trampoline.
14404 2007-10-09 Zoltan Varga <vargaz@gmail.com>
14406 * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
14408 * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
14410 2007-10-09 Martin Baulig <martin@ximian.com>
14413 (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
14414 `field_info_offset_offset'.
14416 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14418 * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
14419 removed more internal usage of the r11 register and made it available
14420 to the register allocator.
14422 2007-10-08 Mark Probst <mark.probst@gmail.com>
14424 * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
14425 when sharing generics and treat type variables as references.
14427 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14429 * mini-ppc.c: started removing the internal uses of register r11
14430 to eventually allow the register allocator to manage it as an
14431 additional available register.
14433 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14435 * tramp-amd64.c: fixed memory corruption in the trampoline generation.
14437 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
14439 * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
14440 specific trampolines as they are not performance critical as a jump
14441 target (maybe align as before only for AOT code?). This saves about
14442 200 KB of native code on x86 for monodevelop startup.
14444 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14446 * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
14447 monodevelop startup.
14449 2007-10-06 Zoltan Varga <vargaz@gmail.com>
14451 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
14453 * mini-sparc.h mini-sparc.c: Implement IMT support.
14455 * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
14456 its smaller and doesn't clobber sparc_g1.
14458 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
14460 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14462 * mini-ppc.c: optimized the size of the IMT thunks a bit.
14464 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
14466 * mini-ppc.c: implemented fast delegate invocation.
14468 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14470 * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
14472 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14474 * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
14475 code to the new style trampoline in preparation for IMT support.
14477 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14479 * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
14480 systems already. This also reduces the specific trampiline sizes and
14481 prepares for the use of r12 as the IMT identifier register.
14483 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14485 * mini-mips.h: endianess fix (simplified from a patch by
14486 Thomas Kunze <thommy@tabao.de>, bug #323737).
14488 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14490 * exceptions-ppc.c, mini-ppc.h: refactor to use macros
14491 to access ucontext fields and enable netbsd support
14492 (partially from Magnus Henoch <mange@freemail.hu>).
14494 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14496 * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
14497 use the preprocessor from the CPP env var if it is set.
14499 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14501 * mini-trampolines.c: fixed an assertion and moved it earlier in the
14502 code, before interface_offset gets used.
14504 2007-10-02 Zoltan Varga <vargaz@gmail.com>
14506 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
14507 mono_class_setup_vtable () before accessing klass->vtable.
14509 2007-10-01 Zoltan Varga <vargaz@gmail.com>
14511 * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
14514 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14516 * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
14517 IMT slots (this saves hundreds of KB of memory in programs like
14518 IronPython and Monodevelop).
14520 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14522 * mini.c: print the delegate counter.
14524 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
14526 * mini-x86.c: make it easier to enable the debugging code for IMT
14529 2007-09-28 Martin Baulig <martin@ximian.com>
14532 (MonoDebuggerMetadataInfo): Add `klass_image_offset',
14533 `mono_method_klass_offset' and `mono_method_token_offset'.
14535 2007-09-20 Mark Probst <mark.probst@gmail.com>
14537 * mini.c: First generics sharing implementation. Can only share
14538 in very simple cases. If sharing doesn't work it falls back to
14539 dedicated compilation.
14541 * mini.h: Flag in MonoCompile to specify whether generic
14542 compilation is shared. Flags enum for marking which generic inst
14543 of a context is used. Prototypes for helper functions.
14545 * generic-sharing.c: Helper functions for generic method sharing.
14547 * optflags-def.h: Optimization flag (gshared) for enabling generic
14548 method sharing added.
14550 * Makefile.am: generic-sharing.c added.
14552 2007-09-19 Daniel Nauck <dna@mono-project.de>
14554 * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
14556 2007-09-19 Massimiliano Mantione <massi@ximian.com>
14557 * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
14560 2007-09-19 Martin Baulig <martin@ximian.com>
14562 * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
14563 mono_debug_cleanup() is now part of mono_cleanup().
14565 2007-09-18 Zoltan Varga <vargaz@gmail.com>
14567 * driver.c (mono_main): Fix a warning.
14569 2007-09-17 Zoltan Varga <vargaz@gmail.com>
14571 * aot-compiler.c: Optimize various parts when processing large assemblies.
14574 * mini.c (mono_patch_info_hash): Improve hash function.
14576 2007-09-14 Jonathan Chambers <joncham@gmail.com>
14578 * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
14580 Code is contributed under MIT/X11 license.
14582 2007-09-14 Zoltan Varga <vargaz@gmail.com>
14584 * mini.c (mini_init): Fix a leak.
14586 * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
14588 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14590 * mini.c: redirect string.InternalAllocStr() to the managed allocator.
14592 2007-09-14 Zoltan Varga <vargaz@gmail.com>
14594 * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
14596 2007-09-13 Zoltan Varga <vargaz@gmail.com>
14598 * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
14601 * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
14603 * mini.c (handle_alloc): Enable managed allocators in AOT code.
14605 * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
14607 * aot-runtime.c (decode_patch_info): Ditto.
14609 2007-09-12 Jonathan Chambers <joncham@gmail.com>
14611 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
14612 static case. Cache delegates in architecture specific code,
14613 based on number of parameters.
14615 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
14616 in architecture specific code, based on number of parameters.
14618 * mini-trampolines.c (mono_delegate_trampoline): Architecture specific
14619 caching happen in architecture specific code now.
14621 Code is contributed under MIT/X11 license.
14623 2007-09-12 Jonathan Chambers <joncham@gmail.com>
14625 * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
14626 mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
14627 mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
14629 Code is contributed under MIT/X11 license.
14631 2007-05-15 Massimiliano Mantione <massi@ximian.com>
14632 * mini.c: (mono_thread_abort) Fixed bug #82416.
14634 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14636 * mini.: hook the new managed GC allocation feature into the JIT.
14638 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14640 * mini.c: implementation for the new runtime tls opcode.
14642 2007-09-11 Martin Baulig <martin@ximian.com>
14645 (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
14646 `mono_method_inflated_offset'.
14648 2007-09-07 Zoltan Varga <vargaz@gmail.com>
14650 * driver.c mini.h mini.c: Add a new devel command line option for injecting
14651 async exceptions into a method.
14653 * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
14654 purpose of testing whenever the unwinder works at every instruction.
14656 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14658 * mini.c: check accessibility of method used in ldftn (fixes
14661 2007-09-04 Zoltan Varga <vargaz@gmail.com>
14663 * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
14665 * inssel.brg: Fix a warning.
14667 2007-09-03 Martin Baulig <martin@ximian.com>
14669 * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
14670 now takes the `main_method' as argument.
14672 2007-09-02 Zoltan Varga <vargaz@gmail.com>
14674 * cpu-sparc.md (endfilter): Add missing src1:i argument.
14676 2007-08-30 Jonathan Chambers <joncham@gmail.com>
14678 * driver.c: include the cil-coff.h header on Windows.
14680 Code is contributed under MIT/X11 license.
14682 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14684 * mini.c, driver.c: don't include the cil-coff.h header.
14686 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14688 * mini.c: flag places that needs fixes fo soft-float support.
14690 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
14692 * mini.h, inssel-float.brg: fix soft-float constant loads on big
14693 endian systems (partially from Dean Jenkins, bug #81924).
14695 2007-08-28 Mark Probst <mark.probst@gmail.com>
14697 * mini.c (check_linkdemand): Remove embedded reference object in
14698 call to LinkDemandSecurityException.
14699 (mono_jit_compile_method_inner): Call LinkDemandSecurityException
14700 with an IntPtr instead of a reference object.
14702 2007-08-28 Zoltan Varga <vargaz@gmail.com>
14704 * mini.c (handle_initobj): Handle alignment properly.
14706 * inssel.brg (mini_emit_memset): Ditto.
14708 * inssel.brg (mini_emit_memcpy): Ditto.
14710 * inssel-sparc.brg: Ditto.
14712 * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
14714 2007-08-26 Zoltan Varga <vargaz@gmail.com>
14716 * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
14717 exceptions raised in unmanaged code. Fixes part of #82594.
14719 2007-08-24 Mark Probst <mark.probst@gmail.com>
14721 * mini.c (mono_method_to_ir), declsec.c
14722 (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
14724 2007-08-22 Martin Baulig <martin@ximian.com>
14727 (MonoDebuggerThreadInfo): New typedef.
14728 (mono_debugger_thread_table): New global variable.
14729 (mono_debugger_thread_created): New public function.
14730 (mono_debugger_thread_cleanup): New public function.
14733 (MonoDebuggerInfo):
14734 - removed `get_current_thread' and `lookup_assembly'.
14735 - removed `data_table'.
14736 - added `thread_table'.
14739 (mono_thread_start_cb): Call mono_debugger_thread_created().
14740 (mono_thread_attach_cb): Likewise.
14741 (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
14742 (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
14745 * driver.c (mono_main): Move mono_debug_init() up, before calling
14746 mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
14748 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14750 * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
14751 together when passing several arguments of type double (gives a small
14752 speedup and saves a few bytes of generated code).
14754 2007-08-20 Jb Evain <jbevain@novell.com>
14756 * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
14758 2007-08-20 Jb Evain <jbevain@novell.com>
14760 * mini.c (mono_method_to_ir): throw MethodAccessException
14761 and FieldAccessException instead of InvalidProgramException.
14763 2007-08-20 Mark Probst <mark.probst@gmail.com>
14765 * mini.c: CoreCLR security checks.
14767 * mini.h: Removed MonoSecurityMode (moved to
14768 metadata/security-manager.h) and mono_security_mode global var
14769 (replaced by set/get functions in security-manager.h).
14771 * driver.c: Added "core-clr-test" security mode for testing. Used
14772 set-function for setting security mode.
14774 2007-08-17 Mark Probst <mark.probst@gmail.com>
14776 * mini.c: MonoJitInfo's are freed hazardously now. Statistics for
14777 the new jit_info_table.
14779 * driver.c: Test code for the new jit_info_table (enabled by the
14780 define MONO_JIT_INFO_TABLE_TEST).
14782 2007-08-14 Zoltan Varga <vargaz@gmail.com>
14784 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
14785 detection of call <REG> instruction sequence. Fixes build on freebsd.
14787 2007-08-13 Zoltan Varga <vargaz@gmail.com>
14789 * mini-exceptions.c: Fix a warning.
14791 2007-08-11 Zoltan Varga <vargaz@gmail.com>
14793 * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
14794 stack overflow handling code on amd64 too.
14796 * mini-exceptions.c (mono_setup_altstack): Make this use
14797 mono_thread_get_stack_bounds ().
14799 * mini-x86.h: Disable sigaltstack on solaris x86.
14801 2007-08-10 Zoltan Varga <vargaz@gmail.com>
14803 * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
14805 2007-08-10 Geoff Norton <gnorton@customerdna.com>
14807 * tramp-x86.c: Remove some unneeded alignment changes on Apple. Fixes #82387.
14809 2007-08-08 Zoltan Varga <vargaz@gmail.com>
14811 * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
14813 * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
14815 2007-08-03 Neale Ferguson <neale@sinenomine.net>
14817 * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
14820 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14822 * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
14823 to be emitted (bug #82281).
14825 2007-08-01 Martin Baulig <martin@ximian.com>
14827 Merged the `debugger-dublin' branch.
14829 * debug-debugger.h (MonoDebuggerInfo):
14830 Removed the `old_*' compatibility entries.
14831 Added `debugger_version' and `data_table'.
14832 Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
14833 Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
14836 (MiniDebugMethodBreakpointInfo): Add `address_list'.
14837 (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
14838 instead of a `gconstpointer'.
14839 (mono_debugger_insert_method_breakpoint): Return a
14840 `MonoDebugMethodAddressList *'.
14842 2007-06-28 Martin Baulig <martin@ximian.com>
14844 * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
14846 2007-08-01 Zoltan Varga <vargaz@gmail.com>
14848 * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using
14849 __builtin_frame_address () since it is broken on older gcc versions.
14851 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14853 * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
14854 on the stack overflow handling and made the managed stack overflows
14855 catchable in most cases using soft guard pages.
14856 * exceptions-x86.c: added code to restore the protection in the soft
14857 guard pages at the end of exception handling.
14859 2007-07-31 Zoltan Varga <vargaz@gmail.com>
14861 * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
14863 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14865 * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
14866 exception handling.
14868 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14870 * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
14871 signal handling support until it has been ported to the new mechanism.
14872 * mini.c: fixed stack overflow detection and use the new
14873 architecture code to handle signals on the altstack.
14875 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14877 * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
14878 stack overflows on the alt stack.
14880 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14882 * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
14883 stack overflows on the alt stack.
14885 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
14887 * exceptions-ppc.c: cleanup preparing for altstack support.
14889 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
14891 * exceptions-arm.c: cleanup preparing for altstack support.
14893 2007-07-27 Mark Probst <mark.probst@gmail.com>
14895 * mini.c (print_jit_stats): Output hazard pointer stats.
14897 2007-07-26 Mark Probst <mark.probst@gmail.com>
14899 * driver.c, mini.c: Replaced security mode flags with a single
14902 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14904 * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
14906 2007-07-25 Mark Probst <mark.probst@gmail.com>
14908 * mini.c, mini.h, driver.c (mono_main): Added command-line flag
14909 (which doesn't do anything yet) for activating Core CLR
14910 (Silverlight) security.
14912 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14914 * mini-codegen.c: work around a possible gcc bug on arm.
14916 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14918 * driver.c, mini-x86.h, mini-amd64.h: print a nice error
14919 message for platforms that don't support AOT compilation.
14921 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
14923 * mini.h, mini.c, driver.c: temporary smcs hack.
14925 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
14927 * mini-arm.h, mini-arm.c: arm EABI fixes.
14929 2007-07-22 Zoltan Varga <vargaz@gmail.com>
14931 * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
14934 * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
14935 trampolines taking a method argument.
14937 * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
14939 * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
14940 * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
14942 * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
14943 JIT compilation throws an exception. Fixes #82050.
14945 2007-07-19 Mark Probst <mark.probst@gmail.com>
14947 * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
14948 with the MONO_EXCEPTION_ defines.
14950 2007-07-17 Zoltan Varga <vargaz@gmail.com>
14952 * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
14955 * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
14956 the cause of an assertion.
14958 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
14960 * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
14963 2007-07-15 Zoltan Varga <vargaz@gmail.com>
14965 * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
14966 assert. Should fix #82103.
14968 2007-07-14 Zoltan Varga <vargaz@gmail.com>
14970 * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
14971 here too. Fixes #82095.
14973 * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
14976 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
14978 * mini-amd64.h: Enable IMT for amd64.
14980 * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
14982 2007-07-12 Zoltan Varga <vargaz@gmail.com>
14984 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
14986 2007-07-12 Mark Probst <mark.probst@gmail.com>
14988 * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
14989 as soon as check_linkdemand sets an exception_type.
14991 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14993 * mini-x86.c: fixed offsets for IMT call sequence.
14994 * mini-x86.h: enable IMT again.
14996 2007-07-11 Zoltan Varga <vargaz@gmail.com>
14998 * trace.c (mono_trace_enter_method): Decode MonoType too.
15000 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
15002 * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
15004 * mini-amd64.c: Add preliminary IMT implementation.
15006 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
15008 * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
15009 understand the new IMT-base interface invocation (thanks to
15010 Daniel Nauck for the report and the remote debugging session).
15012 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15014 * mini-x86.c: size and speed optimizations for the IMT bsearch.
15016 2007-07-11 Zoltan Varga <vargaz@gmail.com>
15018 * Makefile.am (aotcheck): Make this actually use the AOTed code.
15020 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
15022 * mini-trampolines.c: implement AOT IMT support.
15023 * mini-x86.h: enable IMT support for wider testing.
15025 2007-07-10 Zoltan Varga <vargaz@gmail.com>
15027 * inssel.brg (emit_imt_argument): Add aot support here.
15029 * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
15031 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15033 * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
15034 of the IMT implementation, partially from massi, with my
15035 implementation of the bsearch sequence. Disabled by default until
15036 the AOT code is implemented.
15038 2007-07-10 Zoltan Varga <vargaz@gmail.com>
15040 * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
15042 * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
15044 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15046 * inssel.brg, mini.c, mini.h, mini-trampolines.c:
15047 arch-independent IMT JIT code from Massimiliano
15048 Mantione (massi@ximian.com) with small cleanups from me.
15050 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
15052 * Makefile.am: fix svn invocation to get the svn revision to be
15053 independent of the local language (build fix).
15055 2007-07-09 Mark Probst <mark.probst@gmail.com>
15057 * mini.c (inline_method): Reset cfg->exception_type if the
15058 inlining is aborted. Fixes: 82049.
15060 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15062 * mini.c: remove assert from exception handling code when exception_ptr
15065 2007-07-05 Zoltan Varga <vargaz@gmail.com>
15067 * mini.c (mono_codegen): Add an assert.
15069 * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method
15070 enter and leave code.
15071 * mini-amd64.c (mono_arch_emit_prolog): Likewise.
15073 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
15075 * mini-ppc.c: fixed memory corruption for localloc(0)
15078 2007-07-05 Zoltan Varga <vargaz@gmail.com>
15080 * mini.c: Fix warnings.
15082 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15084 * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
15085 to emit better double->int conversions.
15087 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15089 * mini.c: the provided Min/Max optimizations are valid for unisgned
15092 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
15094 * 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
15096 2007-06-28 Miguel de Icaza <miguel@novell.com>
15098 * mini.c (mono_running_on_valgrind): Add support for reporting the
15099 method and its boundaries to valgrind.
15101 2007-06-28 Martin Baulig <martin@ximian.com>
15103 * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
15105 2007-06-25 Zoltan Varga <vargaz@gmail.com>
15107 * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
15109 * generic.2.cs: Add new test case.
15111 2007-06-25 Martin Baulig <martin@ximian.com>
15113 Merged the `debugger-dublin' branch.
15116 (mono_debugger_insert_method_breakpoint): New public method.
15117 (mono_debugger_remove_method_breakpoint): Likewise.
15118 (mono_debugger_check_breakpoints): New static method.
15119 (mono_debug_close_method): Call mono_debugger_check_breakpoints().
15121 * debug-debugger.h (MonoDebuggerInfo):
15122 Renamed (to keep backward compatibility in the vtable):
15123 `insert_breakpoint' -> `old_insert_breakpoint'.
15124 `remove_breakpoint' -> `old_remove_breakpoint'.
15125 `create_string' -> `old_create_string'.
15126 `lookup_class' -> `old_lookup_class'.
15127 `lookup_type' -> removed; changed into a dummy field.
15128 `lookup_assembly' -> `old_lookup_assembly'.
15129 Added (same functionality, but different signature):
15130 `create_string', `lookup_class', `lookup_assembly'
15132 `get_method_addr_or_bpt', `remove_method_breakpoint',
15133 `runtime_class_init'.
15135 * debug-debugger.c: Merged the `debugger-dublin' branch.
15137 2007-06-23 Zoltan Varga <vargaz@gmail.com>
15139 * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
15141 (peephole_pass): Likewise.
15143 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15145 * driver.c: hopefully make setaffinity work also for ancient
15148 2007-06-22 Atsushi Enomoto <atsushi@ximian.com>
15150 * driver.c : win32 build fix.
15152 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15154 * driver.c: check for the MONO_NO_SMP env var and bind to a single
15155 processor if it is set.
15157 2007-06-21 Martin Baulig <martin@ximian.com>
15159 * debug-mini.h: New file.
15162 (mono_debugger_insert_breakpoint_full): Moved here from
15163 ../metadata/mono-debug-debugger.c.
15164 (mono_debugger_remove_breakpoint): Likewise.
15165 (mono_debugger_breakpoint_callback): Likewise.
15167 2007-06-15 Raja R Harinath <rharinath@novell.com>
15169 * jit-icalls.c (mono_helper_compile_generic_method): Update to
15170 changes in MonoGenericClass.
15172 2007-06-14 Zoltan Varga <vargaz@gmail.com>
15174 * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
15176 2007-06-14 Raja R Harinath <rharinath@novell.com>
15178 * jit-icalls.c (mono_helper_compile_generic_method): Update to
15179 removal of MonoGenericMethod.
15181 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15183 * mini-exceptions.c: hooks for the exception events profiling API.
15185 2007-06-14 Randolph Chung <tausq@debian.org>
15187 * Makefile.ma: Add hppa target.
15188 * mini-arch.h: Include mini-hppa.h
15189 * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
15190 mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
15191 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15193 2007-06-14 Randolph Chung <tausq@debian.org>
15195 * inssel.brg: Add rules for "chained" compare-branch operations so that
15196 a single compare op can affect multiple branches. Adjust cost for
15197 OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
15198 * inssel-long32.brg: Update rules to use compare-branch macros. Adjust
15199 cost for some rules so that they can more easily be overridden by
15200 per-arch rules (with fixes from lupus).
15201 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15203 2007-06-13 Randolph Chung <tausq@debian.org>
15205 * mini-ops.h: Reorder branch ops so that they match the order of the
15206 corresponding CEE_* ops. The code expects them this way.
15207 Add new ops for HPPA target.
15208 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15210 2007-06-13 Randolph Chung <tausq@debian.org>
15212 * mini-exceptions.c: Handle cases where the stack grows towards
15214 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15216 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15218 * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
15220 * driver.c: explain where a non-matching corlib is found.
15222 2007-06-13 Mark Probst <mark.probst@gmail.com>
15224 * mini.c (print_jit_stats): Output dynamic code allocation stats.
15226 2007-06-10 Sanghyeon Seo <sanxiyn@gmail.com>
15228 * mini-exceptions.c: Generate a method profile leave event during
15229 an exception to ensure that the profiler gets notified.
15231 2007-06-07 Zoltan Varga <vargaz@gmail.com>
15233 * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir
15236 * cpu-amd64.md: Add long_and/or/xor opcodes.
15238 2007-06-06 Wade Berrier <wberrier@novell.com>
15240 * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
15241 (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction
15242 length of instruction shr_imm (expected 8, got 10)
15244 2007-06-06 Zoltan Varga <vargaz@gmail.com>
15246 * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
15248 2007-06-06 Mark Probst <mark.probst@gmail.com>
15250 * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
15251 MonoInternalHashTable again (fixed bug in the internal hash table
15254 2007-06-06 Mark Probst <mark.probst@gmail.com>
15256 * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
15257 Have to figure out what makes it crash the SWF regression.
15259 2007-06-05 Zoltan Varga <vargaz@gmail.com>
15261 * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
15263 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15265 * mini.c: optimize out the type check when storing null in a
15268 2007-06-04 Mark Probst <mark.probst@gmail.com>
15270 * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
15271 MonoInternalHashTable.
15273 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15275 * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
15276 signed integer methods.
15278 2007-06-02 Zoltan Varga <vargaz@gmail.com>
15280 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case
15281 permanently since the current approach doesn't work.
15283 2007-06-02 Zoltan Varga <vargaz@gmail.com>
15285 * inssel.brg (stmt): Only call delegate->invoke_impl if
15286 MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
15288 2007-06-01 Zoltan Varga <vargaz@gmail.com>
15290 * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
15291 the sreg2==rdx case.
15293 * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
15294 account if it contains a rex prefix.
15295 (peephole_pass): Handle OP_FMOVE as well.
15297 2007-06-01 Zoltan Varga <vargaz@gmail.com>
15299 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
15300 as it causes regressions.
15302 2007-05-31 Zoltan Varga <vargaz@gmail.com>
15304 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
15305 static case as well.
15307 * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
15309 * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
15310 (mono_arch_get_this_arg_from_call): Ditto.
15312 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
15314 * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
15317 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
15318 (mono_arch_get_this_arg_from_call): Ditto.
15320 * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
15322 * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
15323 try to create optimized invoke code and use that for further invocations.
15324 Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
15326 * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
15328 2007-05-29 Rodrigo Kumpera <kumpera@gmail.com>
15330 * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
15331 sealed classes or methods.
15332 *devirtualization.cs: tests for the new optimization
15334 2007-05-29 Zoltan Varga <vargaz@gmail.com>
15336 * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
15337 by the update_volatile () function.
15339 2007-05-27 Zoltan Varga <vargaz@gmail.com>
15341 * driver.c (mono_main): Call g_thread_init () early since newer glib versions
15344 * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
15346 2007-05-24 Jonathan Chambers <joncham@gmail.com>
15348 * mini.c: Add configure checks for header files.
15349 * mini-x86.c: Add configure checks for header files.
15350 * trace.c: Add configure checks for header files.
15351 * aot-runtime.c: Add configure checks for header files.
15352 * aot-compiler.c: Add configure checks for header files.
15353 * driver.c: Add configure checks for header files.
15354 * mini-codegen.c: Add configure checks for header files.
15356 Code is contributed under MIT/X11 license.
15358 2007-05-22 Zoltan Varga <vargaz@gmail.com>
15360 * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
15361 icompare_imm -128 + op_iclt. Fixes #81703.
15363 2007-05-19 Zoltan Varga <vargaz@gmail.com>
15365 * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
15367 2007-05-15 Massimiliano Mantione <massi@ximian.com>
15369 * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
15370 inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
15371 so that all isinst checks now use "interface_bitmap".
15373 2007-05-15 Zoltan Varga <vargaz@gmail.com>
15375 * cpu-amd64.md (jmp): Fix a warning.
15377 * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
15379 * basic.cs: Add new regression test.
15381 * basic.cs: Remove test which is now in basic-long.cs.
15383 * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
15385 * basic-long.cs: Add new test.
15387 2007-05-13 Zoltan Varga <vargaz@gmail.com>
15389 * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
15391 2007-05-12 Zoltan Varga <vargaz@gmail.com>
15393 * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
15395 * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
15398 * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception
15399 throwing code a bit.
15401 * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of
15402 the exception throwing code a bit.
15404 * mini-x86.c (get_call_info): Allocate result from a mempool.
15406 2007-05-11 Zoltan Varga <vargaz@gmail.com>
15408 * aot-compiler.c (find_typespec_for_class): Fix the assert.
15410 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15412 * mini.h (MonoCompile): Add 'token_info_hash' field.
15414 * mini.c: Save token->method associations during compilation so the AOT
15415 compiler can use it.
15417 * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
15418 which reference generic classes and methods.
15420 2007-05-10 Zoltan Varga <vargaz@gmail.com>
15422 * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
15424 * aot-compiler.c (compile_method): Fix a typo in a comment.
15426 * aot-runtime.c (decode_cached_class_info): Skip generic types.
15428 * aot-compiler.c: Add minimal support for AOTing generic code by skipping
15429 everything generic.
15431 * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
15433 2007-05-09 Zoltan Varga <vargaz@gmail.com>
15435 * mini.h (MonoCompile): Add 'args' field.
15437 * mini.c (mono_compile_create_vars): Store variables representing the arguments
15440 * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
15442 2007-05-08 Zoltan Varga <vargaz@gmail.com>
15444 * mini.c (mono_compile_get_interface_var): Remove this unused function.
15446 * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
15448 * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
15449 opcodes for some opcodes.
15451 * mini.h *.brg *.c: Use the new opcodes.
15453 2007-05-08 Massimiliano Mantione <massi@ximian.com>
15455 * mini.h: Bumped aot revision.
15457 * inssel.brg: modified code generation of type checks for interfaces
15458 to use the new "MonoClass.interface_bitmap" instead of the old
15459 "MonoClass.interface_offsets".
15461 2007-04-30 Zoltan Varga <vargaz@gmail.com>
15463 * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
15465 2007-04-29 Zoltan Varga <vargaz@gmail.com>
15467 * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
15470 2007-04-27 Neale Ferguson <neale@sinenomine.net>
15472 * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
15474 2007-04-27 Wade Berrier <wberrier@novell.com>
15476 * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in
15477 mini.h) to fix build.
15479 2007-04-26 Zoltan Varga <vargaz@gmail.com>
15481 * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
15483 * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
15484 causes the corlib unit tests to fail.
15486 2007-04-25 Zoltan Varga <vargaz@gmail.com>
15488 * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
15490 * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
15492 * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional
15493 opcodes to the comparison relations.
15495 * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional
15496 opcodes to their types.
15498 * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
15500 * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache
15501 it in cfg->arch.cinfo.
15503 * local-propagation.c (mono_local_cprop_bb): Fix a warning.
15505 * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in
15506 cfg->cil_offset_to_bb.
15508 2007-04-24 Zoltan Varga <vargaz@gmail.com>
15510 * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
15511 created becase of initlocals.
15513 2007-04-23 Zoltan Varga <vargaz@gmail.com>
15515 * mini-alpha.c cpu-alpha.md: More alpha port work from
15516 Sergey Tikhonov <tsv@solvo.ru>.
15518 2007-04-21 Andreas Faerber <andreas.faerber@web.de>
15520 * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
15522 2007-04-19 Zoltan Varga <vargaz@gmail.com>
15524 * cpu-s390.md (break): Correct the length of break instruction.
15526 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
15528 * mini.c: fix a couple of soft-float issues and comments.
15530 2007-04-15 Miguel de Icaza <miguel@novell.com>
15532 * trace.c (is_filenamechar): - is also a filename char.
15534 2007-04-15 Neale Ferguson <neale@sinenomine.net>
15536 * mini-s390.c: Correct checking for enum type in return value processing.
15538 2007-04-14 Raja R Harinath <rharinath@novell.com>
15540 * Makefile.am (BUILT_SOURCES): Add 'version.h'.
15541 (version.h): Makefile is in the build directory.
15543 2007-04-06 Andreas Faerber <andreas.faerber@web.de>
15545 * mini-amd64.h: fix for assertion failure on Solaris/amd64
15547 2007-04-11 Martin Baulig <martin@ximian.com>
15549 * mini.c (can_access_member): Fix handling of generic classes;
15552 2007-04-10 Zoltan Varga <vargaz@gmail.com>
15554 * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
15556 2007-04-05 Zoltan Varga <vargaz@gmail.com>
15558 * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
15560 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15562 * mini-codegen.c: make sure the right spill amount is
15563 used for fp or integer registers (fixes the float_sub_spill() on ppc).
15565 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
15567 * mini-ppc.c: fixes for the fp_branch_nan test.
15569 2007-03-23 Zoltan Varga <vargaz@gmail.com>
15571 * basic.cs: Comment out new test which still fails on ia64.
15573 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15575 * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
15577 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15579 * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
15581 2007-03-22 Zoltan Varga <vargaz@gmail.com>
15583 * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
15584 on 64 bit machines. Fixes part of #80738.
15586 * basic.cs: Add regression test.
15588 2007-03-17 Zoltan Varga <vargaz@gmail.com>
15590 * inssel.brg basic.cs: Revert previous change to fix build.
15592 * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
15595 * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
15597 * basic.cs: Add new regression test.
15599 2007-03-17 Zoltan Varga <vargaz@gmail.com>
15601 * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
15604 2007-03-16 Neale Ferguson <neale@sinenomine.net>
15606 * cpu-s390x.md: Correct length of break instruction.
15608 2007-03-16 Neale Ferguson <neale@sinenomine.net>
15610 * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
15611 * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
15613 2007-03-15 Jonathan Chambers <joncham@gmail.com>
15615 * *.c: Begin WIN64 port.
15616 * mini.c: Use correct register in profiler.
15617 * mini-amd64.c: No inline assembly on Win64.
15618 * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
15619 Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
15620 * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
15621 is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
15622 mono_arch_ip_from_context for Win64.
15624 Contributed under MIT/X11 license.
15626 2007-03-15 Zoltan Varga <vargaz@gmail.com>
15628 * exceptions-amd64.c (seh_handler): Ditto.
15630 * exceptions-x86.c (seh_handler): Fix a memory leak.
15632 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
15634 * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
15635 mini-s390x.c: fixed peephole optimizations to deal
15636 correctly with 1 and 2 byte reload avoidance.
15638 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15640 * cpu-s390.md, cpu-s390x.md: update localloc length.
15642 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15644 * cpu-g4.md: added missing descriptions.
15646 2007-03-14 Miguel de Icaza <miguel@novell.com>
15648 * Makefile.am: Add support so the tail tests are not executed on
15649 PowerPC as that is a known limitation of the PowerPC port.
15651 2007-03-13 Jonathan Chambers <joncham@gmail.com>
15653 * runmdesc.bat: Move to msvc directory.
15655 2007-03-13 Jonathan Chambers <joncham@gmail.com>
15657 * runmdesc.bat: Run executable that was produced by the current
15658 target and sent via an argument.
15660 2007-03-11 Zoltan Varga <vargaz@gmail.com>
15662 * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
15665 * generics.2.cs: Add regression test.
15667 2007-03-09 Wade berrier <wberrier@novell.com>
15669 * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
15671 2007-03-09 Zoltan Varga <vargaz@gmail.com>
15673 * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
15674 AOT code depends on this.
15676 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
15678 * mini.c: more precise tracking of types in the eval stack
15679 (part of fix for bug #81044).
15681 2007-03-07 Zoltan Varga <vargaz@gmail.com>
15683 * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
15685 * aot-compiler.c (encode_patch): Remove an obsolete comment.
15687 2007-03-06 Zoltan Varga <vargaz@gmail.com>
15689 * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
15691 * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
15693 2007-02-22 Zoltan Varga <vargaz@gmail.com>
15695 * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
15696 a pointer on 64 bit systems. Fixes #80190.
15698 * iltests.il: Add new regression test.
15700 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15702 * mini.c: inline a constant for Environment.IsRunningOnWindows.
15704 2007-02-19 Geoff Norton <gnorton@customerdna.com>
15706 * trace.c: Remove an erroneous alignemnt check when tracing.
15707 Fixes --trace on OSX86.
15709 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
15711 * mini-$(arch).h: initialize SP in context for all the archs.
15713 2007-02-14 Sebastien Pouliot <sebastien@ximian.com>
15715 * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
15716 regressions in the thread tests.
15718 2007-02-14 Zoltan Varga <vargaz@gmail.com>
15720 * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
15721 - fixed implementation of LOCALLOC opcode
15722 - implemented non-un compare for floats
15724 - implementation of FDIV and CKFINITE opcodes
15725 - fixes for latest mono updates
15726 - additional arch opcodes
15728 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15730 * Makefile.am: simplify and merge rules for cross-compilation.
15732 2007-02-07 Massimiliano Mantione <massi@ximian.com>
15734 * local-propagation.c: Actually *apply* the fix for bug 80591...
15736 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15738 * mini-exceptions.c: backuot part of the last change
15739 (fixes cas tests on amd64 related to GetExecutingAssembly ()).
15741 2007-02-06 Massimiliano Mantione <massi@ximian.com>
15742 * inssel.brg: Fix bug 59286.
15745 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
15747 * mini-exceptions.c: patch from Zoltan to correctly check for
15748 stack boundaries (using the stack register, not the frame register),
15749 fixes bugs #80724, #79717.
15751 2007-02-03 Zoltan Varga <vargaz@gmail.com>
15753 * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
15754 OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
15756 * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
15757 presence of frame pointer elimination.
15759 2007-02-01 Geoff Norton <gnorton@customerdna.com>
15761 * mini-x86.h: NetBSD UCONTEX_REG defines.
15763 2007-02-01 Zoltan Varga <vargaz@gmail.com>
15765 * inssel-amd64.brg: Fix amd64 build.
15767 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
15769 * mini.h: remove extern to workaround what looks likes gcc bug 26905
15772 2007-01-31 Zoltan Varga <vargaz@gmail.com>
15774 * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
15777 * mini-<ARCH>.c: Use mono_is_regsize_var ().
15779 2007-01-30 Mark Mason <mason@broadcom.com>
15781 * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
15782 * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
15783 * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
15784 beginning support for CEE_JMP [not quite working yet]
15785 * tramp-mips.c: LMF handling now works
15787 2007-01-30 Zoltan Varga <vargaz@gmail.com>
15789 * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
15791 * mini.h (NULLIFY_INS): New macro.
15793 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
15795 * mini.c: statistical profiler fix for windows, patch
15796 from Tor Lillqvist (tml@novell.com).
15798 2007-01-30 Massimiliano Mantione <massi@ximian.com>
15799 * local-propagation.c: Fix bug 80591.
15801 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
15803 * Makefile.am: put back the --export-dynamic option as with
15804 the previous gmodule flags (thanks to Robert Jordan).
15806 2007-01-28 Zoltan Varga <vargaz@gmail.com>
15808 * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
15810 mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
15811 simplify and speed up the local register allocator. Also rename some fields
15812 like iassign->vassign.
15814 * regalloc.c: Remove some functions which are no longer used since their
15815 inlined version is in mini-codegen.c.
15817 * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
15819 * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
15821 2007-01-27 Zoltan Varga <vargaz@gmail.com>
15823 * mini-amd64.c (peephole_pass): Remove optimizations which omit a
15824 narrowing. Fixes #80622.
15826 * iltests.il: Add new regresssion test.
15828 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15830 * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
15831 debug-debugger.c, debug-debugger.h: warning fixes.
15832 * driver.c: updated copyright year and made it fit in one line.
15834 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
15836 * aot-runtime.c: updated to use mono-dl instead of gmodule.
15838 2007-01-25 Zoltan Varga <vargaz@gmail.com>
15840 * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
15842 * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
15844 * iltests.il: Add new test for bug #80507.
15846 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15848 * mini-arm.h: use soft-float also on vfp for now.
15850 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15852 * mini.c: fix some more soft-float issues.
15854 2007-01-24 Zoltan Varga <vargaz@gmail.com>
15856 * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
15858 2007-01-24 Massimiliano Mantione <massi@ximian.com>
15859 * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
15860 mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
15861 MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
15863 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
15865 * mini-arm.c: typo fix.
15867 2007-01-23 Neale Ferguson <neale@sinenomine.net>
15869 * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
15871 2007-01-21 Zoltan Varga <vargaz@gmail.com>
15873 * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
15874 Share stack slots for scalar types. Avoid expensive g_list_free () calls.
15876 * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
15878 * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto.
15880 * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
15882 * inssel.brg: Fix a warning.
15884 * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
15886 * abcremoval.c ssa.c ssapre.c: Update after this change.
15888 * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
15890 * dominators.c (df_set): Use mono_bitset_union_fast.
15892 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
15894 * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
15895 mini-codegen.c: reduce relocations and memory usage for the cpu
15898 2007-01-20 Zoltan Varga <vargaz@gmail.com>
15900 * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
15902 * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
15903 to reduce their size.
15905 2007-01-19 Mark Mason <mason@broadcom.com>
15907 * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
15908 * mini-mips.c: more configuration macros, support long conditional branches, additional
15909 asserts, fix epilog instrumentation.
15910 * mini-mips.h: use standard stack walk
15911 * cpu-mips.md: increase size of div, rem and conditional branches
15913 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
15915 * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
15918 2007-01-19 Zoltan Varga <vargaz@gmail.com>
15920 * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
15921 (compile_method): Ditto.
15923 * aot-runtime.c (decode_klass_info): Ditto.
15925 * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
15926 needed by the code generated by inssel.brg. Also fix a warning.
15928 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
15930 * mini.c: deal with enums that become genericinsts by
15931 being nested in a generic class (bug #79956).
15933 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
15935 * mini.c: match the generic definition to check for
15936 private access with generic types (bug #78431).
15938 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
15940 * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
15941 to make life easier for people cross-compiling that insist on not
15944 2007-01-17 Mark Mason <mason@broadcom.com>
15946 * inssel-long.brg: patch to deal with mips missing flags
15947 * inssel-long32-mips.brg: implement overflow checks
15948 * insset-mips.brg: implement overflow checks
15949 * mini-mips.h: implement conditional exception handling
15950 * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
15951 Remove unused code, minor cleanups.
15952 * exceptions-mips.c: minor cleanups
15953 * mini-ops.h: add mips conditional exception ops
15954 * cpu-mips.md: add mips conditional exception ops
15957 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
15959 * inssel.brg: patch from Mark Mason <mason@broadcom.com>
15960 to deal with mips missing of flags.
15962 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
15964 * exceptions-ppc.c: execute fault handlers.
15966 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
15968 * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
15970 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15972 * mini.c: handle also floating point values in initialize_array.
15974 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15976 * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
15977 array initialization and make it conditional on the intrins option.
15979 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15981 * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
15982 relocations and put the patch info names close to the enum definition.
15984 2007-01-15 Mark Mason <mason@broadcom.com>
15986 * basic.cs, exceptions.cs: break up large tests to increase debugability.
15988 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
15990 * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
15992 2007-01-12 Raja R Harinath <rharinath@novell.com>
15994 * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
15996 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15998 * Makefile.am: distribute the mips sources.
16000 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
16002 * mini-codegen.h: handle bug #80489 here, by excluding ecx
16005 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
16007 * cpu-x86.md: back out for now as this triggers other regressions.
16009 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16011 * cpu-x86.md: force src1 and dest regpair for long shift instructions
16012 to eax:edx, so ecx can't get allocated to them (bug #80489).
16014 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
16016 * mini.c, mini-exceptions.c: enabled running fault handlers
16019 2007-01-03 Miguel de Icaza <miguel@novell.com>
16021 * driver.c: If nothing fail, do not use the string "failed",
16022 because it makes it very annoying to view test result logs on the
16025 2006-12-30 Miguel de Icaza <miguel@novell.com>
16027 * debug-debugger.c (mono_debugger_main): Rename "main" to
16028 "main_method" to prevent a warning.
16030 Remove a warning for unused field.
16032 2006-12-28 Martin Baulig <martin@ximian.com>
16035 (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
16037 2006-12-22 Martin Baulig <martin@ximian.com>
16039 * mdb-debug-info32.s, mdb-debug-info64.s: New files.
16040 Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
16041 seperate `.mdb_debug_info' section, so we can access it from the
16042 debugger even if the binary is stripped.
16044 * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
16045 from the `.mdb_debug_info' here to prevent the linker from
16046 removing that section.
16048 * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
16049 mdb-debug-info64.s.
16051 2006-12-19 Robert Jordan <robertj@gmx.net>
16053 * mini-x86: enable the code to return small structures in
16054 registers for FreeBSD as well. Fixes bug #80278.
16055 * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
16057 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16059 * mini-x86.c: align the stack when calling the profiler
16060 function instrumenting the prolog (on OSX).
16062 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16064 * mini.c: emit a break opcode where Debugger.Break () is called.
16066 2006-12-13 Miguel de Icaza <miguel@novell.com>
16068 * mini.c (mono_method_to_ir): Provide useful information on this
16069 assert, to prevent others from debugging like I did.
16071 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16073 * mini.c: enable code which was incorrectly commented
16076 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
16078 * mini-x86.c: enable on OSX, too, the code to return small
16079 structures in registers.
16081 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
16083 * mini-x86.c: remove the use of the dynamic code manager here, too.
16085 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16087 * mini.h, debug-debugger.c, tramp-*.c: fixed
16088 mono_debugger_create_notification_function() to use
16089 mono_global_codeman_reserve () instead of a dynamic code manager.
16091 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16093 * mini.c, jit-icalls.h, jit-icalls.c: remove the
16094 ves_array_element_address() jit icall and use a generated
16095 managed method instead (which is about 4 times faster for a rank 3
16098 2006-11-29 Mark Mason <mason@broadcom.com>
16100 * basic-calls.cs: additional tests for passing
16101 structures as function arguments.
16103 2006-11-29 Mark Mason <mason@broadcom.com>
16105 * mini-mips.h: disable custom exception handling
16106 * mini-mips.c: throw/rethrow should use jalr to call
16107 exception stubs. Fixed bug with passing structures
16108 by value. More support for tracing floating point
16111 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16113 * mini.c: fixed typo in the soft-float ldind.r4 handling
16116 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16118 * mini.c, mini.h, driver.c: added --runtime command line
16119 option to select a different runtime than the autodetected one.
16120 * jit.h: added API for embedders to initialize with a specific
16123 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
16125 * mini.c: handle also boxing of r4 values (bug #80024).
16127 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16129 * mini-ppc.c: force indirect calls until we reserve
16130 enough address space for all the generated code.
16132 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
16134 * exceptions-arm.c: workaround bugs in the libc definition
16135 of struct ucontext.
16137 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16139 * inssel.brg: fixes from me and Mark Mason.
16141 2006-11-23 Dick Porter <dick@ximian.com>
16143 * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
16144 semaphore display now we've fixed the initial value
16146 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16148 * inssel.brg: partially revert the last change to fix the build.
16150 2006-11-21 Mark Mason <mason@broadcom.com>
16152 * inssel.brg: Add and use compare-and-branch macros to support
16153 architectures that do not have condition code registers (ie. MIPS).
16154 * *-mips.{c,brg,md}: Fix copyright statements
16156 2006-11-20 Mark Mason <mason@broadcom.com>
16158 * Makefile.am: remove mini-codegen.c from list of MIPS sources
16159 * mini.c: Allow GET_CONTEXT to be specified by the arch port
16160 * mini.h: Added declaration for mono_print_ins()
16161 * mini-codegen.c: added ins_spec initializer for MIPS
16162 * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
16163 vreg to be virtual and hreg to be non-virtual.
16164 * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
16165 is not yet working/implemented correctly.
16166 * mini-codegen.c (print_ins): rename to mono_print_ins(), make
16167 non-static, fixup calls to print_ins() from other parts in the file.
16169 2006-11-20 Mark Mason <mason@broadcom.com>
16171 * basic-calls.cs: added tests for passing structures as arguments
16174 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16176 * inssel-long32.brg: optimize signed division by power of two.
16178 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16180 * mini-arm.c: added support for interworking with thumb code
16181 (mono must be still be built using the ARM instruction encoding).
16183 2006-11-19 Miguel de Icaza <miguel@novell.com>
16185 * mini.c (type_from_op): Separate the conditions for OP_EQ as the
16186 verifier has different rules for it. Fixes a few verifier issues
16189 * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
16190 at the end, so people know what happened.
16192 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16194 * brach-opts.c: in optimize_exception_target() make sure we
16195 are in a catch clause (fixes bug #79871).
16197 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16199 * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
16200 more soft-float support fixes.
16202 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
16204 * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
16205 that are passed half on the stack and half in registers.
16207 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16209 * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
16210 more mips integration work from Mark E Mason
16211 <mark.e.mason@broadcom.com>.
16213 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16215 * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
16216 cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
16217 tramp-mips.c: added sources for the mips port, not
16218 integrated in the build yet. Contributed by
16219 Mark E Mason <mark.e.mason@broadcom.com>.
16221 2006-11-14 Neale Ferguson <neale@sinenomine.net>
16223 * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
16225 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16227 * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
16228 put the soft-float rules in its own file since it seems to
16229 break s390 compilation.
16231 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16233 * mini-arm.c: fixed wrnings.
16235 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
16237 * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
16238 inssel-arm.brg: ARM support for soft-float.
16240 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
16242 * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
16243 loads and stores of 32 bit fp values.
16245 2006-11-10 Zoltan Varga <vargaz@gmail.com>
16247 * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
16249 * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
16250 works. Fixes #79852 and #79463.
16252 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16254 * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
16255 more soft-float support WIP and fixes.
16257 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
16259 * mini-arm.c: some VFP updates.
16261 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16263 * mini-exceptions.c: 0 is a valid local var offset in some
16264 architectures, don't assert (bug #78508).
16266 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
16268 * exceptions-arm.c: fixed off by one error in stack walk code.
16270 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16272 * mini.h, mini.c: more precise tracking of type load exceptions.
16274 2006-11-03 Robert Jordan <robertj@gmx.net>
16276 * Makefile.am: [WIN32] Add monow.exe target.
16277 * driver.c: [WIN32] Don't detach the console when debugging.
16280 2006-10-30 Miguel de Icaza <miguel@novell.com>
16282 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
16284 2006-10-23 Zoltan Varga <vargaz@gmail.com>
16286 * aot-compiler.c (emit_method_info): Add a case missed earlier.
16288 * driver.c (mini_regression): Fix --regression with AOT.
16290 * aot-compiler.c (emit_method_info): Fix AOT on amd64.
16292 2006-10-17 Zoltan Varga <vargaz@gmail.com>
16294 * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
16296 * mini-sparc.h: Don't use sigaction on sparc/linux.
16298 * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
16300 * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
16302 * mini-exceptions.c: Add proper include files for getpid ().
16304 2006-10-16 Zoltan Varga <vargaz@gmail.com>
16306 * aot-runtime.c (mono_aot_get_method): Change this to return the native code
16307 address instead of a MonoJitInfo* to avoid decoding the exception info for the
16310 * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
16311 name cache to reduce its size.
16313 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
16315 2006-10-15 Zoltan Varga <vargaz@gmail.com>
16317 * mini-x86.c: Save/restore the current LMF structure more efficiently using
16318 the mono_lmf TLS variable.
16320 * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in
16321 trampoline lmf frames.
16323 * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
16325 2006-10-14 Zoltan Varga <vargaz@gmail.com>
16327 * mini-amd64.c: Save/restore the current LMF structure more efficiently using
16328 the mono_lmf TLS variable.
16330 * mini-exceptions.c: Access the LMF structure through accessors.
16332 * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS
16333 variable instead of in jit_tls->lmf.
16335 * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
16337 * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in
16338 trampoline lmf frames.
16340 * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
16342 2006-10-12 Zoltan Varga <vargaz@gmail.com>
16344 * mini.c trace.c mini-x86.c: Revert these too.
16346 * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
16349 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
16351 * genmdesc.c: removed now dead code.
16353 2006-10-09 Robert Jordan <robertj@gmx.net>
16355 * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
16357 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
16359 * mini.h: do not leave gaps in the opcode values.
16361 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
16363 * jit-icalls.h: flag functions as internal here, too.
16365 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
16367 * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
16368 functions with the internal attribute.
16370 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
16372 * aot-compiler.c: fclose the file descriptor in the profile read loop.
16374 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16376 * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
16379 2006-10-05 Zoltan Varga <vargaz@gmail.com>
16381 * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
16382 tail calls as on other platforms.
16384 * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
16386 * iltests.il: Add a few tailcall tests.
16388 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16390 * driver.c: fix loop for old compilers (bug #79521).
16392 2006-10-02 Zoltan Varga <vargaz@gmail.com>
16394 * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
16396 * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
16398 * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
16399 metadata without any code.
16401 * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
16402 more precise debugging information using gdb.
16404 2006-09-30 Zoltan Varga <vargaz@gmail.com>
16406 * inssel-ia64.brg: Make the helper methods static.
16408 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
16410 * inssel-x86.brg: make the helper methods static.
16412 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
16414 * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
16416 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
16418 * mini.c: updates for monoburg changes.
16419 * inssel.brg: make a few helper functions static as they should.
16421 2006-09-27 Zoltan Varga <vargaz@gmail.com>
16423 * Makefile.am: Move mini-codegen.c to common_sources.
16425 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16427 * mini.h: instroduce inst_call in MonoInst for use in OUTARG
16429 * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
16430 mini-ppc.h: port to use the common local register allocator.
16432 2006-09-26 Zoltan Varga <vargaz@gmail.com>
16434 * mini.h: Remove the comment too then.
16436 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
16438 * mini.h: put back backend.data which is to be used shortly and
16439 doesn't increase the size of MonoInst. If any 64 bit arch aligned
16440 pointers on 4 byte boundaries it'd have much bigger issues running
16441 and you can ifdef it out anyway.
16443 2006-09-26 Zoltan Varga <vargaz@gmail.com>
16445 * mini.h (MonoInst): Remove backend.data field since it is unused and increases
16446 MonoInst size by 4 bytes on 64 bit machines.
16448 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16450 * *.{c,h,brg}: long due removal of the unused field in MonoInst and
16451 replacement with more meaningful field names. Arch maintainers, please
16452 check the assigned names are good enough for your arch.
16454 2006-09-26 Zoltan Varga <vargaz@gmail.com>
16456 * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the
16457 OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
16459 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16461 * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
16462 relocations and memory requirements, put the optimization flags
16463 definitions in their own file.
16465 2006-09-24 Zoltan Varga <vargaz@gmail.com>
16467 * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
16469 * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
16471 2006-09-22 Zoltan Varga <vargaz@gmail.com>
16473 * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
16475 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
16477 * inssel.brg: use the correct function to get the size of an item
16478 in an array, given an element class.
16479 * aot-compiler.c: do not access class->class_size directly.
16481 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16483 * mini.h, debug-mini.c: added a debugging function to print
16484 info about local variables and arguments in a jitted method.
16486 2006-09-20 Zoltan Varga <vargaz@gmail.com>
16488 * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
16490 * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
16492 2006-09-19 Zoltan Varga <vargaz@gmail.com>
16494 * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
16495 inner and outer loops when passing vtypes.
16497 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
16499 * mini-ppc.c: take into account the cpu errata for cache flushing
16500 which caused some random errors (bug #79381).
16502 2006-09-19 Zoltan Varga <vargaz@gmail.com>
16504 * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to
16505 mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
16507 2006-09-17 Zoltan Varga <vargaz@gmail.com>
16509 * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
16512 * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
16513 freebsd ports tree.
16515 * mini-amd64.c (emit_call): Avoid near calls on freebsd.
16516 (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
16518 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
16521 2006-09-13 Zoltan Varga <vargaz@gmail.com>
16523 * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
16525 2006-09-12 Zoltan Varga <vargaz@gmail.com>
16527 * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this
16528 macro does not have to be changed during debugging.
16530 * 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>.
16532 * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
16534 * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
16536 * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if
16537 MONO_ARCH_NO_EMULATE_MUL is defined.
16539 * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
16541 * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
16543 * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
16545 * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
16547 2006-09-11 Zoltan Varga <vargaz@gmail.com>
16549 * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
16550 stuff to mini-exceptions.c where it is used.
16552 * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
16553 setup code, the real one is in mini-exceptions.c.
16555 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
16556 layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
16557 some changes from the freebsd ports tree.
16559 * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
16562 * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
16564 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
16566 * mini.c: on Linux, check for /proc to be mounted
16567 (bug# 79351, novell bug#201204).
16569 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
16571 * mini.c: handle cases where pthread_attr_getstack() behaves
16572 incorrectly (bug #78096).
16574 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
16576 * mini-arm.c: support larger stack frames (bug #79272).
16578 2006-09-08 Zoltan Varga <vargaz@gmail.com>
16580 * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
16582 * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef
16585 * aot-runtime.c (mono_aot_get_class_from_name): New function used by
16586 mono_class_from_name () to find a class from its name.
16588 * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
16590 2006-09-07 Zoltan Varga <vargaz@gmail.com>
16592 * mini-amd64.c (emit_call): Avoid strstr () call if possible.
16594 2006-09-05 Kornel Pal <kornelpal@gmail.com>
16596 * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
16598 2006-09-04 Zoltan Varga <vargaz@gmail.com>
16600 * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
16601 callinfo->trampoline.
16603 * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
16605 (mono_arch_patch_code): Add some debug code to help track down similar failures in the
16608 2006-09-03 Zoltan Varga <vargaz@gmail.com>
16610 * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
16612 2006-09-02 Zoltan Varga <vargaz@gmail.com>
16614 * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
16615 stats.method_trampolines, it is already done by the generic trampoline code.
16617 * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
16619 2006-09-01 Zoltan Varga <vargaz@gmail.com>
16621 * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
16623 * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
16625 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
16627 * mini.c (print_jit_stats): Print mscorlib mempool size too.
16629 * mini.c (print_jit_stats): Print new stats.
16631 * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
16633 2006-08-31 Zoltan Varga <vargaz@gmail.com>
16635 * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
16636 Address on two dimensional arrays. Fixes #78729.
16638 * mini.h (MonoCompile): Add a 'skip_visibility' field.
16640 * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
16643 * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
16645 * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
16648 * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
16650 (mini_get_ldelema_ins): Ditto.
16652 2006-08-30 Zoltan Varga <vargaz@gmail.com>
16654 * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
16655 (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation.
16658 2006-08-29 Neale Ferguson <neale@sinenomine.net>
16660 * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
16661 mono_arch_get_patch_offset as a dummy entry point to allow successful link.
16663 * exceptions-s390x.c: Cosmetic change.
16665 * tramp-s390.c: Fix warning.
16667 * cpu-s390.md: Correct length of mul_imm.
16669 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16671 * aot-compiler.c: added binary writer with ELF backend
16672 implementation (only on Linux/x86 for now).
16674 2006-08-18 Zoltan Varga <vargaz@gmail.com>
16676 * Makefile.am: Don't run net 2.0 AOT tests.
16678 * aot-compiler.c (compile_method): Skip methods with tail calls as well.
16679 (mono_compile_assembly): Skip net 2.0 assemblies as well.
16681 * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
16683 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16685 * aot-compiler.c: simplified and refactored the asm-writing code
16686 to allow different backends.
16688 2006-08-18 Zoltan Varga <vargaz@gmail.com>
16690 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
16692 * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a
16693 little. Share patches of type TYPE_FROM_HANDLE as well.
16695 * mini.c (mono_patch_info_equal): New helper function.
16696 (mono_patch_info_hash): Ditto.
16698 * aot-compiler.c (emit_method_code): Fix s390 build.
16700 * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
16701 is not handled because it is stored as a flag and not as a type ctor. Fixes
16704 2006-08-17 Zoltan Varga <vargaz@gmail.com>
16706 * aot-compiler.c: Fix computation of GOT slot statistics.
16708 * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
16709 Also remove support for not PIC AOT.
16711 * mini.h: Bump AOT file format version.
16713 * objects.cs: Add a test for #78990.
16715 * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
16716 (peter.dettman@iinet.net.au). Fixes #79087.
16718 * basic-long.cs: Add a test for the above.
16720 2006-08-16 Zoltan Varga <vargaz@gmail.com>
16722 * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
16724 * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
16727 2006-08-15 Zoltan Varga <vargaz@gmail.com>
16729 * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
16732 2006-08-10 Jonathan Chambers <joncham@gmail.com>
16734 * mini.c: Don't verify COM proxy invoke calls
16737 2006-08-10 Dick Porter <dick@ximian.com>
16739 * wapihandles.c (mini_wapi_seminfo): More info, to help track down
16740 which process is holding semaphores locked.
16742 2006-08-08 Zoltan Varga <vargaz@gmail.com>
16744 * mini-ia64.c mini-amd64.c: Fix #79027.
16746 * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
16748 * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
16750 * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
16751 implicit arguments in a vararg call. Fixes #79027.
16753 2006-08-07 Zoltan Varga <vargaz@freemail.hu>
16755 * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
16756 (mono_get_array_new_va_signature): Ditto.
16758 2006-08-05 Zoltan Varga <vargaz@gmail.com>
16760 * aot-runtime.c: Call init_plt lazily.
16762 * inssel-long.brg: Fix unsigned long->int conversion.
16764 * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
16766 * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
16767 that most data is now in the .rss/.data section.
16769 2006-08-04 Zoltan Varga <vargaz@gmail.com>
16771 * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.
16773 * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
16775 * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
16777 * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
16779 * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
16780 virtual call. Fixes #79010.
16782 * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method
16783 and use the result as the this argument in the real call.
16785 * generics.2.cs: Add a new test for #79010.
16787 2006-08-03 Zoltan Varga <vargaz@gmail.com>
16789 * mini-x86.c: Fix a warning.
16791 * aot-compiler.c: Add a bunch of statistics.
16793 * mini.c (inline_method): Disable inlining in out-of-line bblocks.
16795 2006-08-02 Zoltan Varga <vargaz@gmail.com>
16797 * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
16799 2006-08-01 Zoltan Varga <vargaz@gmail.com>
16801 * 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>.
16803 2006-07-13 Miguel de Icaza <miguel@novell.com>
16805 * mini.c (mono_method_to_ir): Obtain the original method in the
16806 CIL stream and use this to perform validation.
16810 2006-07-19 Zoltan Varga <vargaz@gmail.com>
16812 * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
16813 (mono_arch_call_opcode): Ditto.
16815 * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
16818 * mini.c (mono_patch_info_dup_mp): New helper function.
16820 * aot-compiler.c (compile_method): Fix some of the memory allocated during
16821 compilation. Fixes #78827.
16823 2006-07-18 Kornel Pal <kornelpal@gmail.com>
16825 * declsec.c: Use original security informations for
16826 MONO_WRAPPER_MANAGED_TO_MANAGED.
16828 2006-07-15 Jonathan Chambers <joncham@gmail.com>
16830 * mini.c: Allow Com Interop methods/classes and
16831 don't verify COM wrapper calls
16834 2006-07-13 Zoltan Varga <vargaz@gmail.com>
16836 * inssel-long32.brg: Fix long->i4 checked conversion.
16838 * exceptions.cs: Add a test for the above.
16840 2006-07-08 Zoltan Varga <vargaz@gmail.com>
16842 * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
16844 * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown
16847 * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
16850 2006-07-03 Zoltan Varga <vargaz@gmail.com>
16852 * mini.c: Fix solaris/x86 exception handling.
16854 * Makefile.am: Get rid of $(ICU_LIBS).
16856 2006-07-02 Zoltan Varga <vargaz@gmail.com>
16858 * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
16859 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
16860 (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
16862 * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
16864 * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
16865 this function causes a SIGSEGV.
16867 2006-06-22 Zoltan Varga <vargaz@gmail.com>
16869 * mini.c: Remove unused solaris/x86 includes.
16871 2006-06-21 Zoltan Varga <vargaz@gmail.com>
16873 * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
16875 2006-06-20 Jb Evain <jbevain@gmail.com>
16877 * cpu-g4.md: fix max length of start_handler instruction.
16879 2006-06-20 Massimiliano Mantione <massi@ximian.com>
16880 * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
16882 2006-06-16 Massimiliano Mantione <massi@ximian.com>
16883 * ssa.c: Fixed bug 78653 for SSA based deadce.
16884 * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
16885 MonoInst.flags, used in SSA based deadce.
16886 * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
16887 * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
16889 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16891 * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
16892 it can end up using non executable memory on ppc64 systems
16893 running ppc32 userspace (fix from Johannes Berg).
16895 2006-06-14 Dick Porter <dick@ximian.com>
16897 * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
16900 2006-06-13 Massimiliano Mantione <massi@ximian.com>
16901 * mini.c: Made so that inline is locally disabled if it would
16902 trigger a .cctor, because too many apps depend on this behavior
16903 (which seems to be also the one of the MS CLR).
16905 2006-06-13 Zoltan Varga <vargaz@gmail.com>
16907 * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
16908 No idea why this worked before.
16910 * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
16911 which branch to outer exception clauses since they could skip the
16912 inner finally clauses. Fixes #78633.
16914 * exceptions.cs: Add a test for the above.
16916 * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
16919 * iltests.il: Add a test for the above.
16921 2006-06-12 Zoltan Varga <vargaz@gmail.com>
16923 * mini.c (remove_block_if_useless): Do not remove the bblock immediately
16924 after the end of a try bblock, to prevent asserts in mini_method_compile ().
16926 * iltests.il: Add a test for the above.
16928 2006-06-10 Zoltan Varga <vargaz@gmail.com>
16930 * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
16932 * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
16933 methods as instrinsics.
16935 2006-06-09 Wade Berrier <wberrier@novell.com>
16937 * Makefile.am: Fix sources list for svn rename so that make dist succeeds
16938 (simple-cee-ops.h ssapre-mini-ops.h)
16940 2006-06-09 Neale Ferguson <neale@sinenomine.net>
16942 * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
16943 * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
16945 * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
16946 * cpu-s390x.md: Fix max. length values for a couple of instructions.
16948 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
16950 * mini-exceptions.c: Minor fix for building mono in Visual Studio.
16952 2006-06-08 Massimiliano Mantione <massi@ximian.com>
16954 * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
16955 * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
16956 * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
16957 * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
16958 * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
16959 of opcodes, so that bug 78549 should not happen again.
16960 * ssapre.c: Updated to use the renamed files.
16962 2006-06-08 Zoltan Varga <vargaz@gmail.com>
16964 * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move
16965 in OP_ATOMIC_EXCHANGE_I4.
16967 2006-06-07 Wade Berrier <wberrier@novell.com>
16969 * tramp-s390.c: Fix s390 build (add missing pointer declarations
16970 in mono_debugger_create_notification_function)
16972 2006-06-06 Zoltan Varga <vargaz@gmail.com>
16974 * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
16976 * mini.c (type_from_stack_type): Disable some changes which do not
16979 * driver.c: Reenable opts.
16981 * mini.h (MonoStackSlot): New structure to keep track of the verification state
16982 of the evaluation stack.
16984 * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
16985 evaluation stack trace at entry to the bblock.
16987 * mini.c (merge_stacks): New function to perform verification of stack merges.
16988 Turned off by default.
16990 * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
16993 2006-06-06 Massimiliano Mantione <massi@ximian.com>
16995 * local-propagation.c: Fixed bug 78549.
16997 2006-06-04 Zoltan Varga <vargaz@gmail.com>
16999 * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
17001 2006-06-02 Miguel de Icaza <miguel@novell.com>
17003 * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
17004 tramp-arm.c, tramp-ia64.c
17005 (mono_debugger_create_notification_function): Update signature to
17006 new signature and use new protocol for creating the notification
17009 Should fix the build.
17011 2006-06-02 Geoff Norton <gnorton@customerdna.com>
17013 * exceptions-ppc.c (mono_jit_walk_stack)
17014 (ves_icall_get_frame_info): Fix the build
17016 2006-06-02 Zoltan Varga <vargaz@gmail.com>
17018 * mini.c (mono_set_defaults): Fix the handling of -O=-all.
17020 2006-05-31 Raja R Harinath <rharinath@novell.com>
17022 * il2tests.2.il: New file for generics CIL tests. Add test for
17024 * Makefile.am: Update.
17027 * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
17030 2006-05-30 Massimiliano Mantione <massi@ximian.com>
17032 * aliasing.c: Fixed bug 78311.
17034 2006-05-29 Martin Baulig <martin@ximian.com>
17036 * mini-exceptions.c (mono_find_jit_info): When computing the
17037 native offset, check whether we're actually inside the method's
17038 code; call mono_debug_print_stack_frame() to format the frame.
17039 (ves_icall_System_Exception_get_trace): Call
17040 mono_debug_print_stack_frame() to format the stack frame.
17041 (ves_icall_get_trace): Update to the new debugging API.
17042 (mono_jit_walk_stack_from_ctx): Likewise.
17043 (ves_icall_get_frame_info): Likewise.
17045 * mini.c (get_method_from_ip): Use the new debugging API.
17046 (mono_print_method_from_ip): Likewise.
17049 (mono_jit_walk_stack): Use the new debugging API.
17050 (ves_icall_get_frame_info): Likewise.
17052 2006-05-27 Zoltan Varga <vargaz@gmail.com>
17054 * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
17056 2006-05-25 Massimiliano Mantione <massi@ximian.com>
17058 * mini.c: Added "limitator" to inline for debugging.
17060 2006-05-24 Martin Baulig <martin@ximian.com>
17062 * debug-debugger.c (mono_debugger_init): Create a private,
17063 malloc()-based code manager for the notification function and
17064 intentionally leak it on exit. This fixes the crash-on-exit race
17068 (mono_debugger_create_notification_function): Added
17069 `MonoCodeManager *' argument.
17072 (mono_debugger_create_notification_function): Added
17073 `MonoCodeManager *' argument.
17075 2006-05-23 Massimiliano Mantione <massi@ximian.com>
17077 * aliasing.c: Fixed 64 bit issue.
17078 * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
17079 default since all known bugs are fixed (one more time!).
17081 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17083 * mini.c: write barrier support.
17085 2006-05-23 Martin Baulig <martin@ximian.com>
17087 * debug-debugger.c: Revert Paolo's change. Add comment and #error
17088 check at the top of the file.
17090 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17092 * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
17093 reverting changes without reason and without changelog entries.
17095 2006-05-18 Zoltan Varga <vargaz@gmail.com>
17097 * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
17098 to a few opcodes. Fixes #78439.
17100 * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
17101 consistency with other archs.
17103 * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
17105 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17107 * debug-debugger.c: fix the build.
17109 2006-05-17 Martin Baulig <martin@ximian.com>
17112 (debugger_thread_vtable): Moved here from ../metadata/threads.c.
17113 (debugger_init_threads): Formerly known as mono_debugger_init_threads().
17114 (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
17115 (debugger_attach): Call GC_mono_debugger_add_all_threads().
17117 2006-05-11 Zoltan Varga <vargaz@gmail.com>
17119 * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
17121 2006-05-10 Zoltan Varga <vargaz@gmail.com>
17123 * mini-x86.c (mono_arch_instrument_epilog): Fix handling of
17124 MONO_TYPE_GENERICINST.
17126 * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of
17127 MONO_TYPE_GENERICINST.
17129 2006-05-09 Zoltan Varga <vargaz@gmail.com>
17131 * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
17134 2006-05-08 Zoltan Varga <vargaz@gmail.com>
17136 * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
17138 (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
17140 2006-05-06 Zoltan Varga <vargaz@gmail.com>
17142 * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
17143 mono_trace_cleanup ().
17145 * iltests.il: Fix problem with the newly added test.
17147 * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
17148 due to register constraints, free up the previous hreg. Fixes #78314.
17150 * iltests.il: Add new test for #78314.
17152 * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
17153 Interlocked.Add. Fixes #78312.
17155 * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
17157 2006-05-05 Zoltan Varga <vargaz@gmail.com>
17159 * inssel.brg (mini_emit_virtual_call): Fix a warning.
17161 2006-05-05 Martin Baulig <martin@ximian.com>
17163 * debug-mini.c (mono_debug_open_block): New method.
17166 (mono_arch_output_basic_block): Call mono_debug_open_block() at
17167 the beginning of each basic block.
17170 (mono_arch_output_basic_block): Call mono_debug_open_block() at
17171 the beginning of each basic block.
17173 2006-05-04 Massimiliano Mantione <massi@ximian.com>
17175 * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
17176 default until I understand why they break the build on amd64.
17178 2006-05-04 Zoltan Varga <vargaz@gmail.com>
17180 * mini.c (mini_cleanup): Call mono_cleanup ().
17182 * mini.c (UNVERIFIED): New macro to make it easier to track down verification
17185 2006-05-04 Massimiliano Mantione <massi@ximian.com>
17187 * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
17188 * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
17189 default since all known bugs are fixed, and I cannot reproduce bug
17190 77944... I'm asking Matt Hargett to test again after this commit.
17192 2006-04-28 Massimiliano Mantione <massi@ximian.com>
17194 * mini-codegen.c: Fixed typo that thrashed inline.
17196 2006-04-28 Zoltan Varga <vargaz@gmail.com>
17198 * dominators.c (compute_dominators): Avoid using a worklist since
17199 it is not correct in some cases. Instead, iterate over all bblocks as
17200 in the original paper. Fixes --compile-all -O=all System.Xml.dll.
17202 2006-04-28 Miguel de Icaza <miguel@novell.com>
17204 * mini.c (mono_jit_compile_method_inner): Use
17205 mono_prepare_exception_from_error that resets the value
17208 2006-04-27 Miguel de Icaza <miguel@novell.com>
17210 * mini.c: Move the mini_loader_error_to_exception to metadata.
17212 2006-04-27 Massimiliano Mantione <massi@ximian.com>
17214 * aliasing.c: Fixed bug 78210.
17216 2006-04-27 Massimiliano Mantione <massi@ximian.com>
17218 * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
17219 default until all their problems (or the ones they trigger) are fixed.
17221 2006-04-26 Zoltan Varga <vargaz@gmail.com>
17223 * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
17225 * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
17226 as loaded only after resolving patches since that could invoke the same method.
17228 * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
17230 * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
17233 * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
17236 * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
17239 * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
17240 made from AOT code through the PLT table.
17242 * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
17243 holding the plt offset when a call is made to the aot plt trampoline.
17245 2006-04-25 Zoltan Varga <vargaz@gmail.com>
17247 * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the
17250 * Makefile.am (common_sources): Fix build breakage.
17252 * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
17253 calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
17254 intra-assembly calls if possible.
17256 * tramp-*.c: Add new functions for patching/nullifying PLT entries.
17258 * mini-trampolines.c: Handle PLT entries.
17260 * mini.c: Avoid creating a GOT var for calls.
17262 * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
17263 from mscorlib code.
17265 * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
17266 from mscorlib code.
17268 * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
17271 * mini.h: Bump AOT file format version.
17273 * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
17276 2006-04-25 Martin Baulig <martin@ximian.com>
17278 * driver.c: Disable copyprop, consprop and inline when running
17279 inside the debugger.
17281 2006-04-25 Martin Baulig <martin@ximian.com>
17283 * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
17284 with `get_current_thread' and added `detach'.
17285 (MonoDebuggerMetadataInfo): Added `thread_size',
17286 `thread_tid_offset', `thread_stack_ptr_offset' and
17287 `thread_end_stack_offset'.
17289 2006-04-25 Zoltan Varga <vargaz@gmail.com>
17291 * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and
17294 * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
17295 ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
17297 * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
17299 * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
17301 * aot.c: Add support for ADJUSTED_IID.
17303 2006-04-24 Zoltan Varga <vargaz@gmail.com>
17305 * aot.c (emit_method_order): Don't align method_order_end.
17307 * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
17308 the interface ID changes.
17310 2006-04-21 Dick Porter <dick@ximian.com>
17312 * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
17313 cleaning up a thread. Fixes the new part of bug 77470.
17315 2006-04-20 Geoff Norton <gnorton@customerdna.com>
17317 * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
17318 to managed wrapper.
17320 2006-04-19 Zoltan Varga <vargaz@gmail.com>
17322 * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
17324 * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
17325 SIGSEGV. Fixes #78072.
17327 * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
17328 unregister our SIGABRT handler.
17330 2006-04-19 Massimiliano Mantione <massi@ximian.com>
17332 * mini.c: Disabled inline where it can alter the call stack in a
17333 way visible from managed code.
17334 * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
17337 2006-04-16 Zoltan Varga <vargaz@gmail.com>
17339 * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
17340 on other platforms. Fixes #78089.
17342 2006-04-13 Martin Baulig <martin@ximian.com>
17344 * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
17345 determine whether we're inside the debugger.
17348 (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
17350 2006-04-12 Zoltan Varga <vargaz@gmail.com>
17352 * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
17353 handler clauses. Fixes #78024.
17355 * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
17356 in the CALL_MEMBASE opcodes. Fixes #78088.
17357 (mono_arch_get_vcall_slot_addr): Ditto.
17359 2006-04-10 Martin Baulig <martin@ximian.com>
17361 * debug-debugger.c: The thread handling code has now been moved
17362 into ../metadata/threads.c.
17364 2006-04-10 Zoltan Varga <vargaz@gmail.com>
17366 * driver.c (mono_main): Fix --with-gc=none build.
17368 * mini-codegen.c (mono_spillvar_offset): Improve alignment.
17369 (mono_spillvar_offset_float): Ditto.
17370 (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
17371 hreg, not when its !global, since on ia64, there is a third category: stacked
17374 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
17376 * mini.c: set MonoInst->klass for load field address and a few other
17379 2006-04-10 Zoltan Varga <vargaz@gmail.com>
17381 * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
17383 2006-04-07 Zoltan Varga <vargaz@gmail.com>
17385 * dominators.c (compute_dominators): Fix yet another bug which surfaced after
17386 the branch opt changes.
17388 2006-04-06 Dick Porter <dick@ximian.com>
17390 * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
17392 * wapihandles.c (mini_wapi_seminfo):
17393 * driver.c (mono_main): Add semaphore info option
17395 2006-04-05 Zoltan Varga <vargaz@gmail.com>
17397 * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
17398 branch optimization changes. Fixes #78009.
17400 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17402 * mini.c: ignore accessibility of methods in managed->native wrappers.
17404 2006-04-04 Zoltan Varga <vargaz@gmail.com>
17406 * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
17408 * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
17410 2006-04-03 Zoltan Varga <vargaz@gmail.com>
17412 * mini.c: Modify the branch optimizations to preserve the invariant that
17413 the entries inside the in_bb and out_bb arrays are unique.
17414 (mono_unlink_bblock): Avoid creation of new arrays.
17416 2006-04-02 Zoltan Varga <vargaz@gmail.com>
17418 * mini.c (mono_unlink_bblock): Fix regression caused by previous
17421 2006-04-01 Zoltan Varga <vargaz@gmail.com>
17423 * mini.c (optimize_branches): Remove the "optimizations" in
17424 the cbranch1/cbranch2 -> branch cases which were causing several
17425 problems in the past. Fixes #77986.
17427 2006-03-31 Chris Toshok <toshok@ximian.com>
17429 * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
17430 default optimizations :(
17432 2006-03-31 Zoltan Varga <vargaz@gmail.com>
17434 * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
17437 2006-03-31 Massimiliano Mantione <massi@ximian.com>
17439 * local-propagation.c: Added comments to structs and removed
17440 "Mono" prefixes from local tree mover types.
17442 2006-03-30 Zoltan Varga <vargaz@gmail.com>
17444 * Makefile.am (arch_sources): Define this for each architecture so
17445 libmono_la_SOURCES is defined in one place.
17447 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17449 * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
17452 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
17454 * driver.c: print the GC name supplied by configure.
17456 2006-03-29 Massimiliano Mantione <massi@ximian.com>
17458 * local-propagation.c: Added tree mover, and moved here all the
17459 local propagation code from mini.c
17460 * mini.c: Added support for treeprop, and moved all the local
17461 propagation code to local-propagation.c
17462 * mini.h: Added support for treeprop
17463 * driver.c: Added support for treeprop, enabled consprop, copyprop,
17464 treeprop, inline and deadce by default
17465 * Makefile.am: Added local-propagation.c
17467 2006-03-25 Zoltan Varga <vargaz@gmail.com>
17469 * exceptions-sparc.c: Applied patch from David S. Miller <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
17471 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
17473 * debug-debugger.c: make it compile without the Boehm GC.
17475 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17477 * mini.c: fixed issue with mismatch when an icall is registered
17478 with multiple names but same address.
17480 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17482 * declsec.c, mini-exceptions.c: use write barrier to set reference
17483 fields of managed objects.
17485 2006-03-19 Zoltan Varga <vargaz@gmail.com>
17487 * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
17488 (can_access_internals): Fix a warning.
17490 * mini.c (print_method_from_ip): Rename this to
17491 mono_print_method_from_ip so it gets exported.
17493 * trace.c: Deal with strings inside StringBuilder's containing garbage
17494 and fix memory leaks. Fixes #77848.
17496 2006-03-19 Zoltan Varga <vargaz@gmail.com>
17498 * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
17501 2006-03-16 Neale Ferguson <neale@sinenomine.net>
17503 * mini-s390.c: Remove OP_X86_TEST_NULL.
17505 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
17507 * mini.c: use the correct GetHashCode() for the moving collector.
17509 2006-03-16 Massimiliano Mantione <massi@ximian.com>
17511 * liveness.c: Regalloc spill cost tuning.
17513 2006-03-15 Neale Ferguson <neale@sinenomine.net>
17515 * mini-s390x.h: Correct S390_LONG macro.
17517 * mini-s390x.c: Cleanup unused code.
17519 2006-03-15 Zoltan Varga <vargaz@gmail.com>
17521 * jit-icalls.h: New file.
17523 * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
17524 icalls and include that instead of including jit-icalls.c.
17526 * mini-ppc.c (mono_arch_output_basic_block): Remove references to
17529 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
17531 * mini.c: when checking for member accessibility, also check for
17532 friend assemblies and for explicit interface implementations.
17534 2006-03-14 Zoltan Varga <vargaz@gmail.com>
17536 * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
17538 * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
17540 * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
17541 common cases are done first.
17543 * mini-ops.h: Only define platform specific opcodes on the given platform.
17545 * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
17548 2006-03-14 Martin Baulig <martin@ximian.com>
17550 Revert Paolo's change from r57348:
17552 * mini.h: don't use gboolean for bitfields.
17553 * mini.c: verifier changes for fields and methods accessibility.
17555 2006-03-13 Neale Ferguson <neale@sinenomine.net>
17557 * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
17559 * mini-s390x.c: Fix conv_r_un.
17561 * cpu-s390, cpu-s390x.md: Fix lengths.
17563 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17565 * mini.c: nested types have access to all the nesting
17566 levels, not just the enclosing types.
17568 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17570 * mini.c: added a few more verification checks.
17572 2006-03-12 Zoltan Varga <vargaz@gmail.com>
17574 * liveness.c: Merge optimizations from the linear-il branch.
17576 2006-03-11 Zoltan Varga <vargaz@gmail.com>
17578 * mini-ia64.c (emit_call): Add a comment.
17580 * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
17582 * tramp-ia64.c: Fix some warnings.
17584 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17586 * mini.h: don't use gboolean for bitfields.
17587 * mini.c: verifier changes for fields and methods accessibility.
17589 2006-03-11 Zoltan Varga <vargaz@gmail.com>
17591 * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
17592 lazy icall wrapper changes.
17594 * dominators.c: Replace all the dominator algorithms with faster
17595 ones from the linear-il branch.
17597 * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
17600 * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
17601 common cases are done first.
17603 * mini-amd64.c: Fix some warnings.
17605 * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
17608 * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
17611 * mini.h: Add a missing prototype.
17613 2006-03-10 Zoltan Varga <vargaz@gmail.com>
17615 * mini.c: Compile icall wrappers lazily.
17617 * mini-codegen.c: Use printf instead of g_print since its much faster.
17619 * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
17622 * mini.c (optimize_branches): Cache the negative result from
17623 remove_block_if_useless ().
17625 * mini.c (optimize_branches): Avoid restarting the iteration after each change.
17626 Also fix some bblock linking issues.
17628 * helpers.c (mono_disassemble_code): Reduce the size of the temporary
17631 * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
17633 * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
17634 accessed fields first, for better cache behavior.
17636 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17638 * mini.c: speedup IList<T> array accesses.
17640 2006-03-09 Zoltan Varga <vargaz@gmail.com>
17642 * mini.c (mono_method_to_ir): Handle large methods overflowing the
17643 inline_costs counter. Fixes #77190.
17645 2006-03-06 Zoltan Varga <vargaz@gmail.com>
17647 * mini-exceptions.c: Call mono_trace_is_enabled () before printing
17648 trace messages. Fixes #77706.
17650 2006-03-04 Martin Baulig <martin@ximian.com>
17652 * tramp-amd64.c, tramp-x86.c
17653 (mono_debugger_create_notification_function): Use
17654 mono_global_codeman_reserve() to allocate a buffer at runtime and
17657 * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
17659 * debug-debugger.c (mono_debugger_init): Dynamically allocate the
17660 notification function at runtime and then call `initialize' in the
17661 `MONO_DEBUGGER__debugger_info' vtable.
17663 2006-03-04 Zoltan Varga <vargaz@gmail.com>
17665 * iltests.il: Fix a visibility problem.
17667 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17669 * driver.c, mini.c: add hooks for the counters API.
17671 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
17673 * driver.c: show disabled options.
17675 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17677 * linear-scan.c: always use cost-driven selection.
17679 2006-02-28 Raja R Harinath <rharinath@novell.com>
17681 * jit-icalls.c (helper_compile_generic_method): Revert change from
17684 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
17686 * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
17688 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17690 * inssel.brg: style fixes, mostly to force the updated monoburg
17691 to run for people using svn.
17693 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17695 * mini.c: match monoburg changes.
17697 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17699 * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
17700 ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
17701 declaration in the header file.
17703 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17705 * helpers.c: reduce relocations and mem usage.
17707 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17709 * mini.h, mini-codegen.c: disable logging features if
17710 requested by configure.
17712 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
17714 * mini.c: tiny verifier changes.
17716 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17718 * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
17719 cpu-pentium.md: stack alignment changes for osx/x86,
17720 partially from Geoff Norton <gnorton@customerdna.com>.
17722 2006-02-24 Raja R Harinath <harinath@gmail.com>
17724 * jit-icalls.c (helper_compile_generic_method): Update to changes
17725 in metadata/class.c.
17727 2006-02-24 Zoltan Varga <vargaz@gmail.com>
17729 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
17731 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
17732 interface calls with large offsets.
17734 2006-02-23 Raja R Harinath <rharinath@novell.com>
17736 * jit-icalls.c (helper_compile_generic_method): Document the
17737 special-case we depend on so that we can inflate the method twice
17738 with the same context with no bad side-effects.
17740 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17742 * mini-x86.c, mini-amd64.c: fix for case when xen support
17745 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17747 * mini-x86.c, mini-amd64.c: generate code to access tls items
17748 in a faster way for Xen systems.
17750 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17752 * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
17753 updates and compilation fixes for the OSX/x86 port, mostly from
17754 Geoff Norton <gnorton@customerdna.com>.
17756 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
17758 * inssel.brg: faster interface call implementation
17759 to sync with the interface_offsets MonoVTable changes.
17761 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17763 * mini.c: more verification checks.
17765 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
17767 * mini.c: added a few more verification checks.
17769 2006-02-17 Neale Ferguson <neale@sinenomine.net>
17771 * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
17772 facility on the processor and use it if available.
17774 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17776 * driver.c, aot.c, mini.c: throw exception if the IL code is
17777 invalid or unverifiable.
17779 2006-02-17 Raja R Harinath <rharinath@novell.com>
17781 * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
17784 2006-02-16 Zoltan Varga <vargaz@gmail.com>
17786 * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
17788 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17790 * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
17791 mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
17792 handling of instantiated generic valuetypes.
17794 2006-02-11 Zoltan Varga <vargaz@gmail.com>
17796 * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of
17797 MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
17800 * generics.2.cs: Revert the nullable reftypes tests.
17802 2006-02-10 Zoltan Varga <vargaz@gmail.com>
17804 * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
17805 using __builtin_frame_address (1) as it doesn't work in the presence
17806 of optimizations. Hopefully fixes #77273.
17808 * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
17809 -> generics.cs change as it doesn't work with some automake versions.
17811 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17813 * mini.c: handle systems that sue a different way to
17814 retrieve the stack address of the current thread.
17816 2006-02-09 Zoltan Varga <vargaz@gmail.com>
17818 * Makefile.am generics.2.cs: Rename this to generics.cs and handle
17819 it specially in the makefile.
17821 * generics.2.cs: Add tests for nullable reference types.
17823 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17825 * mini.c: always handle the case when mono_jit_init()
17826 is called in a thread different from the main thread,
17827 confusing libgc (bug #77309).
17829 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
17831 * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
17833 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17835 * mini.c: change optimize_branches () to use a single loop
17836 and introduce a new optimization to simplify some range checks.
17838 2006-02-03 Martin Baulig <martin@ximian.com>
17840 * debug-debugger.c (debugger_thread_manager_thread_created): Removed
17841 and merged with debugger_thread_manager_add_thread().
17842 (mono_debugger_main): Call debugger_thread_manager_add_thread() to
17843 inform the debugger about the main thread.
17845 2006-02-03 Zoltan Varga <vargaz@gmail.com>
17847 * basic.cs: Add test for div.un/rem.un constant folding.
17849 2006-02-03 Neale Ferguson <neale@sinenomine.net>
17851 * cpu-s390x.md: correct int_xor_imm length
17853 2006-02-03 Zoltan Varga <vargaz@gmail.com>
17855 * generics.2.cs: New test for #77442.
17857 * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
17860 2006-02-02 Martin Baulig <martin@ximian.com>
17862 * tramp-x86.c, tramp-amd64.c: It's now safe to #include
17863 <mono/metadata/mono-debug-debugger.h>
17865 * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
17867 2006-02-02 Martin Baulig <martin@ximian.com>
17869 * debug-debugger.h: New header file for debug-debugger.c.
17871 * debug-debugger.c: Big API cleanup; don't run the managed Main()
17872 function is a separate thread anymore; add support for attaching.
17874 2006-02-01 Zoltan Varga <vargaz@gmail.com>
17876 * tramp-x86.c: Fix a warning.
17878 2006-01-31 Zoltan Varga <vargaz@gmail.com>
17880 * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
17881 on very large methods.
17883 * aot.c (load_patch_info): Fix a warning.
17885 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17887 * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
17888 mini-ops.h: alu membase optimizations.
17890 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
17892 * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
17893 to speedup StringBuilder.
17895 2006-01-27 Zoltan Varga <vargaz@gmail.com>
17897 * dominators.c (mono_compute_natural_loops): Fix detection of
17898 loop body start blocks.
17900 * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
17902 2006-01-26 Zoltan Varga <vargaz@gmail.com>
17904 * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
17907 2006-01-25 Massimiliano Mantione <massi@ximian.com>
17909 * aliasing.c: Fixed aliasing issue on 64 bit archs.
17911 2006-01-25 Martin Baulig <martin@ximian.com>
17913 * debug-debugger.c: Moved the `MonoDebuggerManager' and
17914 `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
17915 started to cleanup this file a little bit.
17917 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
17919 * mini.c: optimize a codepath frequently happening in generics code.
17921 2006-01-23 Martin Baulig <martin@ximian.com>
17923 * Makefile.am: Only compile debug-debugger.c on supported platforms.
17925 * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
17926 functions directly.
17928 * driver.c: debug-debugger.c is only available if
17929 `MONO_DEBUGGER_SUPPORTED' is defined.
17931 2006-01-23 Martin Baulig <martin@ximian.com>
17933 * debug-debugger.c: Only enable this on platforms where the Mono
17934 Debugger is working (x86 and x86_64).
17936 2006-01-21 Martin Baulig <martin@ximian.com>
17938 The Mono Debugger is now using the normal `mono' instead of the
17939 `mono-debugger-mini-wrapper' when executing managed code.
17941 * debug-debugger.c: New file; previously known as
17942 debugger/wrapper/wrapper.c.
17944 * debug-mini.c (mono_init_debugger): Removed.
17946 * driver.c (mono_main): Added new `--inside-mdb' command line
17947 argument which is used when running inside the debugger.
17949 2006-01-20 Zoltan Varga <vargaz@gmail.com>
17951 * liveness.c (mono_analyze_liveness): Remove some unused data
17954 2006-01-17 Zoltan Varga <vargaz@gmail.com>
17956 * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
17958 2006-01-16 Zoltan Varga <vargaz@gmail.com>
17960 * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
17961 depends on implementation details of monobitset.
17963 * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
17966 2006-01-15 Zoltan Varga <vargaz@gmail.com>
17968 * liveness.c: Update after monobitset changes.
17970 2006-01-14 Zoltan Varga <vargaz@gmail.com>
17972 * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
17974 2006-01-11 Neale Ferguson <neale@sinenomine.net>
17976 * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
17978 * mini-s390x.c: Remove warning messages.
17980 2006-01-11 Ben Maurer <bmaurer@andrew.cmu.edu>
17982 * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
17984 2006-01-10 Zoltan Varga <vargaz@gmail.com>
17986 * generics.2.cs: Add ldelem/stelem_any test.
17988 2006-01-10 Neale Ferguson <neale@sinenomine.net>
17990 * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
17992 2006-01-07 Zoltan Varga <vargaz@gmail.com>
17994 * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
17996 2006-01-06 Zoltan Varga <vargaz@gmail.com>
17998 * generics.2.cs: Reenable vtype tests.
18000 * inssel-x86.brg: Remove an icorrect valuetype rule.
18002 2006-01-06 Neale Ferguson <neale@sinenomine.net>
18004 * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
18005 initial support for OP_ABS.
18007 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18009 * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
18011 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18013 * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int
18014 conversion and implement LADD/LSUB.
18016 * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
18019 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18021 * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
18023 * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
18026 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18028 * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when
18029 localloc is encountered. Fixes crash in test-183.cs when using gmcs
18030 (stack walk problem).
18032 2006-01-04 Zoltan Varga <vargaz@gmail.com>
18034 * aot.c (mono_aot_load_method): Fix a warning.
18036 2006-01-03 Neale Ferguson <neale@sinenomine.net>
18038 * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
18040 2006-01-03 Zoltan Varga <vargaz@gmail.com>
18042 * iltests.il: Add test for #77148.
18044 * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
18047 2006-01-03 Neale Ferguson <neale@sinenomine.net>
18049 * mini-s390x.c, inssel-s390x.brg: Remove debug statements
18051 2006-01-03 Neale Ferguson <neale@sinenomine.net>
18053 * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
18054 cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
18056 * basic-long.cs: Add lconv-to-r4/r8 tests.
18058 2006-01-03 Zoltan Varga <vargaz@gmail.com>
18060 * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
18062 * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
18063 here as on other archs.
18065 2005-12-29 Neale Ferguson <neale@sinenomine.net>
18067 * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
18069 2005-12-29 Neale Ferguson <neale@sinenomine.net>
18071 * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
18073 * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
18075 * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
18076 instrument_prolog; Add memory_barrier instruction.
18078 2005-12-26 Zoltan Varga <vargaz@gmail.com>
18080 * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
18082 2005-12-23 Zoltan Varga <vargaz@gmail.com>
18084 * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
18086 * aliasing.c inssel.brg: Fix warnings.
18088 * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
18089 could skip initialization of some parts of memory.
18091 * mini.c mini-ia64.c: Fix warnings.
18093 * inssel-sparc.brg: Add an implementation of lneg which actually works.
18095 2005-12-22 Zoltan Varga <vargaz@gmail.com>
18097 * aliasing.c (mono_build_aliasing_information): Add a workaround for
18098 a crash seen on sparc.
18100 * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
18102 * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
18104 2005-12-21 Neale Ferguson <neale@sinenomine.net>
18106 * mini-ops.h: Add s390_backchain instruction
18108 * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
18110 * cpu-s390.md: Add s390_backchain instruction
18112 * mini-s390.c: Significant ABI changes
18114 * mini-s390.h: Cater for zero length structures
18116 2005-12-20 Neale Ferguson <neale@sinenomine.net>
18118 * mini-s390.c: ABI fixes
18120 * inssel-s390.brg: Remove debug statements
18122 * cpu-s390.md: Fix length of ATOMIC_xx operations
18124 2005-12-19 Zoltan Varga <vargaz@gmail.com>
18126 * basic-float.cs: Add float<->long conversion tests.
18128 2005-12-16 Neale Ferguson <neale@sinenomine.net>
18130 * mini-s390.c: Fix LOCALLOC processing.
18132 * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
18134 2005-12-15 Zoltan Varga <vargaz@gmail.com>
18136 * iltests.il: Add tests for some opcodes not covered by the other
18139 2005-12-15 Neale Ferguson <neale@sinenomine.net>
18141 * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct
18142 register loading for Tail processing; Correct trace output.
18144 * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
18146 * cpu-s390.md: Correct size of jmp instruction.
18148 2005-12-13 Neale Ferguson <neale@sinenomine.net>
18150 * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
18152 2005-12-13 Neale Ferguson <neale@sinenomine.net>
18154 * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
18155 Bring s390 up to current level.
18157 2005-12-12 Zltan Varga <vargaz@gmail.com>
18159 * generics.2.cs: Disable the newly added tests as they do not work yet.
18161 * generics.2.cs: Add valuetype tests.
18163 2005-12-09 Zoltan Varga <vargaz@gmail.com>
18165 * basic-long.cs: Add i4->u8 test.
18167 * objects.cs: Add tests for JIT intrinsic.
18169 * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
18170 optimizations lost by a mistake.
18172 2005-12-07 Zoltan Varga <vargaz@gmail.com>
18174 * basic-long.cs: Remove a test moved to objects.cs.
18176 * arrays.cs: Add more array tests.
18178 2005-12-06 Zoltan Varga <vargaz@gmail.com>
18180 * arrays.cs: Add new tests for multi-dimensional arrays.
18182 2005-12-06 Raja R Harinath <rharinath@novell.com>
18184 * Makefile.am (test_sources2): Add generics.2.cs.
18185 (EXTRA_DIST): Add test_sources2.
18187 2005-12-05 Ben Maurer <bmaurer@ximian.com>
18189 Support for boxing and unboxing nullable types as well as the
18190 isinst operation on nullables, per the CLI ammendment.
18192 * inssel.brg (CEE_ISINST): Special case for nullable
18194 * mini.c (handle_unbox_nullable): new method
18195 (handle_box): Special case for nullable types
18196 (mono_method_to_ir): Call handle_unbox_nullable in correct
18199 * generics.2.cs: New test suite
18201 * Makefile.am: Support for regression tests with generics.
18203 2005-12-03 Zoltan Varga <vargaz@gmail.com>
18205 * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
18206 allocated to registers. Fixes #76800.
18208 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
18210 * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
18212 2005-11-30 Zoltan Varga <vargaz@gmail.com>
18214 * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot
18217 2005-11-29 Zoltan Varga <vargaz@gmail.com>
18219 * objects.cs basic-calls.cs: Move a test depending on valuetypes to
18222 * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
18224 * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
18225 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
18227 * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
18228 single precision before storing to a single precision location.
18230 2005-11-28 Raja R Harinath <rharinath@novell.com>
18232 * Makefile.am (ILASM): Use profile-dependent location of ilasm.
18234 2005-11-27 Zoltan Varga <vargaz@gmail.com>
18236 * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
18239 * basic.cs: Remove test_0_byte_compares test which was moved to
18240 objects.cs a long time ago.
18242 2005-11-22 Massimiliano Mantione <massi@ximian.com>
18244 * aliasing.c: Fixed aliasing issue on 64 bit archs.
18246 2005-11-20 Zoltan Varga <vargaz@gmail.com>
18248 * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
18249 handlers are called.
18251 * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
18254 * mini-ia64.c: Add support for the throw->branch exception
18257 * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
18259 2005-11-18 Massimiliano Mantione <massi@ximian.com>
18261 * mini.c: Enabled "fastpath" deadce :-)
18263 2005-11-18 Massimiliano Mantione <massi@ximian.com>
18265 * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
18266 alias analysis pass to support it.
18267 * mini.h: Likewise.
18269 * liveness.c: Likewise (liveness computation can use aliasing
18270 information to be more accurate).
18271 * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
18272 moreover made so that "--compile-all" uses the given optimization
18273 flags and not the default ones.
18274 * aliasing.c: Alias analysis (new file).
18275 * aliasing.h: Likewise.
18276 * Makefile.am: added "aliasing.c" and "aliasing.h".
18278 2005-11-17 Zoltan Varga <vargaz@gmail.com>
18280 * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
18283 2005-11-13 Zoltan Varga <vargaz@gmail.com>
18285 * mini-exceptions.c (mono_handle_exception_internal): Remove the
18286 fp >= end_of_stack exit condition, as it is not needed, and it might
18287 become true for fp eliminated frames.
18289 2005-11-11 Zoltan Varga <vargaz@gmail.com>
18291 * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
18294 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
18296 * mini-arm.c: fixed alignment of doubles/longs to match
18297 the C ABI (bug #76635).
18299 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
18301 * aot.c: fix compilation with --enable-minimal=aot.
18303 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
18305 * mini-arm.c: fixed compatibility with the new
18306 floating point emulator package for compares.
18308 2005-11-03 Atsushi Enomoto <atsushi@ximian.com?
18310 * mini.c : reverted sig->pinvoke changes (r51396-51397).
18312 2005-11-01 Zoltan Varga <vargaz@freemail.hu>
18314 * mini-exceptions.c (print_stack_frame): Output to stderr.
18315 (mono_handle_native_sigsegv): Ditto.
18317 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
18319 * mini-amd64.c (mono_arch_output_basic_block): Remove unused
18320 OP_LCONV_TO_OVF_I implementation.
18322 * mini-amd64.c: Add support for the throw->branch exception
18325 * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
18326 when the catch clause catches a more general exception, i.e. Object.
18328 2005-10-30 Zoltan Varga <vargaz@gmail.com>
18330 * cpu-ia64.md: Remove unused opcodes.
18332 * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
18333 specific defines for architectures defining USE_SIGACTION.
18335 * mini-ia64.c: Fix some warnings.
18337 * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
18338 version seemed to skip a frame.
18340 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
18342 * mini.c: Clean up the usage of sig->pinvoke flag. Now
18343 only calls which are made to native code use this flag.
18345 2005-10-29 Zoltan Varga <vargaz@freemail.hu>
18347 * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
18348 varargs methods as well.
18350 * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
18351 which have save_lmf set. Reorganize methods prologs a bit.
18353 * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
18354 debugger to the proper place.
18356 2005-10-29 Martin Baulig <martin@ximian.com>
18358 * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
18359 when running inside the debugger until the debugger has support
18362 2005-10-26 Zoltan Varga <vargaz@gmail.com>
18364 * mini.h: Fix a warning.
18366 2005-10-24 Miguel de Icaza <miguel@novell.com>
18368 * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
18369 we expose publicly, this returns the string.
18371 2005-10-22 Zoltan Varga <vargaz@freemail.hu>
18373 * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
18374 with fp elimination.
18376 2005-10-21 Zoltan Varga <vargaz@gmail.com>
18378 * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
18379 native stacktrace using the glibc 'backtrace' function if available.
18381 2005-10-20 Zoltan Varga <vargaz@gmail.com>
18383 * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
18385 * mini-exceptions.c (mono_handle_native_sigsegv): New function to
18386 handle SIGSEGVs received while in native code.
18388 * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
18389 code, call mono_handle_native_sigsegv which will abort the runtime
18390 after printing some diagnostics, instead of converting it into a
18391 confusing NullReferenceException.
18393 2005-10-18 Zoltan Varga <vargaz@gmail.com>
18395 * cpu-pentium.md: Remove unused opcodes.
18397 2005-10-18 Zoltan Varga <vargaz@freemail.hu>
18399 * mini-amd64.h (MonoLMF): Add rsp field.
18401 * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
18404 2005-10-17 Zoltan Varga <vargaz@gmail.com>
18406 * mini-codegen.c (get_register_spilling): Fix some warnings.
18408 2005-10-16 Zoltan Varga <vargaz@freemail.hu>
18410 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
18411 elimination during exception handling. Enable fp elimination by
18414 * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
18417 2005-10-16 Martin Baulig <martin@ximian.com>
18419 * mini-exceptions.c
18420 (mono_debugger_run_finally): New public method for the debugger.
18422 2005-10-10 Zoltan Varga <vargaz@gmail.com>
18424 * debug-mini.c (mono_debug_init_method): Fix warning.
18426 * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
18427 the 'exname' parameter const to fix some warnings.
18429 2005-10-09 Zoltan Varga <vargaz@freemail.hu>
18431 * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
18432 introduced by the previous patch.
18434 2005-10-08 Zoltan Varga <vargaz@gmail.com>
18436 * basic-float.cs: Add test for precision of float arithmetic.
18438 * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
18439 when loading/storing single values from/to memory.
18441 * mini.c (mono_jit_compile_method_with_opt): Create the function
18442 pointers in the correct domain.
18444 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
18446 * mini-exceptions.c (mono_handle_exception_internal): Fix bug
18447 introduced by previous patch.
18449 * mini-exceptions.c (mono_handle_exception_internal): Handle the case
18450 when out_filter_idx is NULL.
18452 * mini-exceptions.c: Don't run filter clauses twice during exception
18453 handling. Fixes #75755.
18455 2005-10-07 Zoltan Varga <vargaz@gmail.com>
18457 * aot.c: Add support for ldflda wrappers.
18459 * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
18462 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
18464 * mini.c, mini.h: do not consider exception handlers blocks when
18465 setting up interface variables.
18467 2005-10-04 Zoltan Varga <vargaz@freemail.hu>
18469 * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
18471 2005-10-03 Zoltan Varga <vargaz@gmail.com>
18473 * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
18474 causes a regression.
18476 * mini.c (mini_thread_cleanup): Fix reading of freed memory.
18478 2005-10-02 Zoltan Varga <vargaz@freemail.hu>
18480 * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
18481 of the OP_P definitions.
18483 * TODO: Add a proposal for dealing with the CEE/OP mess.
18485 * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm
18486 optimizations from the x86 port.
18488 * cpu-amd64.md: Ditto.
18490 * basic.cs basic-long.cs: Add tests.
18492 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
18494 * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
18495 Patrik Torstensson's implementation of my exception-handling
18496 optimization idea, when the exception object is not used
18499 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
18501 * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
18502 of the mul_imm optimizations from the old jit.
18504 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
18506 * mini.c, liveness.c: patch by Patrik Torstensson and
18507 Zoltan Varga to improve performance in methods with
18510 2005-09-30 Zoltan Varga <vargaz@gmail.com>
18512 * driver.c: Remove 'Globalization' entry from --version.
18514 2005-09-28 Zoltan Varga <vargaz@gmail.com>
18516 * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
18517 there is a profiler interested in JIT events.
18519 * aot.c: Load profile files produced by the AOT profiling module, and
18520 reorder methods based on the profiling info. Add a 'method_order' table
18521 to the AOT file to make mono_aot_find_jit_info work with the reordered
18524 * mini.h: Bump AOT file version info.
18526 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
18528 * mini-arm.h: work around what looks like a gcc bug when optimizations
18531 2005-09-28 Raja R Harinath <rharinath@novell.com>
18533 * Makefile.am (AM_CFLAGS): Don't use += to append inside
18534 conditionals. Use ...
18535 (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
18537 2005-09-27 Zoltan Varga <vargaz@freemail.hu>
18539 * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
18540 to determine the amount of memory to copy when passing valuetypes.
18542 * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
18543 4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
18545 2005-09-27 Zoltan Varga <vargaz@gmail.com>
18547 * mini.h mini.c aot.c: Add infrastructure to collect pagefault
18548 information about aot.
18550 2005-09-27 Ben Maurer <bmaurer@ximian.com>
18552 * *.c: Replace the use of {Enter,Leave}CriticalSection with
18553 macros. This will allow a deadlock debugger to easily be plugged
18556 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
18558 * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
18560 2005-09-27 Raja R Harinath <rharinath@novell.com>
18562 * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
18563 (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
18564 (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
18565 ($(arch_built)) [CROSS_COMPILING]: Error out.
18567 2005-09-26 Zoltan Varga <vargaz@gmail.com>
18569 * aot.c: Add support for the no_special_static flag for classes.
18571 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
18573 * Reapply reverted patches.
18575 * *: Revert r50174 as well.
18577 * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
18579 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
18581 * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
18583 2005-09-23 Miguel de Icaza <miguel@novell.com>
18585 * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
18586 part of the SIG_HANDLER_SIGNATURE.
18588 2005-09-23 Zoltan Varga <vargaz@gmail.com>
18590 * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
18593 * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention
18594 introduced by previous patch.
18596 2005-09-21 Zoltan Varga <vargaz@gmail.com>
18598 * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
18599 saved registers too.
18601 * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based
18602 upon the information returned by get_call_info ().
18604 * mini-x86.c (add_float): Fix stack size calculation.
18605 (mono_arch_call_opcode): Rewrite this so it works based up the
18606 information returned by get_call_info ().
18607 (mono_arch_get_this_vret_args): Ditto.
18609 2005-09-21 Zoltan Varga <vargaz@freemail.hu>
18611 * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
18612 in cinfo to determine the registers which need to be used.
18614 2005-09-20 Miguel de Icaza <miguel@novell.com>
18616 * driver.c (mono_main): Add --server and --desktop flags.
18618 2005-09-16 Zoltan Varga <vargaz@gmail.com>
18620 * mini-ia64.h: Make register masks 64 bit. Don't treat argument
18621 registers as global registers.
18623 * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no
18624 longer needed with the new register allocator.
18626 * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
18628 * cpu-ia64.md: Remove unused opcodes.
18630 * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
18632 2005-09-16 Zoltan Varga <vargaz@freemail.hu>
18634 * cpu-amd64.md: Remove unused opcodes.
18636 * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
18637 needed with the new register allocator.
18639 * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
18642 2005-09-16 Raja R Harinath <rharinath@novell.com>
18644 * Makefile.am (check-local): Don't invoke semdel-wrapper.
18646 2005-09-16 Martin Baulig <martin@ximian.com>
18648 * exceptions-amd64.c
18649 (throw_exception): Don't call mono_debugger_throw_exception() if
18650 we're a rethrow - see the FIXME in the code.
18652 2005-09-15 Geoff Norton <gnorton@customerdna.com>
18654 * mini.c (mono_init_exceptions): This only works on some architectures.
18656 2005-09-15 Zoltan Varga <vargaz@gmail.com>
18658 * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
18661 * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
18663 * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
18664 now in mini-exceptions.c.
18666 2005-09-15 Zoltan Varga <vargaz@freemail.hu>
18668 * mini-amd64.h mini-am64.c: Remove the altstack support code which is
18669 now in mini-exceptions.c.
18671 2005-09-15 Zoltan Varga <vargaz@gmail.com>
18673 * exceptions-x86.c: Applied patch from Patrik Torstensson
18674 <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
18676 * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
18677 code into mini-exceptions.c. Add some assertions to it.
18679 2005-09-12 Zoltan Varga <vargaz@gmail.com>
18681 * aot.c (emit_section_change): Applied patch from "The Software Team"
18682 (<software@solmersa.com>). Fix as errors on windows.
18684 2005-09-11 Zoltan Varga <vargaz@freemail.hu>
18686 * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
18687 method info into the LMF.
18689 2005-09-11 Zoltan Varga <vargaz@gmail.com>
18691 * mini-ia64.c: Add proper unwind info for method epilogs.
18693 * exceptions-ia64.c: Add some code to help debugging.
18695 * mini-ia64.c mini-ia64.h: Add sigaltstack support.
18697 * mini-exceptions.c: Fix warning.
18699 2005-09-11 Zoltan Varga <vargaz@freemail.hu>
18701 * mini.c: Really fix build.
18703 * mini-x86.c mini-amd64.c: Fix build.
18705 2005-09-11 Zoltan Varga <vargaz@gmail.com>
18707 * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
18709 * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
18710 some Interlocked methods as intrinsics.
18712 * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
18713 for Thread methods as well.
18715 * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
18717 * inssel.brg: Add rule for OP_MEMORY_BARRIER.
18719 * mini-ia64.c mini-x86.c mini-amd64.c
18720 cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of
18723 * mini.c (mono_init_exceptions): Fix build breakage.
18725 2005-09-10 Zoltan Varga <vargaz@gmail.com>
18727 * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
18728 of instructions. Use the new ia64_unw_op macros for emitting unwind
18731 * mini.c (mono_init_exceptions): Initialize exception handling
18732 related trampolines at startup.
18734 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
18736 * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
18738 2005-09-09 Zoltan Varga <vargaz@gmail.com>
18740 * mini.c: Handle type loading errors gracefully during compilation and
18741 throw the appropriate exception.
18743 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
18745 * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
18746 for the mono binary.
18748 2005-09-09 Martin Baulig <martin@ximian.com>
18750 * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
18753 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
18755 * mini-arm.h: use emulation for conv.r.un for the release.
18757 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
18759 * mini-arm.c, objects.cs: more fixes and tests for them.
18761 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
18763 * mini-arm.c: align structures to at least 4 bytes to be able
18764 to keep our current optimized memcpy.
18766 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
18768 * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
18770 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18772 * mini.c: ignore SIGPIPE.
18774 2005-09-04 Zoltan Varga <vargaz@gmail.com>
18776 * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
18778 * mini-ia64.h mini-ia64.c: Add some minor optimizations.
18780 2005-09-02 Zoltan Varga <vargaz@gmail.com>
18782 * mini.h: Add prototype for mono_allocate_stack_slots_full.
18784 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
18786 * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
18787 exception handling support.
18788 * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
18789 patch by Brian Koropoff <briank@marakicorp.com>).
18791 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
18793 * mini.c: revert another 'optimization' which breaks when
18794 items on the eval stack need to be saved at a basic block end
18797 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
18799 * jit-icalls.c: for arrays, ensure we always provide
18802 2005-08-30 Zoltan Varga <vargaz@gmail.com>
18804 * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
18806 * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
18808 2005-08-29 Zoltan Varga <vargaz@gmail.com>
18810 * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
18811 arguments in their original register.
18813 2005-08-28 Zoltan Varga <vargaz@gmail.com>
18815 * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
18818 * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
18819 when ssapre is enabled.
18821 * inssel-long.brg: Fix bug in previous patch.
18823 * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize
18824 multiplication by a constant.
18826 2005-08-27 Zoltan Varga <vargaz@gmail.com>
18828 * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
18831 * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
18834 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
18836 * inssel-arm.brg: apply changes tested by Brian Koropoff
18837 <briank@marakicorp.com>.
18839 2005-08-25 Zoltan Varga <vargaz@gmail.com>
18841 * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
18843 2005-08-24 Zoltan Varga <vargaz@gmail.com>
18845 * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
18846 to the same register if dreg is just a base register.
18847 (print_ins): Improve printing of membase opcodes.
18849 * inssel-x86.brg: Add optimized ldind(reg) rules.
18851 * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
18853 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
18855 * mini.c: when running under valgrind, set the stack bottom for
18856 the GC at the actual approximate stack for the app (fixes running
18857 mono with valgrind).
18859 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
18861 * mini.c: do no break at the first valuetype to init found
18862 (fixes bug #75791).
18864 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
18866 * cpu-arm.md, mini-arm.c: more fixes and LMF support.
18868 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
18870 * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
18872 2005-08-23 Zoltan Varga <vargaz@freemail.hu>
18874 * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
18876 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
18878 * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
18880 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
18883 * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
18886 * mini.c (optimize_branches): Don't quit after 1000 iterations on large
18889 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
18891 * tramp-arm.c: allocate less memory for the trampoline and fix typo.
18893 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
18895 * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
18896 in the tail recursion optimization.
18898 * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as
18899 debug info into the assembly file.
18901 * iltests.il: Add test for filter regions.
18903 * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
18904 initial stack of filter regions. Fixes #75755.
18906 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
18908 * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
18909 stack requirements.
18911 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
18913 * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
18914 the check for an already compiled method on non-ia64 platforms.
18915 (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
18918 * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
18920 * inssel-x86.brg: Add some optimized call rules.
18922 2005-08-21 Zoltan Varga <vargaz@freemail.hu>
18924 * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
18927 * mini.h mini-trampolines.c: Pass the trampoline argument to
18928 mono_arch_patch_delegate_trampoline.
18930 * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
18932 * mini-trampolines.c: Fix build.
18934 * mini-amd64.h: Add delegate trampolines.
18936 * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
18938 * inssel-amd64.brg: Add optimized call rules.
18940 * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
18942 * inssel-ia64.brg: Add optimized ldind(reg) rules.
18944 2005-08-20 Zoltan Varga <vargaz@freemail.hu>
18946 * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
18949 * mini-ia64.c: Remove LMF fixmes.
18951 * mini-ia64.h: Remove most fields from LMF.
18953 * inssel-ia64.brg (stmt): Fix unaligned access errors.
18955 * mini-trampolines.c: Add support for IA64 function descriptors.
18957 * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
18958 for IA64 function descriptors.
18960 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
18962 * tramp-arm.c: patch the vtable for virtual calls. Added
18963 support code to register/unregister the LMF.
18964 * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
18967 2005-08-19 Dick Porter <dick@ximian.com>
18969 * mini.c: Use a gsize to store the thread ID, so it can hold a 64
18970 bit value if needed.
18972 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
18974 * mini.c (mini_get_method): Move handling of wrapper data here.
18976 * mini.c (mono_method_to_ir): Add support for dynamic methods.
18978 * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
18981 * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so
18982 bblock->code does not remain empty.
18984 2005-08-17 Zoltan Varga <vargaz@freemail.hu>
18986 * arrays.cs: Add regression test for #75832.
18988 * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
18989 rules. Fixes #75832.
18991 * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
18992 instruction scheduling.
18994 2005-08-12 Zoltan Varga <vargaz@freemail.hu>
18996 * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
18998 2005-08-11 Zoltan Varga <vargaz@freemail.hu>
19000 * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
19002 * mini-codegen.c: Fix VC build.
19004 * cpu-pentium.md: Increase length of atomic_exhange_i4.
19006 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19008 * mini.h: fix signature for mono_register_opcode_emulation.
19010 2005-08-09 Zoltan Varga <vargaz@freemail.hu>
19012 * mini.c: Get rid of most of the helper_sig_... constants using
19013 mono_create_icall_signature ().
19015 2005-08-08 Zoltan Varga <vargaz@freemail.hu>
19017 * jit-icalls.c (helper_ldstr): New helper function.
19019 * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
19021 * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
19022 throw, load the string using a helper call instead of creating a string object.
19024 * aot.c: Update after LDSTR changes.
19026 * mini.h: Bump AOT file version.
19028 * aot.c: Save class size info into the AOT file. Print more statistics during
19031 * mini.h: Bump AOT file version.
19033 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
19034 ordering of disasm cases. Fixes #74957.
19036 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
19038 * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
19039 jit-icalls.c, mini-codegen.c, Makefile.am: changes in
19040 the generic code needed for the ARM port.
19042 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
19044 * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
19045 inssel-arm.brg: more ARM features and fixes.
19047 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
19049 * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
19050 ARM port work in progress.
19052 2005-07-30 Zoltan Varga <vargaz@freemail.hu>
19054 * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
19056 * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
19058 * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
19060 * inssel.brg (mini_emit_memset): Add support for unaligned access.
19062 * *-ia64.*: Ongoing IA64 work.
19064 * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
19066 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
19068 * TODO: Remove out-of-data todo stuff.
19070 * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
19073 * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
19075 * mini.h: Bump corlib version.
19077 2005-07-27 Martin Baulig <martin@ximian.com>
19080 (create_copy_ins): Added `const unsigned char *ip' argument; set
19081 `copy->cil_code' from it.
19083 2005-07-27 Martin Baulig <martin@ximian.com>
19085 * mini-exceptions.c (mono_handle_exception): Don't call
19086 mono_debugger_handle_exception() for filters.
19088 2005-07-27 Zoltan Varga <vargaz@freemail.hu>
19090 * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
19093 2005-07-26 Martin Baulig <martin@ximian.com>
19095 Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
19097 * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
19098 helper_compile_generic_method() if the method is actually virtual
19101 2005-07-26 Martin Baulig <martin@ximian.com>
19104 (trampoline_code): Renamed to `mono_trampoline_code' and made it
19105 public; this is now accessed directly by the debugger.
19106 (mono_generic_trampoline_code): Removed.
19109 (mono_debug_init_method): Also add interncalls and wrappers.
19111 2005-07-23 Zoltan Varga <vargaz@freemail.hu>
19113 * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
19115 2005-07-22 Zoltan Varga <vargaz@freemail.hu>
19117 * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
19119 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
19121 * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
19123 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
19125 * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
19126 getting TLS offsets on AMD64 too.
19128 2005-07-20 Kornel Pal <kornelpal@hotmail.com>
19130 * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
19132 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
19134 * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
19135 inssel-arm.brg, mini-arm.h: ARM port work in progress.
19137 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
19139 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
19141 * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
19144 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call
19145 mono_sparc_is_virtual_call ().
19147 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
19149 * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
19150 trampoline parameters.
19152 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
19154 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
19155 to mono_arch_get_vcall_slot_addr.
19157 * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
19160 * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
19162 2005-07-19 Zoltan Varga <vargaz@freemail.hu>
19164 * mini-ia64.h mini-ia64.c: Finish pinvoke support.
19166 2005-07-19 Martin Baulig <martin@ximian.com>
19168 * exceptions-amd64.c (throw_exception): Call
19169 mono_debugger_throw_exception() here like we're doing it on i386.
19171 2005-07-19 Zoltan Varga <vargaz@freemail.hu>
19173 * mini-ia64.c: Add optimized TLS access support.
19175 2005-07-18 Zoltan Varga <vargaz@freemail.hu>
19177 * mini-exceptions.c: Ongoing IA64 work.
19179 * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
19181 * mini.c: Use the default optimization set when embedding. Fixes
19184 2005-07-11 Zoltan Varga <vargaz@freemail.hu>
19186 * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts
19187 of trampolines to a separate file.
19189 * mini-trampolines.c: New file.
19191 * mini.h tramp-x86.c: Move arch independent parts of trampolines to a
19194 * tramp-x86.c: Reorganize the trampoline code to be similar to the
19197 * mini-codegen.c: Fix cygwin build.
19199 2005-07-10 Zoltan Varga <vargaz@freemail.hu>
19201 * mini.c: Add some minor changes needed by the IA64 port.
19203 * *-ia64.*: Ongoing IA64 work.
19205 2005-07-09 Zoltan Varga <vargaz@freemail.hu>
19207 * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split
19208 trampolines into arch-independent and arch-dependent parts.
19210 * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
19212 2005-07-08 Zoltan Varga <vargaz@freemail.hu>
19214 * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
19216 * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
19217 the xp-regalloc-branch for amd64.
19219 * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
19220 xp-regalloc-branch for x86.
19222 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
19224 * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
19226 2005-07-06 Martin Baulig <martin@ximian.com>
19229 (mono_jit_compile_method_inner): Call mono_get_inflated_method().
19230 (mono_jit_runtime_invoke): Likewise.
19232 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
19234 * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
19237 * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
19238 without loading their metadata. Reorganize the file format so exception handling+
19239 debug info is kept separate from normal method info. Create MonoJitInfo
19240 structures for methods lazily.
19242 * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
19244 (x86_class_init_trampoline): Patch AOT class init trampolines too.
19246 * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
19248 * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
19251 * mini.h: Bump AOT file version.
19253 2005-07-04 Zoltan Varga <vargaz@freemail.hu>
19255 * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
19257 2005-07-01 Raja R Harinath <rharinath@novell.com>
19259 * Makefile.am (check-local): Call semdel-wrapper.
19261 2005-06-29 Zoltan Varga <vargaz@freemail.hu>
19263 * mini-x86.c: Revert the last change as it seems to break the build..
19265 2005-06-28 Zoltan Varga <vargaz@freemail.hu>
19267 * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
19269 * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
19271 2005-06-27 Ben Maurer <bmaurer@ximian.com>
19273 * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
19274 outside of the macro, so strange stuff doesn't happen with gcc4
19275 (NEW_AOTCONST_TOKEN): Likewise.
19277 2005-06-28 Martin Baulig <martin@ximian.com>
19279 * mini.c (mini_class_is_system_array): New static method; use this
19280 instead of `klass->parent == mono_defaults.array_class' everywhere
19281 since this also works for the new generic array class.
19283 2005-06-26 Ben Maurer <bmaurer@ximian.com>
19285 * inssel.brg: Remove warnings.
19287 2005-06-24 Zoltan Varga <vargaz@freemail.hu>
19289 * mini-ia64.c: Ongoing IA64 work.
19291 * basic-float.cs: Add float->i1 conversion test.
19293 * iltests.il: Add conv.u4 test.
19295 2005-06-23 Zoltan Varga <vargaz@freemail.hu>
19297 * inssel-long.brg: Fix bug caused by last change.
19299 2005-06-23 Geoff Norton <gnorton@customerdna.com>
19301 * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other
19302 BSDs. Allows the x86 JIT to work on OSX86
19304 2005-06-22 Zoltan Varga <vargaz@freemail.hu>
19306 * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
19309 * mini-ia64.c: Ongoing IA64 work.
19311 2005-06-19 Zoltan Varga <vargaz@freemail.hu>
19313 * mini-ia64.c: Ongoing IA64 work.
19315 * driver.c: Clean up jit_code_hash as well when using --regression.
19317 * inssel-long.brg: Fix long->i4/u4 conversion rules.
19319 * basic-long.cs: Add tests for long->u4 conversion.
19321 2005-06-18 Ben Maurer <bmaurer@ximian.com>
19323 * mini.c: Take mono_get_domainvar out of macros. This makes sure
19324 that we do not depend on undefined C behavior: the order stuff
19325 gets evaluated within an expression. Fixes mono when compiled on
19328 2005-06-18 Zoltan Varga <vargaz@freemail.hu>
19330 * *-ia64.*: Ongoing IA64 work.
19332 * aot.c: Lower memory usage while loading AOT methods.
19334 * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
19336 * mini.h: Bump AOT file format version.
19338 2005-06-17 Zoltan Varga <vargaz@freemail.hu>
19340 * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
19342 2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
19344 * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
19345 not on callee assembly). Fixed some comments.
19347 2005-06-16 Zoltan Varga <vargaz@freemail.hu>
19349 * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
19350 it gets proper disassembly.
19351 (emit_method_info): Remove some dead code.
19353 * mini.c (mini_method_compile): Allways allocate the GOT var in
19354 mono_method_to_ir for emulating opcodes.
19356 2005-06-13 Zoltan Varga <vargaz@freemail.hu>
19358 * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
19359 before freeing the code memory. Fixes #74990.
19361 * objects.cs: Add regression test for #74992.
19363 * liveness.c: Extend live ranges of arguments to the beginning of the
19364 method. Fixes #74992.
19366 * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
19367 so it points into the faulting instruction.
19369 2005-06-12 Zoltan Varga <vargaz@freemail.hu>
19371 * jit-icalls.c (mono_imul_ovf): Add exception handling.
19373 * *-ia64.*: Ongoing IA64 work.
19375 * mini.c (mini_init): Fix signature of mono_delegate_ctor.
19377 2005-06-11 Zoltan Varga <vargaz@freemail.hu>
19379 * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
19381 * *-ia64.*: Ongoing IA64 work.
19383 2005-06-10 Zoltan Varga <vargaz@freemail.hu>
19385 * basic-long.cs: Add tests for add/sub.ovf.
19387 * basic.cs: Add tests for sub.ovf.
19389 * *-ia64.*: Ongoing IA64 work.
19391 2005-06-09 Zoltan Varga <vargaz@freemail.hu>
19393 * *-ia64.*: Ongoing IA64 work.
19395 * basic.cs: Add conv.ovf.i4.un test.
19397 2005-06-09 Massimiliano Mantione <massi@ximian.com>
19399 * mini.c: (remove_block_if_useless) Fixed bug 75061.
19401 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19403 * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
19405 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
19407 * *-ia64.*: Ongoing IA64 work.
19409 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19412 * mini.c: added the ability to toggle trace on/off using SIGUSR2.
19414 2005-06-04 Zoltan Varga <vargaz@freemail.hu>
19416 * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
19418 2005-06-03 Zoltan Varga <vargaz@freemail.hu>
19420 * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
19422 * mini-amd64.c (amd64_patch): Add an assert to check that the destination
19423 of a call is callable by a near call.
19425 2005-05-31 Zoltan Varga <vargaz@freemail.hu>
19427 * mini-ia64.c: Ongoing IA64 work.
19429 2005-05-29 Zoltan Varga <vargaz@freemail.hu>
19431 * genmdesc.c: Make the generated array non-static.
19433 * inssel-long.brg: Fix LSHR_IMM rule.
19435 * *-ia64.*: Ongoing IA64 work.
19437 * *-ia64.*: Ongoing IA64 work.
19439 2005-05-28 Zoltan Varga <vargaz@freemail.hu>
19441 * *-ia64.*: Ongoing IA64 work.
19443 * *-ia64.*: Ongoing IA64 work.
19445 * mini-ia64.c: Ongoing IA64 work.
19447 * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
19449 2005-05-28 Zoltan Varga <vargaz@freemail.hu>
19451 * objects.cs basic-calls.cs: Move some tests to objects.cs.
19453 * objects.cs basic-long.cs: Move some tests to objects.cs.
19455 2005-05-26 Zoltan Varga <vargaz@freemail.hu>
19457 * *-ia64.*: Ongoing IA64 work.
19459 * iltests.il: Add a new test.
19461 * mini.c (mono_method_to_ir): Initialize valuetypes when created using
19462 newobj. Fixes #75042.
19464 2005-05-22 Zoltan Varga <vargaz@freemail.hu>
19466 * *-ia64.*: Ongoing IA64 work.
19468 * *-ia64.*: Ongoing IA64 work.
19470 * *-ia64.*: Ongoing IA64 work.
19472 * basic.cs objects.cs: Move tests accessing static variables as well.
19474 * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
19476 2005-05-21 Zoltan Varga <vargaz@freemail.hu>
19478 * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
19480 * driver.c: Always print failed tests.
19482 * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
19485 * *ia64*: Ongoing IA64 work.
19487 2005-05-20 Zoltan Varga <vargaz@freemail.hu>
19489 * basic.cs: Add tests for add.ovf. Fix warnings.
19491 2005-05-18 Miguel de Icaza <miguel@novell.com>
19493 * driver.c (mono_main): Avoid crash if no argument is passed to
19494 --break; Do not use g_error, but f_printf. And fix all other
19495 ocurrences of the same crash.
19497 2005-05-17 Zoltan Varga <vargaz@freemail.hu>
19499 * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
19500 and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
19503 2005-05-14 Zoltan Varga <vargaz@freemail.hu>
19505 * *-ia64.*: Add beginnings of IA64 backend.
19507 * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.
19509 2005-05-13 Zoltan Varga <vargaz@freemail.hu>
19511 * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
19514 * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
19516 * mini-amd64.c: Fix a warning.
19518 2005-05-10 Zoltan Varga <vargaz@freemail.hu>
19520 * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
19521 in float_neg. Fixes #74897.
19523 * mini-amd64.c (emit_call): Fix another near call bug.
19525 2005-05-06 Sebastien Pouliot <sebastien@ximian.com>
19527 * declsec.c: Keep the appdomain information in the structure. Added a
19528 missing "return FALSE" for Unmanaged if FullTrust is set (or else the
19529 value gets overwritten).
19530 * declsec.h: Set the default MonoArray for the the stack to 6. Added
19531 an MonoAppDomain member to MonoSecurityFrame.
19532 * mini-exceptions.c: Do not use a glist to keep GC allocated objects
19533 used in the stack walk. Now use a MonoArray which grow (double) when
19536 2005-05-05 Lluis Sanchez Gual <lluis@novell.com>
19538 * mini.c: Re-enabled runtime cleanup, since running threads should
19539 now properly stop when exiting.
19541 2005-05-05 Zoltan Varga <vargaz@freemail.hu>
19543 * mini-codegen.c: New file contaning the arch-independent local
19544 register allocator. Not used by any architectures yet.
19546 * mini.h linear-scan.c: Merge some changes from the
19547 mini-xp-local-regalloc branch.
19549 2005-04-28 Zoltan Varga <vargaz@freemail.hu>
19551 * mini-amd64.c (emit_call): Fix calls to native functions when the
19552 runtime is compiled as a shared library. Fixes #74756.
19554 * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
19555 on a literal field. Fixes #74751.
19557 2005-04-25 Raja R Harinath <rharinath@novell.com>
19559 * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
19561 2005-04-23 Zoltan Varga <vargaz@freemail.hu>
19563 * objects.cs: Add missing null casting test.
19565 2005-04-22 Zoltan Varga <vargaz@freemail.hu>
19567 * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
19568 in wrapper methods. Also rename 'address' variable to 'offset'.
19570 2005-04-20 Zoltan Varga <vargaz@freemail.hu>
19572 * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
19575 * Makefile.am (MCS): Use -unsafe instead of --unsafe.
19577 * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
19580 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
19582 * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
19584 2005-04-17 Zoltan Varga <vargaz@freemail.hu>
19586 * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
19587 just the last bytes.
19589 2005-04-17 Zoltan Varga <vargaz@freemail.hu>
19591 * aot.c (mono_compile_assembly): Fix warning.
19593 * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
19594 by the _MSC_VER stuff.
19596 2005-04-16 Zoltan Varga <vargaz@freemail.hu>
19598 * inssel-long.brg: Fix #74588.
19600 * cpu-amd64.md: Fix #74591.
19602 * iltests.il: Add new regression tests.
19604 2005-04-13 Zoltan Varga <vargaz@freemail.hu>
19606 * trace.c (mono_trace_enter_method): Print enums as an int, not as a
19609 2005-04-11 Zoltan Varga <vargaz@freemail.hu>
19611 * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
19613 * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches
19614 from Bill Middleton <flashdict@gmail.com>.
19616 2005-04-10 Zoltan Varga <vargaz@freemail.hu>
19618 * arrays.cs: Add new regression test. Fix warnings.
19620 2005-04-09 Zoltan Varga <vargaz@freemail.hu>
19622 * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
19623 and leakage in CKFINITE.
19625 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
19626 this to a null op since it is called on amd64 too.
19628 * exceptions-amd64.c (get_throw_trampoline): Align stack.
19630 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
19631 body since this is not used on amd64.
19633 * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
19635 * mini-amd64.c: Remove obsolete fixmes.
19637 * mini.c (print_method_from_ip): Fix debugging support.
19639 2005-2-1 Massimiliano Mantione <massi@ximian.com>
19641 * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
19642 so that expressions that don't give much gain are not reduced.
19643 * ssapre.h: Likewise.
19645 2005-04-04 Zoltan Varga <vargaz@freemail.hu>
19647 * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
19649 * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
19651 * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
19653 2005-04-01 Zoltan Varga <vargaz@freemail.hu>
19655 * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
19657 * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
19659 2005-03-31 Zoltan Varga <vargaz@freemail.hu>
19661 * mini-x86.c: If sigaltstack support is enabled, perform win32 style
19664 * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
19666 * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
19668 * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
19670 * mini-x86.h mini-x86.c exceptions-x86.c: Add support for
19671 MONO_ARCH_USE_SIGACTION. Fixes #74252.
19673 * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
19675 * mini-x86.c: Fix up stack overflow handling.
19677 * exceptions.cs: Add new regression test.
19679 2005-03-30 Zoltan Varga <vargaz@freemail.hu>
19681 * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
19682 mono_jit_thread_attach.
19684 * mini.c (mono_method_to_ir): Verify called method is not abstract.
19686 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
19688 * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
19689 avoid calling constructors using callvirt.
19691 * inssel.brg: Fix #74073.
19693 2005-03-29 Sebastien Pouliot <sebastien@ximian.com>
19695 * aot.c, mini.h: Added mono-compiler.h header to allow/ease
19696 compilation with non-GCC compilers.
19697 * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
19698 possible using VS.NET. Adapted from the work of J Lothian (for VC6).
19700 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19702 * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
19703 klass->interface_offsets (will likely fix bug#74073).
19705 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
19707 * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
19709 2005-03-28 Zoltan Varga <vargaz@freemail.hu>
19711 * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
19712 to amd64_div_reg_size ().
19714 * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
19716 2005-03-27 Zoltan Varga <vargaz@freemail.hu>
19718 * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
19720 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
19722 * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
19724 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
19726 * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
19728 * mini.c (mono_precompile_assembly): Load and precompile referenced
19729 assemblies as well. Fixes #74015.
19731 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
19733 * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
19735 2005-03-23 Sebastien Pouliot <sebastien@ximian.com>
19737 * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
19738 a lot of checks and (anyway) permissions cannot work until corlib is
19741 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
19743 * mini-ppc.c: fixed ABI issue on sysv/ppc.
19745 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
19747 * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
19748 calls (fixes bug#72824).
19750 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
19752 * mini.c: fix tail recursion elimination (see test in bug#73936).
19754 2005-03-21 Zoltan Varga <vargaz@freemail.hu>
19756 * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
19757 some fp functions in sse2 mode.
19759 2005-03-20 Zoltan Varga <vargaz@freemail.hu>
19761 * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
19763 2005-03-19 Zoltan Varga <vargaz@freemail.hu>
19765 * mini.h mini.c: Add mono_get_jit_tls_key ().
19767 * mini-x86.c: Enable fast TLS support on windows.
19769 2005-03-17 Sebastien Pouliot <sebastien@ximian.com>
19771 * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
19772 * mini.c: Check for p/invoke method when generating code. If a
19773 p/invoke method, or it's class, isn't decorated with [Suppress
19774 UnmanagedCodeSecurity] then generate code to call System.Security.
19775 UnmanagedDemand (only if the security manager is active).
19777 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
19779 * tramp-amd64.c (create_specific_trampoline): Revert parts of the
19780 last change as it seems to cause strange crashes.
19782 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
19784 * *.c: handle unsafe function pointers where needed.
19786 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
19788 * mini.c (mono_jit_free_method): Remove the fixme too.
19790 2005-03-15 Miguel de Icaza <miguel@novell.com>
19792 * mini.c: As discussed, make the code actually free the delegate
19793 thunk now, to enable the debugging of delegate problems, use
19794 MONO_DEBUG=1 when running Mono.
19796 This takes also care of parts of the leaks as seen by Joe.
19798 2005-03-15 Zoltan Varga <vargaz@freemail.hu>
19800 * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable
19801 thread_tls_offset calculation.
19803 2005-03-14 Sebastien Pouliot <sebastien@ximian.com>
19805 * declsec.c: Reworked linkdemand checks for icall. The previous code
19806 was using the declaration code (untrusted) and didn't work as expected
19807 with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
19810 2005-03-13 Zoltan Varga <vargaz@freemail.hu>
19812 * iltests.il: Add new localloc test.
19814 * mini-amd64.c: Handle large stack allocations the same way as on
19815 windows if stack overflow handling is working.
19817 * mini-amd64.c: Allocate the signal stack using mmap.
19819 * mini.c (sigsegv_signal_handler): Fix reading of context.
19821 * mini-exceptions.c: Fix up stack overflow handling.
19823 * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
19825 * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
19827 * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
19829 * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
19831 * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
19832 tramp_init functions as they are no longer needed.
19834 2005-03-12 Zoltan Varga <vargaz@freemail.hu>
19836 * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
19838 * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
19840 * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
19842 * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
19845 * mini-ops.h: Add OP_LMUL_IMM.
19847 * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
19848 long mul/div opcodes as intrinsic.
19850 * mini-amd64.c (emit_call): Handle the case when the callee might be
19853 2005-03-11 Zoltan Varga <vargaz@freemail.hu>
19855 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
19858 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
19860 * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
19862 2005-03-09 Ben Maurer <bmaurer@ximian.com>
19864 * mini.c (mono_codegen): Don't leak here, to help people running
19867 2005-03-08 Zoltan Varga <vargaz@freemail.hu>
19869 * mini-amd64.c (mono_arch_output_basic_block): Fix int->float
19870 conversions in sse2 mode.
19872 * basic-float.cs: Add regression test.
19874 * mini-amd64.c: Reenable sse2.
19876 2005-03-07 Zoltan Varga <vargaz@freemail.hu>
19878 * mini-amd64.c: Disable sse2 until some regressions are fixed.
19880 2005-03-07 Joerg Rosenkranz <joergr@voelcker.com>
19882 * driver.c: Copyright text should include 2005.
19884 2005-03-07 Zoltan Varga <vargaz@freemail.hu>
19886 * cpu-amd64.md (load_membase): Fix more max lengths.
19888 2005-03-06 Zoltan Varga <vargaz@freemail.hu>
19890 * cpu-amd64.md (load_membase): Fix max length.
19892 * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
19894 * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
19896 * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
19897 support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
19899 * basic-float.cs: Add rounding regression test.
19901 * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
19903 2005-03-04 Neale Ferguson <NealeFerguson@earthlink.net>
19905 * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
19906 structures in registers for pinvoke wrappers.
19908 2005-03-04 Zoltan Varga <vargaz@freemail.hu>
19910 * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
19912 2005-03-03 Zoltan Varga <vargaz@freemail.hu>
19914 * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
19915 wrapper to mono_jit_thread_attach.
19917 * mini.c (mini_jit_thread_attach): New jit icall.
19919 * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in
19920 native->managed wrappers.
19922 * exceptions.cs: Add new regression test.
19924 * mini.c (optimize_branches): Check regions in the cbranch to throw
19925 block case as well. Fixes #73242.
19927 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
19929 * mini.c: thread safety fixes.
19931 2005-02-27 Zoltan Varga <vargaz@freemail.hu>
19933 * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
19934 patching stuff, since delegates use jump trampolines so there is
19937 * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in
19940 * tramp-amd64.c: Fix build.
19942 * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
19943 it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
19945 * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
19946 Rename this to mono_arch....
19947 (mono_amd64_get_delegate_method_ptr_addr): Ditto.
19949 * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
19951 * mini-amd64.c (emit_call): If both the caller and the callee is
19952 guaranteed to have 32 bit addresses, emit a normal call.
19954 * tramp-amd64.c: Adapt to changes in mini-amd64.c.
19956 * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines.
19957 * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
19958 method_ptr inside delegates.
19960 2005-02-26 Zoltan Varga <vargaz@freemail.hu>
19962 * mini.c (mono_jit_free_method): Free the method info even if the native code is
19963 invalidated. Fixes #73001.
19965 * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
19967 * mini-x86.c: Only use stdcall for pinvokes on windows.
19969 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
19971 * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
19972 * mini-x86.c: remove unreliable __thread var offset detection,
19973 use the correct accessors and enable by default.
19975 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
19977 * mini.c (mono_jit_free_method): Fix memory leak.
19979 2005-02-22 Zoltan Varga <vargaz@freemail.hu>
19981 * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW.
19983 2005-02-21 Zoltan Varga <vargaz@freemail.hu>
19985 * cpu-amd64.md: Fix lengths of atomic opcodes.
19987 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
19989 * driver.c: try to not imply using ICU is any good.
19991 2005-02-20 Zoltan Varga <vargaz@freemail.hu>
19993 * mini-amd64.c (mono_arch_get_inst_for_method): Implement more
19994 functions as inline ops.
19996 * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
19997 some Interlocked functions as inline ops.
19999 * mini.c (move_basic_block_to_end): Fix bug in last patch.
20001 * mini.h (MonoBasicBlock): Reorganize fields a bit.
20003 * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
20005 * mini.c: Add support for OP_NOT_TAKEN.
20007 * mini-amd64.h mini-amd64.c: Add support for passing/returning small
20008 structures in registers for pinvoke wrappers.
20010 * mini-amd64.c: Fix warnings.
20012 2005-02-19 Zoltan Varga <vargaz@freemail.hu>
20014 * mini.h (MonoCompile): Add 'ret_var_is_local' field.
20016 * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
20018 * mini.c (NEW_RETLOADA): If the ret variable is a local, use its
20019 address instead of loading the address from it.
20021 * mini-x86.c: Add support for returning small structs in registers
20022 on Win32. Fixes part of #70864.
20024 2005-02-18 Zoltan Varga <vargaz@freemail.hu>
20026 * trace.c (get_token): Improve error checking.
20028 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
20030 * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
20032 2005-02-17 Sebastien Pouliot <sebastien@ximian.com>
20034 * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
20035 it can be reused for MonoClass.
20036 * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
20039 2005-02-15 Sebastien Pouliot <sebastien@ximian.com>
20041 * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code
20042 instead of a MonoReflectionMethod. The method information wasn't used
20043 when displaying SecurityException details (but will be now).
20045 2005-02-15 Atsushi Enomoto <atsushi@ximian.com>
20047 * Makefile.am : windows build fix.
20049 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
20051 * iltests.il: Add new regression test.
20053 * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
20056 2004-02-13 Sebastien Pouliot <sebastien@ximian.com>
20058 * mini.c: Moved linkdemand check into helper function check_linkdemand
20059 to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP,
20062 2004-02-13 Sebastien Pouliot <sebastien@ximian.com>
20064 * declsec.c: Added statistics counter for different kinds of
20066 * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
20067 (and commented) declaration.
20068 * mini.c: Added statistics counter for security Demand code
20069 generation. Added display of security statistics.
20071 2005-02-13 Zoltan Varga <vargaz@freemail.hu>
20073 * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
20074 Fix compilation errors under gcc-2.95.
20076 2005-02-12 Ben Maurer <bmaurer@ximian.com>
20078 * mini.c, driver.c: Use the new jit trampoline hashtable
20080 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20082 * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
20084 2005-02-11 Martin Baulig <martin@ximian.com>
20086 * debug-mini.c (mono_debug_close_method): Free the line number array.
20088 2005-02-10 Zoltan Varga <vargaz@freemail.hu>
20090 * aot.c: Break up large methods into smaller ones. Share GOT slots for
20093 * mini.h: Bump AOT file format version.
20095 2005-02-10 Sebastien Pouliot <sebastien@ximian.com>
20097 * declsec.c: Added LinkDemand support and it's special cases for ECMA,
20099 * declsec.h: Added macros to get/set lazyly initialized security
20100 informations about assemblies. Added new enum for different type of
20101 possible LinkDemand violation. Added function to check LinkDemands.
20102 * mini.h: Added a field to MonoCompile to hold any security violation
20103 detected when JITting a method (so it can be thrown later).
20104 * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL
20105 and CEE_CALLVIRT. Added code to throw exception at the end of
20106 mini_method_compile (note: the exception is unhandled right now).
20108 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
20110 * mini.c, jit-icalls.c: use the managed implementation of
20111 memset for initobj and memset, to avoid managed <-> unmanaged
20114 2005-02-10 Zoltan Varga <vargaz@freemail.hu>
20116 * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
20117 optimization if it would need a GOT var.
20119 * basic.cs: Add tests for constant propagation and switch statements.
20121 * ssa.c: Fix out-of-range constant propagation and switch statements.
20123 2005-02-09 <vargaz@freemail.hu>
20125 * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
20127 2005-02-08 Zoltan Varga <vargaz@freemail.hu>
20129 * cpu-amd64.md (load_membase): Fix max length of load_membase.
20131 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20133 * mini.c: update to new signature of mono_class_get_allocation_ftn().
20135 2005-02-06 Neale Ferguson <NealeFerguson@earthlink.net>
20137 * cpu-s390.md, mini-s390.c: Correct bug with register usage on certain
20138 arithmetic operations.
20140 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
20142 * mini-ppc.c: add a workaround for broken user code that
20143 DllImports vararg functions with non-vararg signatures.
20145 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
20147 * mini.c (mono_jit_compile_method_inner): Add detection and a
20148 meaningfull error message for assemblies written in Managed C++.
20150 * tramp-amd64.c mini-amd64.h: Add support for
20151 create_trampoline_from_token ().
20153 * aot.c mini-x86.c abcremoval.c: Applied patch from
20154 Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20156 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
20158 * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline
20159 which takes a MonoImage/token as parameter instead of a MonoMethod.
20161 * aot.c: Use the new trampoline for initializing vtables.
20163 * aot.c: Add support for ldfld/stfld_remote wrappers.
20165 * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
20166 rules for compare <MEM>, IMM.
20168 * mini.h (MONO_AOT_FILE_VERSION): Bump it.
20170 * aot.c: Handle inherited finalizers correctly.
20172 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
20174 * inssel.brg (stmt): Add a missing _setup_... ().
20176 * aot.c: Save some parts of the class state to the AOT file and use it
20177 to recompute that state when a class is initialized.
20179 * mini.c: Install AOT hooks into the runtime.
20181 * mini.h: Bump AOT file format version.
20183 * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
20186 * iltests.il: Add new test.
20188 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20190 * mini.c: fix typo.
20192 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
20194 * mini.c: setup the statistical profiler in the thread attach
20195 callback to cope with the new single thread code.
20197 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20199 * mini-ppc.c: ensure we have enough room for the profiler
20200 calls (fixed bug#72084).
20202 2005-02-02 Zoltan Varga <vargaz@freemail.hu>
20204 * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding
20207 2005-2-1 Massimiliano Mantione <massi@ximian.com>
20209 * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
20211 2005-2-1 Massimiliano Mantione <massi@ximian.com>
20213 * ssapre.c: Fixed an issue with down safety (this allows IronPython
20214 to succesfully execute parrotbench).
20215 * ssapre.h: Likewise.
20217 2005-2-1 Massimiliano Mantione <massi@ximian.com>
20219 * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
20220 variable for stores to method arguments (fixes a SSAPRE issue).
20222 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20224 * mini.c: handle value types in dup, fixes gen-112.cs.
20226 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
20228 * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
20229 sequence for calls in dynamic methods to avoid thunks.
20231 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20233 * mini.c: correctly remove dynamic methods from the hashtable.
20235 2005-1-20 Massimiliano Mantione <massi@ximian.com>
20237 * driver.c: Disabled SSAPRE until fix the bug that appears
20238 in IronPython's parrotbench.
20240 2005-01-31 Zoltan Varga <vargaz@freemail.hu>
20242 * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
20244 * mini.c (mono_method_to_ir): Revert the previous change.
20246 * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
20247 when AOT compiling.
20249 * tramp-x86.c (x86_magic_trampoline): Avoid calls to
20250 mono_jit_info_table_find () etc. when running under valgrind.
20252 * inssel.brg: Fix warnings.
20254 * mini-exceptions.c: Fix warnings.
20256 2005-01-31 Martin Baulig <martin@ximian.com>
20258 * driver.c (compile_all_methods_thread_main): Don't try to compile
20259 generic methods or anything which has type parameters.
20261 2005-01-30 Zoltan Varga <vargaz@freemail.hu>
20263 * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
20265 * TestDriver.cs: Add --verbose flags.
20267 * graph.c ssa.c: Fix 64 bit warnings.
20269 * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c
20270 trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
20271 Fix 64 bit warnings.
20273 * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
20274 variable not spotted by gcc.
20276 * mini-amd64.c inssel-amd64.brg: Applied patch from
20277 Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of
20278 X86_COMPARE_MEMBASE opcodes.
20280 * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
20282 2005-01-29 Ben Maurer <bmaurer@ximian.com>
20284 * *: MonoMethod->signature might be NULL now. You *MUST* use
20285 mono_method_signature.
20287 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
20289 * driver.c (compile_all_methods_thread_main): Compile the methods
20290 without invoking cctors.
20292 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20294 * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
20295 * basic-calls.cs: test for the above.
20297 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
20299 * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after
20300 MonoJitInfo changes.
20302 2005-01-27 Zoltan Varga <vargaz@freemail.hu>
20304 * mini-exceptions.c (mono_handle_exception): Compute the stack trace
20305 eagerly if it contains dynamic methods.
20307 * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
20309 * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
20310 trace, it is now computed by an icall from trace_ips.
20312 * mini-exceptions.c: Fix a warning.
20314 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20316 * mini-exceptions.c: don't bother getting stack trace info if
20317 it's not going to be used.
20319 2005-01-27 Raja R Harinath <rharinath@novell.com>
20321 * Makefile.am (common_sources): Add ssapre-cee-ops.h and
20324 2005-01-26 Zoltan Varga <vargaz@freemail.hu>
20326 * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
20328 * aot.c: Avoid calling mono_method_get_header () if not needed.
20330 * mini.h: Bump AOT file format version.
20332 * mini.c (mono_emit_native_call): Allocate a GOT var here.
20334 * mini.c (mono_print_tree): Print more info for calls.
20336 2005-01-26 Sebastien Pouliot <sebastien@ximian.com>
20338 * declsec.h: Remove warning by adding missing include for marshal.h
20340 2005-01-26 Martin Baulig <martin@ximian.com>
20342 * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
20345 2005-01-25 Zoltan Varga <vargaz@freemail.hu>
20347 * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
20350 * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
20352 * aot.c (mono_compile_assembly): Fix a warning.
20354 2005-01-25 Sebastien Pouliot <sebastien@ximian.com>
20356 * declsec.c: Look for security attributes on the original MonoMethod
20357 (and not the wrapped one). This fix permissions on icalls.
20359 2005-01-23 Zoltan Varga <vargaz@freemail.hu>
20361 * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
20363 * mini.c (mono_allocate_stack_slots): Add a fixme.
20365 * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
20367 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20369 * inssel.brg: optimize casts of sealed types (more
20370 optimizations waiting for fixes in remoting).
20372 2005-01-23 Zoltan Varga <vargaz@freemail.hu>
20374 * inssel.brg (stmt): Add another dummy rule.
20376 * driver.c: Fix warnings.
20378 * driver.c (mono_main): If running under valgrind, instruct glib to use
20379 the system allocation functions so valgrind can track the memory
20380 allocated by the g_... functions.
20382 * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
20384 * mini-ops.h: Add OP_DUMMY_STORE opcode.
20386 * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
20388 * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
20389 variables in try regions.
20391 * mini.c (mini_method_compile): Don't disable optimizations on large
20392 methods when AOT compiling.
20394 * mini.c (mono_allocate_stack_slots): New arch independent method to
20395 allocate stack slots. Not yet used.
20397 2005-01-22 Ben Maurer <bmaurer@ximian.com>
20399 * debug-mini.c (mono_debug_close_method): Plug some leaks.
20401 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
20403 * mini-ppc.c: make the branch info relative as the code
20404 buffer can be reallocated.
20406 2005-01-22 Sebastien Pouliot <sebastien@ximian.com>
20408 * aot.c: Allow decoding of the new MONO_PATCH_INFO_DECLSEC.
20409 * driver.c: Removed the AOT/security restriction. Now initialize the
20410 security manager (in metadata) if --security is used.
20411 * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
20412 rather than the pointer to declarative security, when AOT is used.
20414 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
20416 * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
20417 basic blocks, reduced intrinsic exception throwing code size.
20419 2005-01-22 Miguel de Icaza <miguel@ximian.com>
20421 * driver.c (mini_usage): Reorder the usage screen.
20423 2005-01-21 Zoltan Varga <vargaz@freemail.hu>
20425 * mini.c (mono_resolve_patch_target): Fix warning.
20427 2005-01-20 Zoltan Varga <vargaz@freemail.hu>
20429 * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
20432 * mini-amd64.c (mono_arch_local_regalloc): Ditto.
20434 * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
20435 breaks the amd64 build.
20437 * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem
20438 register allocation. Fixes #71454.
20440 * mini-amd64.c (mono_arch_local_regalloc): Ditto.
20442 * arrays.cs: Add new regression test.
20444 2005-1-20 Massimiliano Mantione <massi@ximian.com>
20446 * ssapre.c: Turned usage of snprintf to GString.
20447 * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
20448 (I left it on by mistake in my previous commit).
20450 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
20452 * mini.c, cfold.c, basic-calls.cs: preserve side effects
20453 on cond branch optimization (fixes bug# 71515).
20455 2005-1-20 Massimiliano Mantione <massi@ximian.com>
20457 * abcremoval.c: Fixed bug 71062.
20458 * abcremoval.h: Likewise.
20460 2005-1-20 Massimiliano Mantione <massi@ximian.com>
20462 * mini.c: Added a new functionality to optimize_branches, the removal
20463 of useless basic blocks, and fixed some problem in the removal of
20464 critical edges; some utility functions added for both purposes.
20465 * ssapre.c: Added complex expression support, and fixed bug 70637.
20466 * ssapre.h: Likewise.
20467 * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
20469 * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
20470 * driver.c: Re-enabled SSAPRE.
20472 2005-01-19 Martin Baulig <martin@ximian.com>
20474 * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
20475 the result of mono_get_method_constrained().
20477 2005-01-18 Neale Ferguson <NealeFerguson@earthlink.net>
20479 * exceptions-s390.c tramp-s390.c: Allocate code using the global code
20482 2005-01-18 Geoff Norton <gnorton@customerdna.com>
20484 * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
20485 be detected. Fixes #59296.
20487 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
20489 * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
20490 which can happen. Fixes #71361.
20492 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
20494 * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
20497 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
20499 * mini.c (mono_create_jump_trampoline): Revert last change as it causes
20500 appdomain-unload.exe to fail.
20502 * mini.c: Fix some memory leaks.
20504 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
20506 * inssel.brg: handle the new size of rank, idepth, max_interface_id.
20507 Fixed bug and sped up some codepaths.
20509 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
20511 * mini.c: Fix some memory leaks.
20513 * exceptions.cs basic-long.cs: Add test for checked ulong->int
20516 * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
20518 * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
20521 * iltests.il: Add regression test for #71320.
20523 2005-01-16 Zoltan Varga <vargaz@freemail.hu>
20525 * mini.c (mono_codegen): Fix installation of profiler hooks.
20527 * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
20529 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20531 * mini.h, mini.c, cfold.c: optimize access to enum
20532 readonly fields, too. Eval conditional branches if possible
20533 to perform unreachable code removal in more cases.
20535 2005-01-15 Zoltan Varga <vargaz@freemail.hu>
20537 * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
20539 * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
20542 * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
20543 WinXP DEP. Fixes #71244.
20545 2005-01-14 Zoltan Varga <vargaz@freemail.hu>
20547 * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
20549 2005-01-13 Zoltan Varga <vargaz@freemail.hu>
20551 * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
20553 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
20555 * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo
20558 * mini.h: Bump AOT version.
20560 * mini.h (MonoCompile): Change exvar to a hash table.
20562 * mini.c: Allocate a separate exvar for each handler block.
20564 * mini.c: Get rid of the computation of filter_lengths, its not needed.
20566 * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
20567 ex var with the pending exception and only throw if the two are equal.
20570 * exceptions.cs: Add tests for rethrow and nested catch clauses.
20572 * mini-x86.c: Fix warnings.
20574 * Makefile.am (common_sources): Move mini-exceptions.c here as it is
20575 used by all the ports now.
20577 * aot.c: Add write-symbols and save-temps options.
20579 2005-01-10 Zoltan Varga <vargaz@freemail.hu>
20581 * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
20583 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
20585 * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx
20588 * tramp-s390.c: Check vtable slot belongs to the domain.
20590 * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
20591 as per other platforms.
20593 * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
20595 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
20597 * driver.c: we don't run the Main() code in a subthread anymore.
20599 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
20601 * mini.c: added experimental rtc support in the statistical
20602 profiler: if the user has the permission, more accurate statistics
20603 are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
20604 The MONO_RTC value must be restricted to what the linux rtc allows:
20605 power of two from 64 to 8192 Hz.
20607 2005-01-10 Zoltan Varga <vargaz@freemail.hu>
20609 * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
20611 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
20613 * mini-ppc.c: better icache flush for smp.
20615 2005-01-09 Zoltan Varga <vargaz@freemail.hu>
20617 * mini-amd64.c (emit_move_return_value): Fix memory leak.
20619 * mini-x86.c (get_call_info): Add the get_call_info () code from the
20620 amd64 port, not yet used.
20622 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
20624 * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
20627 2005-01-07 Sebastien Pouliot <sebastien@ximian.com>
20629 * driver.c: Added --security option to activate the security manager.
20630 Right now this will allow code generation for declarative demands and
20631 is disabled when AOT is specified.
20632 * mini.c: Add code generation for declarative security demands.
20633 * mini.h: Add mono_use_security_manager as an extern gboolean.
20635 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
20637 * aot.c (mono_compile_assembly): Speed up compilation a bit by
20638 emitting more dense assembly code.
20640 * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
20641 exception throwing stuff.
20643 2005-01-06 Zoltan Varga <vargaz@freemail.hu>
20645 * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
20648 * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
20649 left in by mistake.
20651 * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is
20654 * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
20656 * tramp-*.c: Only patch vtable slots if the object is in the current
20657 domain. Fixes appdomain-unload.exe.
20659 * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
20661 * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
20664 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
20666 * mini.c (reverse_branch_op): New helper function.
20668 * mini.c (optimize_branches): Run the new optimization only on
20669 platforms which support it. Also reverse all kinds of branches.
20671 * mini.h (MonoBasicBlock): Add 'out_of_line' field.
20673 * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
20676 * mini.c (optimize_branches): Reverse not-equals branches if the false
20677 bblock is a throw. This happens a lot of time with argument checking in
20680 * mini.c (mono_codegen): Add support for placing basic blocks after
20681 the function epilogue.
20683 * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
20686 2005-01-05 Miguel de Icaza <miguel@ximian.com>
20688 * mini.c (setup_stat_profiler): Only set this up if the platform
20689 supports ITIMER_PROF.
20691 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
20693 * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
20696 * inssel.brg: Fix a warning.
20698 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
20700 * mini.c: added support for statistical profiler
20701 (run with: --profile=default:stat).
20703 2005-01-04 Zoltan Varga <vargaz@freemail.hu>
20705 * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
20707 * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
20709 * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes
20710 related to global registers from the amd64 port.
20712 2005-01-03 Zoltan Varga <vargaz@freemail.hu>
20714 * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
20716 * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
20717 with global registers.
20718 (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
20720 * aot.c (emit_method_code): Fix the 'method emitted as' messages.
20722 2004-12-31 Zoltan Varga <vargaz@freemail.hu>
20724 * debug-mini.c (encode_value): Fix off-by-one.
20726 * aot.c (encode_value): Likewise.
20728 * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
20730 2004-12-30 Zoltan Varga <vargaz@freemail.hu>
20732 * mini.c linear-scan.c: Add a workaround for the mcs crash when using
20735 * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
20737 * aot.c (emit_method_info): Increase size of temp buffer.
20739 * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in
20742 2004-12-28 Zoltan Varga <vargaz@freemail.hu>
20744 * aot.c (emit_method_info): Fix build.
20746 * aot.c: Further rework of the AOT file format to reduce the size of
20747 the method info data.
20749 * mini.h: Bump AOT file format version.
20751 2004-12-27 Martin Baulig <martin@ximian.com>
20753 * mini.c (mini_get_method): New static method; call
20754 mono_get_method_full() and mono_get_inflated_method().
20755 (mono_method_to_ir): Use mini_get_method() instead of
20756 mono_get_method_full().
20758 2004-12-26 Patrik Torstensson <patrik.torstensson@gmail.com>
20760 * mini-x86.c (atomic ops): fixed bug interlocked bug #70784.
20762 2004-12-25 Zoltan Varga <vargaz@freemail.hu>
20764 * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
20766 * inssel-amd64.brg: Add some optimization rules.
20768 2004-12-24 Ben Maurer <bmaurer@ximian.com>
20770 * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
20771 standard not GC'd stuff is fine.
20773 2004-12-24 Zoltan Varga <vargaz@freemail.hu>
20775 * aot.c: Rework the AOT file format to get rid of most of the global
20776 symbols. This reduces the size of the mscorlib.dll.so by 1MB.
20778 * mini.h: Bump AOT file format version.
20780 2004-12-23 Zoltan Varga <vargaz@freemail.hu>
20782 * mini.h: Bump AOT file format version.
20784 * aot.c (mono_aot_is_got_entry): New function to determine if an
20785 address is inside a GOT.
20787 * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
20789 * cpu-pentium.md: Increase the maximum size of some instructions which
20790 might involve a got access.
20792 * mini.c (get_method_from_ip): Another debug helper function.
20794 * mini.c: Call mono_get_got_var () in a couple places. Handle the case
20795 when got var accesses are created during the decompose phase.
20797 * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
20799 * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
20800 argument mini_compile_method and to MonoCompile, and use this to
20801 determine whenever a given method is compiled for AOT. This allows the
20802 other methods compiled during AOT compilation to be free of AOT stuff,
20803 so the backends does not need to add special support for them by
20804 creating a fake GOT etc.
20806 * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
20809 2004-12-21 Ben Maurer <bmaurer@ximian.com>
20811 * mini.c (mono_method_to_ir): It turns out that some of the
20812 x-appdomain wrappers are lax with types, so just ignore this for
20815 * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
20816 at the vtable->klass. If it is non-shared code we can just use the
20819 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
20821 * mini-ppc.c: access MonoDomain from tls, too.
20823 2004-12-21 Sebastien Pouliot <sebastien@ximian.com>
20825 * declsec.c: Removed unused variable (and related warning ;-)
20827 2004-12-21 Ben Maurer <bmaurer@ximian.com>
20829 * iltests.il: New test for LDELEMA on an array of ref types.
20831 * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
20832 all ldelema's on reftypes.
20833 (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
20834 it was the wrong place to put it.
20836 * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
20837 register to pop to make this cleaner, at the request of Paolo.
20839 2004-12-20 Ben Maurer <bmaurer@ximian.com>
20841 * mini-ops.h (OP_GETHASHCODE): New op.
20843 * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
20845 * mini.c (mini_get_inst_for_method): Create the intrinsic hash
20848 For a microbenchmark, this reduces the cost of Hashtable.get_Item
20851 * mini-x86.c (mono_arch_output_basic_block): Rather than
20859 The first is 3 bytes while the second is 1. This saves 36 kb on
20860 mscorlib, quite a big saving. When bootstraping mcs, I was able to
20861 see a small boost because of icache locality.
20863 * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
20865 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
20867 * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
20868 started code sharing with the generic code.
20870 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
20872 * mini-ppc.c, cpu-g4.md: added code for direct access to
20875 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
20877 * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
20878 mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
20881 2004-12-20 Sebastien Pouliot <sebastien@ximian.com>
20883 * declsec.c|h: Added functions to cache the declarative stack modifiers
20884 in MonoJitInfo and to create a security frame from a MonoJitInfo
20886 * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
20887 created. Register internal calls for System.Security.SecurityFrame::
20888 _GetSecurityFrame and _GetSecurityStack.
20889 * mini.h: Added definition for new icalls (in mini-exceptions.c) and
20890 the definitions for the new stack walk/callback mechanism.
20891 * mini-exceptions.c: Added internal call GetSecurityFrame (to get the
20892 first security frame for LinkDemands and InheritanceDemands) and
20893 GetSecurityStack for Demands. Both use the new mono_walk_stack code
20895 * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
20896 walk initialization (lupus).
20898 2004-12-20 Ben Maurer <bmaurer@ximian.com>
20900 * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
20902 (handle_loaded_temps): Do not create a temporary variable for
20903 things that we know are temps. They will never be modified.
20904 (mono_spill_call): Set MONO_INST_IS_TEMP
20905 (mono_emulate_opcode): ditto
20907 (mono_method_to_ir.CEE_DUP): ditto
20909 2004-12-19 Ben Maurer <bmaurer@ximian.com>
20911 * mini.c (type_to_eval_stack_type): Make this handle the void type
20912 (mono_emit_call_args): set the call->type with type_to_eval_stack_type
20913 (emit_tree): use ip_in_bb to special case some common idioms
20914 Update all callers to pass in the IP.
20915 (mono_method_to_ir): Make CEE_CALL* do the above as well.
20917 This gives us a nice 2% speedup in mcs bootstrap.
20919 * mini-x86.c (peephole_pass): Peephole pass to make
20928 * mini.c (ip_in_bb): new method.
20929 (mono_method_to_ir): use this method rather than doing the hash
20932 * linear-scan.c (mono_linear_scan): When expiring actives, you
20933 don't need to keep around variables that expire on this
20934 instruction. This makes it so that:
20937 store (ebx add (ebx, 1))
20941 2004-12-19 Zoltan Varga <vargaz@freemail.hu>
20943 * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc
20944 combination to avoid doing two copies. Fix up problems with previous
20947 * mini.c: Fix 64 bit warnings.
20949 * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
20951 2004-12-17 Zoltan Varga <vargaz@freemail.hu>
20953 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
20954 changes from the x86 code.
20956 * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
20958 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
20960 * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
20961 throwing code to reduce its size, unify the AOT and non-aot code and
20962 get rid of relocations in the AOT case.
20964 * mini-x86.h mini.c exceptions-x86.c
20965 (mono_arch_get_throw_corlib_exception): New arch specific function to
20966 raise corlib exceptions which doesn't require relocations in the
20969 * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
20971 2004-12-15 Zoltan Varga <vargaz@freemail.hu>
20973 * mini.c (mono_emit_method_call): Only allocate the got var when it is
20976 * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
20979 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
20981 * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
20982 with add function when used from Inc/dec atomic
20983 functions. Re-enabled optimization on x86.
20984 * mini-ops.h: renamed atomic_add functions to
20985 allow _add to match the Interlocked::Add and
20986 _add_next to match Interlocked::Inc/Dec.
20988 2004-12-15 Massimiliano Mantione <massi@ximian.com>
20990 * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
20991 linking of BBs to the end BB, and enabled SSAPRE also with
20992 consprop and copyprop (which was prevented by that bug).
20994 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
20996 * mini-x86.c: disabling the Interlocked optimizing code.
20998 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
21000 * aot.c (load_aot_module): Move reading of got_addr after the AOT
21001 file version check.
21003 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
21005 * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm
21006 interlocked optimization due lack of support on x86, rewrote
21007 exchange to take into account that base may be in eax.
21009 xsp works again; activated Interlocked optimizing code.
21011 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
21013 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
21015 2004-12-13 Zoltan Varga <vargaz@freemail.hu>
21017 * mini-ops.h: Add new opcodes.
21019 * mini.h: Add new patch types. Add got_var to MonoCompile.
21021 * mini.h mini-x86.c mini-amd64.c aot.c: Rename
21022 mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
21023 make it work with all kinds of patchable code.
21025 * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
21026 address of the GOT, and referencing entries in the GOT.
21028 * mini.c: Add code to load the GOT address if needed by an opcode.
21030 * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position
21031 independent AOT code on the x86 using an elf-style Global Offset Table.
21033 2004-12-14 Raja R Harinath <rharinath@novell.com>
21035 * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
21037 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21039 * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
21042 2004-12-13 Patrik Torstensson <patrik.torstensson@gmail.com>
21044 * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
21045 of Interlocked:Increment/Decrement/Add as inline ops.
21046 (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
21048 2004-12-12 Geoff Norton <gnorton@customerdna.com>
21050 * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
21051 * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
21053 2004-12-12 Duncan Mak <duncan@ximian.com>
21055 * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
21056 again. `patch_info->table_size' is no longer valid after Zoltan's
21059 2004-12-12 Martin Baulig <martin@ximian.com>
21061 * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
21062 if we are the "real" method, ie. not an inlined method inside it.
21064 2004-12-11 Ben Maurer <bmaurer@ximian.com>
21066 * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
21067 before we look in the special fields table. This fixes
21068 ../tests/thread-static-init.cs.
21070 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21072 * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
21073 for Array get_Rank and get_Length. Fixes bug #70465.
21075 2004-12-11 Zoltan Varga <vargaz@freemail.hu>
21077 * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
21078 separate structure to reduce the size of MonoJumpInfo.
21080 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
21082 * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
21084 2004-12-10 Patrik Torstensson <patrik.torstensson@gmail.com>
21086 * mini.c (mini_get_inst_for_method): Changed to allow ports
21087 to return a MonoInst instead of opcode
21088 (renamed mini_get_opcode_for_method to better reflect the new functionality)
21090 * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method):
21091 Allow ports to return a created MonoInst instead of op-code, will enable
21093 (renamed mini_get_opcode_for_method to better reflected the functionality)
21095 2004-12-09 Zoltan Varga <vargaz@freemail.hu>
21097 * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
21099 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
21101 * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
21104 2004-12-08 Martin Baulig <martin@ximian.com>
21106 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
21107 if we're a CEE_CONSTRAINED call. Fixes gen-118.cs.
21109 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
21111 * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
21114 * exceptions.cs: Disable some tests which depend on properties of x86 fp
21117 2004-12-08 Raja R Harinath <rharinath@novell.com>
21119 * Makefile.am (CLEANFILES): Add *.exe, *.dll.
21121 2004-12-07 Zoltan Varga <vargaz@freemail.hu>
21123 * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
21124 bug introduced by the previous patch.
21126 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
21128 * mini-ppc.c, objectc.cs: handle large structs passed by value
21129 (fixes bug #69972).
21131 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21133 * mini-ppc.c: OP_ARGLIST implementation from
21134 Geoff Norton <gnorton@customerdna.com>.
21136 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
21138 * inssel-x86.brg, inssel-ppc.brg: fix reference to register
21139 in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
21141 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
21143 * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
21145 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21147 * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
21150 2004-12-06 Zoltan Varga <vargaz@freemail.hu>
21152 * mini-sparc.c: Zero out localled-ed memory.
21154 * iltests.il: Add tests for zeroing out localloc-ed memory.
21156 2004-12-04 Martin Baulig <martin@ximian.com>
21158 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
21159 mono_method_get_signature_full().
21161 2004-12-03 Massimiliano Mantione <massi@ximian.com>
21163 * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
21164 and some utility functions (always for SSAPRE), integrated SSAPRE.
21165 * mini.h: Likewise.
21166 * driver.c: Added ssapre option.
21167 * ssa.c: Small fix on OP_ARG handling.
21168 * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
21169 * Makefile.am: Likewise.
21171 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
21173 * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
21174 now in the xp code.
21176 * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
21179 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21181 * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
21183 * cpu-s390.md : Increase instruction length of oparglist.
21185 * mini-s390.c : Implement vararg and TYPEDEBYREF support.
21187 2004-11-30 Martin Baulig <martin@ximian.com>
21189 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
21190 virtual generic methods. We call a special helper_compile_generic_method()
21191 icall to retrieve the method from the vtable, inflate and compile
21192 it and then do a CEE_CALLI. Thanks a lot to Paolo for this idea.
21194 * jit-icalls.c (helper_compile_generic_method): New JIT icall.
21196 2004-11-30 Zoltan Varga <vargaz@freemail.hu>
21198 * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
21200 2004-11-29 Zoltan Varga <vargaz@freemail.hu>
21202 * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
21205 2004-11-27 Ben Maurer <bmaurer@ximian.com>
21207 * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
21208 platforms with PIC aot.
21210 2004-11-28 Martin Baulig <martin@ximian.com>
21212 * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
21215 2004-11-28 Martin Baulig <martin@ximian.com>
21217 * mini-x86.c (mono_arch_call_opcode): Use the original type, not
21218 the result of mono_type_get_underlying_type() to check whether
21221 2004-11-26 Martin Baulig <martin@ximian.com>
21224 (mono_method_to_ir): Use `!method->signature->has_type_parameters'
21227 2004-11-26 Zoltan Varga <vargaz@freemail.hu>
21229 * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
21230 the same way as the other arguments so they won't get clobbered.
21232 * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual
21233 calls through R11 since it is clobbered by the trampoline code.
21235 2004-11-26 Raja R Harinath <rharinath@novell.com>
21237 * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
21238 pick up in-tree mscorlib.dll.
21240 2004-11-25 Zoltan Varga <vargaz@freemail.hu>
21242 * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
21244 * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to
21245 runtime data/code are now stored in a table similar to the GOT in ELF.
21246 This allows the code itself to be position independent.
21248 * aot.c: Fix loading of referenced assemblies after the lazy assembly
21251 * aot.c: Attach ELF type (object/function) directives to all global
21254 * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
21256 * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
21258 * mini-amd64.h: Turn on PIC AOT code.
21260 * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
21261 returning the offset within an OP_AOTCONST instruction where the GOT
21262 offset needs to be added.
21264 * mini.h: Bump AOT file format version.
21266 2004-11-25 Martin Baulig <martin@ximian.com>
21268 * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
21269 uninflated generic methods.
21271 2004-11-25 Martin Baulig <martin@ximian.com>
21273 * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
21275 2004-11-24 Martin Baulig <martin@ximian.com>
21277 * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
21278 original klass (this only applies for generic instances).
21280 2004-11-24 Martin Baulig <martin@ximian.com>
21282 * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
21283 `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
21286 2004-11-24 Zoltan Varga <vargaz@freemail.hu>
21288 * mini.c (mono_method_to_ir): Disable inlining for methods containing
21289 localloc. Fixes #69678.
21291 * iltests.il (test_0_localloc_inline): Add regression test for #69678.
21293 2004-11-23 Zoltan Varga <vargaz@freemail.hu>
21295 * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
21296 used SSE registers on pinvoke calls. Fixes #69774.
21298 2004-11-23 Geoff Norton <gnorton@customerdna.com>
21300 * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
21301 vt->inst_vtype->data.klass. This fixes generic structs and bug #69766
21303 2004-11-23 Raja R Harinath <rharinath@novell.com>
21305 * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
21306 Refer directly to the mcs/ tree.
21308 2004-11-19 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21310 * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
21311 Check if a trampoline for a synchronized method is required.
21313 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
21315 * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
21316 with localloc if needed. Throe arithmetric exception in
21317 div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
21318 Adapted from a patch by Geoff Norton <gnorton@customerdna.com>.
21320 2004-11-19 Geoff Norton <gnorton@customerdna.com>
21322 * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
21323 types before switching on type. Fixes #69622.
21325 2004-11-19 Raja R Harinath <rharinath@novell.com>
21327 * Makefile.am (check-local): New. Integrate into 'make check'.
21328 (MCS,RUNTIME): Define using in-tree mono and mcs.
21330 (%.exe): Use $(ILASM).
21332 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
21334 * mini-ppc.c: adjust initial prolog size (bug #69691).
21336 2004-11-18 Zoltan Varga <vargaz@freemail.hu>
21338 * cpu-pentium.md (localloc): Increase max instruction len. Fixes
21341 2004-11-17 Raja R Harinath <rharinath@novell.com>
21343 * Makefile.am (clean-local): Rename from 'clean'.
21345 2004-11-15 Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21347 * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
21348 to mono_arch_is_int_overflow.
21349 * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
21352 2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
21354 * declsec.c|h: New files to support declarative security attributes.
21355 Added function to check if a method has (applicable) security.
21356 * mini.c|h: Add check for declarative security attributes in
21357 mono_method_check_inlining.
21358 * Makefile.am: Added declsec.c and declsec.h to the build.
21360 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21362 * mini.c, mini.h: update to keep dynamic code info per-domain.
21364 2004-11-12 Zoltan Varga <vargaz@freemail.hu>
21366 * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
21367 (mini_init): Get rid of it from here too.
21369 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21371 * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
21372 implemented OP_RETHROW (patch by Geoff Norton
21373 <gnorton@customerdna.com>).
21375 2004-11-10 Geoff Norton <gnorton@customerdna.com>
21377 * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
21378 between appdomains. Fixes appdomain-unload on PPC.
21380 2004-10-26 Lluis Sanchez Gual <lluis@novell.com>
21382 * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21383 mini-exceptions.c: handle the new wrapper types.
21384 * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
21385 token value as a MonoClass* when compiling a wrapper.
21386 mono_jit_create_remoting_trampoline now takes an additional
21387 MonoRemotingTarget parameter.
21389 2004-11-10 Martin Baulig <martin@localhost>
21391 * mini.c (mono_method_to_ir): Use `generic_container->context'
21392 rather than creating a new one.
21394 2004-11-09 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21396 * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
21398 * inssel-390.md, mini-s390.c: Correct register allocation for globals.
21400 2004-11-09 Zoltan Varga <vargaz@freemail.hu>
21402 * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
21403 the experimental aot cache stuff.
21405 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
21407 * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21408 mini-exceptions.c: update to exception clause structure changes.
21410 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
21412 * exceptions-x86.c (throw_exception): Fix warnings.
21414 * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support
21417 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
21419 * exceptions-sparc.c (get_throw_exception): Really fix this.
21421 2004-11-07 Ben Maurer <bmaurer@ximian.com>
21423 * tramp-*.c: we no longer support icalls without wrappers, so
21424 a bit of code can be removed here
21426 2004-11-07 Zoltan Varga <vargaz@freemail.hu>
21428 * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
21431 * cpu-sparc.md: Add op_rethrow.
21433 * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
21435 * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
21437 * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
21438 * mini-ops.h: Add OP_RETHROW.
21440 * mini.c inssel.brg: Distinguish between THROW and RETHROW.
21442 * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
21444 2004-11-05 Geoff Norton <gnorton@customerdna.com>
21446 * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
21447 Makes the output much easier to read
21449 2004-11-05 Ben Maurer <bmaurer@ximian.com>
21451 * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
21452 prevents another huge leak when compiling with ssa. Secondly, the
21453 performance of doing this rather than freeing the lists is much
21454 better. GList does a lock every time you allocate a list link,
21455 so that it can use a memory pool. So, it is better to just use
21456 a memory pool of our own.
21458 * ssa.c, linear-scan.c: replace g_list_remove_link with
21459 g_list_delete. The remove one does not free the GList, so we were
21460 leaking memory. On -O=all --compile-all with corlib, this cut down
21461 3 MB of allocations.
21463 2004-11-05 Zoltan Varga <vargaz@freemail.hu>
21465 * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
21467 * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
21469 * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
21470 into a new function mono_create_jit_trampoline ().
21472 2004-11-02 Zoltan Varga <vargaz@freemail.hu>
21474 * trace.c (get_spec): Allow tracing of classes without a namespace.
21476 2004-11-02 Sebastien Pouliot <sebastien@ximian.com>
21478 * mini.c: Fix pointer overwrite in mini_method_compile.
21480 2004-11-2 Geoff Norton <gnorton@customerdna.com>
21482 * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
21483 The darwin ABI needs some special handling for 1 and 2 byte structs
21484 Lets use lbz/lhz instead of lwz everywhere.
21485 * mini-ppc.c (calculate_sizes): The Darwin ABI needs from special handling
21486 for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
21487 Use stb/sth for the former, and put the latter always on stack instead of in
21488 argument registers.
21490 2004-10-30 Zoltan Varga <vargaz@freemail.hu>
21492 * trace.c (is_filenamechar): Add '_'.
21494 2004-10-29 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21496 * mini-s390.c: Fix prolog length to allow for large trace requirements.
21498 * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
21500 2004-10-29 Zoltan Varga <vargaz@freemail.hu>
21502 * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
21503 depends on libmonogc. Fixes #68805.
21505 2004-10-26 Miguel de Icaza <miguel@ximian.com>
21507 * mini.c (mono_jit_free_method): Provide extra information for
21508 this error. Currently this leaks, but will be turned into a
21509 developer option in the future.
21511 2004-10-26 Zoltan Varga <vargaz@freemail.hu>
21513 * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
21515 2004-10-25 Zoltan Varga <vargaz@freemail.hu>
21517 * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte
21518 boundary. Fixes reading of PATCH_INFO_R4 and R8.
21519 (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
21521 2004-10-24 Zoltan Varga <vargaz@freemail.hu>
21523 * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
21524 trampolines for AOT code.
21526 2004-10-22 <vargaz@freemail.hu>
21528 * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
21529 constructed types. Fixes #68136.
21531 2004-10-21 Martin Baulig <martin@ximian.com>
21533 * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
21534 if it returns true, unwind the stack to the call instruction.
21536 2004-10-21 <vargaz@freemail.hu>
21538 * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
21540 * mini.h: Bump AOT version number.
21542 * objects.cs: Add another test for unbox trampolines.
21544 * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for
21547 2004-10-20 <vargaz@freemail.hu>
21549 * driver.c: Add SHARED to the set of optimizations tested.
21551 * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
21553 * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
21554 used by CEE_NEWARR.
21556 * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
21558 2004-10-20 Martin Baulig <martin@ximian.com>
21560 * mini-exceptions.c (mono_handle_exception): Call
21561 mono_debugger_handle_exception() to tell the debugger about
21562 catch/finally clauses.
21564 2004-10-18 Zoltan Varga <vargaz@freemail.hu>
21566 * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
21568 * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
21571 2004-10-15 Geoff Norton <gnorton@customerdna.com>
21573 * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
21574 methods as their native size, fixed bug #57543, #57545.
21575 * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
21576 This saves a temporary register and mullw call down into 1 (minor perf
21577 increase for cases like sum = sum * 5; This use to translate into:
21580 It now translates to
21583 2004-10-15 Zoltan Varga <vargaz@freemail.hu>
21585 * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
21588 2004-10-11 Martin Baulig <martin@ximian.com>
21590 * mini.c (mono_method_to_ir): If we're a generic method, get the
21591 MonoGenericContainer from our MonoMethodNormal and create a
21592 MonoGenericContext from it.
21594 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
21596 * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
21598 * basic-long.cs: Add test for checked i8->i2 cast.
21600 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21602 * inssel-ppc.brg: added a couple of speedup rules.
21604 2004-10-05 Zoltan Varga <vargaz@freemail.hu>
21606 * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
21607 to speed up rebuilds.
21609 2004-10-04 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21611 * mini-s390.c: Minor fix to OP_OR_IMM.
21613 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
21615 * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
21616 better. Fixes appdomain-unload.exe on sparc.
21618 2004-10-02 Massimiliano Mantione <massi@ximian.com>
21620 * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
21621 simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
21624 2004-10-02 Zoltan Varga <vargaz@freemail.hu>
21626 * jit-icalls.c: Handle a nonexisting trunc function more correctly.
21628 2004-09-30 Lluis Sanchez Gual <lluis@novell.com>
21630 * mini.c: Always generate a field read/write wrapper for members
21631 of the class MarshalByRefObject since the actual instance could
21634 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
21636 * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
21638 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
21640 * driver.c mini.h trace.c: Move the setting of the main assembly into
21641 a separate function called mono_trace_set_assembly () and call it after
21642 actually loading the main assembly. Fixes #66872.
21644 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
21646 * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
21647 using the code manager.
21649 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
21651 * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
21653 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
21655 * cpu-amd64.md: Fix bug in previous patch.
21657 * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
21660 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
21662 * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21663 mini-exceptions.c: updates for changed stack walk interface.
21665 2004-09-21 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21667 * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
21669 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
21671 * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
21673 2004-09-13 Zoltan Varga <vargaz@freemail.hu>
21675 * driver.c (mini_regression_list): Do not call mono_assembly_close
21676 since assemblies can't be unloaded.
21678 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
21680 * cpu-amd64.md: Fix more instruction lengths.
21682 * cpu-amd64.md: Fix lengths of some instructions.
21684 2004-09-11 Ben Maurer <bmaurer@users.sourceforge.net>
21686 * inssel.brg: Make the array ldelema check aot friendly.
21688 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
21690 * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
21692 * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
21694 2004-09-10 Zoltan Varga <vargaz@freemail.hu>
21696 * mini-x86.c: Fix build.
21698 * mini-sparc.c mini-x86.c mini-amd64.c: Use the new
21699 mono_type_get_underlying_type () helper function to simplify code.
21701 2004-09-09 Martin Baulig <martin@ximian.com>
21703 * mini-amd64.c: Don't access `type->data.klass' directly, call
21704 mono_class_from_mono_type() instead since the type may be a
21707 2004-09-09 Martin Baulig <martin@ximian.com>
21709 * mini-amd64.c (get_call_info): Fix support for generic instances.
21710 (add_valuetype): Use mono_class_from_mono_type() to get the class
21711 since we can be a generic instance.
21713 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
21715 * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
21717 2004-09-07 Ben Maurer <bmaurer@users.sourceforge.net>
21719 * liveness.c: reset spill costs on each scan: bug 62107
21721 2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
21723 * exceptions-sparc.c (mono_arch_find_jit_info): remove
21724 unnecessary line that doesn't compile
21726 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
21728 * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
21729 trampolines, make them call an error function so people can fix their
21732 2004-09-06 Martin Baulig <martin@ximian.com>
21734 * mini.c (mono_method_to_ir): When initializing locals, handle a
21735 generic instances like a valuetype if it's a valuetype and like a
21736 class if it's a class.
21738 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
21740 * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
21741 stack. Fixes #64674.
21743 * exceptions.cs: Add test for unwinding of call arguments.
21745 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
21747 * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
21748 OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
21749 set the carry/borrow flag). The sparc and s390 implementations
21750 can now use optimized versions (and simplify the code). ppc bugfixes.
21752 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
21754 * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
21756 2004-09-05 Zoltan Varga <vargaz@freemail.hu>
21758 * inssel-amd64.brg: Remove leftover 32 bit rule.
21760 * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
21762 2004-09-04 Zoltan Varga <vargaz@freemail.hu>
21764 * mini-exceptions.c (mono_find_jit_info): Refactor common code from
21765 mono_arch_find_jit_info functions into a new function. Fix a memory
21768 * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
21771 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
21773 * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
21776 * exceptions.cs: Add array size tests.
21778 * mini.c: Allocate a separate icall wrapper for each arity of
21779 mono_array_new_va. Fixes #59509.
21781 * exceptions.cs: Add testcase for 64578.
21783 * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
21785 * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
21787 2004-09-02 Martin Baulig <martin@ximian.com>
21789 * mini.c (mono_method_to_ir): When initializing the locals, call
21790 handle_initobj() on the generic instance itself, not its
21793 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
21795 * mini.h (MonoJitDynamicMethodInfo): New structure, extension of
21796 MonoJitInfo for dynamic methods.
21798 * mini.c: Rename trampoline_hash_mutex to jit_mutex.
21800 * mini.c: Add support for freeing JIT data for dynamic methods.
21802 2004-09-01 Martin Baulig <martin@ximian.com>
21804 * mini-x86.c (is_regsize_var): Added support for generic
21806 (mono_arch_emit_prolog): Make this compile again, use
21807 `x86_push_imm_template (code)'.
21809 2004-08-30 Ben Maurer <bmaurer@users.sourceforge.net>
21811 * mini-x86.c: make all push_imm instructions that get
21812 patched always emit the long form
21814 2004-08-30 Zoltan Varga <vargaz@freemail.hu>
21816 * mini.c (mono_create_jump_trampoline): Store the jump trampolines
21817 in a per-domain hash.
21819 * mini-amd64.c (merge_argument_class_from_type): Handle generic
21822 2004-08-29 Zoltan Varga <vargaz@freemail.hu>
21824 * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
21827 * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
21830 * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
21831 Beginnings of SSE2 support.
21833 * exceptions.cs: Add more tests for checked int<->uint casts.
21835 2004-08-28 Martin Baulig <martin@ximian.com>
21837 * mini-x86.c (mono_arch_instrument_epilog): Added support for
21841 (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
21842 Handle generic instances recursively.
21844 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
21846 * iltests.il: test for conv.u8 on a constant
21848 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
21850 * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
21851 LCONV_x4 (shrun_32 (membase)).
21853 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
21855 * inssel-x86.brg: c&p rules for push/setret of long
21857 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
21859 * inssel-x86.brg: c&p rules for compare (base, regvar) and
21860 compare (regvar, base)
21862 * inssel-x86.brg: more burg love
21864 * inssel.brg: more cleanup
21866 * inssel-x86.brg, inssel-long32.brg: burg cleanup.
21868 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
21870 * basic-long.cs, basic-calls.cs: new tests for optimization.
21872 2004-08-26 Zoltan Varga <vargaz@freemail.hu>
21874 * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
21877 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
21879 * mini-amd64.c (read_tls_offset_from_method): Add another case.
21881 2004-08-25 Bernie Solomon <bernard@ugsolutions.com>
21883 * inssel.brg (mini_emit_memcpy): use
21884 NO_UNALIGNED_ACCESS to disable memcpy optimization
21886 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
21888 * mini-amd64.c: Handle generic types in various places.
21890 * mini.c (mono_method_to_ir): Handle generic types in init locals.
21892 2004-08-24 Zoltan Varga <vargaz@freemail.hu>
21894 * mini.c (handle_box): Fix warning.
21896 * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
21898 * mini-amd64.h: Enable the emit_state optimization.
21900 * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
21902 * mini-amd64.c: Add some new 64 bit peephole opts.
21904 * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
21906 * cpu-amd64.md: sreg1 of div instructions must be %rax.
21908 * mini-amd64.c: Register allocator fixes.
21910 * mini.c: Add an optimization to emit_state to avoid allocation of new
21911 registers on some platforms.
21913 2004-08-23 Zoltan Varga <vargaz@freemail.hu>
21915 * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
21917 * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
21918 allocation. Fixes #63085.
21920 * basic-long.cs: Add new regression test.
21922 * mini-amd64.c: Register allocator improvements.
21924 2004-08-21 Zoltan Varga <vargaz@freemail.hu>
21926 * mini-amd64.c (read_tls_offset_from_method): Add another code
21929 * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
21930 instruction sequence for nullifying class init trampolines.
21932 * objects.cs: Add new regalloc test.
21934 * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
21936 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
21938 * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
21940 * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
21943 * driver.c: Fix profiling after TLS changes.
21945 * driver.c (mono_main): Set mono_stats.enabled if needed.
21947 * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
21950 2004-08-20 Ben Maurer <bmaurer@users.sourceforge.net>
21952 * mini-x86.c: use a 1 op rather than a 2 op tls access
21953 instruction -> faster.
21955 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
21957 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
21960 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
21962 * exceptions-sparc.c (throw_exception): fix typo
21964 2004-08-19 Ben Maurer <bmaurer@users.sourceforge.net>
21966 * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
21967 set tree->dreg correctly with tls. Allow any
21968 register to be used.
21970 * mini-x86.c (read_tls_offset_from_method): add new code
21971 generation pattern seen with GCC.
21974 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
21976 * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
21977 exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21978 exceptions-sparc.c: fix some performance issues in exception
21979 handling and setting of the stack trace for exceptions that were
21982 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
21984 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
21987 * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible
21990 2004-08-18 Ben Maurer <bmaurer@users.sourceforge.net>
21992 This patch inlines tls access, when possible.
21994 * mini.h: new arch functions for TLS intrinsics.
21995 All platforms updated with a stub.
21997 * mini.c: use the new intrinsics
21999 * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
22000 arch specific intrinsic for tls variables
22002 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
22004 * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
22007 2004-08-17 Ben Maurer <bmaurer@users.sourceforge.net>
22009 * mini.c: thread local allocation
22011 2004-08-16 Zoltan Varga <vargaz@freemail.hu>
22013 * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
22015 * Makefile.am: Link against the static version of libmonogc.
22017 * Makefile.am: Link the static versions of the convenience libraries
22018 into the mono executable.
22020 * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
22022 2004-08-15 Zoltan Varga <vargaz@freemail.hu>
22024 * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
22025 on integer overflow.
22027 * mini-amd64.c: Reorganize function call code.
22029 * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
22031 2004-08-14 Ben Maurer <bmaurer@ximian.com>
22033 * inssel-x86.brg: use xor eax,eax.
22035 * basic.cs: new tests
22037 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
22039 * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
22040 in exception throwing code.
22042 2004-08-14 Ben Maurer <bmaurer@ximian.com>
22044 * inssel-x86.brg: use xor esi,esi.
22046 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
22048 * driver.c (mono_main): Call mono_trace_parse_options earlier so it
22049 can trace methods compiled during mini_init () too.
22051 * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle
22054 2004-08-14 Ben Maurer <bmaurer@ximian.com>
22056 * Makefile.am: static link on x86 (r=zoltan)
22058 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
22060 * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
22061 code since it causes some programs to fail.
22063 2004-08-12 Zoltan Varga <vargaz@freemail.hu>
22065 * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
22067 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
22069 * mini.c: ovfops_op_map - add STACK_OBJ case for
22071 * basic.cs: add test_0_pin_string as test
22074 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
22076 * Makefile.am: build C# if srcdir != builddir
22078 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
22080 * dominators.c, mini.h, mini-x86.c: fix loop alignment with
22081 fall-through blocks.
22083 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22085 * driver.c: enable loop by default again and include abcrem in -O=all.
22087 2004-08-08 Zoltan Varga <vargaz@freemail.hu>
22089 * iltests.il: Add some localloc tests.
22091 * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
22093 * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly.
22096 * inssel-amd64.brg: Add some optimizations.
22098 * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
22101 * Makefile.am: Statically link mono against libmono on AMD64.
22103 * mini-amd64.c inssel-amd64.brg: Optimizations.
22105 2004-08-07 Zoltan Varga <vargaz@freemail.hu>
22107 * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
22109 * tramp-amd64.c: Patch calling code in trampolines.
22111 2004-08-06 Zoltan Varga <vargaz@freemail.hu>
22113 * mini-amd64.c: pinvoke struct passing fixes.
22115 2004-08-05 Bernie Solomon <bernard@ugsolutions.com>
22117 * mini-sparc.c: redo change, make mono_arch_cpu_init call
22118 mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
22120 2004-08-05 Duncan Mak <duncan@ximian.com>
22122 * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
22125 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
22127 * mini-amd64.c (emit_move_return_value): Move return value for normal
22130 2004-08-05 Martin Baulig <martin@ximian.com>
22132 * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
22133 `type->type'; just modify `type' itself when dealing with enums
22134 and generic instances.
22135 (check_call_signature): Make `simple_type' a `MonoType *'.
22137 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
22139 * mini.c: Use OP_PADD to add offsets to addresses.
22141 * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
22143 2004-08-04 Bernie Solomon <bernard@ugsolutions.com>
22145 * mini-sparc.c (mono_arch_emit_epilog): fix check
22146 for folding last op into restore instruction
22148 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
22150 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
22151 helper methods using the code manager.
22153 * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
22155 * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
22157 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22159 * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
22160 cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
22162 * mini-s390.c: fix tail processing
22164 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
22166 * mini-ppc.c: mul.ovf.un exception name fix.
22168 2004-08-03 Martin Baulig <martin@ximian.com>
22170 * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
22171 instances; before jumping to `handle_enum', also modify `ptype'.
22173 2004-08-02 Bernie Solomon <bernard@ugsolutions.com>
22175 * cpu-sparc.md: fcall maximal length too small.
22177 2004-08-02 Zoltan Varga <vargaz@freemail.hu>
22179 * mini-amd64.c mini.h: Add initial support for passing/returning
22180 structures to/from pinvoked methods.
22182 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
22184 * mini-ppc.c: reg allocator fix.
22186 2004-07-31 Zoltan Varga <vargaz@freemail.hu>
22188 * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
22190 * inssel.brg: Optimize memset on 64 bit machines.
22192 * mini-amd64.c: Fix some vararg cases.
22194 2004-07-30 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22196 * mini-s390.c: Corrected macro in emit_float_to_int
22198 * s390-abi.cs: Tests to exercise the s390 ABI
22200 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
22202 * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
22205 * basic.cs: Add a test for add.ovf.un.
22207 2004-07-30 Bernie Solomon <bernard@ugsolutions.com>
22209 * mini-sparc.c: add case for OP_IDIV_UN
22211 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
22213 * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
22215 * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
22217 2004-07-30 Ben Maurer <bmaurer@ximian.com>
22219 * basic.cs: regression tests.
22221 * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
22224 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
22226 * basic.cs: Add a new test.
22228 * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling
22229 and AOT. Various fixes and optimizations.
22231 * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
22233 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
22235 * mini-ppc.c: make sure temp regs are not used for global reg
22238 2004-07-29 Bernie Solomon <bernard@ugsolutions.com>
22240 * cpu-sparc.md: conv_i8 fix for 64bits
22242 * mini-sparc.c: add cases for OP_IXXX codes for 64bits
22244 2004-07-29 Ben Maurer <bmaurer@ximian.com>
22246 * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
22247 add opcode for cmp BYTE PTR [eax], imm.
22249 * inssel.brg: Make memcpy and memset takes bases.
22251 2004-07-28 Zoltan Varga <vargaz@freemail.hu>
22253 * *-amd64.*: More AMD64 work.
22255 2004-07-28 Ben Maurer <bmaurer@ximian.com>
22257 * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
22258 add a compare-not-equal opcode.
22260 2004-07-28 Lluis Sanchez Gual <lluis@novell.com>
22262 * mini.c: Use mono_init_from_assembly instead of mono_init.
22264 2004-07-28 Zoltan Varga <vargaz@freemail.hu>
22266 * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
22268 * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
22270 * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
22272 * inssel.brg: 64 bit fixes.
22274 * mini.h (MonoCallInst): Add some AMD64 specific data.
22276 * mini.h: Add some OP_P opcodes.
22278 2004-07-28 Ben Maurer <bmaurer@ximian.com>
22280 * basic.cs: tests for 61797 and 61740
22282 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
22284 * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
22285 numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
22287 2004-07-24 Zoltan Varga <vargaz@freemail.hu>
22289 * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
22291 * *-amd64*.*: Ongoing AMD64 work.
22293 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
22295 * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
22297 * *-amd64*: Ongoing AMD64 work.
22299 * mini-arch.h: Add AMD64 support.
22301 * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
22303 * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
22305 * mini-ops.h: Add new opcodes.
22307 * Makefile.am: Add AMD64 support.
22309 * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
22310 rules into the inssel-long*.brg files.
22312 * *-amd64.*: Add beginnings of AMD64 backend.
22314 2004-07-22 Ben Maurer <bmaurer@ximian.com>
22316 * mini.c (print_dfn): commenting out the code that prints
22317 the cil. With -O=deadce, this makes -v -v crash.
22319 * cpu-pentium.md: make checkthis have a length of 2
22321 2004-04-21 Bernie Solomon <bernard@ugsolutions.com>
22323 * mini-sparc.h: fix implementations of __builtin
22324 functions for Sun compiler for V9.
22326 2004-07-16 Ben Maurer <bmaurer@ximain.com>
22328 * mini.c: use the new stelem.ref wrapper
22329 * exceptions.cs, arrays.cs: new stelem.ref tests
22331 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
22333 * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
22334 new XSP should work with these changes).
22336 2004-07-14 Ben Maurer <bmaurer@ximain.com>
22338 * inssel-{long32,x86,}.brg: trivial optimizations.
22340 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
22342 * mini.c: load value when emitting box operation in
22345 2004-07-12 Ben Maurer <bmaurer@ximian.com>
22347 * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
22348 is one byte shorter than cmp DWORD PTR [eax], 0.
22350 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
22352 * inssel-ppc.brg: arguments on the stack are always
22353 relative to the stack pointer (spotted by Neale Ferguson).
22355 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22357 * exceptions-x86.c: delay appending the method name to the trace until
22358 after mono_jit_info_table_find is called, as this gets the real
22361 2004-07-09 Ben Maurer <bmaurer@ximian.com>
22363 * aot.c: register roots
22365 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
22367 * aot.c : I could just use PLATFORM_WIN32 flag.
22369 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
22371 * aot.c : Reverting the previous fix. This time it broke linux build.
22373 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
22375 * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
22377 2004-07-08 Zoltan Varga <vargaz@freemail.hu>
22379 * mini.c (handle_stack_args): Remove some more debugging code.
22381 * mini.c (handle_stack_args): Remove debug output left in by mistake.
22383 * driver.c mini.h aot.c: Allow additional options to be specified with
22384 --aot and pass them to mono_compile_assembly.
22386 * aot.c: Add experimental code to AOT compile all loaded assemblies
22387 on demand and save the code into a cache in the filesystem.
22389 * aot.c: Add support for more wrapper methods.
22391 * mini.c (handle_stack_args): Handle some corner cases. Fixes
22394 * cpu-*.md: Remove removed opcodes.
22396 * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
22397 CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
22398 related icalls to marshal.c.
22400 2004-07-06 Zoltan Varga <vargaz@freemail.hu>
22402 * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
22404 * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
22406 * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
22408 2004-07-06 Ben Maurer <bmaurer@ximian.com>
22409 * liveness.c: If liveness is recomputated we need to reset the information
22410 for each variable. This way, if the liveness range has been narrowed
22411 by optimizations that happened after the last computation, we can return
22414 For example, if you have
22419 // Tons of code that does not affect i
22425 i = 0 is dead code and will be removed by SSA. However, when
22426 linear scan gets to the code, i will still appear to be live
22427 throughout the entire block. This prevents good register allocation.
22429 2004-07-06 Martin Baulig <martin@ximian.com>
22431 * debug-mini.c (mono_debug_init_method): Allow
22432 MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
22433 (mono_debug_add_icall_wrapper): New method.
22435 * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
22437 2004-07-05 Zoltan Varga <vargaz@freemail.hu>
22439 * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
22442 2004-07-03 Zoltan Varga <vargaz@freemail.hu>
22444 * aot.c (mono_aot_load_method): Fix loading of debug info.
22446 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
22448 * aot.c: Add logging support.
22450 2004-07-01 Zoltan Varga <vargaz@freemail.hu>
22452 * mini.h: Add prototype for mono_print_method_from_ip.
22454 * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
22456 * inssel.brg: 64 bit fixes.
22458 * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to
22461 * Makefile.am: Add SPARC64 support.
22463 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
22465 * aot.c: Fix alignment problems on 32 bit platforms.
22467 2004-07-01 Zoltan Varga <vargaz@freemail.hu>
22469 * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
22472 * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
22475 * mini.h: Bump AOT file version. Some 64 bit fixes.
22477 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
22479 * inssel-sparc.brg: Add new rule to avoid register moves.
22481 * inssel.brg: Add ldind_to_load_membase helper function.
22483 2004-06-30 Ben Maurer <bmaurer@ximian.com>
22485 * mini.c: OffsetToStringData intrinsic.
22487 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
22489 * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
22491 * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
22494 * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
22495 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
22497 * mini.c: reinstated mono_compile_get_interface_var()
22498 on x86, too, since the change breaks the Gtk# build there as well.
22500 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22502 * driver.c: remove loop from the default optimizations: it seems to
22503 interact badly with some of the other options (see bug #60613).
22505 2004-06-25 Zoltan Varga <vargaz@freemail.hu>
22507 * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann
22508 (fld@informatik.uni-bremen.de): Add Solaris x86 support.
22510 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
22512 * mini-ppc.c, cpu-g4.md: small updates to be able to compile
22513 vararg-using methods.
22515 2004-06-21 Martin Baulig <martin@ximian.com>
22517 * mini/mini-exceptions.c
22518 (mono_handle_exception): Added `gpointer original_ip' argument.
22519 After calling mono_unhandled_exception(), call
22520 mono_debugger_unhandled_exception() and if that returns true,
22521 restore the context and return.
22523 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
22525 * mini-ppc.c: prefer the use of relative branches so
22526 they won't need to be patched in aot code (patch from Patrick Beard).
22528 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
22530 * aot.c: patch from Patrick Beard to make the output assembly
22531 more correct for the MacOSX assembler. Small tweak to
22532 generate sane images on Linux/PPC, too.
22534 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22536 * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
22537 case until bug #59509 is fixed (shows up in #60332).
22539 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22541 * mini.c: make sure the needed wrappers are compiled, too, with
22544 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
22546 * driver.c: remove NPTL reference in --version output.
22548 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22550 * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
22551 generate valid assembly for the Mach-O assembler.
22553 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
22555 * driver.c: don't include abcrem in the all optimization specifier
22556 since it slows down jit compilation too much for now.
22558 2004-06-12 Ben Maurer <bmaurer@users.sourceforge.net>
22560 * mini.c: use BIGMUL only if both operands have the same signage.
22561 * iltests.il: Test for bug 60056. (errors related to signage in
22566 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
22568 * mini.c, aot.c: memory leak fixes.
22570 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
22572 * inssel-long32.brg: implemented a few missing ulong cast opcodes.
22574 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
22576 * Makefile.am: remove the -static hack completely, it links in
22577 statically glib as well.
22579 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
22581 * iltests.il, mini.c: fixed bug#59580 in branch optimization.
22582 * exceptions.cs: make it compile with new mcs/csc.
22584 2004-06-03 Massimiliano Mantione <massi@ximian.com>
22585 * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
22586 and added relevant test case.
22588 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
22590 * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
22591 regressions in gtk-sharp.
22593 2004-05-29 Zoltan Varga <vargaz@freemail.hu>
22595 * exceptions.cs: New regression tests.
22597 * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
22599 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
22601 * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
22603 2004-05-28 Zoltan Varga <vargaz@freemail.hu>
22605 * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
22607 * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
22609 2004-05-28 Patrik Torstensson <totte@hiddenpeaks.com>
22611 * mini.c (mono_jit_runtime_invoke): Init class in this
22612 method instead of trusting mono_jit_compile_method to
22613 do the work (because wrappers can be in object class)
22615 2004-05-27 Zoltan Varga <vargaz@freemail.hu>
22617 * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
22619 * basic-long.cs: New regression test.
22621 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
22623 * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
22624 and div/rem checks.
22626 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
22628 * Makefile.am: fix miguel's change to build mono statically against
22629 libmono (track build dependencies).
22631 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
22633 * cfold.c: Some glib versions do not have G_MININT32.
22635 2004-05-26 Massimiliano Mantione <massi@ximian.com>
22637 * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
22638 with precision of tan, atan, sin and cos, and implemented related
22639 regressions tests (fixes bug 54467, but one new problem appeared and
22642 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
22644 * cfold.c (FOLD_BINOPZ): Avoid division by zero.
22646 * exceptions.cs: Add test for constant folding && division by zero.
22648 * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
22649 since driver.c is in libmono too, so the optimization was useless.
22651 * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS
22652 variable to driver.c so the compiler can emit more efficient code to
22655 2004-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22657 * Makefile.am: don't distribute generated inssel.[ch] files.
22659 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
22661 * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
22662 into the default appdomain. Fixes #58707.
22664 * jit-icalls.c: Remove the broken approximation for truncl, doing
22665 no conversion is better.
22667 * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
22670 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
22672 * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
22673 of the mcrxr instruction which is not available on some processors
22674 even if it's documented to be. Implement add and sub overflow correctly
22675 (still not complete for long unsigned). Speed up icalls a bit.
22677 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
22679 * mini.c (mono_jit_compile_method_with_opt): Make sure that
22680 we run .cctor in the current domain instead of target_domain.
22682 Fixes bug #58558, .cctor not being called in -O=shared.
22684 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
22686 * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
22688 2004-05-24 Ben Maurer <bmaurer@users.sourceforge.net>
22690 * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
22691 which can be done with an imm8, do it that way.
22692 (mono_arch_output_basic_block): ditto for a jmp
22693 (mono_arch_emit_prolog): Computate maximum offset of a label.
22695 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
22697 * mini-x86.c (mono_arch_local_regalloc): the reg allocator
22698 now tries to allocate prefered physical reg's for virtual
22699 regs. This reduces the number of emited spills/loads with
22700 20-30% on our core assemblies.
22702 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22704 * jit-icalls.c: truncl() is not needed and trunc() is
22705 the correct thing to do anyway (bug #58287).
22707 2004-05-24 Zoltan Varga <vargaz@freemail.hu>
22709 * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
22712 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
22714 * driver.c: enable loop optimizations by default.
22716 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
22718 * mini-x86.c: fix calc of max loop size when aligning loops start.
22720 2004-05-23 Zoltan Varga <vargaz@freemail.hu>
22722 * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
22725 2004-05-22 Zoltan Varga <vargaz@freemail.hu>
22727 * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
22730 * basic-long.cs: Add tests for add/subtract of immediates with carry.
22732 * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
22734 * mini.c (inline_method): Allways inline some wrappers even if the cost
22735 is too large. Fixes #58785.
22737 * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
22739 2004-05-21 Zoltan Varga <vargaz@freemail.hu>
22741 * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
22742 (crichton@gimp.org). Beginning of support for sparc/linux.
22744 * mini-sparc.c: Optimize retrieval of LMF address.
22746 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
22748 * exceptions-ppc.c: handle alloca in methods with clauses.
22750 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
22752 * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
22754 2004-05-20 Lluis Sanchez Gual <lluis@ximian.com>
22756 * mini.c: Delegate most of the abort signal work to
22757 mono_thread_request_interruption, which also handles Stop and Suspend
22760 2004-05-20 Zoltan Varga <vargaz@freemail.hu>
22762 * mini.c mini.h: Allow inlining of icall wrappers if the backend
22763 supports the save/restore lmf opcodes.
22765 2004-05-19 Zoltan Varga <vargaz@freemail.hu>
22767 * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
22768 by gcc-3.4 as well.
22770 * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
22772 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
22774 * mini.h mini.c (mini_method_compile): Only run abc removal pass on
22775 methods which contain array accesses.
22777 * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
22778 boundaries. Fixes #58537.
22780 * iltests.il: Add regression test for #58537.
22782 2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
22784 * mini-x86.c (mono_arch_local_regalloc): Last part of
22785 fix for bug #58633 (releasing register to early).
22787 2004-05-18 Miguel de Icaza <miguel@ximian.com>
22789 * basic-long.cs: Add new regression test.
22791 2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
22793 * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
22794 register too early on the chain.
22796 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
22798 * mini.c (create_helper_signature): Use a helper function to reduce
22799 the code which needs to be written. Also set the calling convention of
22800 icalls on windows. Fixes #57840.
22802 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
22804 * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
22805 exceptions-ppc.c: added helper function to get the instruction address
22806 from a signal handler context.
22808 2004-05-17 Ben Maurer <bmaurer@users.sourceforge.net>
22810 * helpers.c: use g_get_tmp_dir. Invokes happyness
22813 2004-05-17 Ben Maurer <bmaurer@users.sourceforge.net>
22815 * helpers.c: Add new env variable to pass args to objdump.
22816 Specifically for those of us who love -Mintel. r=miguel, gonzalo.
22818 2004-05-17 Radek Doulik <rodo@ximian.com>
22820 * Makefile.am (common_sources): added abcremoval.h so it get
22821 disted and daily mono packages on go-mono.com will build again
22823 2004-05-17 Massimiliano Mantione <massi@ximian.com>
22825 * abcremoval.c: Fixed coding style, added copyright header.
22827 * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
22829 * mini.h: Added prototype for abc removal main function.
22831 * build_relations_propagation_table.pl: Added copyright header.
22833 2004-05-16 Patrik Torstensson <totte@hiddenpeaks.com>
22835 * basic-long.cs: reg test for complex ceq_long bug.
22837 2004-05-16 Patrik Torstensson <totte@hiddenpeaks.com>
22839 * mini-x86.c (mono_arch_local_regalloc): Correctly free
22840 reg in long and clob case (bug #58343). Fixed/added comments.
22842 2004-05-14 Ben Maurer <bmaurer@users.sourceforge.net>
22844 * mini.c (mono_jit_runtime_invoke): Follow new convention
22845 of calling the invoke method with an function pointer.
22847 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
22849 * ChangeLog: Fix author of memory leak patch.
22851 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
22853 * Makefile.am: fix make dist as well...
22856 2004-05-14 Massimiliano Mantione <massi@ximian.com>
22858 * cfold.c: Made so that conversions from pointer to int4 are no-ops
22859 on archs where pointers are 4 bytes long.
22861 * Makefile.am: Added abcremoval.c source file.
22863 * abcremoval.c: Added abcremoval.c.
22865 * abcremoval.h: Added abcremoval.h.
22867 * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
22869 * inssel.brg: Enabled bounds check removal.
22871 * mini.c: Added support for abcrem optimization.
22873 * mini.h: Added abcrem optimization label.
22875 * driver.c: Added support for abcrem optimization.
22877 * propagated_relations_table.def: Added propagated_relations_table.def.
22879 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
22881 * mini.c, cfold.c: fix style.
22883 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22885 * mini.c: handle issue with the low-level implementation of
22886 some long opcodes (bug #54209).
22888 2004-05-13 Ben Maurer <bmaurer@users.sourceforge.net>
22890 * basic.cs: test for my new cmov stuff.
22892 2004-05-13 Patrik Torstensson
22894 * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
22895 opt and added peephole documentation.
22897 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
22899 * tramp-ppc.c: rewrote the generic trampoline code.
22901 2004-05-11 Patrik Torstensson
22903 * mini-x86.c: optimize long shl/shr asm code (one less branch)
22905 2004-05-11 Zoltan Varga <vargaz@freemail.hu>
22907 * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
22909 * mini.h mini.c dominators.c: Applied patch from Derek Woo
22910 (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
22912 * mini.c: Add new icalls for AsAny marshalling.
22914 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
22916 * tramp-ppc.c, mini-ppc.c: more cleanups.
22918 2004-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22920 * mini.c: no warnings.
22922 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22924 * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
22926 2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
22928 * mini.c: In the thread abort signal handler, if the thread is in the
22929 process of being stoped, don't throw the Abort exception, just stop the
22932 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
22934 * tramp-ppc.c: removed old code.
22936 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22938 * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
22939 do some simple speed optimizations on ppc.
22941 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
22943 * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
22944 and large offsets in load/store.
22946 2004-05-07 Zoltan Varga <vargaz@freemail.hu>
22948 * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
22949 it causes regressions.
22951 2004-05-07 Zoltan Varga <vargaz@freemail.hu>
22953 * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
22956 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
22958 * jit-icalls.c: remove warnings.
22959 * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
22960 speedups for unsafe code.
22962 2004-05-07 Ben Maurer <bmaurer@users.sourceforge.net>
22964 * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
22966 2004-05-06 Zoltan Varga <vargaz@freemail.hu>
22968 * basic-calls.cs: Add new regression test.
22970 * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
22973 * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
22975 * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
22978 2004-05-06 Patrik Torstensson
22980 * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
22981 long reg allocation in any reg (not only eax:edx) and implemented
22982 long shl/shr ops in asm instead of helpers.
22984 2004-05-05 Zoltan Varga <vargaz@freemail.hu>
22986 * mini-sparc.h: Fix warnings.
22988 * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
22991 * mini-exceptions.c (mono_handle_exception): Call the filter in a
22992 separate statement for clarity.
22994 * mini-sparc.c: Update status.
22996 2004-05-04 Zoltan Varga <vargaz@freemail.hu>
22998 * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
23001 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23003 * inssel-ppc.brg: another small pre-release workaround:
23004 we don't do overflow detection for long_sub_un.
23006 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23008 * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
23009 (also works around a weird ppc bug: 57957).
23011 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
23013 * tramp-ppc.c: trampoline fixes.
23015 Fri Apr 30 15:54:26 EDT 2004 Paolo Molaro <lupus@ximian.com>
23017 * mini-ppc.c: fixed typos.
23019 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23021 * mini-ppc.c, exceptions-ppc.c: more code saves registers
23022 at the top of the stack. Fixed typos. Use a frame registers
23023 for all the methods with exception clauses.
23025 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
23027 * exceptions-ppc.c: restore fp registers.
23029 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
23031 * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
23032 order from the stack top (moved the stack room to save the
23033 return value for trace after the param area). Fixed corruption
23034 in restoring registers on unwind.
23036 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23038 * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
23040 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23042 * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
23043 and prolog/epilog for methods that use it. Allow
23044 enough param area room for varargs methods. Fix miguel's
23045 breakage in exception handling.
23047 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23049 * Makefile.am: run genmdesc only on current arch.
23051 2004-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23053 * exceptions-x86.c:
23054 * mini-x86.h: fix the build on windows.
23056 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
23058 * 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.
23060 * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
23062 * mini-exceptions.c: New file.
23064 * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
23065 Move some parts of the x86 exception handling code to an
23066 arch-independent file so it can be shared with other ports.
23068 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
23070 * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
23072 2004-04-26 David Waite <mass@akuma.org>
23074 * driver.c: remove comma from end of enumeration declaration
23076 2004-04-26 Jackson Harper <jackson@ximian.com>
23078 * driver.c: parse config file before loading first assembly. This
23079 allows the user gac to be enabled/disabled.
23081 2004-04-23 Miguel de Icaza <miguel@ximian.com>
23083 * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
23084 simpler mechanism: we do not care what is encoded initially
23085 (branch absolute or relative), we care about the code and its
23086 target. I kept the old code for reference for now.
23088 The new code tries first to determine if the jump is anywhere in
23089 the -/+32 absolute meg range, if it succeeds, it encodes using the
23090 absolute branch; If not, it tried to find something in the
23091 relative range, if not, it uses the handle_thunk code.
23093 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
23095 * exceptions-ppc.c: use the correct ip register on macosx.
23097 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
23099 * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
23101 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
23103 * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
23104 Raise exception on integer divide by zero by hand since the hw
23105 doesn't support it. Handle NaNs in FP compares.
23107 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23109 * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
23110 code reducing duplication between the platforms and enabled
23111 signal exception handling (on linux for now).
23113 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
23115 * exceptions-ppc.c: more macosx support.
23117 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
23119 * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
23121 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23123 * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
23125 2004-04-19 Ben Maurer <bmaurer@users.sourceforge.net>
23127 * iltests.il: more tests.
23129 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
23131 * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
23134 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
23136 * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
23138 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
23140 * liveness.c: Mark variables as volatile in all basic blocks reachable
23141 from exception clauses.
23143 2004-04-18 Zoltan Varga <vargaz@freemail.hu>
23145 * exceptions.cs (test_0_rethow_stacktrace): Make this work with
23148 2004-04-18 Ben Maurer <bmaurer@users.sourceforge.net>
23150 * iltests.il, basic.cs: more tests for regalloc.
23152 2004-04-17 Ben Maurer <bmaurer@users.sourceforge.net>
23154 * iltests.il: Some tests for register allocation modifications
23157 2004-04-16 Zoltan Varga <vargaz@freemail.hu>
23159 * exceptions.cs: Add regression test for bug #56782.
23161 * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
23162 original stack trace if an exception is rethrown. Fixes #56782. Oh,
23163 the beauty of fixing the same thing in 5 different files...
23165 2004-04-15 Zoltan Varga <vargaz@freemail.hu>
23167 * mini.c (mono_method_to_ir): Do not compute coverage for inlined
23170 2004-04-14 Zoltan Varga <vargaz@freemail.hu>
23172 * mini.c: Add support for STRWLPARRAY marshalling convention.
23174 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23176 * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
23177 to init the context to setup the regs pointer).
23179 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
23181 * exceptions-ppc.c: more exceptions work.
23183 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23185 * mini.c: avoid reusing the same MonoInst on multiple trees: this is
23188 2004-04-13 Miguel de Icaza <miguel@ximian.com>
23190 * inssel-x86.brg (reg): Add new rules for add, sub and mul that
23191 can use the memory directly.
23193 * cpu-pentium.md: Update documentation from a post from Zoltan.
23195 add x86_add_membase, x86_sub_membase, x86_mul_membase
23197 2004-04-13 Miguel de Icaza <miguel@ximian.com>
23199 * mini-ppc.c: Remove unused definitions FLOAT_REGS and
23200 GENERAL_REGS they were also hardcoded for all PPC ports.
23202 (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
23204 Remove hard-coded limit for floating point registers, use
23205 PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
23207 Notice that in MacOS X calling conventions you can fit a lot more
23208 floating point values in registers, so I should update the PInvoke
23209 test to excercise the passing of floating point values on the
23210 stack (currently broken).
23212 2004-04-06 Miguel de Icaza <miguel@ximian.com>
23214 * tramp-ppc.c (create_trampoline_code): Added
23215 JUMP_TRAMPOLINE_SIZE.
23216 (ppc_magic_trampoline): Follow the pattern from
23217 x86_magic_trampoline: if code is set to zero, return.
23218 (create_trampoline_code): Always pass MonoMethod to the jump
23219 trampoline, before it was passing a null.
23220 (mono_arch_create_jump_trampoline): Implement the jump stub, could
23221 share the code with mono_arch_create_jit_trampoline.
23223 * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
23225 (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
23228 * cpu-g4.md: Added length for jmp instruction, the worst case
23229 scenario is 92 bytes (4 mandatory bytes, potential 19 registers
23232 2004-04-08 Zoltan Varga <vargaz@freemail.hu>
23234 * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
23236 2004-04-07 Zoltan Varga <vargaz@freemail.hu>
23238 * mini.c: Only set bblock->real_offset when adding a new bblock, and
23239 before each IL instruction.
23241 * mini.c (CEE_BOX): Fix warnings.
23243 2004-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23245 * mini.c: removed a few unused vars and extra whitespace.
23247 2004-04-05 Ben Maurer <bmaurer@users.sourceforge.net>
23249 * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
23251 (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
23253 (OP_GETCHR): use the above
23254 (CEE_LDELEMA): use the above.
23256 * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
23257 version of the generic impl.
23258 (MONO_EMIT_BOUNDS_CHECK_IMM): the same
23259 (CEE_LDELEMA): use the above.
23261 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
23263 * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
23266 * iltests.il: Added new regression test for #56317.
23268 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
23270 * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
23271 under NetBSD. Fixes #56450.
23273 * liveness.c (update_gen_kill_set): Fix previous patch.
23275 2004-04-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23277 * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
23279 2004-04-02 Zoltan Varga <vargaz@freemail.hu>
23281 * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
23282 ldsfld and ldsflda.
23284 * inssel-sparc.brg: Add more optimizations.
23286 * mini-sparc.c: Replace multiply/divide with shifts if possible.
23288 2004-04-01 Martin Baulig <martin@ximian.com>
23290 * mini.c (handle_box): New static function; moved the
23291 implementation of CEE_BOX here.
23292 (mono_method_to_ir): Added `constrained_call' variable.
23293 (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
23294 (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
23295 mono_method_get_constrained() to get the method.
23297 2004-04-01 Martin Baulig <martin@ximian.com>
23299 * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
23300 (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
23301 (mono_method_to_ir): We don't need these macros anymore since
23302 mono_class_get_full() already takes care of it.
23304 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23306 * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
23307 use @function (as doesn't accept #function here) and check the return
23308 value of system and stop if fails.
23310 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23312 * mini.c: set the timeout to 2s when calling mono_domain_finalize.
23314 2004-03-31 Zoltan Varga <vargaz@freemail.hu>
23316 * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
23318 * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
23320 * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
23323 * basic-long.cs: Add test for negation of Int64.MinValue.
23325 2004-03-30 Zoltan Varga <vargaz@freemail.hu>
23327 * mini-sparc.c: Update status.
23329 * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
23331 * exceptions-sparc.c: Fix return value in filters.
23333 * inssel-sparc.brg: Fix register allocation in some rules.
23335 2004-03-28 Martin Baulig <martin@ximian.com>
23337 * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
23340 2004-03-28 Zoltan Varga <vargaz@freemail.hu>
23342 * mini-x86.c (mono_arch_patch_code): Fix warnings.
23344 * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if
23345 dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
23346 remove unused conv_u4 opcode.
23348 * mini-x86.c: Remove valgrind workaround since it slows down things
23349 even when mono is not run under valgrind.
23351 2004-03-26 Zoltan Varga <vargaz@freemail.hu>
23353 * mini-sparc.c: Update status.
23355 * inssel-sparc.brg: Add some optimizations.
23357 * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
23358 future delay slot filling. Add support for varargs, tail calls and JMP.
23360 * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of
23361 CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
23363 * inssel.brg: Fix register allocation in OP_ARGLIST.
23365 * inssel.brg: Fix warnings.
23367 2004-03-25 Martin Baulig <martin@ximian.com>
23369 * mini.c (inflate_generic_field): Removed.
23370 (mini_get_method): Removed, use mono_get_method_full(),
23371 (mini_get_class): Removed, use mono_class_get_full().
23372 (mono_method_to_ir): Pass our generic context to
23373 mono_field_from_token().
23375 2004-03-25 Martin Baulig <martin@ximian.com>
23377 * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
23378 of a `MonoMethod *'.
23379 (mini_get_method): Take a `MonoGenericContext *' instead
23380 of a `MonoMethod *'.
23381 (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
23382 a new local variable called `generic_context' which holds the
23383 current `MonoGenericContext *'; use it to lookup things.
23385 2004-03-24 Martin Baulig <martin@ximian.com>
23387 * mini.c (mini_get_class): New static method; if we're inside a
23388 generic instance, inflate the class if neccessary.
23389 (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
23391 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
23393 * iltests.il: New regression test for #55976.
23395 * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
23398 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
23400 * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
23403 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
23405 * liveness.c: Consider SSA stores as well as loads when making vars
23408 * exceptions.cs: New regression tests for register allocation.
23410 2004-03-22 Lluis Sanchez Gual <lluis@ximian.com>
23412 * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
23413 * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
23414 domain lock only to protect puntual access to data structures.
23415 Added access lock for sighash, jit_icall_hash_name,
23416 jit_icall_hash_addr and domain->code_mp.
23418 2004-03-20 Zoltan Varga <vargaz@freemail.hu>
23420 * driver.c: Print SIGSEGV handling method.
23422 * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
23424 * mini.c (setup_jit_tls_data): Handle case when this is called
23425 multiple times for a thread.
23427 * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx
23428 is different from fbxx_un. Fixes #54303. Also use constants instead of
23429 magic numbers in a lot of places.
23431 2004-03-19 Zoltan Varga <vargaz@freemail.hu>
23433 * exceptions.cs: Fix cctor test when --regression is used.
23435 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
23437 * mini-ppc.c, exceptions-ppc.c: basic exceptions support
23440 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
23442 * inssel-ppc.brg: fixed register assignments for some rules.
23444 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
23446 * exceptions.cs: Add test for exceptions in static constructors.
23448 * mini.c (mono_jit_compile_method_with_out): Move the calling of
23449 static constructors outside the domain lock. Fixes #55720.
23451 2004-03-17 Martin Baulig <martin@ximian.com>
23453 * mini.c (get_generic_field_inst): Removed, this'll never happen.
23454 (inflate_generic_field): Take the `MonoMethod *' instead of the
23455 `MonoClass *' and added support for generic method.
23456 (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
23457 have a `field->parent->gen_params', only inflate the field if it's
23458 an open constructed type.
23460 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
23462 * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
23463 exception object instead of the preconstructed ones.
23465 2004-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23467 * mini.c: reverted changed to sigsegv_signal_handler commited
23468 accidentally in the previous patch.
23470 2004-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23473 (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
23474 running --aot with an old assembly.
23476 2004-03-16 Zoltan Varga <vargaz@freemail.hu>
23478 * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
23481 * mini-sparc.c: Add support for v9 branches with prediction.
23483 2004-03-15 Bernie Solomon <bernard@ugsolutions.com>
23485 * mini.c (mini_init): #warning is GNUC only
23487 * mini-sparc.h: implement __builtin_frame_address
23488 and __builtin_return_address for Sun C compiler
23490 2004-03-15 Zoltan Varga <vargaz@freemail.hu>
23492 * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
23494 2004-03-14 Zoltan Varga <vargaz@freemail.hu>
23496 * basic-calls.cs: Add test for unaligned byref long argument passing.
23498 * mini-ops.h: Add sparcv9 compare and branch instructions.
23500 * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
23501 v9 instructions if we have a v9 cpu.
23503 * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
23504 registers for global allocation.
23506 * exceptions-sparc.c: Fixes.
23508 2004-03-11 Zoltan Varga <vargaz@freemail.hu>
23510 * liveness.c (mono_analyze_liveness): Optimized version.
23512 * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
23514 * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
23517 * basic-float.cs basic-calls.cs: New regression tests.
23519 2004-03-10 Zoltan Varga <vargaz@freemail.hu>
23521 * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
23522 sigaltstack implementation.
23524 * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
23526 * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
23527 stuff if SIGSEGV_ON_ALTSTACK is not defined.
23529 2004-03-09 Zoltan Varga <vargaz@freemail.hu>
23531 * mini.c: Fix warnings.
23533 * mini.c (mono_resolve_patch_target): New function which contains the
23534 arch independent part of the patching process.
23536 * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
23537 patching code to a separate function.
23539 2004-03-09 Bernie Solomon <bernard@ugsolutions.com>
23541 * mini.c (add_signal_handler): ifdef out on Windows
23543 2004-03-08 Zoltan Varga <vargaz@freemail.hu>
23545 * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c
23546 cpu-sparc.md: Add exception handling support + other fixes.
23548 * driver.c: Print --help output to stdout. Fixes #55261. Also fix
23549 typed GC detection in --version.
23551 * basic.cs exceptions.cs: New regression tests.
23553 * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
23554 the arch specific code can store data during a compilation.
23556 * mini-ops.h: Add OP_SETFRET.
23558 * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
23559 function, register a separate icall for each arity, so the icalls can
23562 * mini.c (mono_print_tree): Print negative offsets in a more readable
23565 * mini.c: Make signal handling work on sparc.
23567 * mini.c (mini_init): Add emulation for lconv_to_r8_un.
23569 * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
23571 * jit-icalls.c: Emulate truncl by aintl on solaris.
23573 * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
23575 2004-03-05 Zoltan Varga <vargaz@freemail.hu>
23577 * mini.c (mini_init): fconv_to_ovf can raise exceptions.
23579 2004-03-04 Lluis Sanchez Gual <lluis@ximian.com>
23581 * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
23582 a MarshalByRef type, inline a method that performs the check, taking into
23583 account that the object can be a proxy. Also implemented tow new opcodes:
23584 CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
23585 * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and
23586 OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
23588 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23590 * mini-ppc.c: if a relative branch displacement is too big
23591 but it points to and area reachable with an absolute branch,
23594 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23596 * mini.c: optimize small copies in cpblk.
23598 2004-03-01 Zoltan Varga <vargaz@freemail.hu>
23600 * basic-calls.cs basic-float.cs: New regression tests.
23602 * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at
23603 negative offsets from %fp. Implement localloc. Fix local register
23604 allocation. Fix the case when the this argument needs to be saved to
23605 the stack. Implement some missing opcodes.
23607 2004-02-26 Zoltan Varga <vargaz@freemail.hu>
23609 * mini.c (mini_method_compile): Reenable global regalloc in methods
23610 with exception handlers.
23612 * linear-scan.c (mono_varlist_sort): Fix warning.
23614 * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
23616 * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
23619 * liveness.c: Make all variables uses in exception clauses volatile, to
23620 prevent them from being allocated to registers. Fixes #42136.
23622 2004-02-25 Zoltan Varga <vargaz@freemail.hu>
23624 * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
23625 causes regressions.
23627 * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
23628 argument to mono_arch_regalloc_cost.
23630 * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs
23633 2004-02-24 Zoltan Varga <vargaz@freemail.hu>
23635 * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c:
23636 Make the cost of allocating a variable to a register arch dependent.
23638 * basic-calls.cs: Fix compilation of tests.
23640 * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
23641 helper function to cut back on the number of #ifdefs needed.
23643 * mini-ppc.c: Fix compilation.
23645 * basic-calls.cs: New regression tests.
23647 * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
23649 * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
23650 of l0 since that is callee saved.
23652 * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
23655 * mini-sparc.c: Ongoing work + flag virtual calls with a special kind
23656 of delay instruction.
23658 * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
23660 * mini.h (MonoCallInst): Add 'virtual' flag.
23662 * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
23664 2004-02-23 Zoltan Varga <vargaz@freemail.hu>
23666 * *.cs: New regression tests.
23668 * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc
23671 * mini.c (mono_runtime_install_handlers): Fix build.
23673 * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
23674 'signal_stack_size' members.
23676 * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an
23677 alternate signal stack.
23679 * exceptions-x86.c: Add stack overflow handling.
23681 * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing
23682 functions to arch independent code.
23684 * mini.c (mono_print_tree): Print more detailed info for load_membase
23687 2004-02-23 Martin Baulig <martin@ximian.com>
23689 * mini.c (mini_get_method): Set `gmethod->generic_inst'.
23691 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
23693 * mini-x86.c: fixed reg allocation for div/rem.
23695 2004-02-22 Miguel de Icaza <miguel@ximian.com>
23697 * driver.c (mono_main): Report some configuratio options on --version.
23699 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
23701 * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
23702 low in the address space. Correctly flush memory in thunks where we
23703 output native code.
23705 2004-02-20 Martin Baulig <martin@ximian.com>
23707 * mini.c (mini_get_method): New static method; inflate all generic
23708 methods and methods in open generic instances.
23709 (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
23710 (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
23712 2004-02-19 Zoltan Varga <vargaz@freemail.hu>
23714 * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
23716 * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
23718 2004-02-19 Bernie Solomon <bernard@ugsolutions.com>
23720 * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
23722 * mini-sparc.c (flushi mono_arch_output_basic_block): make
23723 it compile using Sun's compiler.
23725 2004-02-19 Zoltan Varga <vargaz@freemail.hu>
23727 * 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.
23729 * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
23731 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
23733 * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
23735 * mini-ppc.c: handle calls outside of the allowed range with thunks
23736 allocated using the code manager.
23737 * tramp-ppc.c: use the code manager to hold generated native code.
23738 Fixed the magic trampoline to just patch vtable entries.
23740 2004-02-17 Zoltan Varga <vargaz@freemail.hu>
23742 * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
23745 2004-02-16 Zoltan Varga <vargaz@freemail.hu>
23747 * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
23750 * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
23751 if we have a working __thread implementation.
23753 * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove
23754 OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
23756 2004-02-15 Zoltan Varga <vargaz@freemail.hu>
23758 * mini-x86.c: Fix compilation under gcc 2.
23760 2004-02-14 Zoltan Varga <vargaz@freemail.hu>
23762 * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
23763 contains a call to the wrapped function.
23765 * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add
23766 OP_<CALL>_IMM opcodes, and use them under X86.
23768 * mini.c (mono_jit_find_compiled_method): Fix warning.
23770 * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
23772 * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
23774 * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
23775 functionality to mini.c.
23777 * mini.c (mono_create_jump_trampoline): New function to create a jump
23778 trampoline. Return a compiled method instead of a trampoline if it
23779 exists. Add a cache for jump trampolines.
23781 * mini.c (mono_jit_find_compiled_method): New function to return a
23782 compiled method if it exists.
23784 * mini-x86.c: Call mono_create_jump_trampoline instead of
23785 mono_arch_create_jit_trampoline.
23787 * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
23788 a jump trampoline. Fixes #52092.
23790 2004-02-11 Zoltan Varga <vargaz@freemail.hu>
23792 * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
23793 which is not up-to-date. Add check_corlib_version () instead.
23795 * mini.c (mini_init): Call mono_thread_attach () so embedders do not
23798 * mini.c (mono_runtime_install_handlers): Remove check for valgrind
23799 since newer valgrind versions do not need it.
23801 * mini.c (mono_jit_compile_method_with_opt): New helper function to
23802 compile a method with a given set of optimizations.
23804 * mini.c: Compile icall wrappers on-demand instead of at startup.
23806 * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
23807 wrapper for an icall.
23809 2004-02-10 Zoltan Varga <vargaz@freemail.hu>
23811 * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
23814 * iltests.il: Add test for non-empty stack before switch instruction.
23816 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
23818 * mini.c: Add support for new stringbuilder marshalling conventions.
23820 * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
23822 2004-02-01 Martin Baulig <martin@ximian.com>
23824 * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
23825 in `ginst->mtype_argv'.
23827 2004-01-31 Miguel de Icaza <miguel@ximian.com>
23829 * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
23830 facilitate grepping.
23832 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
23834 * mini.c: fixed buglet in initobj generic implementation for references.
23836 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
23838 * Makefile.am: make the version script conditional.
23839 * jit-icalls.c: handle missing truncl().
23841 2004-01-23 Zoltan Varga <vargaz@freemail.hu>
23843 * exceptions.cs: Add more tests for double->int conversion.
23845 * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
23846 we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
23848 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
23850 * driver.c: make --verbose --version emit an error
23851 if the loaded corlib doesn't match the runtime version.
23853 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23855 * mini-ppc.h: export ppc_patch().
23856 * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
23857 * tramp-ppc.c: call convention fixes: Linux/PPC support should be
23858 on par or better than on MacOSX.
23860 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
23862 * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
23863 mono_lookup_pinvoke_call.
23865 * mini-x86.c: Under windows, the default pinvoke calling convention is
23866 stdcall. Fixes #52834.
23868 * mini.c (optimize_branches): Add an upper bound to the number of
23869 iterations to prevent infinite loops on strange loops. Fixes #53003.
23871 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
23873 * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
23874 and ISINST. Fixes #52093.
23876 * objects.cs (test_0_vector_array_cast): New tests.
23878 2004-01-15 Zoltan Varga <vargaz@freemail.hu>
23880 * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
23881 checking in Array.Set ().
23883 * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
23886 * object.cs (test_0_multi_array_cast): New regression test.
23888 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
23890 * exceptions-ppc.c: fix build on Linux/PPC.
23892 2004-01-14 Zoltan Varga <vargaz@freemail.hu>
23894 * tramp-x86.c (x86_magic_trampoline): Disable code patching when
23895 running under valgrind.
23896 (x86_magic_trampoline): Fix build bustage.
23898 * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
23899 negative values as well. This is needed for the encoding of the line number
23900 info, since sometimes the line numbers are not in increasing order.
23902 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
23904 * cpu-pentium.md (localloc): Increase the size of the localloc
23905 instruction since it is a loop under Win32.
23907 * debug-mini.c (record_line_number): Get rid of unneccesary memory
23910 2004-01-09 Zoltan Varga <vargaz@freemail.hu>
23912 * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c
23913 tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from
23914 Max Horn (max@quendi.de). Fix file names in comments.
23916 2004-01-03 Zoltan Varga <vargaz@freemail.hu>
23918 * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
23919 avoid stack overflow.
23920 (replace_usage): Avoid uninitialized variable warnings.
23922 * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
23923 and taking the address of valuetype variables.
23925 2004-01-03 Patrik Torstensson
23927 * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
23928 for other purposes than FP later on.
23930 2004-01-02 Zoltan Varga <vargaz@freemail.hu>
23932 * mini.c (mono_method_to_ir): Prevent register allocation for arguments
23935 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
23937 * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
23939 2003-12-30 Patrik Torstensson <p@rxc.se>
23941 * mini-x86.h: Decreased number of availiable fp regs.
23942 Solves corner cases with FP spilling.
23944 2003-12-23 Patrik Torstensson <p@rxc.se>
23946 * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
23947 for floating point stack tracking / spilling on x86.
23950 * basic-float.cs: added float mul overflow test.
23952 2003-12-23 Zoltan Varga <vargaz@freemail.hu>
23954 * mini.c (mono_method_to_ir): Add workaround for bug #51126.
23956 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23958 * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
23959 supports for cond branches that overflow the immediate
23960 overflow offset. mcs can compile simple programs.
23962 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23964 * exceptions-ppc.c: exception handling support wip:
23965 finally handlers get run on exception.
23967 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
23969 * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while
23972 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
23974 * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
23975 initial support for stack walking and unwinding.
23977 2003-12-18 Zoltan Varga <vargaz@freemail.hu>
23979 * driver.c (mono_main): Make corlib-out-of-sync message more
23980 descriptive. Also remove verify_corlib call.
23982 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
23984 * mini.c: make CEE_NEWARR calls and other emulated opcodes
23985 not overlap with other call's arguments, too.
23987 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
23989 * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c:
23990 move to arch-specific code the choice of arch-specific
23991 intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
23992 * mini.c: ensure emulation calls will not interleave
23995 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
23997 * tramp-ppc.c, basic-calls.cs: rework trampolines so that
23998 the magic trampoline stack frame is dropped before executing
24001 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24003 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
24004 and integer to fp conversions. Added support for overflowing
24005 arguments on the stack. Reserve a couple more registers as temps.
24006 Added support for aot compilation (as output still needs to be
24009 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24011 * mini-ppc.c, basic-long.cs: fix jumps to known labels.
24012 Don't overwrite return register in some corner cases.
24014 2003-12-13 Zoltan Varga <vargaz@freemail.hu>
24016 * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
24017 static constructors when AOT compiling.
24019 * driver.c (mono_main): Call mono_check_corlib_version.
24021 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
24023 * cpu-g4.md, basic.cs: fixed div target register.
24025 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
24027 * mini-ppc.c, basic.cs: shl_imm fix with test.
24029 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
24031 * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing
24032 structures by value. Misc fixes.
24033 * objects.cs: more tests.
24035 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
24037 * mini-ppc.c: lconv.ovf.i implemented.
24039 2003-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24042 (mini_init): don't error out if someone already called g_thread_init.
24044 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
24046 * exceptions-x86.c, exceptions-ppc.c: allow the exception object
24047 to be any type per the spec. Fix abnormal memory usage when
24048 the same object is repeatedly thrown.
24050 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
24052 * mini.c: check for overruns in IL code.
24054 2003-12-09 Zoltan Varga <vargaz@freemail.hu>
24056 * TODO: Add/remove some todo entries.
24058 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
24060 * driver.c (mono_main): Call mono_verify_corlib.
24062 2003-12-07 Lluis Sanchez Gual <lluis@ximian.com>
24064 * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy.
24065 This has been moved to mini.c
24066 * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
24067 type being casted is marshalbyref it could be a proxy, so instead of
24068 emitting the type check code, emit a call to a runtime method that will
24069 perform the check by calling CanCastTo if needed.
24071 2003-12-06 Zoltan Varga <vargaz@freemail.hu>
24073 * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
24074 methods with large stack frames under Win32.
24076 2003-12-04 Zoltan Varga <vargaz@freemail.hu>
24078 * Makefile.am: Distribute regression tests.
24080 * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
24081 at the end instead of inserting each variable into the sorted list.
24083 * linear-scan.c (mono_varlist_sort): New helper function.
24085 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
24087 * mini.c: ensure arguments and locals are within bounds.
24089 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24091 * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and
24094 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
24096 * mini.c (mono_cprop_copy_values): Fix crash.
24098 * aot.c: Set verbosity back to 0.
24100 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24102 * regalloc.c: complete memory leak fix by Laurent Morichetti
24105 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
24107 * driver.c (main_thread_handler): Revert the previous patch.
24109 * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
24112 * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
24113 memory from the memory pool.
24115 * driver.c (main_thread_handler): Turn on all optimizations when
24118 * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
24119 an array for better performance.
24121 * regalloc.c (mono_regstate_assign): Fix memory leak.
24123 * debug-mini.c (mono_debug_serialize_debug_info): New function to
24124 serialize the debug info.
24126 * debug-mini.c (mono_debug_add_aot_method): New function to load the
24127 debug info from the serialized representation.
24129 * aot.c: Save debug info into the generated file and load it when
24132 * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
24134 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
24136 * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
24137 More FP-related fixes.
24139 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24141 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
24142 and register allocation buglet. Hello world now runs.
24144 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
24146 * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
24147 * tramp-ppc.c: fixed class init trampoline.
24148 * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
24150 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
24152 * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
24153 mini.c: more ppc changes/fixes.
24155 2003-11-27 Zoltan Varga <vargaz@freemail.hu>
24157 * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
24158 Also optimize the case when the arguments are the same in the caller
24161 * iltests.il: Add tests for tail calls with valuetype arguments.
24163 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
24165 * mini-ppc.c: fixes for struct return type.
24167 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
24169 * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move
24170 mono_spillvar_offset() to arch-specific code.
24172 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24174 * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
24176 2003-11-27 Zoltan Varga <vargaz@freemail.hu>
24178 * exceptions-x86.c: Fix stack space leaks.
24180 * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
24181 registers from the lmf if the method has save_lmf set.
24183 2003-11-26 Zoltan Varga <vargaz@freemail.hu>
24185 * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
24186 of icall wrappers into InvokeInDomain, since these are now per-domain.
24188 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
24190 * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
24191 make some opcode emulation and intrinsic ops enabled/disabled
24192 according to the architecture. More fixes.
24194 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24196 * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
24198 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
24200 * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
24201 arch-specific handling for 'this' and struct return type to
24202 arch-specific code.
24204 2003-11-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24206 * aot.c: prevent divide by zero error when reporting (it happened with
24207 Accessibility.dll).
24209 2003-11-25 Zoltan Varga <vargaz@freemail.hu>
24211 * mini.h (inst_switch): Remove unused macro.
24213 2003-11-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24216 (load_aot_module): free 'info->methods' and 'info' properly. No more
24217 "free(): invalid pointer blah" messages when you have an old aot
24220 2003-11-21 Lluis Sanchez Gual <lluis@ximian.com>
24222 * jit-icalls.c, mini.c: Added support for context static fields.
24224 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
24226 * mini.c (mono_method_blittable): Methods which set LastError are not
24227 blittable either. Fixes #51108.
24229 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
24231 * mini.c: flush icache.
24232 * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
24234 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
24236 * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
24238 2003-11-17 Zoltan Varga <vargaz@freemail.hu>
24240 * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
24243 * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with
24246 * inssel.brg (CEE_MKREFANY): Fix AOT case.
24248 2003-11-16 Zoltan Varga <vargaz@freemail.hu>
24250 * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div
24251 instruction when the result is discarded.
24253 * iltests.il (test_0_div_regalloc): New regression test.
24255 * arrays.cs: Fix compilation error.
24257 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24259 * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
24260 float rules to inssel-x86.brg: sane architectures with FP registers
24261 don't need to implement these rules.
24263 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
24265 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
24267 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24269 * mini.h, inssel-long32.brg: fixed endianess issues in int64
24270 implementation of 32 bit systems.
24272 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
24274 * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
24275 (Jeroen Zwartepoorte).
24277 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
24279 * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
24280 the caller and the callee matches.
24282 * mini.c (mono_method_to_ir): Add comment.
24284 * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
24285 signbit is missing on some platforms.
24287 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
24289 * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
24291 * mini.c (setup_jit_tls_data): Call the new function.
24293 * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
24295 * mini-x86.c: Add experimental support for fast access to the lmf
24296 structure under NPTL/Linux 2.6.x.
24298 2003-11-06 Martin Baulig <martin@ximian.com>
24300 * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
24301 `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
24304 2003-11-02 Martin Baulig <martin@ximian.com>
24306 * mini.c (inflate_generic_field): New static method.
24307 (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
24308 generic instance and the field is declared in a generic type, call
24309 inflate_generic_field() to inflate it. Fixes gen-28.cs.
24311 2003-10-31 Zoltan Varga <vargaz@freemail.hu>
24313 * mini.h mini.c (mono_method_same_domain): New function to return
24314 whenever the caller and the callee are in the same domain.
24316 * tramp-x86.c (x86_magic_trampoline): Use the new function.
24318 2003-10-30 Martin Baulig <martin@ximian.com>
24320 * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
24321 similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
24323 (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
24324 MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS().
24326 2003-10-29 Zoltan Varga <vargaz@freemail.hu>
24328 * mini.c mini-ops.h inssel.brg: Implement undeniable exception
24331 * mini.c (sigusr1_signal_handler): Move creation of the thread abort
24332 object here, so it is in the correct appdomain etc.
24334 2003-10-27 Zoltan Varga <vargaz@freemail.hu>
24336 * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
24338 (mono_method_to_ir): Avoid freeing the type created returned from
24339 mono_type_create_from_typespec, since it is put into an internal cache
24340 by the function. Fixes pointer.exe.
24342 * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal
24343 trampolines for icalls and pinvokes as well. Fixes #33569.
24345 2003-10-24 Zoltan Varga <vargaz@freemail.hu>
24347 * mini.c: Update after appdomain changes.
24349 * mini.c (mono_jit_compile_method_inner): Allways compile native
24350 method wrappers in the root domain, since there can only be one
24351 instance of them, whose address is stored in method->info.
24353 2003-10-16 Zoltan Varga <vargaz@freemail.hu>
24355 * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
24356 environment variable. Instead detect automatically whenever running
24357 under valgrind using the magic macro RUNNING_ON_VALGRIND from
24360 2003-10-16 Miguel de Icaza <miguel@ximian.com>
24362 * trace.c, trace.h: New files that implement the new trace option
24365 * driver.c: Document new --trace options.
24367 * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
24370 - if (mono_jit_trace_calls)
24371 + if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
24373 * mini.h: prototypes.
24375 2003-10-15 Zoltan Varga <vargaz@freemail.hu>
24377 * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
24379 * mini.c inssel.brg: Implement typedefbyref opcodes.
24381 * mini.c (mono_jit_compile_method): Remove unused local variable.
24383 * mini.c (mono_jit_compile_method_inner): Ditto.
24385 2003-10-12 Zoltan Varga <vargaz@freemail.hu>
24387 * tramp-x86.c (x86_class_init_trampoline): Fix build.
24389 * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
24391 2003-10-10 Zoltan Varga <vargaz@freemail.hu>
24393 * mini.c (mono_no_aot): Remove unused global variable.
24395 * mini.c: Thread safety fixes.
24397 2003-10-09 Zoltan Varga <vargaz@freemail.hu>
24399 * mini.c (mono_create_class_init_trampoline): Add a lock around
24400 class_init_hash_addr.
24402 * arrays.cs (test_0_newarr_emulation): Add new regression test for
24405 * mini.c: Decompose the NEWARR instruction before decomposing its
24406 arguments. Fixes #30073.
24408 2003-10-08 Zoltan Varga <vargaz@freemail.hu>
24410 * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
24413 2003-10-06 Zoltan Varga <vargaz@freemail.hu>
24415 * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
24417 * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
24419 * driver.c: Add support for compiling icall wrappers to --compile.
24421 2003-10-05 Zoltan Varga <vargaz@freemail.hu>
24423 * inssel.brg: The empty value in class->interface_offsets is -1, not
24426 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
24428 * objects.cs: New test for 'is' operator on an array of interfaces.
24430 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
24432 * tramp-ppc.c: update trampoline code to support jumps
24433 and class initialization.
24435 2003-09-30 Zoltan Varga <vargaz@freemail.hu>
24437 * mini.c (mono_jit_compile_method): Fix reading of freed memory.
24439 * inssel.brg (OP_UNBOXCAST): Fix #46027.
24441 * inssel.brg (OP_UNBOX): Remove unused rule.
24443 * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
24444 region instead of one for each method. Fixes #47813.
24446 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
24448 * exceptions.cs (test_0_nested_finally): New regression test for
24449 nested exception handlers.
24451 * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
24453 * mini.c (mono_method_to_ir): Avoid inlining tail calls.
24455 * mini.c (mono_method_to_ir): Fix tail recursion in the presence of
24458 * mini.c (mono_method_check_inlining): Make the inlining limit
24459 configurable by an environment variable.
24461 * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
24463 * mini.h: Bump AOT file version.
24465 * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a
24466 token, store the image along with the token, since the token might not
24467 refer to the same image as the method containing the relocation,
24468 because of inlining.
24470 2003-09-27 Zoltan Varga <vargaz@freemail.hu>
24472 * mini.c (mono_precompile_assemblies): New function to compile
24473 all methods in all loaded assemblies.
24475 * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
24477 * regalloc.h regalloc.c (MonoRegState): Change the type of
24478 iassign and fassign to int*, since they can contain large negative
24479 values if the register is spilled. Also added some comments. Fixes
24482 * exceptions-x86.c (seh_handler): Fix handling of system exceptions
24483 under Win32. Fixes #42964.
24485 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
24487 * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
24489 * aot.c: Added support for AOT compiling methods which contain calls
24490 to wrappers. Currently, only remoting-invoke-with-check wrappers are
24493 * driver.c (compile_all_methods): Run the compilation in a thread
24494 managed by mono. Fixes #44023.
24496 * mini.c (mono_codegen): Print full method name in verbose output.
24498 * mini-x86.c (mono_arch_patch_code): Fix warning.
24500 * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
24501 jumps, since the method we are jumping to might be domain-specific.
24503 * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
24505 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
24507 * inssel.brg: string chars are unsigned.
24509 2003-09-15 Zoltan Varga <vargaz@freemail.hu>
24511 * TODO: New todo item.
24513 * tramp-x86.c (x86_class_init_trampoline): New trampoline function
24514 which calls mono_runtime_class_init and patches the call site to
24515 avoid further calls.
24516 (mono_arch_create_class_init_trampoline): New arch specific function
24517 to create a class init trampoline.
24518 (create_trampoline_code): Generalized so it can create
24519 class init trampolines as well.
24521 * mini.c (helper_sig_class_init_trampoline): New helper variable.
24522 (mono_create_class_init_trampoline): New function to create and cache
24523 class init trampolines.
24524 (mono_find_class_init_trampoline_by_addr): New function to lookup the
24525 vtable given the address of a class init trampoline. Used by the
24527 (mono_codegen): Generate a call to a trampoline instead of
24528 mono_runtime_class_init in LDSFLD[A].
24529 (mono_codegen): Add relocations for the new trampoline.
24531 * mini.h mini-x86.c aot.c: Added a new relocation type:
24532 MONO_PATCH_INFO_CLASS_INIT.
24534 * mini.h: Bump AOT version number.
24536 * aot.c: Create a copy of the loaded code instead of using the original
24537 so methods which call each other will be close in memory, improving
24540 * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
24541 patch since it breaks the regression tests.
24543 * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
24544 for the register saving instruction sequence since the
24545 frame_state_for function in glibc 2.3.2 don't seem to detect it.
24547 2003-09-14 Zoltan Varga <vargaz@freemail.hu>
24549 * TODO: Fix todo item && remove another.
24551 2003-09-12 Zoltan Varga <vargaz@freemail.hu>
24553 * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
24556 * aot.c: Moved the check for MONO_LASTAOT into the initialization
24557 function of the module.
24559 * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
24560 turning on/off the usage of AOT code. Got rid of mono_no_aot and the
24561 --no-aot command line option.
24563 2003-09-11 Zoltan Varga <vargaz@freemail.hu>
24565 * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
24566 by Bernie Solomon (bernard@ugsolutions.com).
24568 * inssel.brg: Refactor the interface offset table related code into
24569 its separate functions and add support for the AOT case.
24571 2003-09-10 Zoltan Varga <vargaz@freemail.hu>
24573 * aot.c (mono_aot_get_method_inner): Fix memory leak.
24575 * aot.c: Added mono_aot_verbose variable and made all debugging
24576 output depend on the value of this variable.
24578 * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
24579 method_label and info_label.
24581 * mini.h mini-x86.c aot.c: Added a new relocation type
24582 MONO_PATCH_INFO_IID for klass->interface_id.
24584 * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
24585 the MonoJitInfo structure.
24587 * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
24588 a non-root appdomain in shared mode.
24590 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
24592 * aot.c: make aot loader less verbose. Remove free of unused variable.
24594 2003-09-08 Zoltan Varga <vargaz@freemail.hu>
24596 * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
24598 * .cvsignore: Added *.dll.
24600 * mini.c (mono_print_tree_nl): New function callable while debugging.
24602 * mini.c (mono_print_code): Export this.
24604 * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
24607 2003-09-05 Zoltan Varga <vargaz@freemail.hu>
24609 * mini.h (MonoCompile): Added 'jit_info' field.
24611 * mini.c (mini_method_compile): Save the generated MonoJitInfo into
24612 the cfg structure, since it is needed by the AOT compiler.
24614 * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
24616 * aot.c: A major rewrite. Changes include:
24617 - save exception tables for methods which have them.
24618 - cache failed lookups in aot_get_method () to avoid the (slow) calls
24619 to g_module_symbol.
24620 - reworked the file format so it is now much smaller and needs
24621 fewer relocation entries.
24623 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
24625 * aot.c (load_aot_module): Fix build bustage on platforms without
24628 2003-09-04 Martin Baulig <martin@ximian.com>
24630 * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
24632 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
24634 * TODO: Some new optimization ideas.
24636 * aot.c: Move AOT module loading logic here from mono_assembly_open.
24638 * aot.c: Save the optimization flags used to compile the code into
24641 * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
24642 support emitting domain specific code.
24644 * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is
24645 no longer domain neutral. It can be made domain neutral by compiling
24646 with --optimize=shared.
24648 * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
24649 between appdomains.
24651 * driver.c mini.h mini.c: New --no-aot debugging option which disables
24652 loading of AOT code.
24654 * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
24656 * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
24657 if there is no domain neutrality information.
24659 2003-09-01 Zoltan Varga <vargaz@freemail.hu>
24661 * aot.c (mono_compile_assembly): Emit a symbol containing the file
24662 format version into the generated library.
24664 * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
24665 callee method into the caller since one of them could be shared.
24667 * mini.h mini-x86.c aot.c: Added two new relocations so throwing
24668 system exceptions from AOT code now works.
24670 * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling
24671 method if it is domain neutral and the callee is not.
24673 * graph.c (cfg_emit_one_loop_level): Fix warning.
24675 2003-08-30 Zoltan Varga <vargaz@freemail.hu>
24677 * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
24680 2003-08-29 Zoltan Varga <vargaz@freemail.hu>
24682 * mini.c (mini_init): Call mono_marshal_init () explicitly since it
24683 is needed by code which is executed before mono_runtime_init ().
24684 Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
24686 * mini.c (mono_thread_abort): Fix warning.
24687 (mono_jit_compile_method): Call static constructor in the AOT case too.
24689 * aot.c (mono_compile_assembly): Fix warning.
24691 2003-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24693 * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
24695 2003-08-28 Zoltan Varga <vargaz@freemail.hu>
24697 * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
24699 * cpu-pentium.md: Fix the length of call opcodes so they include the
24700 ESP restoring instruction. Fixes #47968.
24702 2003-08-28 Martin Baulig <martin@ximian.com>
24704 * mini-x86.c (mono_arch_call_opcode): Added support for
24705 MONO_TYPE_GENERICINST.
24707 * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.
24709 2003-08-27 Zoltan Varga <vargaz@freemail.hu>
24711 * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
24712 a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
24714 * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
24717 2003-08-26 Martin Baulig <martin@ximian.com>
24719 * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
24720 when reporting an error, set this to the actual error location.
24721 (mono_method_to_ir): Report the correct error location if
24722 get_basic_blocks() returned an error.
24724 2003-08-25 Zoltan Varga <vargaz@freemail.hu>
24726 * mini.c (mono_type_blittable): OBJECT is not blittable.
24727 (mono_method_blittable): Methods which have marshalling descriptors
24728 are not blittable either. Fixes #47842.
24730 2003-08-22 Zoltan Varga <vargaz@freemail.hu>
24732 * driver.c mini.c: Use an environment variable instead of a global
24733 variable. Also fix the build.
24735 * mini.c (mini_init): Call g_thread_init () to make glib thread-safe.
24736 Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for
24739 * driver.c mini.c: Added --with-valgrind option to turn off some
24740 code which prevents mono from running under valgrind.
24742 * mini.c (mono_emit_call_args): Fixed warning.
24744 * mini.c (mono_emulate_opcode): Fixed warning.
24746 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24748 * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
24749 * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
24750 regalloc.c, regalloc.h: specify available registers in arch-specific
24751 code and support floats in the regallocator (patch by Laurent Morichetti
24754 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
24756 * mini.c: mono_thread_current() can be called only after
24757 mono_runtime_init(): rearrange code to not call it early on.
24759 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24761 * mini.c: allocate jump tables in the code mempools.
24763 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24765 * mini.c, mini.h: make sure per-thread data allocated by the jit is
24768 2003-08-10 Miguel de Icaza <miguel@ximian.com>
24770 * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
24771 12 to 16. This fixes bug #47453.
24774 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24776 * mini-ppc.c: fixed indexed load and unsigned compares.
24778 2003-08-06 Lluis Sanchez Gual <lluis@ximian.com>
24780 * mini.c: reenabled installation of handler for
24781 thread abort signal.
24783 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24785 * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
24786 by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
24787 until it's fixed and actually useful.
24789 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
24791 * inssel-long32.brg: couple more opcodes implemented.
24793 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
24795 * mini-sparc.c: Even more opcodes implemeted.
24797 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
24799 * mini-sparc.c: More opcodes implemented.
24801 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
24803 * mini-sparc.c: More opcodes implemented.
24805 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
24807 * inssel-sparc.brg: Add some needed rules. Direct
24809 * Makefile.am: Use inssel-sparc.brg
24810 * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
24811 an assert happy for now.
24813 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
24815 * mini-sparc.c: Fixed compile errors.
24816 * exceptions-sparc.c: Same. We now produce a mono binary
24817 on sparc-linux. Yea.
24819 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
24821 * mini-sparc.c: Renamed registers. Also some macro cleanups.
24822 * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
24823 They compile, but do not work.
24825 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24827 * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
24828 mini-sparc.h, tramp-sparc.c: Beginning of sparc support
24829 from Mark Crichton <crichton@gimp.org> and Christopher Taylor
24832 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24834 * mini.c: more opcodes implemented and better support for generics.
24836 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
24838 * cpu-g4.md, cpu-pentium.md: updates for new instructions.
24839 * mini.c, mini.h: first cut at generics support: some new instructions
24840 added and changed the behaviour of some of the existing ones.
24842 2003-07-21 Miguel de Icaza <miguel@ximian.com>
24844 * mini.c: Removed definition of metadata_shared mutex here.
24846 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
24848 * mini-x86.c: make vararg calls work for instance methods.
24850 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
24852 * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
24853 returns the arguments in a separte list, now.
24855 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24857 * aot.c, mini.c: updates for array type representation changes.
24859 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
24861 * mini.c: register function to perform jit shutdown.
24863 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24865 * mini.c: use a faster allocator if possible.
24867 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
24869 * aot.c: some cleanups and portability changes.
24871 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24873 * mini.c: use faster allocation for CEE_BOX if possible.
24875 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
24877 * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
24878 Moved inlined mempcy code to its own function so that is can be
24879 reused. Added an inline memset function as well (optimized initobj).
24880 * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
24882 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24884 * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
24886 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24888 * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
24889 arch code can setup the cpu for CLR execution, if needed.
24890 We use it on x86 to set the precision of FP operations.
24892 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24894 * mini.c: disable some optimizations if we can guess they'll cost too
24895 much for a given method.
24897 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
24899 * mini.h mini.c: Rework last patch based on suggestions by Paolo.
24901 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
24902 * mini.h mini.c mini-x86.c: Added instruction level coverage
24903 info collection support.
24905 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24907 * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
24908 is now implemented in the profiling API. Get rid of a couple of
24909 unnecessary global variables.
24911 2003-06-15 Nick Drochak <ndrochak@gol.com>
24913 * basic-long.cs: tests for negative values for bigmul, and unsigned.
24914 * cpu-g4.md: add op_bigmul and op_bigmul_un
24915 * cpu_pentium.md: add op_bigmul_un
24916 * inssel-long32.brg: add rule for unsigned bigmul
24917 * mini-ops.h: define OP_BIGMUL_UN
24918 * mini-x86.c: THE BUG: handle (un)signed properly
24919 * mini.c: choose unsigned opcode if needed.
24920 This set of patches fixes bug #44291
24922 2003-06-13 Dietmar Maurer <dietmar@ximian.com>
24924 * mini.c (optimize_branches): improved to handle all kinds of
24925 conditional branches.
24927 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
24929 * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
24930 don't raise exceptions.
24932 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24934 * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
24935 to arch-specific files.
24937 2003-06-09 Martin Baulig <martin@ximian.com>
24939 * Makefile.am (libs): Added $(LIBGC_LIBS).
24941 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
24943 * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
24944 and OP_ATAN (fixes bug#44293).
24946 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
24948 * Makefile.am, mini-x86.c: rename cpu description array to
24949 pentium_desc, since some compilers define the 'pentium' preprocessor
24952 2003-05-28 Dietmar Maurer <dietmar@ximian.com>
24954 * mini.c (mini_select_instructions): add explicit branch if the
24955 following block is not the false target of a conditional branch -
24956 we need this with any optimization that reorder or remove bblocks
24958 * mini.c (optimize_branches): bug fixes
24960 2003-06-06 Dietmar Maurer <dietmar@ximian.com>
24962 * mini.c (mono_method_to_ir): inline static readonly fields
24964 * ssa.c (fold_tree): start cfold support for long (very simple
24967 * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
24969 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24971 * inssel.brg: fixed memcpy (bug #44219).
24973 2003-06-05 Dick Porter <dick@ximian.com>
24975 * driver.c: Set the glib log levels to not abort if g_message
24978 g_set_prgname() has to happen before mini_init() so that the
24979 process handle gets the info.
24981 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24983 * driver.c: add intrins to the default optimizations to get wider
24986 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
24988 * mini.h: some large basic blocks will overflow a 16-bit
24989 integers for symbolic registers.
24991 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
24993 * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
24994 (mono_arch_output_basic_block): fix bug 43499
24996 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
24998 * mini.c: kill duplicated definition of mono_debug_format.
25000 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
25002 * mini-x86.c, arrays.cs: fixed register allocation bug.
25004 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
25006 * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
25008 * mini.c (mini_get_opcode_for_method): inline IEEERemainder
25010 2003-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25013 (print_method_from_ip): also print source location information if
25016 2003-06-02 Dietmar Maurer <dietmar@ximian.com>
25018 * mini.c (mono_find_block_region): bug fix in region code
25019 (mini_method_compile): enable removing unreachable code again, but
25020 only in methods without exception clauses.
25022 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
25024 * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
25025 Implemented arglist opcode and handling of TypedReference type.
25026 Fixed x86 call convention when a structure is returned.
25027 Minimal support for calling static vararg methods.
25029 2003-05-30 Dietmar Maurer <dietmar@ximian.com>
25031 * mini.c (mini_method_compile): always remove unreachable code,
25032 because the code in them may be inconsistent (access to dead
25033 variables for example).
25035 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25037 * driver.c, debug-mini.c: warning fixes.
25039 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
25041 * Makefile.am, jit.h, mini.h: install header for embedding mono.
25043 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
25045 * mini.c: thread-static fields are registered in mono_class_vtable(),
25046 so ensure the function is called before checking for them.
25048 2003-05-27 Dietmar Maurer <dietmar@ximian.com>
25050 * mini.c (optimize_branches): fix for bug 43586
25052 * jit-icalls.c (mono_llmult_ovf): added an additional check for
25053 overflow (fixes Bug #43639)
25055 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25057 * mini.c, objects.cs: allow the use of stobj for primitive types.
25059 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25061 * mini.c: be less strict about argument checking until we support
25062 running the verifier.
25064 2003-05-27 Nick Drochak <ndrochak@gol.com>
25066 * basic-long.cs: tests for (ulong)int * (ulong)int also
25067 * mini.c: use the same trick for (ulong)int * (ulong)int
25069 2003-05-27 Nick Drochak <ndrochak@gol.com>
25071 * basic-long.cs: add regression test for (long)int * (long)int
25072 * cpu-pentium.md: add op_bigmul specification
25073 * inssel-long32.brg: add OP_BIGMUL rule
25074 * mini-ops.h: add OP_BIGMUL
25075 * mini-x86.c: register allocator: handle case where src1 needs to be
25077 * mini.c: substitute special BIGMUL opcode in the tree for
25078 (long)int * (long)int
25080 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25082 * jit-icalls.c: call the type ctor on field access if needed.
25084 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25086 * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
25087 to a method (including results of ldelema, bug#43207).
25089 2003-05-26 Dietmar Maurer <dietmar@ximian.com>
25091 * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
25092 colors to show exception handler blocks.
25094 * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
25095 (fix for pinvoke7.cs).
25097 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25099 * mini.h, mini.c: ensure correct initialization order for types that
25100 require it. Prepare for lazy compilation of jit icall wrappers.
25101 Provide a name for opcode emulation to reduce unneeded mallocing.
25103 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
25105 * mini-x86.c: better register restoring code and profiling
25106 support for tail calls.
25108 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25110 * mini.h, driver.c: prepare for leaf methods optimization.
25112 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25114 * mini.c: get targets of branches before converting a method.
25116 2003-05-23 Dietmar Maurer <dietmar@ximian.com>
25118 * mini.c (optimize_branches): added some experimental code (disbaled)
25120 2003-05-22 Dietmar Maurer <dietmar@ximian.com>
25122 * mini.c (optimize_branches): fix branch to branch optimization
25124 * exceptions-x86.c (mono_arch_handle_exception): bug fix.
25126 * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
25128 * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
25130 * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
25133 2003-05-21 Dietmar Maurer <dietmar@ximian.com>
25135 * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
25136 enable use of interface variables again.
25138 * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
25139 I1 to registers because there is no simply way to sign extend 8bit
25140 quantities in caller saved registers on x86.
25142 * inssel-float.brg: set costs of some rules to 2 so
25143 that monobure always select the arch. specific ones if supplied,
25144 regardless of the order we pass the files to monoburg.
25146 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25148 * mini.c, mini-x86.c: since the magic trampoline for jumps
25149 can't patch the code directly, we do it as soon as the
25150 method gets compiled.
25152 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
25154 * mini-x86.c, mini.h: introduce a new patching method
25155 to support CEE_JMP and tail calls.
25156 * mini.c: obey tail.call. Don't precompile methods target
25158 * tramp-x86.c: new trampoline code to handle methods
25159 reached through a jump.
25161 2003-05-20 Dietmar Maurer <dietmar@ximian.com>
25163 * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
25164 bit values to registers
25166 2003-05-19 Dietmar Maurer <dietmar@ximian.com>
25168 * mini.c (mono_compile_get_interface_var): share interface
25169 variables if possible.
25171 2003-05-16 Martin Baulig <martin@ximian.com>
25173 * debug-mini.c (mono_init_debugger): New function to initialize
25174 the debugger. This is not in the debugger since it needs to
25175 access some of mini's internals.
25177 2003-05-16 Dietmar Maurer <dietmar@ximian.com>
25179 * mini.c (mono_method_to_ir): inlining fixes/cleanups
25181 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
25183 * mini.c, mini-opts.h, inssel.brg: inline small memcpy
25184 for value type handling.
25186 2003-05-16 Dietmar Maurer <dietmar@ximian.com>
25188 * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
25189 (mono_method_check_inlining): enable inlining of all kinds of wrappers
25191 2003-05-15 Lluis Sanchez Gual <lluis@ideary.com>
25193 * mini.c: fixed little bug in CEE_NEWOBJ case when calling
25194 the constructor through a proxy.
25196 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25198 * jit-icalls.c, inssel.brg: fixes to array element address
25201 2003-05-15 Dietmar Maurer <dietmar@ximian.com>
25203 * mini-x86.c (is_regsize_var): allocate pointer to registers
25205 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25207 * driver.c: fixed typo, added intrins to the set of optimizations
25208 tested with regressions.
25210 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25212 * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
25213 * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
25216 2003-05-14 Dietmar Maurer <dietmar@ximian.com>
25218 * inssel.brg: remove some common pop instructions without side effects
25220 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
25222 * inssel-x86.brg: fixed thinko in int to double conversions.
25224 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25226 * mini.c, jit-icalls.c: added runtime thread-static variable support.
25228 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25230 * inssel-long32.brg: two more missing instructions.
25232 2003-05-13 Dietmar Maurer <dietmar@ximian.com>
25234 * mini.c (mono_emit_call_args): set the cil_code for all arguments
25235 if not already set.
25237 2003-05-12 Zoltan Varga <vargaz@freemail.hu>
25239 * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
25242 * basic-float.cs: Added tests for negative zero.
25244 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25246 * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
25247 a couple of missing operations for long casts, with test cases.
25249 2003-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25251 * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
25253 2003-05-09 Dietmar Maurer <dietmar@ximian.com>
25255 * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
25256 code size estimation.
25258 2003-05-08 Dietmar Maurer <dietmar@ximian.com>
25260 * mini.c (mono_jit_create_remoting_trampoline): make it work with
25261 abstract methods (fix bug 42542)
25263 * aot.c: add ability to handle array types
25265 2003-05-08 Zoltan Varga <vargaz@freemail.hu>
25267 * mini.c: Call the _specific versions of the object allocation
25268 functions if possible.
25270 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
25272 * driver.c: call setlocale ().
25274 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
25276 * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
25279 2003-05-05 Dietmar Maurer <dietmar@ximian.com>
25281 * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
25283 * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
25284 wrappers (fix bug 42122)
25286 2003-05-04 Martin Baulig <martin@ximian.com>
25288 * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
25290 * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
25291 s/mini_set_defaults/mono_set_defaults/g.
25293 2003-05-04 Martin Baulig <martin@ximian.com>
25295 * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
25297 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25299 * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
25300 (reported by Don Roberts).
25302 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
25304 * mini.c: temporarily work around two bugs for this release.
25306 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25308 * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
25309 that contains -export-dynamic and it makes using the ld script
25311 * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
25313 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25315 * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
25318 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25320 * mini.c: make sure leave calls all the needed finally blocks,
25321 even when the target jumps out of multiple exception clauses.
25323 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25325 * ldscript, Makefile.am: add linker script to reduce the number of
25326 exported symbols (should also fix the issues with libwine defining
25327 some of the same symbols in io-layer).
25329 2003-05-01 Zoltan Varga <vargaz@freemail.hu>
25331 * driver.c (mini_main): Avoid assertion when no file name is given on
25334 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
25336 * driver.c: added --version/-V command line option.
25337 Added the inline optimization in the regression tests.
25339 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25341 * mini.c, basic-calls.cs: when inlining, save arguments to locals according
25342 to the type in the method signature (fixes bug#42134).
25344 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
25346 * mini.c: when inlining, check this is not null only when needed (bug #42135).
25348 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
25350 * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
25352 2003-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25354 * driver.c: fixed bug #42100.
25356 2003-04-29 Dietmar Maurer <dietmar@ximian.com>
25358 * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
25360 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25362 * mini.c: moved most of the code required to do inlining to its own
25363 function so it can be reused. Inline also ctors if appropriate.
25365 2003-04-28 Zoltan Varga <vargaz@freemail.hu>
25367 * Makefile.am: Link with -export-dynamic so shared libs loaded by
25368 the runtime can call mono API functions.
25370 2003-04-27 Martin Baulig <martin@ximian.com>
25372 * debug-mini.c (mono_debug_init_method): Added
25373 `guint32 breakpoint_id' argument; if the method has a breakpoint,
25374 send a notification to the debugger.
25376 * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
25377 running in the Mono Debugger, just pass the breakpoint number to
25378 mono_debug_init_method().
25380 * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
25382 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
25384 * mini.c: allow some more unsafe compares.
25386 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25388 * mini-x86.c, Makefile.am: make distcheck works (partially from
25389 a patch by Richard Lee <r.h.lee@attbi.com>).
25390 * regset.c, regset.h: removed, they are unused.
25392 2003-04-25 Dick Porter <dick@ximian.com>
25394 * driver.c: Usage reports the name as 'mono' not 'mini'
25395 * exceptions-x86.c: Build and run on freebsd
25397 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
25399 * Makefile.am: install the program with the 'mono' name and
25400 the library as libmono instead of mini and libmini.
25402 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
25404 * driver.c: provide the APIs for the embedding interface of the old jit.
25406 2003-04-23 Dietmar Maurer <dietmar@ximian.com>
25408 * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
25410 2003-04-23 Martin Baulig <martin@ximian.com>
25412 * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
25414 * driver.c: Added `--debug' command line argument to enable
25417 2003-04-23 Martin Baulig <martin@ximian.com>
25419 * debug.[ch]: Removed. The code is now in
25420 ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
25422 * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
25425 2003-04-22 Dietmar Maurer <dietmar@ximian.com>
25427 * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
25429 2003-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25432 (mini_cleanup): moved mono_runtime_cleanup call after the call to
25433 mono_domain_finalize.
25434 (mini_method_compile): use mono_method_profile* if the the option is
25437 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
25439 * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
25440 methods with their wrapper.
25442 * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
25443 methods with their wrapper.
25445 * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
25448 * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
25451 * mini.c (mono_method_check_inlining): Avoid inlining synchronized
25454 2003-04-17 Dietmar Maurer <dietmar@ximian.com>
25456 * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
25458 2003-04-16 Dietmar Maurer <dietmar@ximian.com>
25460 * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
25461 of the mempool. This is slightly faster and uses less memory
25463 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
25465 * mini.c: avoid O(n) allocation for variables.
25467 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25469 * mini.c: handle items on the stack after inlining methods.
25471 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25473 * mini.c: make the method->opcode optimization dependent
25474 on MONO_OPT_INSTRINS and do it lazily.
25476 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25478 * driver.c: print overall results at the end of regression run.
25480 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25482 * inssel.brg: don't overwrite symbolic registers.
25484 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
25486 * inssel-x86.brg: fix conversion from long to float.
25488 2003-04-11 Dietmar Maurer <dietmar@ximian.com>
25490 * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
25492 2003-04-10 Zoltan Varga <vargaz@freemail.hu>
25494 * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
25496 * driver.c: Added --print-vtable option as in the old JIT.
25498 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25500 * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
25502 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
25504 * inssel.brg, basic.cs: fixed checked conversions to byte and short.
25506 2003-04-09 Zoltan Varga <vargaz@freemail.hu>
25508 * mini.c regalloc.c regalloc.h: Fix memory leak.
25510 2003-04-09 Dietmar Maurer <dietmar@ximian.com>
25512 * aot.c (mono_aot_get_method): register all used strings
25514 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
25516 * mini.c: always intern strings references with ldstr at compile time.
25518 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25520 * Makefile.am: add BUILT_SOURCES.
25522 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
25524 * driver.c: give a better error message when the assembly to execute
25525 doesn't have an entry point.
25527 2003-04-07 Dietmar Maurer <dietmar@ximian.com>
25529 * Makefile.am: added hack for automake
25531 * mono/mini/mini.c (mono_save_args): always copy arguments to keep
25534 * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
25536 22003-04-07 Martin Baulig <martin@ximian.com>
25538 * Makefile.am: Added Makefile.am.
25540 * debugger-main.c: Removed, this is now in the debugger where it
25543 * mini.pc.in: Call this package `mini' for the moment.