* mini.c (mono_method_to_ir): It turns out that some of the
[mono-project.git] / mono / mini / ChangeLog
blobaa6772d30e2104d8a50d7afbec636cbdba6b53d8
1 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
3         * mini.c (mono_method_to_ir): It turns out that some of the
4         x-appdomain wrappers are lax with types, so just ignore this for
5         all wrappers.
7         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
8         at the vtable->klass. If it is non-shared code we can just use the
9         vtable.
11 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
13         * mini-ppc.c: access MonoDomain from tls, too.
15 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
17         * declsec.c: Removed unused variable (and related warning ;-)
19 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
21         * iltests.il: New test for LDELEMA on an array of ref types.
23         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
24         all ldelema's on reftypes.
25         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
26         it was the wrong place to put it.
28         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
29         register to pop to make this cleaner, at the request of Paolo.
31 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
33         * mini-ops.h (OP_GETHASHCODE): New op.
35         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
37         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
38         operation.
40         For a microbenchmark, this reduces the cost of Hashtable.get_Item
41         by 25%.
42         
43         * mini-x86.c (mono_arch_output_basic_block): Rather than
45         add ebp, 4
47         Emit
49         pop edx
51         The first is 3 bytes while the second is 1. This saves 36 kb on
52         mscorlib, quite a big saving. When bootstraping mcs, I was able to
53         see a small boost because of icache locality.
55         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
57 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
59         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
60         started code sharing with the generic code.
62 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
64         * mini-ppc.c, cpu-g4.md: added code for direct access to
65         tls data slots.
67 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
69         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
70          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
71         to OP_TLS_GET.
73 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
75         * declsec.c|h: Added functions to cache the declarative stack modifiers
76         in MonoJitInfo and to create a security frame from a MonoJitInfo 
77         structure.
78         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
79         created. Register internal calls for System.Security.SecurityFrame::
80         _GetSecurityFrame and _GetSecurityStack.
81         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
82         the definitions for the new stack walk/callback mechanism.
83         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
84         first security frame for LinkDemands and InheritanceDemands) and
85         GetSecurityStack for Demands. Both use the new mono_walk_stack code
86         from lupus.
87         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
88         walk initialization (lupus).
90 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
92         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
93         idiom.
94         (handle_loaded_temps): Do not create a temporary variable for
95         things that we know are temps. They will never be modified.
96         (mono_spill_call): Set MONO_INST_IS_TEMP
97         (mono_emulate_opcode): ditto
98         (emit_tree): ditto
99         (mono_method_to_ir.CEE_DUP): ditto
101 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
103         * mini.c (type_to_eval_stack_type): Make this handle the void type
104         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
105         (emit_tree): use ip_in_bb to special case some common idioms
106         Update all callers to pass in the IP.
107         (mono_method_to_ir): Make CEE_CALL* do the above as well.
109         This gives us a nice 2% speedup in mcs bootstrap.
111         * mini-x86.c (peephole_pass): Peephole pass to make
112         mov  [foo], eax
113         push [foo]
115         into
117         mov [foo], eax
118         push eax
120         * mini.c (ip_in_bb): new method.
121         (mono_method_to_ir): use this method rather than doing the hash
122         lookup ourselves.
124         * linear-scan.c (mono_linear_scan): When expiring actives, you
125         don't need to keep around variables that expire on this
126         instruction. This makes it so that:
127              a = b + 1
128         will turn into:
129              store (ebx add (ebx, 1))
130         which will become
131              add ebx, 1
133 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
135         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
136         combination to avoid doing two copies. Fix up problems with previous
137         patch.
139         * mini.c: Fix 64 bit warnings.
141         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
143 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
145         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
146         changes from the x86 code.
148         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
150 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
152         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
153         throwing code to reduce its size, unify the AOT and non-aot code and 
154         get rid of relocations in the AOT case.
156         * mini-x86.h mini.c exceptions-x86.c 
157         (mono_arch_get_throw_corlib_exception): New arch specific function to 
158         raise corlib exceptions which doesn't require relocations in the 
159         caller.
161         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
163 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
165         * mini.c (mono_emit_method_call): Only allocate the got var when it is
166         needed.
168         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
169         in the AOT case.
171 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
173         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
174         with add function when used from Inc/dec atomic 
175         functions. Re-enabled optimization on x86.
176         * mini-ops.h: renamed atomic_add functions to
177         allow _add to match the Interlocked::Add and
178         _add_next to match Interlocked::Inc/Dec.
180 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
182         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
183         linking of BBs to the end BB, and enabled SSAPRE also with
184         consprop and copyprop (which was prevented by that bug).
186 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
188         * mini-x86.c: disabling the Interlocked optimizing code. 
190 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
192         * aot.c (load_aot_module): Move reading of got_addr after the AOT
193         file version check.
194         
195 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
197         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
198         interlocked optimization due lack of support on x86, rewrote 
199         exchange to take into account that base may be in eax.
200         
201         xsp works again; activated Interlocked optimizing code.
202         
203 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
205         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
207 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
209         * mini-ops.h: Add new opcodes.
211         * mini.h: Add new patch types. Add got_var to MonoCompile.
213         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
214         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
215         make it work with all kinds of patchable code.
217         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
218         address of the GOT, and referencing entries in the GOT.
220         * mini.c: Add code to load the GOT address if needed by an opcode.
222         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
223         independent AOT code on the x86 using an elf-style Global Offset Table.
225 2004-12-14  Raja R Harinath  <rharinath@novell.com>
227         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
229 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
231         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
232         when running xsp.
234 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
236         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
237         of Interlocked:Increment/Decrement/Add as inline ops.
238         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
240 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
242         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
243         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
245 2004-12-12  Duncan Mak  <duncan@ximian.com>
247         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
248         again. `patch_info->table_size' is no longer valid after Zoltan's
249         commit #37636.
251 2004-12-12  Martin Baulig  <martin@ximian.com>
253         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
254         if we are the "real" method, ie. not an inlined method inside it.
256 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
258         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
259         before we look in the special fields table. This fixes
260         ../tests/thread-static-init.cs.
262 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
264         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
265         for Array get_Rank and get_Length. Fixes bug #70465.
267 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
269         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
270         separate structure to reduce the size of MonoJumpInfo.
272 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
274         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
276 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
278         * mini.c (mini_get_inst_for_method): Changed to allow ports
279         to return a MonoInst instead of opcode 
280         (renamed mini_get_opcode_for_method to better reflect the new functionality)
281         
282         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
283         Allow ports to return a created MonoInst instead of op-code, will enable
284         new optimizations.
285         (renamed mini_get_opcode_for_method to better reflected the functionality)
287 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
289         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
291 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
293         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
294         Fixes #69985.
296 2004-12-08  Martin Baulig  <martin@ximian.com>
298         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
299         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
301 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
303         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
304         correctly.
306         * exceptions.cs: Disable some tests which depend on properties of x86 fp
307         arithmetic.
309 2004-12-08  Raja R Harinath  <rharinath@novell.com>
311         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
313 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
315         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
316         bug introduced by the previous patch.
318 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
320         * mini-ppc.c, objectc.cs: handle large structs passed by value
321         (fixes bug #69972).
323 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
325         * mini-ppc.c: OP_ARGLIST implementation from
326         Geoff Norton  <gnorton@customerdna.com>.
328 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
330         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
331         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
333 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
335         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
337 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
339         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
340         support.
342 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
344         * mini-sparc.c: Zero out localled-ed memory.
346         * iltests.il: Add tests for zeroing out localloc-ed memory.
348 2004-12-04  Martin Baulig  <martin@ximian.com>
350         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
351         mono_method_get_signature_full().       
353 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
355         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
356         and some utility functions (always for SSAPRE), integrated SSAPRE.
357         * mini.h: Likewise.
358         * driver.c: Added ssapre option.
359         * ssa.c: Small fix on OP_ARG handling.
360         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
361         * Makefile.am: Likewise.
363 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
365         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
366         now in the xp code.
368         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
369         icall.
371 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
373         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
374         
375         * cpu-s390.md : Increase instruction length of oparglist.
377         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
379 2004-11-30  Martin Baulig  <martin@ximian.com>
381         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
382         virtual generic methods.  We call a special helper_compile_generic_method()
383         icall to retrieve the method from the vtable, inflate and compile
384         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
386         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
388 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
390         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
392 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
394         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
395         Fixes #69929.
397 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
399         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
400         platforms with PIC aot.
402 2004-11-28  Martin Baulig  <martin@ximian.com>
404         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
405         Fixes gen-112.cs.
407 2004-11-28  Martin Baulig  <martin@ximian.com>
409         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
410         the result of mono_type_get_underlying_type() to check whether
411         we're byref.
413 2004-11-26  Martin Baulig  <martin@ximian.com>
415         * mini.c
416         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
417         in the g_assert().
419 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
421         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
422         the same way as the other arguments so they won't get clobbered.
424         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
425         calls through R11 since it is clobbered by the trampoline code.
427 2004-11-26  Raja R Harinath  <rharinath@novell.com>
429         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
430         pick up in-tree mscorlib.dll.
432 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
434         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
436         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
437         runtime data/code are now stored in a table similar to the GOT in ELF. 
438         This allows the code itself to be position independent.
440         * aot.c: Fix loading of referenced assemblies after the lazy assembly
441         loading changes.
443         * aot.c: Attach ELF type (object/function) directives to all global
444         symbols.
446         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
448         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
450         * mini-amd64.h: Turn on PIC AOT code.
452         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
453         returning the offset within an OP_AOTCONST instruction where the GOT
454         offset needs to be added.
456         * mini.h: Bump AOT file format version.
458 2004-11-25  Martin Baulig  <martin@ximian.com>
460         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
461         uninflated generic methods.
463 2004-11-25  Martin Baulig  <martin@ximian.com>
465         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
467 2004-11-24  Martin Baulig  <martin@ximian.com>
469         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
470         original klass (this only applies for generic instances).
472 2004-11-24  Martin Baulig  <martin@ximian.com>
474         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
475         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
476         that array).
478 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
480         * mini.c (mono_method_to_ir): Disable inlining for methods containing
481         localloc. Fixes #69678.
483         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
484         
485 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
487         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
488         used SSE registers on pinvoke calls. Fixes #69774.
490 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
492         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
493         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
495 2004-11-23  Raja R Harinath  <rharinath@novell.com>
497         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
498         Refer directly to the mcs/ tree.
500 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
502         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
503         Check if a trampoline for a synchronized method is required. 
505 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
507         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
508         with localloc if needed. Throe arithmetric exception in
509         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
510         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
512 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
514         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
515         types before switching on type.  Fixes #69622.
517 2004-11-19  Raja R Harinath  <rharinath@novell.com>
519         * Makefile.am (check-local): New.  Integrate into 'make check'.
520         (MCS,RUNTIME): Define using in-tree mono and mcs.
521         (ILASM): New.
522         (%.exe): Use $(ILASM).
524 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
526         * mini-ppc.c: adjust initial prolog size (bug #69691).
528 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
530         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
531         #69664.
533 2004-11-17  Raja R Harinath  <rharinath@novell.com>
535         * Makefile.am (clean-local): Rename from 'clean'.
537 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
539         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
540         to mono_arch_is_int_overflow. 
541         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
542         SIGFPE events.
544 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
546         * declsec.c|h: New files to support declarative security attributes.
547         Added function to check if a method has (applicable) security.
548         * mini.c|h: Add check for declarative security attributes in
549         mono_method_check_inlining.
550         * Makefile.am: Added declsec.c and declsec.h to the build.
552 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
554         * mini.c, mini.h: update to keep dynamic code info per-domain.
556 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
558         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
559         (mini_init): Get rid of it from here too.
561 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
563         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
564         implemented OP_RETHROW (patch by Geoff Norton
565         <gnorton@customerdna.com>).
567 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
569         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
570         between appdomains.  Fixes appdomain-unload on PPC.
572 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
574         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
575         mini-exceptions.c: handle the new wrapper types.
576         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
577         token value as a MonoClass* when compiling a wrapper.
578         mono_jit_create_remoting_trampoline now takes an additional
579         MonoRemotingTarget parameter.
580         
581 2004-11-10  Martin Baulig  <martin@localhost>
583         * mini.c (mono_method_to_ir): Use `generic_container->context'
584         rather than creating a new one.
586 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
588         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
590         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
592 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
594         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
595         the experimental aot cache stuff.
597 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
599         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
600         mini-exceptions.c: update to exception clause structure changes.
602 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
604         * exceptions-x86.c (throw_exception): Fix warnings.
606         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
607         for OP_RETHROW.
609 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
611         * exceptions-sparc.c (get_throw_exception): Really fix this.
613 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
615         * tramp-*.c: we no longer support icalls without wrappers, so
616         a bit of code can be removed here
618 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
620         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
621         patch.
623         * cpu-sparc.md: Add op_rethrow.
625         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
627         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
629         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
630         * mini-ops.h: Add OP_RETHROW.
632         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
634         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
636 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
637         
638         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
639         Makes the output much easier to read
641 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
643         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
644         prevents another huge leak when compiling with ssa. Secondly, the
645         performance of doing this rather than freeing the lists is much
646         better. GList does a lock every time you allocate a list link,
647         so that it can use a memory pool. So, it is better to just use
648         a memory pool of our own.
649         
650         * ssa.c, linear-scan.c: replace g_list_remove_link with
651         g_list_delete.  The remove one does not free the GList, so we were
652         leaking memory. On -O=all --compile-all with corlib, this cut down
653         3 MB of allocations.
655 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
657         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
659         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
661         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
662         into a new function mono_create_jit_trampoline ().
664 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
666         * trace.c (get_spec): Allow tracing of classes without a namespace.
668 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
670         * mini.c: Fix pointer overwrite in mini_method_compile.
672 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
674         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
675         The darwin ABI needs some special handling for 1 and 2 byte structs
676         Lets use lbz/lhz instead of lwz everywhere.
677         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
678         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
679         Use stb/sth for the former, and put the latter always on stack instead of in
680         argument registers.
682 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
684         * trace.c (is_filenamechar): Add '_'.
686 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
688         * mini-s390.c: Fix prolog length to allow for large trace requirements.
690         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
692 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
694         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
695         depends on libmonogc. Fixes #68805.
697 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
699         * mini.c (mono_jit_free_method): Provide extra information for
700         this error.  Currently this leaks, but will be turned into a
701         developer option in the future.
703 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
705         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
707 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
709         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
710         boundary. Fixes reading of PATCH_INFO_R4 and R8.
711         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
713 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
715         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
716         trampolines for AOT code.
718 2004-10-22    <vargaz@freemail.hu>
720         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
721         constructed types. Fixes #68136.
723 2004-10-21  Martin Baulig  <martin@ximian.com>
725         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
726         if it returns true, unwind the stack to the call instruction.
728 2004-10-21    <vargaz@freemail.hu>
730         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
732         * mini.h: Bump AOT version number.
734         * objects.cs: Add another test for unbox trampolines.
736         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
737         valuetype methods.
739 2004-10-20    <vargaz@freemail.hu>
741         * driver.c: Add SHARED to the set of optimizations tested.
743         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
745         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
746         used by CEE_NEWARR.
748         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
750 2004-10-20  Martin Baulig  <martin@ximian.com>
752         * mini-exceptions.c (mono_handle_exception): Call
753         mono_debugger_handle_exception() to tell the debugger about
754         catch/finally clauses.
756 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
758         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
760         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
761         #68447.
763 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
765         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
766         methods as their native size, fixed bug #57543, #57545.
767         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
768         This saves a temporary register and mullw call down into 1 (minor perf
769         increase for cases like sum = sum * 5;  This use to translate into:
770             li r11,5
771             mullw r28,r28,r11
772         It now translates to
773             mulli r28,r28,5
775 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
777         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
778         #68388.
780 2004-10-11  Martin Baulig  <martin@ximian.com>
782         * mini.c (mono_method_to_ir): If we're a generic method, get the
783         MonoGenericContainer from our MonoMethodNormal and create a
784         MonoGenericContext from it.
786 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
788         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
790         * basic-long.cs: Add test for checked i8->i2 cast.
792 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
794         * inssel-ppc.brg: added a couple of speedup rules.
796 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
798         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
799         to speed up rebuilds.
801 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
803         * mini-s390.c: Minor fix to OP_OR_IMM.
805 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
807         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
808         better. Fixes appdomain-unload.exe on sparc.
810 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
812         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
813         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
814         see bug 67324.
816 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
818         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
820 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
822         * mini.c: Always generate a field read/write wrapper for members
823         of the class MarshalByRefObject since the actual instance could
824         be a CBO.
826 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
828         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
830 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
832         * driver.c mini.h trace.c: Move the setting of the main assembly into
833         a separate function called mono_trace_set_assembly () and call it after
834         actually loading the main assembly. Fixes #66872.
836 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
838         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
839         using the code manager.
841 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
843         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
845 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
847         * cpu-amd64.md: Fix bug in previous patch.
848         
849         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
850         #66650.
852 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
854         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
855         mini-exceptions.c: updates for changed stack walk interface.
857 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
859         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
861 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
863         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
865 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
867         * driver.c (mini_regression_list): Do not call mono_assembly_close 
868         since assemblies can't be unloaded.
869         
870 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
872         * cpu-amd64.md: Fix more instruction lengths.
874         * cpu-amd64.md: Fix lengths of some instructions.
876 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
878         * inssel.brg: Make the array ldelema check aot friendly.
880 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
882         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
884         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
886 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
888         * mini-x86.c: Fix build.
890         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
891         mono_type_get_underlying_type () helper function to simplify code.
892         
893 2004-09-09  Martin Baulig  <martin@ximian.com>
895         * mini-amd64.c: Don't access `type->data.klass' directly, call
896         mono_class_from_mono_type() instead since the type may be a
897         generic instance.
899 2004-09-09  Martin Baulig  <martin@ximian.com>
901         * mini-amd64.c (get_call_info): Fix support for generic instances.
902         (add_valuetype): Use mono_class_from_mono_type() to get the class
903         since we can be a generic instance.
905 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
907         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
909 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
911         * liveness.c: reset spill costs on each scan: bug 62107
913 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
915         * exceptions-sparc.c (mono_arch_find_jit_info): remove
916         unnecessary line that doesn't compile
918 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
920         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
921         trampolines, make them call an error function so people can fix their
922         code.
924 2004-09-06  Martin Baulig  <martin@ximian.com>
926         * mini.c (mono_method_to_ir): When initializing locals, handle a
927         generic instances like a valuetype if it's a valuetype and like a
928         class if it's a class.
930 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
932         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
933         stack. Fixes #64674.
935         * exceptions.cs: Add test for unwinding of call arguments.
937 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
939         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
940         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
941         set the carry/borrow flag). The sparc and s390 implementations
942         can now use optimized versions (and simplify the code). ppc bugfixes.
944 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
946         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
948 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
950         * inssel-amd64.brg: Remove leftover 32 bit rule.
952         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
954 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
956         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
957         mono_arch_find_jit_info functions into a new function. Fix a memory
958         leak.
960         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
961         refactored code.
962         
963 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
965         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
966         as well.
967         
968         * exceptions.cs: Add array size tests.
970         * mini.c: Allocate a separate icall wrapper for each arity of 
971         mono_array_new_va. Fixes #59509.
973         * exceptions.cs: Add testcase for 64578.
975         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
977         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
978         
979 2004-09-02  Martin Baulig  <martin@ximian.com>
981         * mini.c (mono_method_to_ir): When initializing the locals, call
982         handle_initobj() on the generic instance itself, not its
983         underlying type.
985 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
987         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
988         MonoJitInfo for dynamic methods.
990         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
992         * mini.c: Add support for freeing JIT data for dynamic methods.
993         
994 2004-09-01  Martin Baulig  <martin@ximian.com>
996         * mini-x86.c (is_regsize_var): Added support for generic
997         instances.
998         (mono_arch_emit_prolog): Make this compile again, use
999         `x86_push_imm_template (code)'.
1001 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
1003         * mini-x86.c: make all push_imm instructions that get
1004         patched always emit the long form
1006 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
1008         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
1009         in a per-domain hash.
1011         * mini-amd64.c (merge_argument_class_from_type): Handle generic
1012         types.
1014 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
1016         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
1017         work.
1018         
1019         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
1020         work.
1022         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
1023         Beginnings of SSE2 support.
1025         * exceptions.cs: Add more tests for checked int<->uint casts.
1027 2004-08-28  Martin Baulig  <martin@ximian.com>
1029         * mini-x86.c (mono_arch_instrument_epilog): Added support for
1030         generic instances.
1032         * mini.c
1033         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
1034         Handle generic instances recursively.
1036 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
1038         * iltests.il: test for conv.u8 on a constant
1040 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
1042         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
1043         LCONV_x4 (shrun_32 (membase)).
1045 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
1047         * inssel-x86.brg: c&p rules for push/setret of long
1049 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
1051         * inssel-x86.brg: c&p rules for compare (base, regvar) and
1052         compare (regvar, base)
1054         * inssel-x86.brg: more burg love
1056         * inssel.brg: more cleanup
1058         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
1060 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
1062         * basic-long.cs, basic-calls.cs: new tests for optimization.
1064 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
1066         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
1067         patch.
1069 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1071         * mini-amd64.c (read_tls_offset_from_method): Add another case.
1072         
1073 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
1075         * inssel.brg (mini_emit_memcpy): use 
1076         NO_UNALIGNED_ACCESS to disable memcpy optimization
1078 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1080         * mini-amd64.c: Handle generic types in various places.
1082         * mini.c (mono_method_to_ir): Handle generic types in init locals.
1084 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
1086         * mini.c (handle_box): Fix warning.
1088         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
1090         * mini-amd64.h: Enable the emit_state optimization.
1092         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
1094         * mini-amd64.c: Add some new 64 bit peephole opts.
1096         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
1098         * cpu-amd64.md: sreg1 of div instructions must be %rax.
1100         * mini-amd64.c: Register allocator fixes.
1102         * mini.c: Add an optimization to emit_state to avoid allocation of new
1103         registers on some platforms.
1105 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
1107         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
1109         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
1110         allocation. Fixes #63085.
1112         * basic-long.cs: Add new regression test.
1114         * mini-amd64.c: Register allocator improvements.
1116 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
1118         * mini-amd64.c (read_tls_offset_from_method): Add another code
1119         sequence.
1121         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
1122         instruction sequence for nullifying class init trampolines.
1124         * objects.cs: Add new regalloc test.
1126         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
1128 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1130         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
1131         
1132         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
1133         arguments.
1135         * driver.c: Fix profiling after TLS changes.
1136         
1137         * driver.c (mono_main): Set mono_stats.enabled if needed.
1139         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
1140         CEE_BOX.
1142 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
1144         * mini-x86.c: use a 1 op rather than a 2 op tls access
1145         instruction -> faster.
1147 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1149         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
1150         x86 backend.
1152 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
1154         * exceptions-sparc.c (throw_exception): fix typo
1156 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
1158         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
1159         set tree->dreg correctly with tls. Allow any
1160         register to be used.
1162         * mini-x86.c (read_tls_offset_from_method): add new code
1163         generation pattern seen with GCC.
1166 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
1168         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
1169         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
1170         exceptions-sparc.c: fix some performance issues in exception
1171         handling and setting of the stack trace for exceptions that were
1172         already thrown.
1174 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1176         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
1177         x86 backend.
1178         
1179         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
1180         registers.
1182 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1184         This patch inlines tls access, when possible.
1185         
1186         * mini.h: new arch functions for TLS intrinsics.
1187         All platforms updated with a stub.
1189         * mini.c: use the new intrinsics
1191         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
1192         arch specific intrinsic for tls variables
1194 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1196         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
1197         under windows.
1199 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1201         * mini.c: thread local allocation
1203 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
1205         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
1207         * Makefile.am: Link against the static version of libmonogc.
1208         
1209         * Makefile.am: Link the static versions of the convenience libraries
1210         into the mono executable.
1212         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
1214 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
1216         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
1217         on integer overflow.
1219         * mini-amd64.c: Reorganize function call code.
1221         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
1223 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
1225         * inssel-x86.brg: use xor eax,eax.
1226         
1227         * basic.cs: new tests
1229 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1231         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
1232         in exception throwing code.
1233         
1234 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
1236         * inssel-x86.brg: use xor esi,esi.
1238 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1240         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
1241         can trace methods compiled during mini_init () too.
1243         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
1244         CEE_CONV_U4.
1246 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
1248         * Makefile.am: static link on x86 (r=zoltan)
1250 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1252         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
1253         code since it causes some programs to fail.
1255 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
1257         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
1259 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
1261         * mini.c: ovfops_op_map - add STACK_OBJ case for
1262         CONV_I 
1263         * basic.cs: add test_0_pin_string as test
1264         case for above.
1266 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
1268         * Makefile.am: build C# if srcdir != builddir
1270 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1272         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
1273         fall-through blocks.
1275 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
1277         * driver.c: enable loop by default again and include abcrem in -O=all.
1279 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
1281         * iltests.il: Add some localloc tests.
1283         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
1285         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
1286         Fixes #62574.
1288         * inssel-amd64.brg: Add some optimizations.
1290         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
1291         for gcc-3.4.
1293         * Makefile.am: Statically link mono against libmono on AMD64.
1294         
1295         * mini-amd64.c inssel-amd64.brg: Optimizations.
1297 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
1299         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
1301         * tramp-amd64.c: Patch calling code in trampolines.
1303 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
1305         * mini-amd64.c: pinvoke struct passing fixes.
1307 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
1309         * mini-sparc.c: redo change, make mono_arch_cpu_init call
1310         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
1312 2004-08-05  Duncan Mak  <duncan@ximian.com>
1314         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
1315         CEE_LDELEM_ANY.
1317 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1319         * mini-amd64.c (emit_move_return_value): Move return value for normal
1320         calls too.
1322 2004-08-05  Martin Baulig  <martin@ximian.com>
1324         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
1325         `type->type'; just modify `type' itself when dealing with enums
1326         and generic instances.
1327         (check_call_signature): Make `simple_type' a `MonoType *'.
1329 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1331         * mini.c: Use OP_PADD to add offsets to addresses.
1333         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
1335 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
1337         * mini-sparc.c (mono_arch_emit_epilog): fix check
1338         for folding last op into restore instruction
1340 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1342         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
1343         helper methods using the code manager.
1344         
1345         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
1347         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
1349 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1350         
1351         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
1352           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
1354         * mini-s390.c: fix tail processing
1356 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
1358         * mini-ppc.c: mul.ovf.un exception name fix.
1360 2004-08-03  Martin Baulig  <martin@ximian.com>
1362         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
1363         instances; before jumping to `handle_enum', also modify `ptype'.
1365 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
1367         * cpu-sparc.md: fcall maximal length too small.
1369 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
1371         * mini-amd64.c mini.h: Add initial support for passing/returning 
1372         structures to/from pinvoked methods.
1374 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
1376         * mini-ppc.c: reg allocator fix.
1378 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
1380         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
1382         * inssel.brg: Optimize memset on 64 bit machines.
1384         * mini-amd64.c: Fix some vararg cases.
1386 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1388         * mini-s390.c: Corrected macro in emit_float_to_int
1390         * s390-abi.cs: Tests to exercise the s390 ABI
1392 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1394         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
1395         caller saved regs.
1397         * basic.cs: Add a test for add.ovf.un.
1399 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
1401         * mini-sparc.c: add case for OP_IDIV_UN
1403 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1405         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
1406         
1407         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
1409 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
1411         * basic.cs: regression tests.
1413         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
1414         regressions.
1416 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1418         * basic.cs: Add a new test.
1420         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
1421         and AOT. Various fixes and optimizations.
1423         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
1425 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1427         * mini-ppc.c: make sure temp regs are not used for global reg
1428         allocation.
1430 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
1432         * cpu-sparc.md: conv_i8 fix for 64bits
1434         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
1436 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
1437         
1438         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
1439         add opcode for cmp BYTE PTR [eax], imm.
1441         * inssel.brg: Make memcpy and memset takes bases.
1443 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
1445         * *-amd64.*: More AMD64 work.
1446         
1447 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
1449         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
1450         add a compare-not-equal opcode.
1451         
1452 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
1454         * mini.c: Use mono_init_from_assembly instead of mono_init.
1455         
1456 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
1458         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
1460         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
1462         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
1464         * inssel.brg: 64 bit fixes.
1466         * mini.h (MonoCallInst): Add some AMD64 specific data.
1468         * mini.h: Add some OP_P opcodes.
1470 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
1472         * basic.cs: tests for 61797 and 61740
1474 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1476         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
1477         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
1479 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
1481         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
1483         * *-amd64*.*: Ongoing AMD64 work.
1485 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
1487         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
1489         * *-amd64*: Ongoing AMD64 work.
1491         * mini-arch.h: Add AMD64 support.
1493         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
1495         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
1497         * mini-ops.h: Add new opcodes.
1499         * Makefile.am: Add AMD64 support.
1501         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
1502         rules into the inssel-long*.brg files.
1504         * *-amd64.*: Add beginnings of AMD64 backend.
1506 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
1508         * mini.c (print_dfn): commenting out the code that prints
1509         the cil. With -O=deadce, this makes -v -v crash.
1510         
1511         * cpu-pentium.md: make checkthis have a length of 2
1513 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
1515         * mini-sparc.h: fix implementations of __builtin
1516         functions for Sun compiler for V9.
1518 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
1520         * mini.c: use the new stelem.ref wrapper
1521         * exceptions.cs, arrays.cs: new stelem.ref tests
1523 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1525         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
1526         new XSP should work with these changes).
1528 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
1529         
1530         * inssel-{long32,x86,}.brg: trivial optimizations.
1531         
1532 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
1534         * mini.c: load value when emitting box operation in
1535         constrained calls.
1537 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
1539         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
1540         is one byte shorter than cmp DWORD PTR [eax], 0.
1542 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
1544         * inssel-ppc.brg: arguments on the stack are always
1545         relative to the stack pointer (spotted by Neale Ferguson).
1547 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1549         * exceptions-x86.c: delay appending the method name to the trace until
1550         after mono_jit_info_table_find is called, as this gets the real
1551         MonoMethod.
1553 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
1555         * aot.c: register roots
1557 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
1559         * aot.c : I could just use PLATFORM_WIN32 flag.
1561 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
1563         * aot.c : Reverting the previous fix. This time it broke linux build.
1565 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
1567         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
1569 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
1571         * mini.c (handle_stack_args): Remove some more debugging code.
1572         
1573         * mini.c (handle_stack_args): Remove debug output left in by mistake.
1575         * driver.c mini.h aot.c: Allow additional options to be specified with
1576         --aot and pass them to mono_compile_assembly.
1578         * aot.c: Add experimental code to AOT compile all loaded assemblies
1579         on demand and save the code into a cache in the filesystem.
1581         * aot.c: Add support for more wrapper methods.
1582         
1583         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
1584         58863.
1586         * cpu-*.md: Remove removed opcodes.
1588         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
1589         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
1590         related icalls to marshal.c.
1592 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
1594         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
1596         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
1598         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
1600 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
1601         * liveness.c: If liveness is recomputated we need to reset the information
1602         for each variable. This way, if the liveness range has been narrowed
1603         by optimizations that happened after the last computation, we can return
1604         a smaller range.
1605         
1606         For example, if you have
1607         
1608         {
1609                 int i = 0;
1610                 
1611                 // Tons of code that does not affect i
1612                 
1613                 i = foo ();
1614                 ...
1615         }
1616         
1617         i = 0 is dead code and will be removed by SSA. However, when
1618         linear scan gets to the code, i will still appear to be live
1619         throughout the entire block. This prevents good register allocation.
1621 2004-07-06  Martin Baulig  <martin@ximian.com>
1623         * debug-mini.c (mono_debug_init_method): Allow
1624         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
1625         (mono_debug_add_icall_wrapper): New method.
1627         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
1629 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
1631         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
1632         optimization.
1634 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
1636         * aot.c (mono_aot_load_method): Fix loading of debug info.
1638 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1640         * aot.c: Add logging support.
1642 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
1644         * mini.h: Add prototype for mono_print_method_from_ip.
1646         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
1648         * inssel.brg: 64 bit fixes.
1650         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
1651         inssel-long32.brg.
1653         * Makefile.am: Add SPARC64 support.
1655 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1657         * aot.c: Fix alignment problems on 32 bit platforms.
1659 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
1661         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
1662         SPARC64.
1664         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
1665         problems.
1667         * mini.h: Bump AOT file version. Some 64 bit fixes.
1669 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
1671         * inssel-sparc.brg: Add new rule to avoid register moves.
1673         * inssel.brg: Add ldind_to_load_membase helper function.
1675 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
1677         * mini.c: OffsetToStringData intrinsic.
1678         
1679 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
1681         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
1683         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
1684         regression tests.
1686         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
1687 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
1689         * mini.c: reinstated mono_compile_get_interface_var()
1690         on x86, too, since the change breaks the Gtk# build there as well.
1692 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
1694         * driver.c: remove loop from the default optimizations: it seems to
1695         interact badly with some of the other options (see bug #60613).
1697 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
1699         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
1700         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
1702 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
1704         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
1705         vararg-using methods.
1707 2004-06-21  Martin Baulig  <martin@ximian.com>
1709         * mini/mini-exceptions.c
1710         (mono_handle_exception): Added `gpointer original_ip' argument.
1711         After calling mono_unhandled_exception(), call
1712         mono_debugger_unhandled_exception() and if that returns true,
1713         restore the context and return.
1715 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1717         * mini-ppc.c: prefer the use of relative branches so
1718         they won't need to be patched in aot code (patch from Patrick Beard).
1720 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
1722         * aot.c: patch from Patrick Beard to make the output assembly
1723         more correct for the MacOSX assembler. Small tweak to
1724         generate sane images on Linux/PPC, too.
1726 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
1728         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
1729         case until bug #59509 is fixed (shows up in #60332).
1731 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
1733         * mini.c: make sure the needed wrappers are compiled, too, with
1734         precomp.
1736 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
1738         * driver.c: remove NPTL reference in --version output.
1740 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
1742         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
1743         generate valid assembly for the Mach-O assembler.
1745 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
1747         * driver.c: don't include abcrem in the all optimization specifier
1748         since it slows down jit compilation too much for now.
1750 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
1752         * mini.c: use BIGMUL only if both operands have the same signage.
1753         * iltests.il: Test for bug 60056. (errors related to signage in
1754         BIGMUL).
1756         r=lupus.
1758 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
1760         * mini.c, aot.c: memory leak fixes.
1762 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1764         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
1766 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
1768         * Makefile.am: remove the -static hack completely, it links in
1769         statically glib as well.
1771 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
1773         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
1774         * exceptions.cs: make it compile with new mcs/csc.
1776 2004-06-03 Massimiliano Mantione <massi@ximian.com>
1777         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
1778         and added relevant test case.
1780 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
1782         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
1783         regressions in gtk-sharp.
1785 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
1787         * exceptions.cs: New regression tests.
1789         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
1791 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
1793         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
1795 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
1797         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
1799         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
1801 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
1803         * mini.c (mono_jit_runtime_invoke): Init class in this
1804         method instead of trusting mono_jit_compile_method to
1805         do the work (because wrappers can be in object class)
1807 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
1809         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
1811         * basic-long.cs: New regression test.
1813 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
1815         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
1816         and div/rem checks.
1818 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
1820         * Makefile.am: fix miguel's change to build mono statically against
1821         libmono (track build dependencies).
1823 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1825         * cfold.c: Some glib versions do not have G_MININT32.
1827 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
1829         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
1830         with precision of tan, atan, sin and cos, and implemented related
1831         regressions tests (fixes bug 54467, but one new problem appeared and
1832         is not fixed yet).
1834 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1836         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
1838         * exceptions.cs: Add test for constant folding && division by zero.
1840         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
1841         since driver.c is in libmono too, so the optimization was useless.
1843         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
1844         variable to driver.c so the compiler can emit more efficient code to
1845         access them.
1847 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1849         * Makefile.am: don't distribute generated inssel.[ch] files.
1851 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1853         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
1854         into the default appdomain. Fixes #58707.
1856         * jit-icalls.c: Remove the broken approximation for truncl, doing
1857         no conversion is better.
1859         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
1860         Fixes #58863.
1862 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
1864         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
1865         of the mcrxr instruction which is not available on some processors
1866         even if it's documented to be. Implement add and sub overflow correctly
1867         (still not complete for long unsigned). Speed up icalls a bit.
1869 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
1871         * mini.c (mono_jit_compile_method_with_opt): Make sure that
1872         we run .cctor in the current domain instead of target_domain.
1873         
1874         Fixes bug #58558, .cctor not being called in -O=shared.
1876 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1878         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
1880 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
1882         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
1883         which can be done with an imm8, do it that way.
1884         (mono_arch_output_basic_block): ditto for a jmp
1885         (mono_arch_emit_prolog): Computate maximum offset of a label.
1887 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
1889         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
1890         now tries to allocate prefered physical reg's for virtual
1891         regs. This reduces the number of emited spills/loads with
1892         20-30% on our core assemblies.
1894 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
1896         * jit-icalls.c: truncl() is not needed and trunc() is
1897         the correct thing to do anyway (bug #58287).
1899 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
1901         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
1902         if available.
1904 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1906         * driver.c: enable loop optimizations by default.
1908 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
1910         * mini-x86.c: fix calc of max loop size when aligning loops start.
1912 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
1914         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
1915         the stack.
1917 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
1919         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
1920         should set carry.
1922         * basic-long.cs: Add tests for add/subtract of immediates with carry.
1924         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
1925         
1926         * mini.c (inline_method): Allways inline some wrappers even if the cost
1927         is too large. Fixes #58785.
1929         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
1930         
1931 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
1933         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
1934         (crichton@gimp.org). Beginning of support for sparc/linux.
1936         * mini-sparc.c: Optimize retrieval of LMF address.
1938 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
1940         * exceptions-ppc.c:  handle alloca in methods with clauses.
1942 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
1944         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
1946 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
1948         * mini.c: Delegate most of the abort signal work to 
1949           mono_thread_request_interruption, which also handles Stop and Suspend
1950           states.
1952 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
1954         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
1955         supports the save/restore lmf opcodes.
1957 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
1959         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
1960         by gcc-3.4 as well.
1962         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
1964 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
1966         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
1967         methods which contain array accesses.
1969         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
1970         boundaries. Fixes #58537.
1972         * iltests.il: Add regression test for #58537.
1974 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
1976         * mini-x86.c (mono_arch_local_regalloc): Last part of
1977         fix for bug #58633 (releasing register to early).
1979 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
1981         * basic-long.cs: Add new regression test.
1983 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
1985         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
1986         register too early on the chain.
1988 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
1990         * mini.c (create_helper_signature): Use a helper function to reduce
1991         the code which needs to be written. Also set the calling convention of
1992         icalls on windows. Fixes #57840.
1994 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
1996         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
1997         exceptions-ppc.c: added helper function to get the instruction address
1998         from a signal handler context.
2000 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2002         * helpers.c: use g_get_tmp_dir. Invokes happyness 
2003         from gonzalo.
2005 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2007         * helpers.c: Add new env variable to pass args to objdump.
2008         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
2010 2004-05-17  Radek Doulik  <rodo@ximian.com>
2012         * Makefile.am (common_sources): added abcremoval.h so it get
2013         disted and daily mono packages on go-mono.com will build again
2015 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
2017         * abcremoval.c: Fixed coding style, added copyright header.
2019         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
2021         * mini.h: Added prototype for abc removal main function.
2023         * build_relations_propagation_table.pl: Added copyright header.
2025 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
2027         * basic-long.cs: reg test for complex ceq_long bug.
2029 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
2031         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
2032         reg in long and clob case (bug #58343). Fixed/added comments.
2034 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
2036         * mini.c (mono_jit_runtime_invoke): Follow new convention
2037         of calling the invoke method with an function pointer.
2039 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
2041         * ChangeLog: Fix author of memory leak patch.
2043 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
2045         * Makefile.am: fix make dist as well...
2048 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
2050         * cfold.c: Made so that conversions from pointer to int4 are no-ops
2051         on archs where pointers are 4 bytes long.
2053         * Makefile.am: Added abcremoval.c source file.
2055         * abcremoval.c: Added abcremoval.c.
2057         * abcremoval.h: Added abcremoval.h.
2059         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
2061         * inssel.brg: Enabled bounds check removal.
2063         * mini.c: Added support for abcrem optimization.
2065         * mini.h: Added abcrem optimization label.
2067         * driver.c: Added support for abcrem optimization.
2069         * propagated_relations_table.def: Added propagated_relations_table.def.
2071 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
2073         * mini.c, cfold.c: fix style.
2075 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2077         * mini.c: handle issue with the low-level implementation of
2078         some long opcodes (bug #54209).
2080 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
2082         * basic.cs: test for my new cmov stuff.
2084 2004-05-13      Patrik Torstensson
2086         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
2087         opt and added peephole documentation.
2089 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
2091         * tramp-ppc.c: rewrote the generic trampoline code.
2093 2004-05-11      Patrik Torstensson
2095         * mini-x86.c: optimize long shl/shr asm code (one less branch)
2097 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
2099         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
2101         * mini.h mini.c dominators.c: Applied patch from Derek Woo
2102         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
2104         * mini.c: Add new icalls for AsAny marshalling.
2106 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
2108         * tramp-ppc.c, mini-ppc.c: more cleanups.
2110 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2112         * mini.c: no warnings.
2114 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2116         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
2118 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2120         * mini.c: In the thread abort signal handler, if the thread is in the
2121         process of being stoped, don't throw the Abort exception, just stop the
2122         thread.
2124 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
2126         * tramp-ppc.c: removed old code.
2128 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2130         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
2131         do some simple speed optimizations on ppc.
2133 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
2135         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
2136         and large offsets in load/store.
2138 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
2140         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
2141         it causes regressions.
2143 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
2145         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
2146         support.
2148 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2150         * jit-icalls.c: remove warnings.
2151         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
2152         speedups for unsafe code.
2154 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
2156         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
2158 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
2160         * basic-calls.cs: Add new regression test.
2162         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
2163         more portable.
2165         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
2167         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
2168         is no longer used.
2170 2004-05-06      Patrik Torstensson
2172         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
2173         long reg allocation in any reg (not only eax:edx) and implemented 
2174         long shl/shr ops in asm instead of helpers.
2176 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
2178         * mini-sparc.h: Fix warnings.
2180         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
2181         stack.
2183         * mini-exceptions.c (mono_handle_exception): Call the filter in a
2184         separate statement for clarity.
2186         * mini-sparc.c: Update status.
2188 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
2190         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
2191         here.
2193 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2195         * inssel-ppc.brg: another small pre-release workaround:
2196         we don't do overflow detection for long_sub_un.
2198 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2200         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
2201         (also works around a weird ppc bug: 57957).
2203 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
2205         * tramp-ppc.c: trampoline fixes.
2207 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
2209         * mini-ppc.c: fixed typos.
2211 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2213         * mini-ppc.c, exceptions-ppc.c: more code saves registers
2214         at the top of the stack. Fixed typos. Use a frame registers
2215         for all the methods with exception clauses.
2217 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
2219         * exceptions-ppc.c: restore fp registers.
2221 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
2223         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
2224         order from the stack top (moved the stack room to save the
2225         return value for trace after the param area). Fixed corruption
2226         in restoring registers on unwind.
2228 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2230         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
2232 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2234         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
2235         and prolog/epilog for methods that use it. Allow
2236         enough param area room for varargs methods. Fix miguel's
2237         breakage in exception handling.
2239 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2241         * Makefile.am: run genmdesc only on current arch.
2243 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2245         * exceptions-x86.c:
2246         * mini-x86.h: fix the build on windows.
2248 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
2250         * 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.
2252         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
2254         * mini-exceptions.c: New file.
2255         
2256         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
2257         Move some parts of the x86 exception handling code to an 
2258         arch-independent file so it can be shared with other ports.
2260 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
2262         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
2264 2004-04-26  David Waite  <mass@akuma.org>
2266         * driver.c: remove comma from end of enumeration declaration
2268 2004-04-26  Jackson Harper  <jackson@ximian.com>
2270         * driver.c: parse config file before loading first assembly. This
2271         allows the user gac to be enabled/disabled. 
2272         
2273 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
2275         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
2276         simpler mechanism: we do not care what is encoded initially
2277         (branch absolute or relative), we care about the code and its
2278         target.  I kept the old code for reference for now.
2280         The new code tries first to determine if the jump is anywhere in
2281         the -/+32 absolute meg range, if it succeeds, it encodes using the
2282         absolute branch;  If not, it tried to find something in the
2283         relative range, if not, it uses the handle_thunk code. 
2285 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
2287         * exceptions-ppc.c: use the correct ip register on macosx.
2289 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
2291         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
2293 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
2295         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
2296         Raise exception on integer divide by zero by hand since the hw
2297         doesn't support it. Handle NaNs in FP compares.
2299 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2301         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
2302         code reducing duplication between the platforms and enabled
2303         signal exception handling (on linux for now).
2305 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
2307         * exceptions-ppc.c: more macosx support.
2309 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2311         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
2313 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
2315         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
2317 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
2319         * iltests.il: more tests.
2321 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2323         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
2324         vars as well.
2326 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2328         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
2330 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2332         * liveness.c: Mark variables as volatile in all basic blocks reachable
2333         from exception clauses.
2335 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
2337         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
2338         inlining.
2340 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2342         * iltests.il, basic.cs: more tests for regalloc.
2344 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2346         * iltests.il: Some tests for register allocation modifications
2347         I have locally.
2349 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
2351         * exceptions.cs: Add regression test for bug #56782.
2353         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
2354         original stack trace if an exception is rethrown. Fixes #56782. Oh,
2355         the beauty of fixing the same thing in 5 different files...
2357 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
2359         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
2360         methods.
2362 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
2364         * mini.c: Add support for STRWLPARRAY marshalling convention.
2366 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2368         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
2369         to init the context to setup the regs pointer).
2371 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
2373         * exceptions-ppc.c: more exceptions work.
2375 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2377         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
2378         not allowed.
2380 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2382         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
2383         can use the memory directly.
2385         * cpu-pentium.md: Update documentation from a post from Zoltan. 
2387         add x86_add_membase, x86_sub_membase, x86_mul_membase
2389 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2391         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
2392         GENERAL_REGS they were also hardcoded for all PPC ports.
2394         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
2396         Remove hard-coded limit for floating point registers, use
2397         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
2399         Notice that in MacOS X calling conventions you can fit a lot more
2400         floating point values in registers, so I should update the PInvoke
2401         test to excercise the passing of floating point values on the
2402         stack (currently broken).
2403         
2404 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
2406         * tramp-ppc.c (create_trampoline_code): Added
2407         JUMP_TRAMPOLINE_SIZE. 
2408         (ppc_magic_trampoline): Follow the pattern from
2409         x86_magic_trampoline: if code is set to zero, return. 
2410         (create_trampoline_code): Always pass MonoMethod to the jump
2411         trampoline, before it was passing a null.
2412         (mono_arch_create_jump_trampoline): Implement the jump stub, could
2413         share the code with mono_arch_create_jit_trampoline. 
2415         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
2416         implemented.
2417         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
2418         implemented.  
2420         * cpu-g4.md: Added length for jmp instruction, the worst case
2421         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
2422         for save_lmf).
2424 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
2426         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
2428 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
2430         * mini.c: Only set bblock->real_offset when adding a new bblock, and
2431         before each IL instruction.
2433         * mini.c (CEE_BOX): Fix warnings.
2435 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2437         * mini.c: removed a few unused vars and extra whitespace.
2439 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
2441         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
2442         checks.
2443         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
2444         index.
2445         (OP_GETCHR): use the above
2446         (CEE_LDELEMA): use the above.
2448         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
2449         version of the generic impl.
2450         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
2451         (CEE_LDELEMA): use the above.
2453 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2455         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
2456         Fixes #56317.
2458         * iltests.il: Added new regression test for #56317.
2460 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2462         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
2463         under NetBSD. Fixes #56450.
2465         * liveness.c (update_gen_kill_set): Fix previous patch.
2467 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2469         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
2471 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2473         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
2474         ldsfld and ldsflda.
2476         * inssel-sparc.brg: Add more optimizations.
2478         * mini-sparc.c: Replace multiply/divide with shifts if possible.
2480 2004-04-01  Martin Baulig  <martin@ximian.com>
2482         * mini.c (handle_box): New static function; moved the
2483         implementation of CEE_BOX here.
2484         (mono_method_to_ir): Added `constrained_call' variable.
2485         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
2486         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
2487         mono_method_get_constrained() to get the method.
2489 2004-04-01  Martin Baulig  <martin@ximian.com>
2491         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
2492         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
2493         (mono_method_to_ir): We don't need these macros anymore since
2494         mono_class_get_full() already takes care of it. 
2496 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2498         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
2499         use @function (as doesn't accept #function here) and check the return
2500         value of system and stop if fails.
2502 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2504         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
2506 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
2508         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
2510         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
2512         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
2513         #56223.
2515         * basic-long.cs: Add test for negation of Int64.MinValue.
2517 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
2519         * mini-sparc.c: Update status.
2521         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
2523         * exceptions-sparc.c: Fix return value in filters.
2525         * inssel-sparc.brg: Fix register allocation in some rules.
2527 2004-03-28  Martin Baulig  <martin@ximian.com>
2529         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
2530         if neccessary.  
2532 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
2534         * mini-x86.c (mono_arch_patch_code): Fix warnings.
2535         
2536         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
2537         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
2538         remove unused conv_u4 opcode.
2540         * mini-x86.c: Remove valgrind workaround since it slows down things
2541         even when mono is not run under valgrind.
2543 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
2545         * mini-sparc.c: Update status.
2547         * inssel-sparc.brg: Add some optimizations.
2549         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
2550         future delay slot filling. Add support for varargs, tail calls and JMP.
2552         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
2553         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
2555         * inssel.brg: Fix register allocation in OP_ARGLIST.
2557         * inssel.brg: Fix warnings.
2559 2004-03-25  Martin Baulig  <martin@ximian.com>
2561         * mini.c (inflate_generic_field): Removed.
2562         (mini_get_method): Removed, use mono_get_method_full(),
2563         (mini_get_class): Removed, use mono_class_get_full().
2564         (mono_method_to_ir): Pass our generic context to
2565         mono_field_from_token().        
2567 2004-03-25  Martin Baulig  <martin@ximian.com>
2569         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
2570         of a `MonoMethod *'.
2571         (mini_get_method): Take a `MonoGenericContext *' instead
2572         of a `MonoMethod *'.
2573         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
2574         a new local variable called `generic_context' which holds the
2575         current `MonoGenericContext *'; use it to lookup things.
2577 2004-03-24  Martin Baulig  <martin@ximian.com>
2579         * mini.c (mini_get_class): New static method; if we're inside a
2580         generic instance, inflate the class if neccessary.
2581         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
2583 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
2585         * iltests.il: New regression test for #55976.
2587         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
2588         #55976.
2590 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
2592         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
2593         output.
2595 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
2597         * liveness.c: Consider SSA stores as well as loads when making vars
2598         volatile.
2600         * exceptions.cs: New regression tests for register allocation.
2601         
2602 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
2604         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
2605         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
2606           domain lock only to protect puntual access to data structures.
2607           Added access lock for sighash, jit_icall_hash_name, 
2608           jit_icall_hash_addr and domain->code_mp.
2610 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
2612         * driver.c: Print SIGSEGV handling method.
2614         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
2616         * mini.c (setup_jit_tls_data): Handle case when this is called
2617         multiple times for a thread.
2619         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
2620         is different from fbxx_un. Fixes #54303. Also use constants instead of
2621         magic numbers in a lot of places.
2623 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
2625         * exceptions.cs: Fix cctor test when --regression is used.
2627 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
2629         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
2630         for Linux/ppc.
2632 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
2634         * inssel-ppc.brg: fixed register assignments for some rules.
2636 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2638         * exceptions.cs: Add test for exceptions in static constructors.
2640         * mini.c (mono_jit_compile_method_with_out): Move the calling of
2641         static constructors outside the domain lock. Fixes #55720.
2643 2004-03-17  Martin Baulig  <martin@ximian.com>
2645         * mini.c (get_generic_field_inst): Removed, this'll never happen.
2646         (inflate_generic_field): Take the `MonoMethod *' instead of the
2647         `MonoClass *' and added support for generic method.
2648         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
2649         have a `field->parent->gen_params', only inflate the field if it's
2650         an open constructed type.
2652 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2654         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
2655         exception object instead of the preconstructed ones.
2657 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2659         * mini.c: reverted changed to sigsegv_signal_handler commited
2660         accidentally in the previous patch.
2662 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2664         * mini.c:
2665         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
2666         running --aot with an old assembly.
2668 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
2670         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
2671         point values.
2673         * mini-sparc.c: Add support for v9 branches with prediction.
2675 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
2677         * mini.c (mini_init): #warning is GNUC only
2679         * mini-sparc.h: implement __builtin_frame_address
2680         and __builtin_return_address for Sun C compiler
2682 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
2684         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
2686 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
2688         * basic-calls.cs: Add test for unaligned byref long argument passing.
2690         * mini-ops.h: Add sparcv9 compare and branch instructions.
2692         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
2693         v9 instructions if we have a v9 cpu.
2695         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
2696         registers for global allocation.
2698         * exceptions-sparc.c: Fixes.
2699         
2700 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
2702         * liveness.c (mono_analyze_liveness): Optimized version.
2704         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
2706         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
2707         sparc work.
2709         * basic-float.cs basic-calls.cs: New regression tests.
2711 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
2713         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
2714         sigaltstack implementation.
2716         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
2717         
2718         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
2719         stuff if SIGSEGV_ON_ALTSTACK is not defined.
2721 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
2723         * mini.c: Fix warnings.
2724         
2725         * mini.c (mono_resolve_patch_target): New function which contains the
2726         arch independent part of the patching process.
2728         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
2729         patching code to a separate function.
2731 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
2733         * mini.c (add_signal_handler): ifdef out on Windows
2735 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
2737         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
2738         cpu-sparc.md: Add exception handling support + other fixes.
2740         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
2741         typed GC detection in --version.
2743         * basic.cs exceptions.cs: New regression tests.
2745         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
2746         the arch specific code can store data during a compilation.
2748         * mini-ops.h: Add OP_SETFRET.
2750         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
2751         function, register a separate icall for each arity, so the icalls can
2752         get a wrapper.
2753         
2754         * mini.c (mono_print_tree): Print negative offsets in a more readable
2755         form.
2756         
2757         * mini.c: Make signal handling work on sparc.
2758         
2759         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
2761         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
2763         * jit-icalls.c: Emulate truncl by aintl on solaris.
2765         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
2767 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
2769         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
2771 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
2773         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
2774         a MarshalByRef type, inline a method that performs the check, taking into
2775         account that the object can be a proxy. Also implemented tow new opcodes:
2776         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
2777         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
2778         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
2780 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
2782         * mini-ppc.c: if a relative branch displacement is too big
2783         but it points to and area reachable with an absolute branch, 
2784         avoid the thunks.
2786 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
2788         * mini.c: optimize small copies in cpblk.
2790 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
2792         * basic-calls.cs basic-float.cs: New regression tests.
2794         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
2795         negative offsets from %fp. Implement localloc. Fix local register 
2796         allocation. Fix the case when the this argument needs to be saved to
2797         the stack. Implement some missing opcodes.
2799 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
2801         * mini.c (mini_method_compile): Reenable global regalloc in methods
2802         with exception handlers.
2804         * linear-scan.c (mono_varlist_sort): Fix warning.
2806         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
2808         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
2809         regalloc costs.
2811         * liveness.c: Make all variables uses in exception clauses volatile, to
2812         prevent them from being allocated to registers. Fixes #42136.
2814 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
2816         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
2817         causes regressions.
2819         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
2820         argument to mono_arch_regalloc_cost.
2822         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
2823         precisely.
2825 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
2827         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
2828         Make the cost of allocating a variable to a register arch dependent.
2830         * basic-calls.cs: Fix compilation of tests.
2831         
2832         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
2833         helper function to cut back on the number of #ifdefs needed.
2835         * mini-ppc.c: Fix compilation.
2837         * basic-calls.cs: New regression tests.
2839         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
2841         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
2842         of l0 since that is callee saved.
2844         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
2845         to virtual calls.
2847         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
2848         of delay instruction.
2850         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
2852         * mini.h (MonoCallInst): Add 'virtual' flag.
2854         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
2856 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
2858         * *.cs: New regression tests.
2860         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
2861         work.
2863         * mini.c (mono_runtime_install_handlers): Fix build.
2865         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
2866         'signal_stack_size' members.
2868         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
2869         alternate signal stack.
2871         * exceptions-x86.c: Add stack overflow handling.
2873         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
2874         functions to arch independent code.
2876         * mini.c (mono_print_tree): Print more detailed info for load_membase
2877         opcodes.
2878         
2879 2004-02-23  Martin Baulig  <martin@ximian.com>
2881         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
2883 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
2885         * mini-x86.c: fixed reg allocation for div/rem.
2887 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
2889         * driver.c (mono_main): Report some configuratio options on --version.
2891 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
2893         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
2894         low in the address space. Correctly flush memory in thunks where we
2895         output native code.
2897 2004-02-20  Martin Baulig  <martin@ximian.com>
2899         * mini.c (mini_get_method): New static method; inflate all generic
2900         methods and methods in open generic instances.
2901         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
2902         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
2904 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
2906         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
2908         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
2910 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
2912         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
2914         * mini-sparc.c (flushi mono_arch_output_basic_block): make
2915         it compile using Sun's compiler.
2917 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
2919         * 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.
2921         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
2923 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
2925         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
2926         code.
2927         * mini-ppc.c: handle calls outside of the allowed range with thunks
2928         allocated using the code manager.
2929         * tramp-ppc.c: use the code manager to hold generated native code.
2930         Fixed the magic trampoline to just patch vtable entries.
2932 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
2934         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
2935         independent file.
2937 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
2939         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
2940         PPC.
2942         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
2943         if we have a working __thread implementation.
2945         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
2946         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
2948 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
2950         * mini-x86.c: Fix compilation under gcc 2.
2951         
2952 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
2954         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
2955         contains a call to the wrapped function.
2957         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
2958         OP_<CALL>_IMM opcodes, and use them under X86.
2959         
2960         * mini.c (mono_jit_find_compiled_method): Fix warning.
2962         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
2964         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
2966         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
2967         functionality to mini.c.
2969         * mini.c (mono_create_jump_trampoline): New function to create a jump
2970         trampoline. Return a compiled method instead of a trampoline if it
2971         exists. Add a cache for jump trampolines.
2973         * mini.c (mono_jit_find_compiled_method): New function to return a
2974         compiled method if it exists.
2976         * mini-x86.c: Call mono_create_jump_trampoline instead of 
2977         mono_arch_create_jit_trampoline.
2979         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
2980         a jump trampoline. Fixes #52092.
2981         
2982 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
2984         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
2985         which is not up-to-date. Add check_corlib_version () instead.
2987         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
2988         have to call it.
2989         
2990         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
2991         since newer valgrind versions do not need it.
2993         * mini.c (mono_jit_compile_method_with_opt): New helper function to
2994         compile a method with a given set of optimizations.
2996         * mini.c: Compile icall wrappers on-demand instead of at startup.
2998         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
2999         wrapper for an icall.
3001 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3003         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
3004         #54063.
3006         * iltests.il: Add test for non-empty stack before switch instruction.
3008 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3010         * mini.c: Add support for new stringbuilder marshalling conventions.
3012         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
3014 2004-02-01  Martin Baulig  <martin@ximian.com>
3016         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
3017         in `ginst->mtype_argv'.
3019 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
3021         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
3022         facilitate grepping.
3024 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
3026         * mini.c: fixed buglet in initobj generic implementation for references.
3028 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
3030         * Makefile.am: make the version script conditional.
3031         * jit-icalls.c: handle missing truncl().
3033 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
3035         * exceptions.cs: Add more tests for double->int conversion.
3037         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
3038         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
3040 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
3042         * driver.c: make --verbose --version emit an error
3043         if the loaded corlib doesn't match the runtime version.
3045 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
3047         * mini-ppc.h: export ppc_patch().
3048         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
3049         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
3050         on par or better than on MacOSX.
3052 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3054         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
3055         mono_lookup_pinvoke_call.
3057         * mini-x86.c: Under windows, the default pinvoke calling convention is
3058         stdcall. Fixes #52834.
3060         * mini.c (optimize_branches): Add an upper bound to the number of
3061         iterations to prevent infinite loops on strange loops. Fixes #53003.
3063 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3065         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
3066         and ISINST. Fixes #52093.
3068         * objects.cs (test_0_vector_array_cast): New tests.
3069         
3070 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
3072         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
3073         checking in Array.Set ().
3075         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
3076         #52590.
3078         * object.cs (test_0_multi_array_cast): New regression test.
3080 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
3082         * exceptions-ppc.c: fix build on Linux/PPC.
3084 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
3086         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
3087         running under valgrind.
3088         (x86_magic_trampoline): Fix build bustage.
3090         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
3091         negative values as well. This is needed for the encoding of the line number
3092         info, since sometimes the line numbers are not in increasing order.
3094 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
3096         * cpu-pentium.md (localloc): Increase the size of the localloc 
3097         instruction since it is a loop under Win32.
3099         * debug-mini.c (record_line_number): Get rid of unneccesary memory
3100         allocation.
3102 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
3104         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
3105         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
3106         Max Horn (max@quendi.de). Fix file names in comments.
3108 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
3110         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
3111         avoid stack overflow.
3112         (replace_usage): Avoid uninitialized variable warnings.
3114         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
3115         and taking the address of valuetype variables.
3117 2004-01-03  Patrik Torstensson
3119         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
3120         for other purposes than FP later on.
3122 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
3124         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
3125         of tail calls.
3127 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
3129         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
3131 2003-12-30  Patrik Torstensson <p@rxc.se>
3133         * mini-x86.h: Decreased number of availiable fp regs.
3134         Solves corner cases with FP spilling.
3136 2003-12-23  Patrik Torstensson <p@rxc.se>
3138         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
3139         for floating point stack tracking / spilling on x86. 
3140         Fixes bug #49012.
3141         
3142         * basic-float.cs: added float mul overflow test.
3144 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
3146         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
3148 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
3150         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
3151         supports for cond branches that overflow the immediate
3152         overflow offset. mcs can compile simple programs.
3154 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
3156         * exceptions-ppc.c: exception handling support wip:
3157         finally handlers get run on exception.
3159 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
3161         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
3162         profiling.
3164 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
3166         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
3167         initial support for stack walking and unwinding.
3169 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
3171         * driver.c (mono_main): Make corlib-out-of-sync message more 
3172         descriptive. Also remove verify_corlib call.
3174 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
3176         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
3177         not overlap with other call's arguments, too.
3179 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
3181         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
3182         move to arch-specific code the choice of arch-specific
3183         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
3184         * mini.c: ensure emulation calls will not interleave
3185         with other calls.
3187 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
3189         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
3190         the magic trampoline stack frame is dropped before executing
3191         the new method.
3193 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
3195         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
3196         and integer to fp conversions. Added support for overflowing
3197         arguments on the stack. Reserve a couple more registers as temps.
3198         Added support for aot compilation (as output still needs to be
3199         tweaked, though).
3201 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
3203         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
3204         Don't overwrite return register in some corner cases.
3206 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
3208         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
3209         static constructors when AOT compiling.
3211         * driver.c (mono_main): Call mono_check_corlib_version.
3213 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
3215         * cpu-g4.md, basic.cs: fixed div target register.
3217 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
3219         * mini-ppc.c, basic.cs: shl_imm fix with test.
3221 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
3223         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
3224         structures by value. Misc fixes.
3225         * objects.cs: more tests.
3227 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
3229         * mini-ppc.c: lconv.ovf.i implemented.
3231 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3233         * mini.c:
3234         (mini_init): don't error out if someone already called g_thread_init.
3236 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
3238         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
3239         to be any type per the spec. Fix abnormal memory usage when
3240         the same object is repeatedly thrown.
3242 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
3244         * mini.c: check for overruns in IL code.
3246 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
3248         * TODO: Add/remove some todo entries.
3250 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
3252         * driver.c (mono_main): Call mono_verify_corlib.
3254 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
3256         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
3257         This has been moved to mini.c
3258         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
3259         type being casted is marshalbyref it could be a proxy, so instead of
3260         emitting the type check code, emit a call to a runtime method that will
3261         perform the check by calling CanCastTo if needed.
3263 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
3265         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
3266         methods with large stack frames under Win32.
3268 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
3270         * Makefile.am: Distribute regression tests.
3272         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
3273         at the end instead of inserting each variable into the sorted list.
3275         * linear-scan.c (mono_varlist_sort): New helper function.
3276         
3277 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
3279         * mini.c: ensure arguments and locals are within bounds.
3281 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
3283         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
3284         related fixes.
3286 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3288         * mini.c (mono_cprop_copy_values): Fix crash.
3290         * aot.c: Set verbosity back to 0.
3291         
3292 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
3294         * regalloc.c: complete memory leak fix by Laurent Morichetti
3295         (l_m@pacbell.net).
3297 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3299         * driver.c (main_thread_handler): Revert the previous patch.
3301         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
3302         under valgrind.
3304         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
3305         memory from the memory pool.
3307         * driver.c (main_thread_handler): Turn on all optimizations when
3308         --aot is used.
3310         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
3311         an array for better performance.
3313         * regalloc.c (mono_regstate_assign): Fix memory leak.
3315         * debug-mini.c (mono_debug_serialize_debug_info): New function to
3316         serialize the debug info.
3318         * debug-mini.c (mono_debug_add_aot_method): New function to load the
3319         debug info from the serialized representation.
3321         * aot.c: Save debug info into the generated file and load it when 
3322         loading a method.
3324         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
3326 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
3328         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
3329         More FP-related fixes.
3331 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
3333         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
3334         and register allocation buglet. Hello world now runs.
3336 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
3338         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
3339         * tramp-ppc.c: fixed class init trampoline.
3340         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
3342 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
3344         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
3345         mini.c: more ppc changes/fixes.
3347 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
3349         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
3350         Also optimize the case when the arguments are the same in the caller 
3351         and in the callee.
3353         * iltests.il: Add tests for tail calls with valuetype arguments.
3355 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
3357         * mini-ppc.c: fixes for struct return type.
3359 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
3361         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
3362         mono_spillvar_offset() to arch-specific code.
3364 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
3366         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
3368 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
3370         * exceptions-x86.c: Fix stack space leaks.
3371         
3372         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
3373         registers from the lmf if the method has save_lmf set.
3375 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
3377         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
3378         of icall wrappers into InvokeInDomain, since these are now per-domain.
3380 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
3382         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
3383         make some opcode emulation and intrinsic ops enabled/disabled 
3384         according to the architecture. More fixes.
3386 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
3388         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
3390 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
3392         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
3393         arch-specific handling for 'this' and struct return type to
3394         arch-specific code.
3396 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3398         * aot.c: prevent divide by zero error when reporting (it happened with
3399         Accessibility.dll).
3401 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
3403         * mini.h (inst_switch): Remove unused macro.
3405 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3407         * aot.c:
3408         (load_aot_module): free 'info->methods' and 'info' properly. No more
3409         "free(): invalid pointer blah" messages when you have an old aot
3410         compiled assembly.
3412 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
3414         * jit-icalls.c, mini.c: Added support for context static fields.
3416 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3418         * mini.c (mono_method_blittable): Methods which set LastError are not 
3419         blittable either. Fixes #51108.
3420         
3421 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
3423         * mini.c: flush icache.
3424         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
3426 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3428         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
3430 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
3432         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
3433         safe on IA32.
3435         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
3436         vararg calls.
3438         * inssel.brg (CEE_MKREFANY): Fix AOT case.
3440 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
3442         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
3443         instruction when the result is discarded.
3445         * iltests.il (test_0_div_regalloc): New regression test.
3447         * arrays.cs: Fix compilation error.
3449 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
3451         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
3452         float rules to inssel-x86.brg: sane architectures with FP registers
3453         don't need to implement these rules.
3455 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
3457         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
3459 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
3461         * mini.h, inssel-long32.brg: fixed endianess issues in int64
3462         implementation of 32 bit systems.
3464 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
3466         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
3467         (Jeroen Zwartepoorte).
3469 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3471         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
3472         the caller and the callee matches.
3473         
3474         * mini.c (mono_method_to_ir): Add comment.
3476         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
3477         signbit is missing on some platforms.
3479 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
3481         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
3483         * mini.c (setup_jit_tls_data): Call the new function.
3484         
3485         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
3487         * mini-x86.c: Add experimental support for fast access to the lmf
3488         structure under NPTL/Linux 2.6.x.
3490 2003-11-06  Martin Baulig  <martin@ximian.com>
3492         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
3493         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
3494         the debugger.
3496 2003-11-02  Martin Baulig  <martin@ximian.com>
3498         * mini.c (inflate_generic_field): New static method.
3499         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
3500         generic instance and the field is declared in a generic type, call
3501         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
3503 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
3505         * mini.h mini.c (mono_method_same_domain): New function to return
3506         whenever the caller and the callee are in the same domain.
3508         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
3510 2003-10-30  Martin Baulig  <martin@ximian.com>
3512         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
3513         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
3514         method parameters.
3515         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
3516         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
3518 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
3520         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
3521         propagation.
3523         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
3524         object here, so it is in the correct appdomain etc.
3526 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
3528         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
3529         already done.
3530         (mono_method_to_ir): Avoid freeing the type created returned from
3531         mono_type_create_from_typespec, since it is put into an internal cache
3532         by the function. Fixes pointer.exe.
3534         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
3535         trampolines for icalls and pinvokes as well. Fixes #33569.
3537 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
3539         * mini.c: Update after appdomain changes.
3541         * mini.c (mono_jit_compile_method_inner): Allways compile native
3542         method wrappers in the root domain, since there can only be one
3543         instance of them, whose address is stored in method->info.
3545 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
3547         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
3548         environment variable. Instead detect automatically whenever running
3549         under valgrind using the magic macro RUNNING_ON_VALGRIND from
3550         valgrind.h.
3552 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
3554         * trace.c, trace.h: New files that implement the new trace option
3555         parsing. 
3557         * driver.c: Document new --trace options.
3559         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
3560         mini-x86.c: Apply:
3562         -       if (mono_jit_trace_calls)
3563         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
3565         * mini.h: prototypes.
3566         
3567 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
3569         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
3571         * mini.c inssel.brg: Implement typedefbyref opcodes.
3573         * mini.c (mono_jit_compile_method): Remove unused local variable.
3575         * mini.c (mono_jit_compile_method_inner): Ditto.
3576         
3577 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
3579         * tramp-x86.c (x86_class_init_trampoline): Fix build.
3580         
3581         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
3583 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
3585         * mini.c (mono_no_aot): Remove unused global variable.
3587         * mini.c: Thread safety fixes.
3589 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
3591         * mini.c (mono_create_class_init_trampoline): Add a lock around
3592         class_init_hash_addr.
3594         * arrays.cs (test_0_newarr_emulation): Add new regression test for
3595         #30073.
3597         * mini.c: Decompose the NEWARR instruction before decomposing its
3598         arguments. Fixes #30073.
3600 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
3602         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
3603         convention.
3605 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
3607         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
3609         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
3611         * driver.c: Add support for compiling icall wrappers to --compile.
3613 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
3615         * inssel.brg: The empty value in class->interface_offsets is -1, not
3616         0. Fixes #49287.
3618 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
3620         * objects.cs: New test for 'is' operator on an array of interfaces.
3622 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
3624         * tramp-ppc.c: update trampoline code to support jumps
3625         and class initialization.
3627 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
3629         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
3631         * inssel.brg (OP_UNBOXCAST): Fix #46027.
3633         * inssel.brg (OP_UNBOX): Remove unused rule.
3635         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
3636         region instead of one for each method. Fixes #47813.
3638 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
3640         * exceptions.cs (test_0_nested_finally): New regression test for
3641         nested exception handlers.
3643         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
3645         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
3647         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
3648         inlining.
3650         * mini.c (mono_method_check_inlining): Make the inlining limit 
3651         configurable by an environment variable.
3652         
3653         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
3655         * mini.h: Bump AOT file version.
3657         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
3658         token, store the image along with the token, since the token might not 
3659         refer to the same image as the method containing the relocation, 
3660         because of inlining.
3662 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
3664         * mini.c (mono_precompile_assemblies): New function to compile
3665         all methods in all loaded assemblies.
3667         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
3669         * regalloc.h regalloc.c (MonoRegState): Change the type of 
3670         iassign and fassign to int*, since they can contain large negative
3671         values if the register is spilled. Also added some comments. Fixes
3672         #45817.
3674         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
3675         under Win32. Fixes #42964.
3677 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
3679         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
3681         * aot.c: Added support for AOT compiling methods which contain calls
3682         to wrappers. Currently, only remoting-invoke-with-check wrappers are
3683         handled.
3684         
3685         * driver.c (compile_all_methods): Run the compilation in a thread
3686         managed by mono. Fixes #44023.
3688         * mini.c (mono_codegen): Print full method name in verbose output.
3690         * mini-x86.c (mono_arch_patch_code): Fix warning.
3691         
3692         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
3693         jumps, since the method we are jumping to might be domain-specific.
3695         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
3697 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
3699         * inssel.brg: string chars are unsigned.
3701 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
3703         * TODO: New todo item.
3705         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
3706         which calls mono_runtime_class_init and patches the call site to
3707         avoid further calls.
3708         (mono_arch_create_class_init_trampoline): New arch specific function 
3709         to create a class init trampoline.
3710         (create_trampoline_code): Generalized so it can create
3711         class init trampolines as well.
3713         * mini.c (helper_sig_class_init_trampoline): New helper variable.
3714         (mono_create_class_init_trampoline): New function to create and cache
3715         class init trampolines.
3716         (mono_find_class_init_trampoline_by_addr): New function to lookup the
3717         vtable given the address of a class init trampoline. Used by the
3718         patching process.
3719         (mono_codegen): Generate a call to a trampoline instead of
3720         mono_runtime_class_init in LDSFLD[A].
3721         (mono_codegen): Add relocations for the new trampoline.
3722         
3723         * mini.h mini-x86.c aot.c: Added a new relocation type: 
3724         MONO_PATCH_INFO_CLASS_INIT.
3726         * mini.h: Bump AOT version number.
3728         * aot.c: Create a copy of the loaded code instead of using the original
3729         so methods which call each other will be close in memory, improving
3730         cache behaviour.
3731         
3732         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
3733         patch since it breaks the regression tests.
3734         
3735         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
3736         for the register saving instruction sequence since the 
3737         frame_state_for function in glibc 2.3.2 don't seem to detect it.
3739 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
3741         * TODO: Fix todo item && remove another.
3743 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
3745         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
3746         previous checkin.
3748         * aot.c: Moved the check for MONO_LASTAOT into the initialization
3749         function of the module.
3751         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
3752         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
3753         --no-aot command line option.
3755 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
3757         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
3758         by Bernie Solomon (bernard@ugsolutions.com).
3760         * inssel.brg: Refactor the interface offset table related code into
3761         its separate functions and add support for the AOT case.
3763 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
3765         * aot.c (mono_aot_get_method_inner): Fix memory leak.
3766         
3767         * aot.c: Added mono_aot_verbose variable and made all debugging
3768         output depend on the value of this variable.
3770         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
3771         method_label and info_label.
3773         * mini.h mini-x86.c aot.c: Added a new relocation type 
3774         MONO_PATCH_INFO_IID for klass->interface_id.
3776         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
3777         the MonoJitInfo structure.
3779         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
3780         a non-root appdomain in shared mode.
3782 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
3784         * aot.c: make aot loader less verbose. Remove free of unused variable.
3786 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
3788         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
3790         * .cvsignore: Added *.dll.
3792         * mini.c (mono_print_tree_nl): New function callable while debugging.
3794         * mini.c (mono_print_code): Export this.
3796         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
3797         patched code.
3799 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
3801         * mini.h (MonoCompile): Added 'jit_info' field.
3803         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
3804         the cfg structure, since it is needed by the AOT compiler.
3806         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
3808         * aot.c: A major rewrite. Changes include:
3809         - save exception tables for methods which have them.
3810         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
3811         to g_module_symbol.
3812         - reworked the file format so it is now much smaller and needs
3813         fewer relocation entries.
3814         
3815 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
3817         * aot.c (load_aot_module): Fix build bustage on platforms without
3818         Boehm GC.
3820 2003-09-04  Martin Baulig  <martin@ximian.com>
3822         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
3824 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
3826         * TODO: Some new optimization ideas.
3828         * aot.c: Move AOT module loading logic here from mono_assembly_open.
3830         * aot.c: Save the optimization flags used to compile the code into
3831         the AOT module.
3833         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
3834         support emitting domain specific code.
3835         
3836         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
3837         no longer domain neutral. It can be made domain neutral by compiling 
3838         with --optimize=shared.
3840         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
3841         between appdomains.
3843         * driver.c mini.h mini.c: New --no-aot debugging option which disables
3844         loading of AOT code.
3846         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
3847         
3848         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
3849         if there is no domain neutrality information.
3851 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
3853         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
3854         format version into the generated library.
3856         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
3857         callee method into the caller since one of them could be shared.
3859         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
3860         system exceptions from AOT code now works.
3862         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
3863         method if it is domain neutral and the callee is not.
3865         * graph.c (cfg_emit_one_loop_level): Fix warning.
3867 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
3869         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
3870         last checkin.
3872 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
3874         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
3875         is needed  by code which is executed before mono_runtime_init ().
3876         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
3877         
3878         * mini.c (mono_thread_abort): Fix warning.
3879         (mono_jit_compile_method): Call static constructor in the AOT case too.
3881         * aot.c (mono_compile_assembly): Fix warning.
3883 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3885         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
3887 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
3889         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
3891         * cpu-pentium.md: Fix the length of call opcodes so they include the
3892         ESP restoring instruction. Fixes #47968.
3894 2003-08-28  Martin Baulig  <martin@ximian.com>
3896         * mini-x86.c (mono_arch_call_opcode): Added support for
3897         MONO_TYPE_GENERICINST.
3899         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
3901 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
3903         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
3904         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
3906         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
3907         metadata_section.
3909 2003-08-26  Martin Baulig  <martin@ximian.com>
3911         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
3912         when reporting an error, set this to the actual error location.
3913         (mono_method_to_ir): Report the correct error location if
3914         get_basic_blocks() returned an error.
3916 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
3918         * mini.c (mono_type_blittable): OBJECT is not blittable.
3919         (mono_method_blittable): Methods which have marshalling descriptors
3920         are not blittable either. Fixes #47842.
3922 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
3924         * driver.c mini.c: Use an environment variable instead of a global 
3925         variable. Also fix the build.
3927         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
3928         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
3929         reporting this. 
3931         * driver.c mini.c: Added --with-valgrind option to turn off some
3932         code which prevents mono from running under valgrind.
3934         * mini.c (mono_emit_call_args): Fixed warning.
3936         * mini.c (mono_emulate_opcode): Fixed warning.
3938 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
3940         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
3941         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
3942         regalloc.c, regalloc.h: specify available registers in arch-specific
3943         code and support floats in the regallocator (patch by Laurent Morichetti 
3944         <l_m@pacbell.net>)
3946 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
3948         * mini.c: mono_thread_current() can be called only after
3949         mono_runtime_init(): rearrange code to not call it early on.
3951 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
3953         * mini.c: allocate jump tables in the code mempools.
3955 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
3957         * mini.c, mini.h: make sure per-thread data allocated by the jit is
3958         freed.
3960 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
3962         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
3963         12 to 16.  This fixes bug #47453.
3966 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
3968         * mini-ppc.c: fixed indexed load and unsigned compares.
3970 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
3972         * mini.c: reenabled installation of handler for
3973           thread abort signal.
3975 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
3977         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
3978         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
3979         until it's fixed and actually useful.
3981 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
3983         * inssel-long32.brg: couple more opcodes implemented.
3985 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
3986         
3987         * mini-sparc.c: Even more opcodes implemeted.
3989 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
3991         * mini-sparc.c: More opcodes implemented.
3993 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
3995         * mini-sparc.c: More opcodes implemented.
3997 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
3999         * inssel-sparc.brg: Add some needed rules.  Direct
4000         copy from PPC.
4001         * Makefile.am: Use inssel-sparc.brg
4002         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
4003         an assert happy for now.
4005 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
4007         * mini-sparc.c: Fixed compile errors.
4008         * exceptions-sparc.c: Same.  We now produce a mono binary 
4009         on sparc-linux.  Yea.
4011 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
4013         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
4014         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
4015         They compile, but do not work.
4017 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4019         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
4020         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
4021         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
4022         (ct@gentoo.org).
4024 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4026         * mini.c: more opcodes implemented and better support for generics.
4028 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
4030         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
4031         * mini.c, mini.h: first cut at generics support: some new instructions 
4032         added and changed the behaviour of some of the existing ones.
4034 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
4036         * mini.c: Removed definition of metadata_shared mutex here.
4038 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
4040         * mini-x86.c: make vararg calls work for instance methods.
4042 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
4044         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
4045         returns the arguments in a separte list, now.
4047 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
4049         * aot.c, mini.c: updates for array type representation changes.
4051 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
4053         * mini.c: register function to perform jit shutdown.
4055 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4057         * mini.c: use a faster allocator if possible.
4059 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
4061         * aot.c: some cleanups and portability changes.
4063 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
4065         * mini.c: use faster allocation for CEE_BOX if possible.
4067 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
4069         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
4070         Moved inlined mempcy code to its own function so that is can be
4071         reused. Added an inline memset function as well (optimized initobj).
4072         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
4074 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
4076         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
4078 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
4080         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
4081         arch code can setup the cpu for CLR execution, if needed.
4082         We use it on x86 to set the precision of FP operations.
4084 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
4086         * mini.c: disable some optimizations if we can guess they'll cost too
4087         much for a given method.
4089 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
4091         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
4092         
4093 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
4094         * mini.h mini.c mini-x86.c: Added instruction level coverage 
4095         info collection support.
4097 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4099         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
4100         is now implemented in the profiling API. Get rid of a couple of
4101         unnecessary global variables.
4103 2003-06-15  Nick Drochak <ndrochak@gol.com>
4105         * basic-long.cs: tests for negative values for bigmul, and unsigned.
4106         * cpu-g4.md: add op_bigmul and op_bigmul_un
4107         * cpu_pentium.md: add op_bigmul_un
4108         * inssel-long32.brg: add rule for unsigned bigmul
4109         * mini-ops.h: define OP_BIGMUL_UN
4110         * mini-x86.c: THE BUG: handle (un)signed properly
4111         * mini.c: choose unsigned opcode if needed.
4112         This set of patches fixes bug #44291
4114 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
4116         * mini.c (optimize_branches): improved to handle all kinds of
4117         conditional branches.
4119 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
4121         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
4122         don't raise exceptions.
4124 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
4126         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
4127         to arch-specific files.
4129 2003-06-09  Martin Baulig  <martin@ximian.com>
4131         * Makefile.am (libs): Added $(LIBGC_LIBS).
4133 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
4135         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
4136         and OP_ATAN (fixes bug#44293).
4138 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
4140         * Makefile.am, mini-x86.c: rename cpu description array to
4141         pentium_desc, since some compilers define the 'pentium' preprocessor
4142         symbol.
4144 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
4146         * mini.c (mini_select_instructions): add explicit branch if the
4147         following block is not the false target of a conditional branch -
4148         we need this with any optimization that reorder or remove bblocks
4150         * mini.c (optimize_branches): bug fixes
4152 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
4154         * mini.c (mono_method_to_ir): inline static readonly fields
4156         * ssa.c (fold_tree): start cfold support for long (very simple
4157         cases only)
4159         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
4161 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
4163         * inssel.brg: fixed memcpy (bug #44219).
4165 2003-06-05  Dick Porter  <dick@ximian.com>
4167         * driver.c: Set the glib log levels to not abort if g_message
4168         recurses.
4170         g_set_prgname() has to happen before mini_init() so that the
4171         process handle gets the info.
4172         
4173 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4175         * driver.c: add intrins to the default optimizations to get wider
4176         exposure.
4178 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
4180         * mini.h: some large basic blocks will overflow a 16-bit
4181         integers for symbolic registers.
4183 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
4185         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
4186         (mono_arch_output_basic_block): fix bug 43499 
4188 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
4190         * mini.c: kill duplicated definition of mono_debug_format.
4192 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
4194         * mini-x86.c, arrays.cs: fixed register allocation bug.
4196 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
4198         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
4200         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
4202 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4204         * mini.c:
4205         (print_method_from_ip): also print source location information if
4206         available.
4208 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
4210         * mini.c (mono_find_block_region): bug fix in region code
4211         (mini_method_compile): enable removing unreachable code again, but
4212         only in methods without exception clauses.
4214 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
4216         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
4217         Implemented arglist opcode and handling of TypedReference type.
4218         Fixed x86 call convention when a structure is returned.
4219         Minimal support for calling static vararg methods.
4221 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
4223         * mini.c (mini_method_compile):  always remove unreachable code,
4224         because the code in them may be inconsistent  (access to dead
4225         variables for example).
4227 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
4229         * driver.c, debug-mini.c: warning fixes.
4231 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
4233         * Makefile.am, jit.h, mini.h: install header for embedding mono.
4235 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
4237         * mini.c: thread-static fields are registered in mono_class_vtable(),
4238         so ensure the function is called before checking for them.
4240 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
4242         * mini.c (optimize_branches): fix for bug 43586
4244         * jit-icalls.c (mono_llmult_ovf): added an additional check for
4245         overflow (fixes Bug #43639)
4247 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4249         * mini.c, objects.cs: allow the use of stobj for primitive types.
4251 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4253         * mini.c: be less strict about argument checking until we support
4254         running the verifier.
4256 2003-05-27  Nick Drochak <ndrochak@gol.com>
4258         * basic-long.cs: tests for (ulong)int * (ulong)int also
4259         * mini.c: use the same trick for (ulong)int * (ulong)int
4261 2003-05-27  Nick Drochak <ndrochak@gol.com>
4263         * basic-long.cs: add regression test for (long)int * (long)int
4264         * cpu-pentium.md: add op_bigmul specification
4265         * inssel-long32.brg: add OP_BIGMUL rule
4266         * mini-ops.h: add OP_BIGMUL
4267         * mini-x86.c: register allocator: handle case where src1 needs to be
4268         in EAX.
4269         * mini.c: substitute special BIGMUL opcode in the tree for 
4270         (long)int * (long)int
4272 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
4274         * jit-icalls.c: call the type ctor on field access if needed.
4276 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
4278         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
4279         to a method (including results of ldelema, bug#43207).
4281 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
4283         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
4284         colors to show exception handler blocks.
4286         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
4287         (fix for pinvoke7.cs).
4289 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4291         * mini.h, mini.c: ensure correct initialization order for types that
4292         require it. Prepare for lazy compilation of jit icall wrappers.
4293         Provide a name for opcode emulation to reduce unneeded mallocing.
4295 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
4297         * mini-x86.c: better register restoring code and profiling
4298         support for tail calls.
4300 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4302         * mini.h, driver.c: prepare for leaf methods optimization.
4304 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4306         * mini.c: get targets of branches before converting a method.
4308 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
4310         * mini.c (optimize_branches): added some experimental code (disbaled) 
4312 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
4314         * mini.c (optimize_branches): fix branch to branch optimization 
4316         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
4318         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
4320         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
4322         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
4323         if needed.
4325 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
4327         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
4328         enable use of interface variables again.
4330         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
4331         I1 to registers because there is no simply way to sign extend 8bit
4332         quantities in caller saved registers on x86.
4334         * inssel-float.brg: set costs of some rules to 2 so
4335         that monobure always select the arch. specific ones if supplied,
4336         regardless of the order we pass the files to monoburg.
4338 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
4340         * mini.c, mini-x86.c: since the magic trampoline for jumps
4341         can't patch the code directly, we do it as soon as the
4342         method gets compiled.
4344 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
4346         * mini-x86.c, mini.h: introduce a new patching method
4347         to support CEE_JMP and tail calls.
4348         * mini.c: obey tail.call. Don't precompile methods target
4349         of CEE_JMP.
4350         * tramp-x86.c: new trampoline code to handle methods
4351         reached through a jump.
4353 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
4355         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
4356         bit values to registers
4358 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
4360         * mini.c (mono_compile_get_interface_var): share interface
4361         variables if possible.
4363 2003-05-16  Martin Baulig  <martin@ximian.com>
4365         * debug-mini.c (mono_init_debugger): New function to initialize
4366         the debugger.  This is not in the debugger since it needs to
4367         access some of mini's internals.
4369 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
4371         * mini.c (mono_method_to_ir): inlining fixes/cleanups
4373 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
4375         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
4376         for value type handling.
4378 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
4380         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
4381         (mono_method_check_inlining): enable inlining of all kinds of wrappers
4383 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
4385         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
4386           the constructor through a proxy.
4388 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4390         * jit-icalls.c, inssel.brg: fixes to array element address
4391         calculations.
4393 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
4395         * mini-x86.c (is_regsize_var): allocate pointer to registers
4397 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
4399         * driver.c: fixed typo, added intrins to the set of optimizations
4400         tested with regressions.
4402 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
4404         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
4405         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
4406         test case.
4408 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
4410         * inssel.brg: remove some common pop instructions without side effects
4412 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
4414         * inssel-x86.brg: fixed thinko in int to double conversions.
4416 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
4418         * mini.c, jit-icalls.c: added runtime thread-static variable support.
4420 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
4422         * inssel-long32.brg: two more missing instructions.
4424 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
4426         * mini.c (mono_emit_call_args): set the cil_code for all arguments
4427         if not already set.
4429 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
4431         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
4432         correctly.
4434         * basic-float.cs: Added tests for negative zero.
4436 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4438         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
4439         a couple of missing operations for long casts, with test cases.
4441 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4443         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
4445 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
4447         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
4448         code size estimation.
4450 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
4452         * mini.c (mono_jit_create_remoting_trampoline): make it work with
4453         abstract methods (fix bug 42542)
4455         * aot.c: add ability to handle array types
4456         
4457 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
4459         * mini.c: Call the _specific versions of the object allocation
4460         functions if possible.
4462 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
4464         * driver.c: call setlocale ().
4466 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
4468         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
4469         windows build.
4471 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
4473         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
4475         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
4476         wrappers (fix bug 42122)
4478 2003-05-04  Martin Baulig  <martin@ximian.com>
4480         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
4482         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
4483         s/mini_set_defaults/mono_set_defaults/g.
4485 2003-05-04  Martin Baulig  <martin@ximian.com>
4487         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
4489 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4491         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
4492         (reported by Don Roberts).
4494 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
4496         * mini.c: temporarily work around two bugs for this release.
4498 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4500         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
4501         that contains -export-dynamic and it makes using the ld script
4502         useless.
4503         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
4505 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4507         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
4508         specific cpu.
4510 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
4512         * mini.c: make sure leave calls all the needed finally blocks,
4513         even when the target jumps out of multiple exception clauses.
4515 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
4517         * ldscript, Makefile.am: add linker script to reduce the number of
4518         exported symbols (should also fix the issues with libwine defining
4519         some of the same symbols in io-layer).
4521 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
4523         * driver.c (mini_main): Avoid assertion when no file name is given on 
4524         the command line.
4526 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
4528         * driver.c: added --version/-V command line option.
4529         Added the inline optimization in the regression tests.
4531 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
4533         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
4534         to the type in the method signature (fixes bug#42134).
4536 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
4538         * mini.c: when inlining, check this is not null only when needed (bug #42135).
4540 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
4542         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
4544 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4546         * driver.c: fixed bug #42100.
4548 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
4550         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
4552 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
4554         * mini.c: moved most of the code required to do inlining to its own
4555         function so it can be reused. Inline also ctors if appropriate.
4557 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
4559         * Makefile.am: Link with -export-dynamic so shared libs loaded by
4560         the runtime can call mono API functions.
4562 2003-04-27  Martin Baulig  <martin@ximian.com>
4564         * debug-mini.c (mono_debug_init_method): Added
4565         `guint32 breakpoint_id' argument; if the method has a breakpoint,
4566         send a notification to the debugger.
4568         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
4569         running in the Mono Debugger, just pass the breakpoint number to
4570         mono_debug_init_method().
4572         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
4574 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
4576         * mini.c: allow some more unsafe compares.
4578 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4580         * mini-x86.c, Makefile.am: make distcheck works (partially from
4581         a patch by Richard Lee <r.h.lee@attbi.com>).
4582         * regset.c, regset.h: removed, they are unused.
4584 2003-04-25  Dick Porter  <dick@ximian.com>
4586         * driver.c: Usage reports the name as 'mono' not 'mini'
4587         * exceptions-x86.c: Build and run on freebsd
4589 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
4591         * Makefile.am: install the program with the 'mono' name and
4592         the library as libmono instead of mini and libmini.
4594 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
4596         * driver.c: provide the APIs for the embedding interface of the old jit.
4598 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
4600         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
4602 2003-04-23  Martin Baulig  <martin@ximian.com>
4604         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
4606         * driver.c: Added `--debug' command line argument to enable
4607         debugging support.
4609 2003-04-23  Martin Baulig  <martin@ximian.com>
4611         * debug.[ch]: Removed.  The code is now in
4612         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
4614         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
4615         last six months.
4617 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
4619         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
4621 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4623         * mini.c:
4624         (mini_cleanup): moved mono_runtime_cleanup call after the call to
4625         mono_domain_finalize.
4626         (mini_method_compile): use mono_method_profile* if the the option is
4627         enabled.
4629 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
4631         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
4632         methods with their wrapper.
4634         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
4635         methods with their wrapper.
4637         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
4638         their wrapper.
4640         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
4641         wrapper.
4643         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
4644         methods.
4646 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
4648         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
4650 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
4652         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
4653         of the mempool. This is slightly faster and uses less memory
4655 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
4657         * mini.c: avoid O(n) allocation for variables.
4659 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4661         * mini.c: handle items on the stack after inlining methods.
4663 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
4665         * mini.c: make the method->opcode optimization dependent
4666         on MONO_OPT_INSTRINS and do it lazily.
4668 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
4670         * driver.c: print overall results at the end of regression run.
4672 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
4674         * inssel.brg: don't overwrite symbolic registers.
4676 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
4678         * inssel-x86.brg: fix conversion from long to float.
4680 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
4682         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
4684 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
4686         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
4688         * driver.c: Added --print-vtable option as in the old JIT.
4690 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
4692         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
4694 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
4696         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
4698 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
4700         * mini.c regalloc.c regalloc.h: Fix memory leak.
4702 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
4704         * aot.c (mono_aot_get_method): register all used strings
4706 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
4708         * mini.c: always intern strings references with ldstr at compile time.
4710 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
4712         * Makefile.am: add BUILT_SOURCES.
4714 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
4716         * driver.c: give a better error message when the assembly to execute
4717         doesn't have an entry point.
4719 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
4721         * Makefile.am: added hack for automake
4723         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
4724         correct sematics.
4726         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
4728 22003-04-07  Martin Baulig  <martin@ximian.com>
4730         * Makefile.am: Added Makefile.am.
4732         * debugger-main.c: Removed, this is now in the debugger where it
4733         belongs.
4735         * mini.pc.in: Call this package `mini' for the moment.