2662065d25e6f9d76f7b7db13796ea7c7e38eede
[mono.git] / mono / mini / ChangeLog
1
2 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3
4         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
5         it can end up using non executable memory on ppc64 systems
6         running ppc32 userspace (fix from Johannes Berg).
7
8 2006-06-14  Dick Porter  <dick@ximian.com>
9
10         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
11         4.1.1
12
13 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
14         * mini.c: Made so that inline is locally disabled if it would
15         trigger a .cctor, because too many apps depend on this behavior
16         (which seems to be also the one of the MS CLR).
17
18 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
19
20         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
21         No idea why this worked before.
22
23         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
24         which branch to outer exception clauses since they could skip the
25         inner finally clauses. Fixes #78633.
26
27         * exceptions.cs: Add a test for the above.
28
29         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
30         Fixes #78629.
31
32         * iltests.il: Add a test for the above.
33
34 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
35
36         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
37         after the end of a try bblock, to prevent asserts in mini_method_compile ().
38
39         * iltests.il: Add a test for the above.
40
41 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
42
43         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
44         
45         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
46         methods as instrinsics.
47
48 2006-06-09  Wade Berrier <wberrier@novell.com>
49
50         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
51         (simple-cee-ops.h ssapre-mini-ops.h)
52
53 2006-06-09  Neale Ferguson <neale@sinenomine.net>
54
55         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
56         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
57         instruction).
58         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
59         * cpu-s390x.md: Fix max. length values for a couple of instructions.
60
61 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
62
63         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
64
65 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
66
67         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
68         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
69         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
70         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
71         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
72         of opcodes, so that bug 78549 should not happen again.
73         * ssapre.c: Updated to use the renamed files.
74
75 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
76
77         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
78         in OP_ATOMIC_EXCHANGE_I4.
79
80 2006-06-07  Wade Berrier <wberrier@novell.com>
81
82         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
83         in mono_debugger_create_notification_function)
84
85 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
86
87         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
88         
89         * mini.c (type_from_stack_type): Disable some changes which do not
90         seem to work.
91
92         * driver.c: Reenable opts.
93
94         * mini.h (MonoStackSlot): New structure to keep track of the verification state
95         of the evaluation stack.
96         
97         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
98         evaluation stack trace at entry to the bblock.
99
100         * mini.c (merge_stacks): New function to perform verification of stack merges.
101         Turned off by default.
102
103         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
104         STACK_MP.
105         
106 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
107
108         * local-propagation.c: Fixed bug 78549.
109
110 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
111
112         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
113
114 2006-06-02  Miguel de Icaza  <miguel@novell.com>
115
116         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
117         tramp-arm.c, tramp-ia64.c
118         (mono_debugger_create_notification_function): Update signature to
119         new signature and use new protocol for creating the notification
120         function.  
121
122         Should fix the build.
123
124 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
125
126         * exceptions-ppc.c (mono_jit_walk_stack)
127         (ves_icall_get_frame_info): Fix the build
128
129 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
130
131         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
132
133 2006-05-31  Raja R Harinath  <rharinath@novell.com>
134
135         * il2tests.2.il: New file for generics CIL tests.  Add test for
136         #78019.
137         * Makefile.am: Update.
138
139         Fix #78019
140         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
141         to nullable types.
142
143 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
144
145         * aliasing.c: Fixed bug 78311.
146
147 2006-05-29  Martin Baulig  <martin@ximian.com>
148
149         * mini-exceptions.c (mono_find_jit_info): When computing the
150         native offset, check whether we're actually inside the method's
151         code; call mono_debug_print_stack_frame() to format the frame.
152         (ves_icall_System_Exception_get_trace): Call
153         mono_debug_print_stack_frame() to format the stack frame.
154         (ves_icall_get_trace): Update to the new debugging API.
155         (mono_jit_walk_stack_from_ctx): Likewise.
156         (ves_icall_get_frame_info): Likewise.
157
158         * mini.c (get_method_from_ip): Use the new debugging API.
159         (mono_print_method_from_ip): Likewise.
160
161         * exceptions-ppc.c
162         (mono_jit_walk_stack): Use the new debugging API.
163         (ves_icall_get_frame_info): Likewise.   
164
165 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
166
167         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
168
169 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
170
171         * mini.c: Added "limitator" to inline for debugging.
172
173 2006-05-24  Martin Baulig  <martin@ximian.com>
174
175         * debug-debugger.c (mono_debugger_init): Create a private,
176         malloc()-based code manager for the notification function and
177         intentionally leak it on exit.  This fixes the crash-on-exit race
178         condition.
179
180         * tramp-amd64.c
181         (mono_debugger_create_notification_function): Added
182         `MonoCodeManager *' argument.
183
184         * tramp-x86.c
185         (mono_debugger_create_notification_function): Added
186         `MonoCodeManager *' argument.
187
188 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
189
190         * aliasing.c: Fixed 64 bit issue.
191         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
192         default since all known bugs are fixed (one more time!).
193
194 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
195
196         * mini.c: write barrier support.
197
198 2006-05-23  Martin Baulig  <martin@ximian.com>
199
200         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
201         check at the top of the file.
202
203 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
204
205         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
206         reverting changes without reason and without changelog entries.
207
208 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
209
210         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
211         to a few opcodes. Fixes #78439.
212
213         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
214         consistency with other archs.
215
216         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
217
218 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
219
220         * debug-debugger.c: fix the build.
221
222 2006-05-17  Martin Baulig  <martin@ximian.com>
223
224         * debug-debugger.c
225         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
226         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
227         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
228         (debugger_attach): Call GC_mono_debugger_add_all_threads().
229
230 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
231
232         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
233
234 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
235
236         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
237         MONO_TYPE_GENERICINST.
238         
239         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
240         MONO_TYPE_GENERICINST.
241
242 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
243
244         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
245         #78325.
246
247 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
248
249         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
250         mempool.
251         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
252
253 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
254
255         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
256         mono_trace_cleanup ().
257
258         * iltests.il: Fix problem with the newly added test.
259
260         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
261         due to register constraints, free up the previous hreg. Fixes #78314.
262
263         * iltests.il: Add new test for #78314.  
264
265         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
266         Interlocked.Add. Fixes #78312.
267
268         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
269         
270 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
271
272         * inssel.brg (mini_emit_virtual_call): Fix a warning.
273
274 2006-05-05  Martin Baulig  <martin@ximian.com>
275
276         * debug-mini.c (mono_debug_open_block): New method.
277
278         * mini-amd64.c
279         (mono_arch_output_basic_block): Call mono_debug_open_block() at
280         the beginning of each basic block.
281
282         * mini-x86.c
283         (mono_arch_output_basic_block): Call mono_debug_open_block() at
284         the beginning of each basic block.
285
286 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
287
288         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
289         default until I understand why they break the build on amd64.
290
291 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
292
293         * mini.c (mini_cleanup): Call mono_cleanup ().
294
295         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
296         errors.
297
298 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
299
300         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
301         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
302         default since all known bugs are fixed, and I cannot reproduce bug
303         77944... I'm asking Matt Hargett to test again after this commit.
304
305 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
306
307         * mini-codegen.c: Fixed typo that thrashed inline.
308
309 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
310
311         * dominators.c (compute_dominators): Avoid using a worklist since
312         it is not correct in some cases. Instead, iterate over all bblocks as
313         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
314
315 2006-04-28  Miguel de Icaza  <miguel@novell.com>
316
317         * mini.c (mono_jit_compile_method_inner): Use
318         mono_prepare_exception_from_error that resets the value
319         internally.
320
321 2006-04-27  Miguel de Icaza  <miguel@novell.com>
322
323         * mini.c: Move the mini_loader_error_to_exception to metadata. 
324         
325 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
326
327         * aliasing.c: Fixed bug 78210.
328
329 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
330
331         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
332         default until all their problems (or the ones they trigger) are fixed.
333
334 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
335
336         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
337         
338         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
339         as loaded only after resolving patches since that could invoke the same method.
340
341         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
342
343         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
344         functions.
345
346         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
347         AOT loader.
348
349         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
350         stack.
351
352         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
353         made from AOT code through the PLT table.
354
355         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
356         holding the plt offset when a call is made to the aot plt trampoline.
357         
358 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
359
360         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
361         amd64 AOT support.
362
363         * Makefile.am (common_sources): Fix build breakage.
364
365         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
366         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
367         intra-assembly calls if possible.
368         
369         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
370
371         * mini-trampolines.c: Handle PLT entries.
372
373         * mini.c: Avoid creating a GOT var for calls.
374
375         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
376         from mscorlib code.
377
378         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
379         from mscorlib code.
380
381         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
382         AOT code.       
383
384         * mini.h: Bump AOT file format version.
385         
386         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
387         covers more cases.
388
389 2006-04-25  Martin Baulig  <martin@ximian.com>
390
391         * driver.c: Disable copyprop, consprop and inline when running
392         inside the debugger.
393
394 2006-04-25  Martin Baulig  <martin@ximian.com>
395
396         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
397         with `get_current_thread' and added `detach'.
398         (MonoDebuggerMetadataInfo): Added `thread_size',
399         `thread_tid_offset', `thread_stack_ptr_offset' and
400         `thread_end_stack_offset'.
401
402 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
403
404         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
405         aot-runtime.c.
406
407         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
408         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
409
410         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
411
412         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
413
414         * aot.c: Add support for ADJUSTED_IID.  
415
416 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
417
418         * aot.c (emit_method_order): Don't align method_order_end.
419
420         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
421         the interface ID changes.
422
423 2006-04-21  Dick Porter  <dick@ximian.com>
424
425         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
426         cleaning up a thread.  Fixes the new part of bug 77470.
427
428 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
429
430         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
431         to managed wrapper.
432                      
433 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
434
435         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
436         
437         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
438         SIGSEGV. Fixes #78072.
439
440         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
441         unregister our SIGABRT handler.
442
443 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
444
445         * mini.c: Disabled inline where it can alter the call stack in a
446         way visible from managed code.
447         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
448         default.
449
450 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
451
452         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
453         on other platforms. Fixes #78089.
454
455 2006-04-13  Martin Baulig  <martin@ximian.com>
456
457         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
458         determine whether we're inside the debugger.
459
460         * debug-debugger.h
461         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
462
463 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
464
465         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
466         handler clauses. Fixes #78024.
467
468         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
469         in the CALL_MEMBASE opcodes. Fixes #78088.
470         (mono_arch_get_vcall_slot_addr): Ditto.
471
472 2006-04-10  Martin Baulig  <martin@ximian.com>
473
474         * debug-debugger.c: The thread handling code has now been moved
475         into ../metadata/threads.c.
476
477 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
478
479         * driver.c (mono_main): Fix --with-gc=none build.
480
481         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
482         (mono_spillvar_offset_float): Ditto.
483         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
484         hreg, not when its !global, since on ia64, there is a third category: stacked
485         registers.      
486
487 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
488
489         * mini.c: set MonoInst->klass for load field address and a few other
490         places.
491
492 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
493
494         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
495
496 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
497
498         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
499         the branch opt changes.
500
501 2006-04-06  Dick Porter  <dick@ximian.com>
502
503         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
504         
505         * wapihandles.c (mini_wapi_seminfo): 
506         * driver.c (mono_main): Add semaphore info option
507
508 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
509
510         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
511         branch optimization changes. Fixes #78009.
512
513 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
514
515         * mini.c: ignore accessibility of methods in managed->native wrappers.
516
517 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
518
519         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
520         
521         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
522
523 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
524
525         * mini.c: Modify the branch optimizations to preserve the invariant that
526         the entries inside the in_bb and out_bb arrays are unique.
527         (mono_unlink_bblock): Avoid creation of new arrays.
528
529 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
530
531         * mini.c (mono_unlink_bblock): Fix regression caused by previous
532         change (#77992).
533
534 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
535
536         * mini.c (optimize_branches): Remove the "optimizations" in
537         the cbranch1/cbranch2 -> branch cases which were causing several
538         problems in the past. Fixes #77986.
539
540 2006-03-31  Chris Toshok  <toshok@ximian.com>
541
542         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
543         default optimizations :(
544
545 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
546
547         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
548         branch.
549
550 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
551
552         * local-propagation.c: Added comments to structs and removed
553         "Mono" prefixes from local tree mover types.
554
555 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
556
557         * Makefile.am (arch_sources): Define this for each architecture so 
558         libmono_la_SOURCES is defined in one place.
559
560 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
561
562         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
563         from handles/.
564
565 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
566
567         * driver.c: print the GC name supplied by configure.
568
569 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
570
571         * local-propagation.c: Added tree mover, and moved here all the
572         local propagation code from mini.c
573         * mini.c: Added support for treeprop, and moved all the local
574         propagation code to local-propagation.c
575         * mini.h: Added support for treeprop
576         * driver.c: Added support for treeprop, enabled consprop, copyprop,
577         treeprop, inline and deadce by default
578         * Makefile.am: Added local-propagation.c
579
580 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
581
582         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
583
584 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
585
586         * debug-debugger.c: make it compile without the Boehm GC.
587
588 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
589
590         * mini.c: fixed issue with mismatch when an icall is registered
591         with multiple names but same address.
592
593 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
594
595         * declsec.c, mini-exceptions.c: use write barrier to set reference
596         fields of managed objects.
597
598 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
599
600         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
601         (can_access_internals): Fix a warning.
602
603         * mini.c (print_method_from_ip): Rename this to 
604         mono_print_method_from_ip so it gets exported.
605
606         * trace.c: Deal with strings inside StringBuilder's containing garbage
607         and fix memory leaks. Fixes #77848.
608
609 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
610
611         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
612         fixes #77787.
613
614 2006-03-16 Neale Ferguson <neale@sinenomine.net>
615         
616         * mini-s390.c: Remove OP_X86_TEST_NULL.
617
618 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
619
620         * mini.c: use the correct GetHashCode() for the moving collector.
621
622 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
623
624         * liveness.c: Regalloc spill cost tuning.
625
626 2006-03-15 Neale Ferguson <neale@sinenomine.net>
627         
628         * mini-s390x.h: Correct S390_LONG macro.
629
630         * mini-s390x.c: Cleanup unused code.
631
632 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
633
634         * jit-icalls.h: New file.
635
636         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
637         icalls and include that instead of including jit-icalls.c.
638
639         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
640         OP_X86 opcodes.
641
642 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
643
644         * mini.c: when checking for member accessibility, also check for
645         friend assemblies and for explicit interface implementations.
646
647 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
648
649         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
650
651         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
652
653         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
654         common cases are done first.    
655
656         * mini-ops.h: Only define platform specific opcodes on the given platform.
657
658         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
659         branch.
660         
661 2006-03-14  Martin Baulig  <martin@ximian.com>
662
663         Revert Paolo's change from r57348:
664
665         * mini.h: don't use gboolean for bitfields.
666         * mini.c: verifier changes for fields and methods accessibility.
667
668 2006-03-13  Neale Ferguson <neale@sinenomine.net>
669
670         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
671
672         * mini-s390x.c: Fix conv_r_un.
673
674         * cpu-s390, cpu-s390x.md: Fix lengths.
675
676 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
677
678         * mini.c: nested types have access to all the nesting
679         levels, not just the enclosing types.
680
681 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
682
683         * mini.c: added a few more verification checks.
684
685 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
686
687         * liveness.c: Merge optimizations from the linear-il branch.
688
689 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
690
691         * mini-ia64.c (emit_call): Add a comment.
692
693         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
694
695         * tramp-ia64.c: Fix some warnings.
696
697 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
698
699         * mini.h: don't use gboolean for bitfields.
700         * mini.c: verifier changes for fields and methods accessibility.
701
702 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
703
704         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
705         lazy icall wrapper changes.
706
707         * dominators.c: Replace all the dominator algorithms with faster
708         ones from the linear-il branch.
709
710         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
711         the mempool.
712
713         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
714         common cases are done first.
715
716         * mini-amd64.c: Fix some warnings.
717
718         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
719         from the mempool.
720
721         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
722         added code.
723
724         * mini.h: Add a missing prototype.
725
726 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
727
728         * mini.c: Compile icall wrappers lazily.
729
730         * mini-codegen.c: Use printf instead of g_print since its much faster.
731
732         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
733         function.
734
735         * mini.c (optimize_branches): Cache the negative result from 
736         remove_block_if_useless ().
737
738         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
739         Also fix some bblock linking issues.
740
741         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
742         assembly files.
743
744         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
745
746         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
747         accessed fields first, for better cache behavior.
748         
749 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
750
751         * mini.c: speedup IList<T> array accesses.
752
753 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
754
755         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
756         inline_costs counter. Fixes #77190.
757
758 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
759
760         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
761         trace messages. Fixes #77706.
762
763 2006-03-04  Martin Baulig  <martin@ximian.com>
764
765         * tramp-amd64.c, tramp-x86.c
766         (mono_debugger_create_notification_function): Use
767         mono_global_codeman_reserve() to allocate a buffer at runtime and
768         return it.
769
770         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
771
772         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
773         notification function at runtime and then call `initialize' in the
774         `MONO_DEBUGGER__debugger_info' vtable.
775
776 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
777
778         * iltests.il: Fix a visibility problem.
779
780 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
781
782         * driver.c, mini.c: add hooks for the counters API.
783
784 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
785
786         * driver.c: show disabled options.
787
788 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
789
790         * linear-scan.c: always use cost-driven selection.
791
792 2006-02-28  Raja R Harinath  <rharinath@novell.com>
793
794         * jit-icalls.c (helper_compile_generic_method): Revert change from
795         2006-02-24.
796
797 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
798
799         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
800
801 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
802
803         * inssel.brg: style fixes, mostly to force the updated monoburg
804         to run for people using svn.
805
806 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
807
808         * mini.c: match monoburg changes.
809
810 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
811
812         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
813         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
814         declaration in the header file.
815
816 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
817
818         * helpers.c: reduce relocations and mem usage.
819
820 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
821
822         * mini.h, mini-codegen.c: disable logging features if
823         requested by configure.
824
825 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
826
827         * mini.c: tiny verifier changes.
828
829 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
830
831         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
832         cpu-pentium.md: stack alignment changes for osx/x86,
833         partially from Geoff Norton <gnorton@customerdna.com>.
834
835 2006-02-24  Raja R Harinath  <harinath@gmail.com>
836
837         * jit-icalls.c (helper_compile_generic_method): Update to changes
838         in metadata/class.c.
839
840 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
841         
842         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
843         
844         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
845         interface calls with large offsets.
846
847 2006-02-23  Raja R Harinath  <rharinath@novell.com>
848
849         * jit-icalls.c (helper_compile_generic_method): Document the
850         special-case we depend on so that we can inflate the method twice
851         with the same context with no bad side-effects.
852
853 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
854
855         * mini-x86.c, mini-amd64.c: fix for case when xen support
856         is disabled.
857
858 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
859
860         * mini-x86.c, mini-amd64.c: generate code to access tls items
861         in a faster way for Xen systems.
862
863 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
864
865         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
866         updates and compilation fixes for the OSX/x86 port, mostly from
867         Geoff Norton <gnorton@customerdna.com>.
868
869 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
870
871         * inssel.brg: faster interface call implementation
872         to sync with the interface_offsets MonoVTable changes.
873
874 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
875
876         * mini.c: more verification checks.
877
878 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
879
880         * mini.c: added a few more verification checks.
881
882 2006-02-17      Neale Ferguson <neale@sinenomine.net>
883
884         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
885         facility on the processor and use it if available.
886
887 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
888
889         * driver.c, aot.c, mini.c: throw exception if the IL code is
890         invalid or unverifiable.
891
892 2006-02-17  Raja R Harinath  <rharinath@novell.com>
893
894         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
895         m.StructField.
896
897 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
898
899         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
900
901 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
902
903         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
904         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
905         handling of instantiated generic valuetypes.
906
907 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
908
909         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
910         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
911         instead.
912
913         * generics.2.cs: Revert the nullable reftypes tests.
914
915 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
916
917         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
918         using __builtin_frame_address (1) as it doesn't work in the presence
919         of optimizations. Hopefully fixes #77273.
920
921         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
922         -> generics.cs change as it doesn't work with some automake versions.
923
924 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
925
926         * mini.c: handle systems that sue a different way to
927         retrieve the stack address of the current thread.
928
929 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
930
931         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
932         it specially in the makefile.
933
934         * generics.2.cs: Add tests for nullable reference types.
935
936 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
937
938         * mini.c: always handle the case when mono_jit_init()
939         is called in a thread different from the main thread,
940         confusing libgc (bug #77309).
941
942 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
943
944         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
945
946 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
947
948         * mini.c: change optimize_branches () to use a single loop
949         and introduce a new optimization to simplify some range checks.
950
951 2006-02-03  Martin Baulig  <martin@ximian.com>
952
953         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
954         and merged with debugger_thread_manager_add_thread().
955         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
956         inform the debugger about the main thread.
957
958 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
959
960         * basic.cs: Add test for div.un/rem.un constant folding.
961
962 2006-02-03  Neale Ferguson <neale@sinenomine.net>
963
964         * cpu-s390x.md: correct int_xor_imm length
965
966 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
967
968         * generics.2.cs: New test for #77442.
969
970         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
971         #77442.
972
973 2006-02-02  Martin Baulig  <martin@ximian.com>
974
975         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
976         <mono/metadata/mono-debug-debugger.h>   
977
978         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
979
980 2006-02-02  Martin Baulig  <martin@ximian.com>
981
982         * debug-debugger.h: New header file for debug-debugger.c.
983
984         * debug-debugger.c: Big API cleanup; don't run the managed Main()
985         function is a separate thread anymore; add support for attaching.
986
987 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
988
989         * tramp-x86.c: Fix a warning.
990
991 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
992
993         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
994         on very large methods.
995
996         * aot.c (load_patch_info): Fix a warning.
997
998 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
999
1000         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
1001         mini-ops.h: alu membase optimizations.
1002
1003 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
1004
1005         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
1006         to speedup StringBuilder.
1007
1008 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
1009
1010         * dominators.c (mono_compute_natural_loops): Fix detection of
1011         loop body start blocks.
1012
1013         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
1014
1015 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
1016
1017         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
1018         #75145.
1019
1020 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
1021
1022         * aliasing.c: Fixed aliasing issue on 64 bit archs.
1023
1024 2006-01-25  Martin Baulig  <martin@ximian.com>
1025
1026         * debug-debugger.c: Moved the `MonoDebuggerManager' and
1027         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
1028         started to cleanup this file a little bit.
1029
1030 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
1031
1032         * mini.c: optimize a codepath frequently happening in generics code.
1033
1034 2006-01-23  Martin Baulig  <martin@ximian.com>
1035
1036         * Makefile.am: Only compile debug-debugger.c on supported platforms.
1037
1038         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
1039         functions directly.
1040
1041         * driver.c: debug-debugger.c is only available if
1042         `MONO_DEBUGGER_SUPPORTED' is defined.   
1043
1044 2006-01-23  Martin Baulig  <martin@ximian.com>
1045
1046         * debug-debugger.c: Only enable this on platforms where the Mono
1047         Debugger is working (x86 and x86_64).
1048
1049 2006-01-21  Martin Baulig  <martin@ximian.com>
1050
1051         The Mono Debugger is now using the normal `mono' instead of the
1052         `mono-debugger-mini-wrapper' when executing managed code.
1053
1054         * debug-debugger.c: New file; previously known as
1055         debugger/wrapper/wrapper.c.
1056
1057         * debug-mini.c (mono_init_debugger): Removed.
1058
1059         * driver.c (mono_main): Added new `--inside-mdb' command line
1060         argument which is used when running inside the debugger.
1061
1062 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
1063
1064         * liveness.c (mono_analyze_liveness): Remove some unused data
1065         structures.
1066
1067 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
1068
1069         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
1070
1071 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
1072
1073         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
1074         depends on implementation details of monobitset.
1075
1076         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
1077         Fixes #77271.
1078
1079 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
1080
1081         * liveness.c: Update after monobitset changes.
1082
1083 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
1084
1085         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
1086
1087 2006-01-11 Neale Ferguson <neale@sinenomine.net>
1088
1089         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
1090
1091         * mini-s390x.c: Remove warning messages.
1092
1093 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
1094
1095         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
1096
1097 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
1098
1099         * generics.2.cs: Add ldelem/stelem_any test.
1100
1101 2006-01-10 Neale Ferguson <neale@sinenomine.net>
1102
1103         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
1104
1105 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
1106
1107         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
1108         
1109 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
1110
1111         * generics.2.cs: Reenable vtype tests.
1112
1113         * inssel-x86.brg: Remove an icorrect valuetype rule.
1114
1115 2006-01-06 Neale Ferguson <neale@sinenomine.net>
1116
1117         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
1118         initial support for OP_ABS.
1119
1120 2006-01-05 Neale Ferguson <neale@sinenomine.net>
1121
1122         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
1123
1124 2006-01-05 Neale Ferguson <neale@sinenomine.net>
1125
1126         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
1127         conversion and implement LADD/LSUB.
1128
1129         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
1130         architectures.
1131
1132 2006-01-05 Neale Ferguson <neale@sinenomine.net>
1133
1134         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
1135
1136         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
1137         architectures.
1138
1139 2006-01-05 Neale Ferguson <neale@sinenomine.net>
1140
1141         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
1142         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
1143         (stack walk problem).
1144
1145 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
1146
1147         * aot.c (mono_aot_load_method): Fix a warning.
1148
1149 2006-01-03  Neale Ferguson <neale@sinenomine.net>
1150
1151         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
1152
1153 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
1154
1155         * iltests.il: Add test for #77148.
1156
1157         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
1158         #77148.
1159
1160 2006-01-03  Neale Ferguson <neale@sinenomine.net>
1161
1162         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
1163
1164 2006-01-03  Neale Ferguson <neale@sinenomine.net>
1165
1166         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
1167         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
1168
1169         * basic-long.cs: Add lconv-to-r4/r8 tests.
1170
1171 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
1172
1173         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
1174
1175         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
1176         here as on other archs.
1177
1178 2005-12-29 Neale Ferguson <neale@sinenomine.net>
1179
1180         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
1181
1182 2005-12-29 Neale Ferguson <neale@sinenomine.net>
1183
1184         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
1185         
1186         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
1187
1188         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
1189         instrument_prolog; Add memory_barrier instruction.
1190
1191 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
1192
1193         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
1194
1195 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
1196
1197         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
1198
1199         * aliasing.c inssel.brg: Fix warnings.
1200
1201         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
1202         could skip initialization of some parts of memory.
1203
1204         * mini.c mini-ia64.c: Fix warnings.
1205
1206         * inssel-sparc.brg: Add an implementation of lneg which actually works.
1207
1208 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
1209
1210         * aliasing.c (mono_build_aliasing_information): Add a workaround for
1211         a crash seen on sparc.
1212
1213         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
1214         
1215         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
1216
1217 2005-12-21 Neale Ferguson <neale@sinenomine.net>
1218
1219         * mini-ops.h: Add s390_backchain instruction
1220
1221         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
1222
1223         * cpu-s390.md: Add s390_backchain instruction
1224
1225         * mini-s390.c: Significant ABI changes
1226
1227         * mini-s390.h: Cater for zero length structures
1228
1229 2005-12-20 Neale Ferguson <neale@sinenomine.net>
1230
1231         * mini-s390.c: ABI fixes
1232
1233         * inssel-s390.brg: Remove debug statements
1234
1235         * cpu-s390.md: Fix length of ATOMIC_xx operations
1236
1237 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
1238
1239         * basic-float.cs: Add float<->long conversion tests.
1240
1241 2005-12-16 Neale Ferguson <neale@sinenomine.net>
1242
1243         * mini-s390.c: Fix LOCALLOC processing.
1244
1245         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
1246
1247 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * iltests.il: Add tests for some opcodes not covered by the other
1250         tests.
1251
1252 2005-12-15 Neale Ferguson <neale@sinenomine.net>
1253
1254         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
1255         register loading for Tail processing; Correct trace output.
1256
1257         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
1258
1259         * cpu-s390.md: Correct size of jmp instruction. 
1260
1261 2005-12-13 Neale Ferguson <neale@sinenomine.net>
1262
1263         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
1264
1265 2005-12-13 Neale Ferguson <neale@sinenomine.net>
1266
1267         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
1268           Bring s390 up to current level.
1269
1270 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
1271
1272         * generics.2.cs: Disable the newly added tests as they do not work yet.
1273         
1274         * generics.2.cs: Add valuetype tests.
1275
1276 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
1277
1278         * basic-long.cs: Add i4->u8 test.
1279
1280         * objects.cs: Add tests for JIT intrinsic.
1281
1282         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
1283         optimizations lost by a mistake.
1284
1285 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
1286
1287         * basic-long.cs: Remove a test moved to objects.cs.
1288
1289         * arrays.cs: Add more array tests.
1290
1291 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
1292
1293         * arrays.cs: Add new tests for multi-dimensional arrays.
1294
1295 2005-12-06  Raja R Harinath  <rharinath@novell.com>
1296
1297         * Makefile.am (test_sources2): Add generics.2.cs.
1298         (EXTRA_DIST): Add test_sources2.
1299
1300 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
1301
1302         Support for boxing and unboxing nullable types as well as the
1303         isinst operation on nullables, per the CLI ammendment.
1304
1305         * inssel.brg (CEE_ISINST): Special case for nullable
1306
1307         * mini.c (handle_unbox_nullable): new method
1308         (handle_box): Special case for nullable types
1309         (mono_method_to_ir): Call handle_unbox_nullable in correct
1310         places.
1311
1312         * generics.2.cs: New test suite
1313
1314         * Makefile.am: Support for regression tests with generics.
1315
1316 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
1317
1318         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
1319         allocated to registers. Fixes #76800.
1320
1321 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
1322
1323         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
1324
1325 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
1326
1327         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
1328         of platforms.
1329
1330 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
1331
1332         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
1333         objects.cs.
1334
1335         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
1336         
1337         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
1338 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
1339
1340         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
1341         single precision before storing to a single precision location.
1342
1343 2005-11-28  Raja R Harinath  <rharinath@novell.com>
1344
1345         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
1346
1347 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
1348
1349         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
1350         correct files.
1351
1352         * basic.cs: Remove test_0_byte_compares test which was moved to
1353         objects.cs a long time ago.
1354
1355 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
1356
1357         * aliasing.c: Fixed aliasing issue on 64 bit archs.
1358
1359 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
1360
1361         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
1362         handlers are called.
1363
1364         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
1365         throwing code.
1366
1367          * mini-ia64.c: Add support for the throw->branch exception 
1368         optimization.   
1369
1370         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
1371
1372 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
1373
1374         * mini.c: Enabled "fastpath" deadce :-)
1375         
1376 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
1377
1378         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
1379         alias analysis pass to support it.
1380         * mini.h: Likewise.
1381         * ssa.c: Likewise.
1382         * liveness.c: Likewise (liveness computation can use aliasing
1383         information to be more accurate).
1384         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
1385         moreover made so that "--compile-all" uses the given optimization
1386         flags and not the default ones.
1387         * aliasing.c: Alias analysis (new file).
1388         * aliasing.h: Likewise.
1389         * Makefile.am: added "aliasing.c" and "aliasing.h".
1390         
1391 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
1392
1393         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
1394         OP_L opcodes.
1395
1396 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
1397
1398         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
1399         fp >= end_of_stack exit condition, as it is not needed, and it might
1400         become true for fp eliminated frames.
1401
1402 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
1403
1404         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
1405         coded offsets.
1406
1407 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
1408
1409         * mini-arm.c: fixed alignment of doubles/longs to match
1410         the C ABI (bug #76635).
1411
1412 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
1413
1414         * aot.c: fix compilation with --enable-minimal=aot.
1415
1416 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
1417
1418         * mini-arm.c: fixed compatibility with the new
1419         floating point emulator package for compares.
1420
1421 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
1422
1423         * mini.c : reverted sig->pinvoke changes (r51396-51397).
1424
1425 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
1426
1427         * mini-exceptions.c (print_stack_frame): Output to stderr.
1428         (mono_handle_native_sigsegv): Ditto.
1429
1430 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
1431
1432         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
1433         OP_LCONV_TO_OVF_I implementation.
1434
1435         * mini-amd64.c: Add support for the throw->branch exception 
1436         optimization.
1437
1438         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
1439         when the catch clause catches a more general exception, i.e. Object.
1440
1441 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
1442
1443         * cpu-ia64.md: Remove unused opcodes.
1444
1445         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
1446         specific defines for architectures defining USE_SIGACTION.
1447
1448         * mini-ia64.c: Fix some warnings.
1449
1450         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
1451         version seemed to skip a frame.
1452
1453 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
1454
1455         * mini.c: Clean up the usage of sig->pinvoke flag. Now
1456         only calls which are made to native code use this flag.
1457
1458 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
1459
1460         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
1461         varargs methods as well.
1462         
1463         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
1464         which have save_lmf set. Reorganize methods prologs a bit.
1465
1466         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
1467         debugger to the proper place.
1468
1469 2005-10-29  Martin Baulig  <martin@ximian.com>
1470
1471         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
1472         when running inside the debugger until the debugger has support
1473         for it.
1474
1475 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
1476
1477         * mini.h: Fix a warning.
1478
1479 2005-10-24  Miguel de Icaza  <miguel@novell.com>
1480
1481         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
1482         we expose publicly, this returns the string.
1483
1484 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
1485
1486         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
1487         with fp elimination.
1488
1489 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
1490
1491         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
1492         native stacktrace using the glibc 'backtrace' function if available.
1493
1494 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
1495
1496         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
1497
1498         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
1499         handle SIGSEGVs received while in native code.
1500
1501         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
1502         code, call mono_handle_native_sigsegv which will abort the runtime
1503         after printing some diagnostics, instead of converting it into a
1504         confusing NullReferenceException.
1505
1506 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
1507
1508         * cpu-pentium.md: Remove unused opcodes.
1509
1510 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
1511
1512         * mini-amd64.h (MonoLMF): Add rsp field.
1513
1514         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
1515         the lmf too.
1516
1517 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
1518
1519         * mini-codegen.c (get_register_spilling): Fix some warnings.
1520
1521 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
1522
1523         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
1524         elimination during exception handling. Enable fp elimination by
1525         default.
1526
1527         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
1528         elimination.
1529
1530 2005-10-16  Martin Baulig  <martin@ximian.com>
1531
1532         * mini-exceptions.c
1533         (mono_debugger_run_finally): New public method for the debugger.
1534
1535 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
1536
1537         * debug-mini.c (mono_debug_init_method): Fix warning.
1538
1539         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
1540         the 'exname' parameter const to fix some warnings.
1541
1542 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
1543
1544         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
1545         introduced by the previous patch.
1546
1547 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
1548
1549         * basic-float.cs: Add test for precision of float arithmetic.
1550
1551         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
1552         when loading/storing single values from/to memory.
1553
1554         * mini.c (mono_jit_compile_method_with_opt): Create the function
1555         pointers in the correct domain.
1556
1557 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
1558
1559         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
1560         introduced by previous patch.
1561         
1562         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
1563         when out_filter_idx is NULL.
1564
1565         * mini-exceptions.c: Don't run filter clauses twice during exception
1566         handling. Fixes #75755.
1567
1568 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
1569
1570         * aot.c: Add support for ldflda wrappers.
1571
1572         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
1573         #75902.
1574
1575 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
1576
1577         * mini.c, mini.h: do not consider exception handlers blocks when
1578         setting up interface variables.
1579
1580 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
1581
1582         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
1583
1584 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
1585
1586         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
1587         causes a regression.
1588
1589         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
1590
1591 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
1592
1593         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
1594         of the OP_P definitions.
1595
1596         * TODO: Add a proposal for dealing with the CEE/OP mess.
1597
1598         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
1599         optimizations from the x86 port.
1600
1601         * cpu-amd64.md: Ditto.
1602
1603         * basic.cs basic-long.cs: Add tests.
1604
1605 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
1606
1607         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
1608         Patrik Torstensson's implementation of my exception-handling
1609         optimization idea, when the exception object is not used
1610         (bug #62150).
1611
1612 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
1613
1614         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
1615         of the mul_imm optimizations from the old jit.
1616
1617 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
1618
1619         * mini.c, liveness.c: patch by Patrik Torstensson and
1620         Zoltan Varga to improve performance in methods with
1621         exception clauses.
1622
1623 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
1624
1625         * driver.c: Remove 'Globalization' entry from --version.
1626
1627 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
1628
1629         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
1630         there is a profiler interested in JIT events.
1631
1632         * aot.c: Load profile files produced by the AOT profiling module, and
1633         reorder methods based on the profiling info. Add a 'method_order' table
1634         to the AOT file to make mono_aot_find_jit_info work with the reordered
1635         methods.
1636
1637         * mini.h: Bump AOT file version info.
1638
1639 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
1640
1641         * mini-arm.h: work around what looks like a gcc bug when optimizations
1642         are enabled.
1643
1644 2005-09-28  Raja R Harinath  <rharinath@novell.com>
1645
1646         * Makefile.am (AM_CFLAGS): Don't use += to append inside
1647         conditionals.  Use ...
1648         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
1649
1650 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
1651
1652         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
1653         to determine the amount of memory to copy when passing valuetypes.
1654
1655         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
1656         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
1657
1658 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
1659
1660         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
1661         information about aot.
1662
1663 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
1664
1665         * *.c: Replace the use of {Enter,Leave}CriticalSection with
1666         macros. This will allow a deadlock debugger to easily be plugged
1667         in.
1668
1669 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
1670
1671         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
1672
1673 2005-09-27  Raja R Harinath  <rharinath@novell.com>
1674
1675         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
1676         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
1677         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
1678         ($(arch_built)) [CROSS_COMPILING]: Error out.
1679
1680 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
1681
1682         * aot.c: Add support for the no_special_static flag for classes.
1683
1684 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
1685
1686         * Reapply reverted patches.
1687
1688         * *: Revert r50174 as well.
1689
1690         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
1691
1692 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
1693
1694         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
1695
1696 2005-09-23  Miguel de Icaza  <miguel@novell.com>
1697
1698         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
1699         part of the SIG_HANDLER_SIGNATURE.  
1700
1701 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
1702
1703         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
1704         statistics.
1705
1706         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
1707         introduced by previous patch.
1708
1709 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
1710
1711         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
1712         saved registers too.
1713
1714         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
1715         upon the information returned by get_call_info ().
1716         
1717         * mini-x86.c (add_float): Fix stack size calculation.
1718         (mono_arch_call_opcode): Rewrite this so it works based up the
1719         information returned by get_call_info ().
1720         (mono_arch_get_this_vret_args): Ditto.
1721
1722 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
1723
1724         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
1725         in cinfo to determine the registers which need to be used.
1726
1727 2005-09-20  Miguel de Icaza  <miguel@novell.com>
1728
1729         * driver.c (mono_main): Add --server and --desktop flags. 
1730
1731 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
1732
1733         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
1734         registers as global registers.
1735
1736         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
1737         longer needed with the new register allocator.
1738
1739         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
1740
1741         * cpu-ia64.md: Remove unused opcodes.
1742         
1743         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
1744         
1745 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
1746
1747         * cpu-amd64.md: Remove unused opcodes.
1748
1749         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
1750         needed with the new register allocator.
1751
1752         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
1753         reg-reg moves.
1754
1755 2005-09-16  Raja R Harinath  <rharinath@novell.com>
1756
1757         * Makefile.am (check-local): Don't invoke semdel-wrapper.
1758
1759 2005-09-16  Martin Baulig  <martin@ximian.com>
1760
1761         * exceptions-amd64.c
1762         (throw_exception): Don't call mono_debugger_throw_exception() if
1763         we're a rethrow - see the FIXME in the code.
1764
1765 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
1766
1767         * mini.c (mono_init_exceptions): This only works on some architectures.
1768         
1769 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
1770
1771         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
1772         on ia64.
1773
1774         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
1775
1776         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
1777         now in mini-exceptions.c.
1778
1779 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
1780
1781         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
1782         now in mini-exceptions.c.
1783
1784 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
1785
1786         * exceptions-x86.c: Applied patch from Patrik Torstensson 
1787         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
1788
1789         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
1790         code into mini-exceptions.c. Add some assertions to it.
1791
1792 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
1793
1794         * aot.c (emit_section_change): Applied patch from "The Software Team" 
1795         (<software@solmersa.com>). Fix as errors on windows.
1796
1797 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
1798
1799         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
1800         method info into the LMF.
1801
1802 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
1803         
1804         * mini-ia64.c: Add proper unwind info for method epilogs.
1805
1806         * exceptions-ia64.c: Add some code to help debugging.
1807         
1808         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
1809
1810         * mini-exceptions.c: Fix warning.
1811
1812 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
1813
1814         * mini.c: Really fix build.
1815
1816         * mini-x86.c mini-amd64.c: Fix build.
1817
1818 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
1819
1820         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
1821
1822         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
1823         some Interlocked methods as intrinsics.
1824
1825         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
1826         for Thread methods as well.
1827
1828         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
1829
1830         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
1831
1832         * mini-ia64.c mini-x86.c mini-amd64.c 
1833         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
1834         OP_MEMORY_BARRIER.
1835         
1836         * mini.c (mono_init_exceptions): Fix build breakage.
1837
1838 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
1839
1840         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
1841         of instructions. Use the new ia64_unw_op macros for emitting unwind
1842         info.
1843
1844         * mini.c (mono_init_exceptions): Initialize exception handling
1845         related trampolines at startup.
1846
1847 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
1848
1849         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
1850
1851 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
1852
1853         * mini.c: Handle type loading errors gracefully during compilation and
1854         throw the appropriate exception.
1855
1856 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
1857
1858         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
1859         for the mono binary.
1860
1861 2005-09-09  Martin Baulig  <martin@ximian.com>
1862
1863         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
1864         the release.
1865
1866 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
1867
1868         * mini-arm.h: use emulation for conv.r.un for the release.
1869
1870 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
1871
1872         * mini-arm.c, objects.cs: more fixes and tests for them.
1873
1874 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
1875
1876         * mini-arm.c: align structures to at least 4 bytes to be able
1877         to keep our current optimized memcpy.
1878
1879 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
1880
1881         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
1882
1883 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1884
1885         * mini.c: ignore SIGPIPE.
1886
1887 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
1888
1889         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
1890
1891         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
1892
1893 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
1894
1895         * mini.h: Add prototype for mono_allocate_stack_slots_full.
1896
1897 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
1898
1899         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
1900         exception handling support.
1901         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
1902         patch by Brian Koropoff <briank@marakicorp.com>).
1903
1904 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
1905
1906         * mini.c: revert another 'optimization' which breaks when
1907         items on the eval stack need to be saved at a basic block end
1908         (bug #75940).
1909
1910 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
1911
1912         * jit-icalls.c: for arrays, ensure we always provide
1913         lower bounds.
1914
1915 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
1916
1917         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
1918         
1919         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
1920
1921 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
1922
1923         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
1924         arguments in their original register.
1925
1926 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
1927
1928         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
1929         memset/memcpy.
1930
1931         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
1932         when ssapre is enabled.
1933
1934         * inssel-long.brg: Fix bug in previous patch.
1935
1936         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
1937         multiplication by a constant.
1938
1939 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
1940
1941         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
1942         icc.
1943
1944         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
1945         saving registers.
1946
1947 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
1948
1949         * inssel-arm.brg: apply changes tested by Brian Koropoff
1950         <briank@marakicorp.com>.
1951
1952 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
1953
1954         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
1955         
1956 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
1957
1958         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
1959         to the same register if dreg is just a base register.
1960         (print_ins): Improve printing of membase opcodes.
1961
1962         * inssel-x86.brg: Add optimized ldind(reg) rules.
1963
1964         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
1965
1966 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
1967
1968         * mini.c: when running under valgrind, set the stack bottom for
1969         the GC at the actual approximate stack for the app (fixes running
1970         mono with valgrind).
1971
1972 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
1973
1974         * mini.c: do no break at the first valuetype to init found
1975         (fixes bug #75791).
1976
1977 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
1978
1979         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
1980
1981 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
1982
1983         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
1984
1985 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
1986
1987         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
1988
1989 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
1990
1991         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
1992
1993         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
1994         code.
1995
1996         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
1997         code.
1998
1999         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
2000         methods.
2001
2002 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
2003
2004         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
2005
2006 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
2007
2008         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
2009         in the tail recursion optimization.
2010
2011         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
2012         debug info into the assembly file.
2013
2014         * iltests.il: Add test for filter regions.
2015
2016         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
2017         initial stack of filter regions. Fixes #75755.
2018
2019 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
2020
2021         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
2022         stack requirements.
2023
2024 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
2025
2026         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
2027         the check for an already compiled method on non-ia64 platforms.
2028         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
2029         proper domain.
2030
2031         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
2032
2033         * inssel-x86.brg: Add some optimized call rules.
2034
2035 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
2036
2037         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
2038         method here.
2039
2040         * mini.h mini-trampolines.c: Pass the trampoline argument to 
2041         mono_arch_patch_delegate_trampoline.
2042
2043         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
2044
2045         * mini-trampolines.c: Fix build.
2046
2047         * mini-amd64.h: Add delegate trampolines.
2048
2049         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
2050
2051         * inssel-amd64.brg: Add optimized call rules.
2052         
2053         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
2054
2055         * inssel-ia64.brg: Add optimized ldind(reg) rules.
2056
2057 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
2058
2059         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
2060         change.
2061
2062         * mini-ia64.c: Remove LMF fixmes.
2063
2064         * mini-ia64.h: Remove most fields from LMF.
2065
2066         * inssel-ia64.brg (stmt): Fix unaligned access errors.
2067
2068         * mini-trampolines.c: Add support for IA64 function descriptors.
2069
2070         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
2071         for IA64 function descriptors.
2072
2073 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
2074
2075         * tramp-arm.c: patch the vtable for virtual calls. Added
2076         support code to register/unregister the LMF.
2077         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
2078         more LMF work.
2079
2080 2005-08-19  Dick Porter  <dick@ximian.com>
2081
2082         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
2083         bit value if needed.
2084
2085 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
2086
2087         * mini.c (mini_get_method): Move handling of wrapper data here.
2088
2089         * mini.c (mono_method_to_ir): Add support for dynamic methods.
2090
2091         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
2092         virtual.
2093
2094         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
2095         bblock->code does not remain empty.
2096
2097 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
2098
2099         * arrays.cs: Add regression test for #75832.
2100
2101         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
2102         rules. Fixes #75832.
2103
2104         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
2105         instruction scheduling.
2106
2107 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
2108
2109         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
2110
2111 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
2112
2113         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
2114
2115         * mini-codegen.c: Fix VC build.
2116
2117         * cpu-pentium.md: Increase length of atomic_exhange_i4.
2118
2119 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2120
2121         * mini.h: fix signature for mono_register_opcode_emulation.
2122
2123 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
2124
2125         * mini.c: Get rid of most of the helper_sig_... constants using
2126         mono_create_icall_signature ().
2127
2128 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
2129
2130         * jit-icalls.c (helper_ldstr): New helper function.
2131
2132         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
2133
2134         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
2135         throw, load the string using a helper call instead of creating a string object.
2136
2137         * aot.c: Update after LDSTR changes.
2138
2139         * mini.h: Bump AOT file version.
2140         
2141         * aot.c: Save class size info into the AOT file. Print more statistics during
2142         compilation.
2143
2144         * mini.h: Bump AOT file version.
2145
2146         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
2147         ordering of disasm cases. Fixes #74957.
2148
2149 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
2150
2151         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
2152         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
2153         the generic code needed for the ARM port.
2154
2155 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
2156
2157         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
2158         inssel-arm.brg: more ARM features and fixes.
2159
2160 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
2161
2162         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
2163         ARM port work in progress.
2164
2165 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
2166
2167         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
2168
2169         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
2170
2171         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
2172
2173         * inssel.brg (mini_emit_memset): Add support for unaligned access.
2174
2175         * *-ia64.*: Ongoing IA64 work.
2176         
2177         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
2178
2179 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
2180
2181         * TODO: Remove out-of-data todo stuff.
2182
2183         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
2184         dead code.
2185
2186         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
2187
2188         * mini.h: Bump corlib version.
2189
2190 2005-07-27  Martin Baulig  <martin@ximian.com>
2191
2192         * mini-codegen.c
2193         (create_copy_ins): Added `const unsigned char *ip' argument; set
2194         `copy->cil_code' from it.
2195
2196 2005-07-27  Martin Baulig  <martin@ximian.com>
2197
2198         * mini-exceptions.c (mono_handle_exception): Don't call
2199         mono_debugger_handle_exception() for filters.
2200
2201 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
2202
2203         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
2204         as well.
2205
2206 2005-07-26  Martin Baulig  <martin@ximian.com>
2207
2208         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
2209
2210         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
2211         helper_compile_generic_method() if the method is actually virtual
2212         and non-final.
2213
2214 2005-07-26  Martin Baulig  <martin@ximian.com>
2215
2216         * mini.c
2217         (trampoline_code): Renamed to `mono_trampoline_code' and made it
2218         public; this is now accessed directly by the debugger.
2219         (mono_generic_trampoline_code): Removed.
2220
2221         * debug-mini.c
2222         (mono_debug_init_method): Also add interncalls and wrappers.
2223
2224 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
2225
2226         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
2227
2228 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
2229
2230         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
2231
2232 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
2233
2234         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
2235
2236 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
2237
2238         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
2239         getting TLS offsets on AMD64 too.
2240
2241 2005-07-20  Kornél Pál <kornelpal@hotmail.com>
2242
2243         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
2244
2245 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
2246
2247         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
2248         inssel-arm.brg, mini-arm.h: ARM port work in progress.
2249
2250 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
2251
2252         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
2253
2254         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
2255         to mini.c.
2256
2257         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
2258         mono_sparc_is_virtual_call ().
2259         
2260         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
2261
2262         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
2263         trampoline parameters.
2264
2265         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
2266         
2267         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
2268         to mono_arch_get_vcall_slot_addr.
2269
2270         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
2271         trampoline code.
2272
2273         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
2274
2275 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
2276
2277         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
2278
2279 2005-07-19  Martin Baulig  <martin@ximian.com>
2280
2281         * exceptions-amd64.c (throw_exception): Call
2282         mono_debugger_throw_exception() here like we're doing it on i386.
2283
2284 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
2285
2286         * mini-ia64.c: Add optimized TLS access support.
2287
2288 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
2289
2290         * mini-exceptions.c: Ongoing IA64 work.
2291
2292         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
2293
2294         * mini.c: Use the default optimization set when embedding. Fixes
2295         #75194.
2296
2297 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
2298
2299         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
2300         of trampolines to a separate file.
2301
2302         * mini-trampolines.c: New file.
2303
2304         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
2305         separate file.
2306         
2307         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
2308         amd64/ia64 code.
2309
2310         * mini-codegen.c: Fix cygwin build.
2311
2312 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
2313
2314         * mini.c: Add some minor changes needed by the IA64 port.
2315
2316         * *-ia64.*: Ongoing IA64 work.
2317
2318 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
2319
2320         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
2321         trampolines into arch-independent and arch-dependent parts.
2322
2323         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
2324
2325 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
2326
2327         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
2328
2329         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
2330         the xp-regalloc-branch for amd64.
2331
2332         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
2333         xp-regalloc-branch for x86.
2334
2335 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
2336
2337         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
2338
2339 2005-07-06  Martin Baulig  <martin@ximian.com>
2340
2341         * mini.c
2342         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
2343         (mono_jit_runtime_invoke): Likewise.
2344
2345 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
2346
2347         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
2348         on x86 too.
2349         
2350         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
2351         without loading their metadata. Reorganize the file format so exception handling+
2352         debug info is kept separate from normal method info. Create MonoJitInfo 
2353         structures for methods lazily.
2354
2355         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
2356         loading metadata.
2357         (x86_class_init_trampoline): Patch AOT class init trampolines too.
2358
2359         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
2360
2361         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
2362         in AOT code.
2363
2364         * mini.h: Bump AOT file version.
2365
2366 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
2367
2368         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
2369
2370 2005-07-01  Raja R Harinath  <rharinath@novell.com>
2371
2372         * Makefile.am (check-local): Call semdel-wrapper.
2373
2374 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
2375
2376         * mini-x86.c: Revert the last change as it seems to break the build..
2377
2378 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
2379
2380         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
2381         
2382         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
2383
2384 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
2385
2386         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
2387         outside of the macro, so strange stuff doesn't happen with gcc4
2388         (NEW_AOTCONST_TOKEN): Likewise.
2389
2390 2005-06-28  Martin Baulig  <martin@ximian.com>
2391
2392         * mini.c (mini_class_is_system_array): New static method; use this
2393         instead of `klass->parent == mono_defaults.array_class' everywhere
2394         since this also works for the new generic array class.
2395
2396 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
2397
2398         * inssel.brg: Remove warnings.
2399
2400 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
2401
2402         * mini-ia64.c: Ongoing IA64 work.
2403
2404         * basic-float.cs: Add float->i1 conversion test.
2405
2406         * iltests.il: Add conv.u4 test.
2407
2408 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
2409
2410         * inssel-long.brg: Fix bug caused by last change.
2411
2412 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
2413
2414         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
2415         BSDs.  Allows the x86 JIT to work on OSX86
2416
2417 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
2418
2419         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
2420         u4->i8 conversion.
2421
2422         * mini-ia64.c: Ongoing IA64 work.
2423
2424 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
2425
2426         * mini-ia64.c: Ongoing IA64 work.
2427
2428         * driver.c: Clean up jit_code_hash as well when using --regression.
2429
2430         * inssel-long.brg: Fix long->i4/u4 conversion rules.
2431
2432         * basic-long.cs: Add tests for long->u4 conversion.
2433
2434 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
2435
2436         * mini.c: Take mono_get_domainvar out of macros. This makes sure
2437         that we do not depend on undefined C behavior: the order stuff
2438         gets evaluated within an expression. Fixes mono when compiled on
2439         GCC 4.
2440
2441 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
2442
2443         * *-ia64.*: Ongoing IA64 work.
2444
2445         * aot.c: Lower memory usage while loading AOT methods.
2446
2447         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
2448
2449         * mini.h: Bump AOT file format version.
2450
2451 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
2452
2453         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
2454
2455 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
2456
2457         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
2458         not on callee assembly). Fixed some comments.
2459
2460 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
2461
2462         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
2463         it gets proper disassembly.
2464         (emit_method_info): Remove some dead code.
2465
2466         * mini.c (mini_method_compile): Allways allocate the GOT var in
2467         mono_method_to_ir for emulating opcodes.
2468
2469 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
2470
2471         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
2472         before freeing the code memory. Fixes #74990.
2473
2474         * objects.cs: Add regression test for #74992.
2475
2476         * liveness.c: Extend live ranges of arguments to the beginning of the
2477         method. Fixes #74992.
2478
2479         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
2480         so it points into the faulting instruction.
2481
2482 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
2483
2484         * jit-icalls.c (mono_imul_ovf): Add exception handling.
2485
2486         * *-ia64.*: Ongoing IA64 work.
2487
2488         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
2489
2490 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
2491
2492         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
2493
2494         * *-ia64.*: Ongoing IA64 work.
2495
2496 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
2497
2498         * basic-long.cs: Add tests for add/sub.ovf.
2499
2500         * basic.cs: Add tests for sub.ovf.
2501
2502         * *-ia64.*: Ongoing IA64 work.
2503
2504 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
2505
2506         * *-ia64.*: Ongoing IA64 work.
2507
2508         * basic.cs: Add conv.ovf.i4.un test.
2509
2510 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
2511
2512         * mini.c: (remove_block_if_useless) Fixed bug 75061.
2513         
2514 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2515
2516         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
2517
2518 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
2519
2520         * *-ia64.*: Ongoing IA64 work.
2521
2522 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2523
2524         * trace.[ch]:
2525         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
2526
2527 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
2528
2529         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
2530
2531 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
2532
2533         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
2534
2535         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
2536         of a call is callable by a near call.
2537
2538 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
2539
2540         * mini-ia64.c: Ongoing IA64 work.
2541
2542 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
2543
2544         * genmdesc.c: Make the generated array non-static.
2545
2546         * inssel-long.brg: Fix LSHR_IMM rule.
2547
2548         * *-ia64.*: Ongoing IA64 work.
2549
2550         * *-ia64.*: Ongoing IA64 work.
2551
2552 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
2553
2554         * *-ia64.*: Ongoing IA64 work.
2555
2556         * *-ia64.*: Ongoing IA64 work.
2557         
2558         * mini-ia64.c: Ongoing IA64 work.
2559
2560         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
2561
2562 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
2563
2564         * objects.cs basic-calls.cs: Move some tests to objects.cs.
2565         
2566         * objects.cs basic-long.cs: Move some tests to objects.cs.
2567
2568 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
2569
2570         * *-ia64.*: Ongoing IA64 work.
2571
2572         * iltests.il: Add a new test.
2573
2574         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
2575         newobj. Fixes #75042.
2576
2577 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
2578
2579         * *-ia64.*: Ongoing IA64 work.
2580         
2581         * *-ia64.*: Ongoing IA64 work.
2582         
2583         * *-ia64.*: Ongoing IA64 work.
2584
2585         * basic.cs objects.cs: Move tests accessing static variables as well.
2586
2587         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
2588
2589 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
2590
2591         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
2592
2593         * driver.c: Always print failed tests.
2594
2595         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
2596         frame pointer.
2597
2598         * *ia64*: Ongoing IA64 work.
2599
2600 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
2601
2602         * basic.cs: Add tests for add.ovf. Fix warnings.
2603
2604 2005-05-18  Miguel de Icaza  <miguel@novell.com>
2605
2606         * driver.c (mono_main): Avoid crash if no argument is passed to
2607         --break;  Do not use g_error, but f_printf.   And fix all other
2608         ocurrences of the same crash.
2609
2610 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
2611
2612         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
2613         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
2614         Fixes #74742.
2615
2616 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
2617
2618         * *-ia64.*: Add beginnings of IA64 backend.
2619
2620         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
2621
2622 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
2623
2624         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
2625         Fixes #74925.
2626
2627         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
2628
2629         * mini-amd64.c: Fix a warning.
2630
2631 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
2632
2633         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
2634         in float_neg. Fixes #74897.
2635
2636         * mini-amd64.c (emit_call): Fix another near call bug.
2637
2638 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
2639
2640         * declsec.c: Keep the appdomain information in the structure. Added a 
2641         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
2642         value gets overwritten).
2643         * declsec.h: Set the default MonoArray for the the stack to 6. Added
2644         an MonoAppDomain member to MonoSecurityFrame.
2645         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
2646         used in the stack walk. Now use a MonoArray which grow (double) when
2647         it gets full.
2648
2649 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
2650
2651         * mini.c: Re-enabled runtime cleanup, since running threads should
2652         now properly stop when exiting.
2653
2654 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
2655
2656         * mini-codegen.c: New file contaning the arch-independent local
2657         register allocator. Not used by any architectures yet.
2658
2659         * mini.h linear-scan.c: Merge some changes from the 
2660         mini-xp-local-regalloc branch.
2661
2662 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
2663
2664         * mini-amd64.c (emit_call): Fix calls to native functions when the
2665         runtime is compiled as a shared library. Fixes #74756.
2666
2667         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
2668         on a literal field. Fixes #74751.
2669
2670 2005-04-25  Raja R Harinath  <rharinath@novell.com>
2671
2672         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
2673
2674 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
2675
2676         * objects.cs: Add missing null casting test.
2677
2678 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
2679
2680         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
2681         in wrapper methods. Also rename 'address' variable to 'offset'.
2682
2683 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
2684
2685         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
2686         warnings.
2687         
2688         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
2689
2690         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
2691         work on windows.
2692
2693 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
2694
2695         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
2696
2697 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
2698
2699         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
2700         just the last bytes.
2701
2702 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
2703
2704         * aot.c (mono_compile_assembly): Fix warning.
2705
2706         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
2707         by the _MSC_VER stuff.
2708
2709 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
2710
2711         * inssel-long.brg: Fix #74588.
2712
2713         * cpu-amd64.md: Fix #74591.
2714
2715         * iltests.il: Add new regression tests.
2716
2717 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
2718
2719         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
2720         valuetype.
2721
2722 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
2723
2724         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
2725
2726         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
2727         from Bill Middleton <flashdict@gmail.com>.
2728
2729 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
2730
2731         * arrays.cs: Add new regression test. Fix warnings.
2732
2733 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
2734
2735         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
2736         and leakage in CKFINITE.
2737
2738         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
2739         this to a null op since it is called on amd64 too.
2740
2741         * exceptions-amd64.c (get_throw_trampoline): Align stack.
2742
2743         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
2744         body since this is not used on amd64.
2745         
2746         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
2747
2748         * mini-amd64.c: Remove obsolete fixmes.
2749
2750         * mini.c (print_method_from_ip): Fix debugging support.
2751
2752 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
2753
2754         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
2755         so that expressions that don't give much gain are not reduced.
2756         * ssapre.h: Likewise.
2757
2758 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
2759
2760         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
2761
2762         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
2763
2764         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
2765
2766 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
2767
2768         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
2769
2770         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
2771
2772 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
2773
2774         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
2775         stack touching.
2776
2777         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
2778
2779         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
2780
2781         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
2782
2783         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
2784         MONO_ARCH_USE_SIGACTION. Fixes #74252.
2785
2786         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
2787
2788         * mini-x86.c: Fix up stack overflow handling.   
2789
2790         * exceptions.cs: Add new regression test.
2791
2792 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
2793
2794         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
2795         mono_jit_thread_attach.
2796
2797         * mini.c (mono_method_to_ir): Verify called method is not abstract.
2798
2799 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
2800
2801         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
2802         avoid calling constructors using callvirt.
2803
2804         * inssel.brg: Fix #74073.
2805
2806 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
2807
2808         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
2809         compilation with non-GCC compilers.
2810         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
2811         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
2812
2813 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
2814
2815         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
2816         klass->interface_offsets (will likely fix bug#74073).
2817
2818 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
2819
2820         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
2821
2822 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
2823
2824         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
2825         to amd64_div_reg_size ().
2826         
2827         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
2828
2829 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
2830
2831         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
2832
2833 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
2834
2835         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
2836
2837 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
2838
2839         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
2840         
2841         * mini.c (mono_precompile_assembly): Load and precompile referenced
2842         assemblies as well. Fixes #74015.
2843
2844 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
2845
2846         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
2847
2848 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
2849
2850         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
2851         a lot of checks and (anyway) permissions cannot work until corlib is 
2852         loaded.
2853
2854 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
2855
2856         * mini-ppc.c: fixed ABI issue on sysv/ppc.
2857
2858 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
2859
2860         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
2861         calls (fixes bug#72824).
2862
2863 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
2864
2865         * mini.c: fix tail recursion elimination (see test in bug#73936).
2866
2867 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
2868
2869         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
2870         some fp functions in sse2 mode.
2871
2872 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
2873
2874         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
2875
2876 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
2877
2878         * mini.h mini.c: Add mono_get_jit_tls_key ().
2879
2880         * mini-x86.c: Enable fast TLS support on windows.
2881
2882 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
2883
2884         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
2885         * mini.c: Check for p/invoke method when generating code. If a
2886         p/invoke method, or it's class, isn't decorated with [Suppress
2887         UnmanagedCodeSecurity] then generate code to call System.Security.
2888         UnmanagedDemand (only if the security manager is active).
2889
2890 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
2891
2892         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
2893         last change as it seems to cause strange crashes.
2894         
2895 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
2896
2897         * *.c: handle unsafe function pointers where needed.
2898
2899 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
2900
2901         * mini.c (mono_jit_free_method): Remove the fixme too.
2902
2903 2005-03-15  Miguel de Icaza  <miguel@novell.com>
2904
2905         * mini.c: As discussed, make the code actually free the delegate
2906         thunk now, to enable the debugging of delegate problems, use
2907         MONO_DEBUG=1 when running Mono. 
2908
2909         This takes also care of parts of the leaks as seen by Joe.
2910
2911 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
2912
2913         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
2914         thread_tls_offset calculation.
2915
2916 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
2917
2918         * declsec.c: Reworked linkdemand checks for icall. The previous code
2919         was using the declaration code (untrusted) and didn't work as expected
2920         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
2921         specific case.
2922
2923 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
2924
2925         * iltests.il: Add new localloc test.
2926
2927         * mini-amd64.c: Handle large stack allocations the same way as on
2928         windows if stack overflow handling is working.
2929         
2930         * mini-amd64.c: Allocate the signal stack using mmap.
2931
2932         * mini.c (sigsegv_signal_handler): Fix reading of context.
2933
2934         * mini-exceptions.c: Fix up stack overflow handling.
2935
2936         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
2937
2938         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
2939
2940         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
2941
2942         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
2943
2944         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
2945         tramp_init functions as they are no longer needed.
2946
2947 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
2948
2949         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
2950         
2951         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
2952
2953         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
2954         
2955         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
2956         support that now.
2957
2958         * mini-ops.h: Add OP_LMUL_IMM.
2959
2960         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
2961         long mul/div opcodes as intrinsic.
2962
2963         * mini-amd64.c (emit_call): Handle the case when the callee might be
2964         an AOT method.
2965
2966 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
2967
2968         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
2969         extra safe.
2970         
2971         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
2972
2973         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
2974
2975 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
2976
2977         * mini.c (mono_codegen): Don't leak here, to help people running
2978         monogrind.
2979
2980 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
2981
2982         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
2983         conversions in sse2 mode.
2984
2985         * basic-float.cs: Add regression test.
2986         
2987         * mini-amd64.c: Reenable sse2.
2988
2989 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
2990
2991         * mini-amd64.c: Disable sse2 until some regressions are fixed.
2992
2993 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
2994
2995         * driver.c: Copyright text should include 2005.
2996         
2997 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
2998
2999         * cpu-amd64.md (load_membase): Fix more max lengths.
3000
3001 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
3002
3003         * cpu-amd64.md (load_membase): Fix max length.
3004
3005         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
3006
3007         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
3008
3009         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
3010         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
3011
3012         * basic-float.cs: Add rounding regression test.
3013
3014         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
3015
3016 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
3017
3018         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
3019         structures in registers for pinvoke wrappers.
3020
3021 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
3022
3023         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
3024
3025 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
3026
3027         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
3028         wrapper to mono_jit_thread_attach.
3029
3030         * mini.c (mini_jit_thread_attach): New jit icall.
3031
3032         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
3033         native->managed wrappers.
3034
3035         * exceptions.cs: Add new regression test.
3036
3037         * mini.c (optimize_branches): Check regions in the cbranch to throw
3038         block case as well. Fixes #73242.
3039
3040 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
3041
3042         * mini.c: thread safety fixes.
3043
3044 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
3045
3046         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
3047         patching stuff, since delegates use jump trampolines so there is
3048         no caller.
3049
3050         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
3051         jump trampolines.
3052         
3053         * tramp-amd64.c: Fix build.
3054
3055         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
3056         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
3057
3058         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
3059         Rename this to mono_arch....
3060         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
3061
3062         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
3063
3064         * mini-amd64.c (emit_call): If both the caller and the callee is
3065         guaranteed to have 32 bit addresses, emit a normal call.
3066
3067         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
3068
3069         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
3070         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
3071         method_ptr inside delegates.
3072
3073 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
3074
3075         * mini.c (mono_jit_free_method): Free the method info even if the native code is
3076         invalidated. Fixes #73001.
3077
3078         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
3079
3080         * mini-x86.c: Only use stdcall for pinvokes on windows.
3081
3082 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
3083
3084         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
3085         * mini-x86.c: remove unreliable __thread var offset detection,
3086         use the correct accessors and enable by default.
3087
3088 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
3089
3090         * mini.c (mono_jit_free_method): Fix memory leak.
3091
3092 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
3093
3094         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
3095
3096 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
3097
3098         * cpu-amd64.md: Fix lengths of atomic opcodes.
3099
3100 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
3101
3102         * driver.c: try to not imply using ICU is any good.
3103
3104 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
3105
3106         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
3107         functions as inline ops.
3108
3109         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
3110         some Interlocked functions as inline ops.
3111
3112         * mini.c (move_basic_block_to_end): Fix bug in last patch.
3113
3114         * mini.h (MonoBasicBlock): Reorganize fields a bit.
3115
3116         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
3117
3118         * mini.c: Add support for OP_NOT_TAKEN.
3119
3120         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
3121         structures in registers for pinvoke wrappers.
3122
3123         * mini-amd64.c: Fix warnings.
3124
3125 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
3126
3127         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
3128
3129         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
3130
3131         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
3132         address instead of loading the address from it.
3133
3134         * mini-x86.c: Add support for returning small structs in registers
3135         on Win32. Fixes part of #70864.
3136         
3137 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
3138
3139         * trace.c (get_token): Improve error checking.
3140
3141 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
3142
3143         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
3144
3145 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
3146  
3147         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
3148         it can be reused for MonoClass.
3149         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
3150         _LINKDEMAND.
3151
3152 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
3153
3154         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
3155         instead of a MonoReflectionMethod. The method information wasn't used
3156         when displaying SecurityException details (but will be now).
3157
3158 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
3159
3160         * Makefile.am : windows build fix.
3161
3162 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
3163
3164         * iltests.il: Add new regression test.
3165
3166         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
3167         #72522.
3168
3169 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
3170  
3171         * mini.c: Moved linkdemand check into helper function check_linkdemand
3172         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
3173         LDFTN, LDVIRTFTN).
3174
3175 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
3176
3177         * declsec.c: Added statistics counter for different kinds of 
3178         LinkDemands.
3179         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
3180         (and commented) declaration.
3181         * mini.c: Added statistics counter for security Demand code 
3182         generation. Added display of security statistics.
3183
3184 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
3185
3186         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
3187         Fix compilation errors under gcc-2.95.
3188
3189 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
3190
3191         * mini.c, driver.c: Use the new jit trampoline hashtable
3192
3193 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
3194
3195         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
3196
3197 2005-02-11  Martin Baulig  <martin@ximian.com>
3198
3199         * debug-mini.c (mono_debug_close_method): Free the line number array.
3200
3201 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
3202
3203         * aot.c: Break up large methods into smaller ones. Share GOT slots for
3204         icalls.
3205
3206         * mini.h: Bump AOT file format version. 
3207
3208 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
3209
3210         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
3211         APTC and P/Invoke.
3212         * declsec.h: Added macros to get/set lazyly initialized security 
3213         informations about assemblies. Added new enum for different type of
3214         possible LinkDemand violation. Added function to check LinkDemands.
3215         * mini.h: Added a field to MonoCompile to hold any security violation
3216         detected when JITting a method (so it can be thrown later).
3217         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
3218         and CEE_CALLVIRT. Added code to throw exception at the end of
3219         mini_method_compile (note: the exception is unhandled right now).
3220
3221 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
3222
3223         * mini.c, jit-icalls.c: use the managed implementation of
3224         memset for initobj and memset, to avoid managed <-> unmanaged
3225         transitions.
3226
3227 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
3228
3229         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
3230         optimization if it would need a GOT var.
3231
3232         * basic.cs: Add tests for constant propagation and switch statements.
3233
3234         * ssa.c: Fix out-of-range constant propagation and switch statements.
3235
3236 2005-02-09    <vargaz@freemail.hu>
3237
3238         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
3239
3240 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
3241
3242         * cpu-amd64.md (load_membase): Fix max length of load_membase.
3243
3244 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
3245
3246         * mini.c: update to new signature of mono_class_get_allocation_ftn().
3247
3248 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
3249
3250         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
3251         arithmetic operations.
3252
3253 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
3254
3255         * mini-ppc.c: add a workaround for broken user code that
3256         DllImports vararg functions with non-vararg signatures.
3257
3258 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
3259
3260         * mini.c (mono_jit_compile_method_inner): Add detection and a 
3261         meaningfull error message for assemblies written in Managed C++.
3262
3263         * tramp-amd64.c mini-amd64.h: Add support for 
3264         create_trampoline_from_token ().
3265
3266         * aot.c mini-x86.c abcremoval.c: Applied patch from
3267         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
3268
3269 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
3270
3271         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
3272         which takes a MonoImage/token as parameter instead of a MonoMethod.
3273
3274         * aot.c: Use the new trampoline for initializing vtables.
3275
3276         * aot.c: Add support for ldfld/stfld_remote wrappers.
3277
3278         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
3279         rules for compare <MEM>, IMM.
3280
3281         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
3282
3283         * aot.c: Handle inherited finalizers correctly.
3284
3285 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
3286
3287         * inssel.brg (stmt): Add a missing _setup_... ().
3288
3289         * aot.c: Save some parts of the class state to the AOT file and use it
3290         to recompute that state when a class is initialized.
3291
3292         * mini.c: Install AOT hooks into the runtime.
3293
3294         * mini.h: Bump AOT file format version.
3295         
3296         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
3297         Fixes #72148.
3298
3299         * iltests.il: Add new test.
3300
3301 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
3302
3303         * mini.c: fix typo.
3304
3305 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
3306
3307         * mini.c: setup the statistical profiler in the thread attach
3308         callback to cope with the new single thread code.
3309
3310 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
3311
3312         * mini-ppc.c: ensure we have enough room for the profiler
3313         calls (fixed bug#72084).
3314
3315 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
3316
3317         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
3318         it.
3319
3320 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
3321
3322         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
3323
3324 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
3325
3326         * ssapre.c: Fixed an issue with down safety (this allows IronPython
3327         to succesfully execute parrotbench).
3328         * ssapre.h: Likewise.
3329
3330 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
3331
3332         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
3333         variable for stores to method arguments (fixes a SSAPRE issue).
3334
3335 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
3336
3337         * mini.c: handle value types in dup, fixes gen-112.cs.
3338
3339 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
3340
3341         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
3342         sequence for calls in dynamic methods to avoid thunks.
3343
3344 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
3345
3346         * mini.c: correctly remove dynamic methods from the hashtable.
3347
3348 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
3349
3350         * driver.c: Disabled SSAPRE until fix the bug that appears
3351         in IronPython's parrotbench.
3352
3353 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
3354
3355         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
3356
3357         * mini.c (mono_method_to_ir): Revert the previous change.
3358         
3359         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
3360         when AOT compiling.
3361
3362         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
3363         mono_jit_info_table_find () etc. when running under valgrind.
3364
3365         * inssel.brg: Fix warnings.
3366
3367         * mini-exceptions.c: Fix warnings.
3368
3369 2005-01-31  Martin Baulig  <martin@ximian.com>
3370
3371         * driver.c (compile_all_methods_thread_main): Don't try to compile
3372         generic methods or anything which has type parameters.
3373
3374 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
3375
3376         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
3377
3378         * TestDriver.cs: Add --verbose flags.
3379
3380         * graph.c ssa.c: Fix 64 bit warnings.
3381         
3382         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
3383         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
3384         Fix 64 bit warnings.
3385
3386         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
3387         variable not spotted by gcc.
3388         
3389         * mini-amd64.c inssel-amd64.brg: Applied patch from  
3390         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
3391         X86_COMPARE_MEMBASE opcodes.
3392
3393         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
3394
3395 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
3396
3397         * *: MonoMethod->signature might be NULL now. You *MUST* use
3398         mono_method_signature.
3399
3400 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
3401
3402         * driver.c (compile_all_methods_thread_main): Compile the methods
3403         without invoking cctors.
3404
3405 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
3406
3407         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
3408         * basic-calls.cs: test for the above.
3409
3410 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
3411
3412         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
3413         MonoJitInfo changes.
3414
3415 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
3416
3417         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
3418         eagerly if it contains dynamic methods.
3419         
3420         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
3421
3422         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
3423         trace, it is now computed by an icall from trace_ips.
3424         
3425         * mini-exceptions.c: Fix a warning.
3426
3427 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
3428
3429         * mini-exceptions.c: don't bother getting stack trace info if
3430         it's not going to be used.
3431
3432 2005-01-27  Raja R Harinath  <rharinath@novell.com>
3433
3434         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
3435         ssapre-mini-ops.h.
3436
3437 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
3438
3439         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
3440
3441         * aot.c: Avoid calling mono_method_get_header () if not needed.
3442
3443         * mini.h: Bump AOT file format version.
3444         
3445         * mini.c (mono_emit_native_call): Allocate a GOT var here.
3446
3447         * mini.c (mono_print_tree): Print more info for calls.
3448
3449 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
3450
3451         * declsec.h: Remove warning by adding missing include for marshal.h
3452
3453 2005-01-26  Martin Baulig  <martin@ximian.com>
3454
3455         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
3456         `ip' twice.
3457
3458 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
3459
3460         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
3461         flags.
3462
3463         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
3464
3465         * aot.c (mono_compile_assembly): Fix a warning.
3466
3467 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
3468
3469         * declsec.c: Look for security attributes on the original MonoMethod 
3470         (and not the wrapped one). This fix permissions on icalls.
3471
3472 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
3473
3474         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
3475
3476         * mini.c (mono_allocate_stack_slots): Add a fixme.
3477
3478         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
3479
3480 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
3481
3482         * inssel.brg: optimize casts of sealed types (more
3483         optimizations waiting for fixes in remoting).
3484
3485 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
3486
3487         * inssel.brg (stmt): Add another dummy rule.
3488
3489         * driver.c: Fix warnings.
3490
3491         * driver.c (mono_main): If running under valgrind, instruct glib to use
3492         the system allocation functions so valgrind can track the memory
3493         allocated by the g_... functions.
3494
3495         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
3496
3497         * mini-ops.h: Add OP_DUMMY_STORE opcode.
3498
3499         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
3500
3501         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
3502         variables in try regions.
3503
3504         * mini.c (mini_method_compile): Don't disable optimizations on large
3505         methods when AOT compiling.
3506
3507         * mini.c (mono_allocate_stack_slots): New arch independent method to 
3508         allocate stack slots. Not yet used.
3509
3510 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
3511
3512         * debug-mini.c (mono_debug_close_method): Plug some leaks.
3513
3514 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
3515
3516         * mini-ppc.c: make the branch info relative as the code
3517         buffer can be reallocated.
3518
3519 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
3520
3521         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
3522         * driver.c: Removed the AOT/security restriction. Now initialize the
3523         security manager (in metadata) if --security is used.
3524         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
3525         rather than the pointer to declarative security, when AOT is used.
3526
3527 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
3528
3529         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
3530         basic blocks, reduced intrinsic exception throwing code size.
3531
3532 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
3533
3534         * driver.c (mini_usage): Reorder the usage screen.
3535
3536 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
3537
3538         * mini.c (mono_resolve_patch_target): Fix warning.
3539
3540 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
3541
3542         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
3543         previous patch.
3544
3545         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
3546
3547         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
3548         breaks the amd64 build.
3549
3550         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
3551         register allocation. Fixes #71454.
3552
3553         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
3554
3555         * arrays.cs: Add new regression test.   
3556
3557 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
3558
3559         * ssapre.c: Turned usage of snprintf to GString.
3560         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
3561         (I left it on by mistake in my previous commit).
3562
3563 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
3564
3565         * mini.c, cfold.c, basic-calls.cs: preserve side effects
3566         on cond branch optimization (fixes bug# 71515).
3567
3568 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
3569
3570         * abcremoval.c: Fixed bug 71062.
3571         * abcremoval.h: Likewise.
3572
3573 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
3574
3575         * mini.c: Added a new functionality to optimize_branches, the removal
3576         of useless basic blocks, and fixed some problem in the removal of
3577         critical edges; some utility functions added for both purposes.
3578         * ssapre.c: Added complex expression support, and fixed bug 70637.
3579         * ssapre.h: Likewise.
3580         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
3581         enabled in SSAPRE.
3582         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
3583         * driver.c: Re-enabled SSAPRE.
3584
3585 2005-01-19  Martin Baulig  <martin@ximian.com>
3586
3587         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
3588         the result of mono_get_method_constrained().
3589
3590 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
3591
3592         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
3593         manager.
3594
3595 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
3596
3597         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
3598         be detected.  Fixes #59296.
3599
3600 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
3601
3602         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
3603         which can happen. Fixes #71361.
3604
3605 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
3606
3607         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
3608         manager.
3609
3610 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
3611
3612         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
3613         appdomain-unload.exe to fail.
3614         
3615         * mini.c: Fix some memory leaks.
3616
3617 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
3618
3619         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
3620         Fixed bug and sped up some codepaths.
3621
3622 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
3623
3624         * mini.c: Fix some memory leaks.
3625
3626         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
3627         conversion.
3628
3629         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
3630
3631         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
3632         #71320.
3633
3634         * iltests.il: Add regression test for #71320.
3635
3636 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
3637
3638         * mini.c (mono_codegen): Fix installation of profiler hooks.
3639
3640         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
3641
3642 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
3643
3644         * mini.h, mini.c, cfold.c: optimize access to enum
3645         readonly fields, too. Eval conditional branches if possible
3646         to perform unreachable code removal in more cases.
3647
3648 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
3649
3650         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
3651
3652         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
3653         code manager.
3654
3655         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
3656         WinXP DEP. Fixes #71244.
3657
3658 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
3659
3660         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
3661
3662 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
3663
3664         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
3665
3666 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
3667
3668         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
3669         changes.
3670
3671         * mini.h: Bump AOT version.
3672
3673         * mini.h (MonoCompile): Change exvar to a hash table.
3674
3675         * mini.c: Allocate a separate exvar for each handler block.
3676
3677         * mini.c: Get rid of the computation of filter_lengths, its not needed.
3678
3679         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
3680         ex var with the pending exception and only throw if the two are equal.
3681         Fixes #68552.
3682         
3683         * exceptions.cs: Add tests for rethrow and nested catch clauses.
3684
3685         * mini-x86.c: Fix warnings.
3686
3687         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
3688         used by all the ports now.
3689
3690         * aot.c: Add write-symbols and save-temps options.
3691
3692 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
3693
3694         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
3695
3696 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
3697
3698         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
3699         operations.
3700
3701         * tramp-s390.c: Check vtable slot belongs to the domain.
3702
3703         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
3704         as per other platforms.
3705
3706         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
3707
3708 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
3709
3710         * driver.c: we don't run the Main() code in a subthread anymore.
3711
3712 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
3713
3714         * mini.c: added experimental rtc support in the statistical
3715         profiler: if the user has the permission, more accurate statistics
3716         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
3717         The MONO_RTC value must be restricted to what the linux rtc allows:
3718         power of two from 64 to 8192 Hz.
3719
3720 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
3721
3722         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
3723
3724 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
3725
3726         * mini-ppc.c: better icache flush for smp.
3727
3728 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
3729
3730         * mini-amd64.c (emit_move_return_value): Fix memory leak.
3731
3732         * mini-x86.c (get_call_info): Add the get_call_info () code from the
3733         amd64 port, not yet used.
3734
3735 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
3736
3737         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
3738         a struct type.
3739
3740 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
3741
3742         * driver.c: Added --security option to activate the security manager.
3743         Right now this will allow code generation for declarative demands and
3744         is disabled when AOT is specified.
3745         * mini.c: Add code generation for declarative security demands.
3746         * mini.h: Add mono_use_security_manager as an extern gboolean.
3747
3748 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
3749
3750         * aot.c (mono_compile_assembly): Speed up compilation a bit by
3751         emitting more dense assembly code.
3752
3753         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
3754         exception throwing stuff.
3755
3756 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
3757
3758         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
3759         dead code.
3760
3761         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
3762         left in by mistake.
3763
3764         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
3765         fixed.
3766
3767         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
3768
3769         * tramp-*.c: Only patch vtable slots if the object is in the current
3770         domain. Fixes appdomain-unload.exe.
3771
3772         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
3773         
3774         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
3775         x86 branch.
3776
3777 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
3778
3779         * mini.c (reverse_branch_op): New helper function.
3780
3781         * mini.c (optimize_branches): Run the new optimization only on 
3782         platforms which support it. Also reverse all kinds of branches.
3783
3784         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
3785
3786         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
3787         a throw statement.
3788
3789         * mini.c (optimize_branches): Reverse not-equals branches if the false
3790         bblock is a throw. This happens a lot of time with argument checking in
3791         corlib.
3792
3793         * mini.c (mono_codegen): Add support for placing basic blocks after
3794         the function epilogue.
3795
3796         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
3797         function epilogue.
3798         
3799 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
3800
3801         * mini.c (setup_stat_profiler): Only set this up if the platform
3802         supports ITIMER_PROF.
3803
3804 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
3805
3806         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
3807         previous patch.
3808
3809         * inssel.brg: Fix a warning.
3810
3811 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
3812
3813         * mini.c: added support for statistical profiler 
3814         (run with: --profile=default:stat).
3815
3816 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
3817
3818         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
3819
3820         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
3821
3822         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
3823         related to global registers from the amd64 port.
3824
3825 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
3826
3827         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
3828
3829         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
3830         with global registers.
3831         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
3832
3833         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
3834
3835 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
3836
3837         * debug-mini.c (encode_value): Fix off-by-one.
3838
3839         * aot.c (encode_value): Likewise.
3840
3841         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
3842
3843 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
3844
3845         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
3846         AOT.
3847
3848         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
3849         
3850         * aot.c (emit_method_info): Increase size of temp buffer.
3851
3852         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
3853         the AOT case.
3854
3855 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
3856
3857         * aot.c (emit_method_info): Fix build.
3858         
3859         * aot.c: Further rework of the AOT file format to reduce the size of
3860         the method info data.
3861
3862         * mini.h: Bump AOT file format version.
3863
3864 2004-12-27  Martin Baulig  <martin@ximian.com>
3865
3866         * mini.c (mini_get_method): New static method; call
3867         mono_get_method_full() and mono_get_inflated_method().
3868         (mono_method_to_ir): Use mini_get_method() instead of
3869         mono_get_method_full(). 
3870
3871 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
3872
3873         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
3874
3875 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
3876
3877         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
3878
3879         * inssel-amd64.brg: Add some optimization rules.
3880
3881 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
3882
3883         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
3884         standard not GC'd stuff is fine.
3885
3886 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
3887
3888         * aot.c: Rework the AOT file format to get rid of most of the global
3889         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
3890
3891         * mini.h: Bump AOT file format version.
3892         
3893 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
3894
3895         * mini.h: Bump AOT file format version.
3896
3897         * aot.c (mono_aot_is_got_entry): New function to determine if an 
3898         address is inside a GOT.
3899
3900         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
3901
3902         * cpu-pentium.md: Increase the maximum size of some instructions which
3903         might involve a got access.
3904         
3905         * mini.c (get_method_from_ip): Another debug helper function.
3906
3907         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
3908         when got var accesses are created during the decompose phase.
3909
3910         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
3911
3912         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
3913         argument mini_compile_method and to MonoCompile, and use this to
3914         determine whenever a given method is compiled for AOT. This allows the
3915         other methods compiled during AOT compilation to be free of AOT stuff,
3916         so the backends does not need to add special support for them by
3917         creating a fake GOT etc.
3918
3919         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
3920         longer needed.
3921
3922 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
3923
3924         * mini.c (mono_method_to_ir): It turns out that some of the
3925         x-appdomain wrappers are lax with types, so just ignore this for
3926         all wrappers.
3927
3928         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
3929         at the vtable->klass. If it is non-shared code we can just use the
3930         vtable.
3931
3932 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
3933
3934         * mini-ppc.c: access MonoDomain from tls, too.
3935
3936 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
3937
3938         * declsec.c: Removed unused variable (and related warning ;-)
3939
3940 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
3941
3942         * iltests.il: New test for LDELEMA on an array of ref types.
3943
3944         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
3945         all ldelema's on reftypes.
3946         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
3947         it was the wrong place to put it.
3948
3949         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
3950         register to pop to make this cleaner, at the request of Paolo.
3951
3952 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
3953
3954         * mini-ops.h (OP_GETHASHCODE): New op.
3955
3956         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
3957
3958         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
3959         operation.
3960
3961         For a microbenchmark, this reduces the cost of Hashtable.get_Item
3962         by 25%.
3963         
3964         * mini-x86.c (mono_arch_output_basic_block): Rather than
3965
3966         add ebp, 4
3967
3968         Emit
3969
3970         pop edx
3971
3972         The first is 3 bytes while the second is 1. This saves 36 kb on
3973         mscorlib, quite a big saving. When bootstraping mcs, I was able to
3974         see a small boost because of icache locality.
3975
3976         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
3977
3978 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
3979
3980         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
3981         started code sharing with the generic code.
3982
3983 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
3984
3985         * mini-ppc.c, cpu-g4.md: added code for direct access to
3986         tls data slots.
3987
3988 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
3989
3990         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
3991          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
3992         to OP_TLS_GET.
3993
3994 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
3995
3996         * declsec.c|h: Added functions to cache the declarative stack modifiers
3997         in MonoJitInfo and to create a security frame from a MonoJitInfo 
3998         structure.
3999         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
4000         created. Register internal calls for System.Security.SecurityFrame::
4001         _GetSecurityFrame and _GetSecurityStack.
4002         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
4003         the definitions for the new stack walk/callback mechanism.
4004         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
4005         first security frame for LinkDemands and InheritanceDemands) and
4006         GetSecurityStack for Demands. Both use the new mono_walk_stack code
4007         from lupus.
4008         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
4009         walk initialization (lupus).
4010
4011 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
4012
4013         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
4014         idiom.
4015         (handle_loaded_temps): Do not create a temporary variable for
4016         things that we know are temps. They will never be modified.
4017         (mono_spill_call): Set MONO_INST_IS_TEMP
4018         (mono_emulate_opcode): ditto
4019         (emit_tree): ditto
4020         (mono_method_to_ir.CEE_DUP): ditto
4021
4022 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
4023
4024         * mini.c (type_to_eval_stack_type): Make this handle the void type
4025         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
4026         (emit_tree): use ip_in_bb to special case some common idioms
4027         Update all callers to pass in the IP.
4028         (mono_method_to_ir): Make CEE_CALL* do the above as well.
4029
4030         This gives us a nice 2% speedup in mcs bootstrap.
4031
4032         * mini-x86.c (peephole_pass): Peephole pass to make
4033         mov  [foo], eax
4034         push [foo]
4035
4036         into
4037
4038         mov [foo], eax
4039         push eax
4040
4041         * mini.c (ip_in_bb): new method.
4042         (mono_method_to_ir): use this method rather than doing the hash
4043         lookup ourselves.
4044
4045         * linear-scan.c (mono_linear_scan): When expiring actives, you
4046         don't need to keep around variables that expire on this
4047         instruction. This makes it so that:
4048              a = b + 1
4049         will turn into:
4050              store (ebx add (ebx, 1))
4051         which will become
4052              add ebx, 1
4053
4054 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
4055
4056         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
4057         combination to avoid doing two copies. Fix up problems with previous
4058         patch.
4059
4060         * mini.c: Fix 64 bit warnings.
4061
4062         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
4063
4064 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
4065
4066         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
4067         changes from the x86 code.
4068
4069         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
4070
4071 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
4072
4073         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
4074         throwing code to reduce its size, unify the AOT and non-aot code and 
4075         get rid of relocations in the AOT case.
4076
4077         * mini-x86.h mini.c exceptions-x86.c 
4078         (mono_arch_get_throw_corlib_exception): New arch specific function to 
4079         raise corlib exceptions which doesn't require relocations in the 
4080         caller.
4081
4082         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
4083
4084 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
4085
4086         * mini.c (mono_emit_method_call): Only allocate the got var when it is
4087         needed.
4088
4089         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
4090         in the AOT case.
4091
4092 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
4093
4094         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
4095         with add function when used from Inc/dec atomic 
4096         functions. Re-enabled optimization on x86.
4097         * mini-ops.h: renamed atomic_add functions to
4098         allow _add to match the Interlocked::Add and
4099         _add_next to match Interlocked::Inc/Dec.
4100
4101 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
4102
4103         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
4104         linking of BBs to the end BB, and enabled SSAPRE also with
4105         consprop and copyprop (which was prevented by that bug).
4106
4107 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
4108
4109         * mini-x86.c: disabling the Interlocked optimizing code. 
4110
4111 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
4112
4113         * aot.c (load_aot_module): Move reading of got_addr after the AOT
4114         file version check.
4115         
4116 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
4117
4118         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
4119         interlocked optimization due lack of support on x86, rewrote 
4120         exchange to take into account that base may be in eax.
4121         
4122         xsp works again; activated Interlocked optimizing code.
4123         
4124 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
4125
4126         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
4127
4128 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
4129
4130         * mini-ops.h: Add new opcodes.
4131
4132         * mini.h: Add new patch types. Add got_var to MonoCompile.
4133
4134         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
4135         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
4136         make it work with all kinds of patchable code.
4137
4138         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
4139         address of the GOT, and referencing entries in the GOT.
4140
4141         * mini.c: Add code to load the GOT address if needed by an opcode.
4142
4143         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
4144         independent AOT code on the x86 using an elf-style Global Offset Table.
4145
4146 2004-12-14  Raja R Harinath  <rharinath@novell.com>
4147
4148         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
4149
4150 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4151
4152         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
4153         when running xsp.
4154
4155 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
4156
4157         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
4158         of Interlocked:Increment/Decrement/Add as inline ops.
4159         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
4160
4161 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
4162
4163         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
4164         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
4165
4166 2004-12-12  Duncan Mak  <duncan@ximian.com>
4167
4168         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
4169         again. `patch_info->table_size' is no longer valid after Zoltan's
4170         commit #37636.
4171
4172 2004-12-12  Martin Baulig  <martin@ximian.com>
4173
4174         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
4175         if we are the "real" method, ie. not an inlined method inside it.
4176
4177 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
4178
4179         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
4180         before we look in the special fields table. This fixes
4181         ../tests/thread-static-init.cs.
4182
4183 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4184
4185         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
4186         for Array get_Rank and get_Length. Fixes bug #70465.
4187
4188 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
4189
4190         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
4191         separate structure to reduce the size of MonoJumpInfo.
4192
4193 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
4194
4195         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
4196
4197 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
4198
4199         * mini.c (mini_get_inst_for_method): Changed to allow ports
4200         to return a MonoInst instead of opcode 
4201         (renamed mini_get_opcode_for_method to better reflect the new functionality)
4202         
4203         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
4204         Allow ports to return a created MonoInst instead of op-code, will enable
4205         new optimizations.
4206         (renamed mini_get_opcode_for_method to better reflected the functionality)
4207
4208 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
4209
4210         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
4211
4212 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
4213
4214         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
4215         Fixes #69985.
4216
4217 2004-12-08  Martin Baulig  <martin@ximian.com>
4218
4219         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
4220         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
4221
4222 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
4223
4224         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
4225         correctly.
4226
4227         * exceptions.cs: Disable some tests which depend on properties of x86 fp
4228         arithmetic.
4229
4230 2004-12-08  Raja R Harinath  <rharinath@novell.com>
4231
4232         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
4233
4234 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
4235
4236         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
4237         bug introduced by the previous patch.
4238
4239 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
4240
4241         * mini-ppc.c, objectc.cs: handle large structs passed by value
4242         (fixes bug #69972).
4243
4244 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
4245
4246         * mini-ppc.c: OP_ARGLIST implementation from
4247         Geoff Norton  <gnorton@customerdna.com>.
4248
4249 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
4250
4251         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
4252         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
4253
4254 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
4255
4256         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
4257
4258 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4259
4260         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
4261         support.
4262
4263 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
4264
4265         * mini-sparc.c: Zero out localled-ed memory.
4266
4267         * iltests.il: Add tests for zeroing out localloc-ed memory.
4268
4269 2004-12-04  Martin Baulig  <martin@ximian.com>
4270
4271         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
4272         mono_method_get_signature_full().       
4273
4274 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
4275
4276         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
4277         and some utility functions (always for SSAPRE), integrated SSAPRE.
4278         * mini.h: Likewise.
4279         * driver.c: Added ssapre option.
4280         * ssa.c: Small fix on OP_ARG handling.
4281         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
4282         * Makefile.am: Likewise.
4283
4284 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
4285
4286         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
4287         now in the xp code.
4288
4289         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
4290         icall.
4291
4292 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4293
4294         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
4295         
4296         * cpu-s390.md : Increase instruction length of oparglist.
4297
4298         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
4299
4300 2004-11-30  Martin Baulig  <martin@ximian.com>
4301
4302         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
4303         virtual generic methods.  We call a special helper_compile_generic_method()
4304         icall to retrieve the method from the vtable, inflate and compile
4305         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
4306
4307         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
4308
4309 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
4310
4311         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
4312
4313 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
4314
4315         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
4316         Fixes #69929.
4317
4318 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
4319
4320         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
4321         platforms with PIC aot.
4322
4323 2004-11-28  Martin Baulig  <martin@ximian.com>
4324
4325         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
4326         Fixes gen-112.cs.
4327
4328 2004-11-28  Martin Baulig  <martin@ximian.com>
4329
4330         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
4331         the result of mono_type_get_underlying_type() to check whether
4332         we're byref.
4333
4334 2004-11-26  Martin Baulig  <martin@ximian.com>
4335
4336         * mini.c
4337         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
4338         in the g_assert().
4339
4340 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
4341
4342         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
4343         the same way as the other arguments so they won't get clobbered.
4344
4345         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
4346         calls through R11 since it is clobbered by the trampoline code.
4347
4348 2004-11-26  Raja R Harinath  <rharinath@novell.com>
4349
4350         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
4351         pick up in-tree mscorlib.dll.
4352
4353 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
4354
4355         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
4356
4357         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
4358         runtime data/code are now stored in a table similar to the GOT in ELF. 
4359         This allows the code itself to be position independent.
4360
4361         * aot.c: Fix loading of referenced assemblies after the lazy assembly
4362         loading changes.
4363
4364         * aot.c: Attach ELF type (object/function) directives to all global
4365         symbols.
4366
4367         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
4368
4369         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
4370
4371         * mini-amd64.h: Turn on PIC AOT code.
4372
4373         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
4374         returning the offset within an OP_AOTCONST instruction where the GOT
4375         offset needs to be added.
4376
4377         * mini.h: Bump AOT file format version.
4378
4379 2004-11-25  Martin Baulig  <martin@ximian.com>
4380
4381         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
4382         uninflated generic methods.
4383
4384 2004-11-25  Martin Baulig  <martin@ximian.com>
4385
4386         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
4387
4388 2004-11-24  Martin Baulig  <martin@ximian.com>
4389
4390         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
4391         original klass (this only applies for generic instances).
4392
4393 2004-11-24  Martin Baulig  <martin@ximian.com>
4394
4395         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
4396         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
4397         that array).
4398
4399 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
4400
4401         * mini.c (mono_method_to_ir): Disable inlining for methods containing
4402         localloc. Fixes #69678.
4403
4404         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
4405         
4406 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
4407
4408         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
4409         used SSE registers on pinvoke calls. Fixes #69774.
4410
4411 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
4412
4413         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
4414         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
4415
4416 2004-11-23  Raja R Harinath  <rharinath@novell.com>
4417
4418         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
4419         Refer directly to the mcs/ tree.
4420
4421 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4422
4423         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
4424         Check if a trampoline for a synchronized method is required. 
4425
4426 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
4427
4428         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
4429         with localloc if needed. Throe arithmetric exception in
4430         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
4431         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
4432
4433 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
4434
4435         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
4436         types before switching on type.  Fixes #69622.
4437
4438 2004-11-19  Raja R Harinath  <rharinath@novell.com>
4439
4440         * Makefile.am (check-local): New.  Integrate into 'make check'.
4441         (MCS,RUNTIME): Define using in-tree mono and mcs.
4442         (ILASM): New.
4443         (%.exe): Use $(ILASM).
4444
4445 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
4446
4447         * mini-ppc.c: adjust initial prolog size (bug #69691).
4448
4449 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
4450
4451         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
4452         #69664.
4453
4454 2004-11-17  Raja R Harinath  <rharinath@novell.com>
4455
4456         * Makefile.am (clean-local): Rename from 'clean'.
4457
4458 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4459
4460         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
4461         to mono_arch_is_int_overflow. 
4462         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
4463         SIGFPE events.
4464
4465 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
4466
4467         * declsec.c|h: New files to support declarative security attributes.
4468         Added function to check if a method has (applicable) security.
4469         * mini.c|h: Add check for declarative security attributes in
4470         mono_method_check_inlining.
4471         * Makefile.am: Added declsec.c and declsec.h to the build.
4472
4473 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
4474
4475         * mini.c, mini.h: update to keep dynamic code info per-domain.
4476
4477 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
4478
4479         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
4480         (mini_init): Get rid of it from here too.
4481
4482 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
4483
4484         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
4485         implemented OP_RETHROW (patch by Geoff Norton
4486         <gnorton@customerdna.com>).
4487
4488 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
4489
4490         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
4491         between appdomains.  Fixes appdomain-unload on PPC.
4492
4493 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
4494
4495         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
4496         mini-exceptions.c: handle the new wrapper types.
4497         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
4498         token value as a MonoClass* when compiling a wrapper.
4499         mono_jit_create_remoting_trampoline now takes an additional
4500         MonoRemotingTarget parameter.
4501         
4502 2004-11-10  Martin Baulig  <martin@localhost>
4503
4504         * mini.c (mono_method_to_ir): Use `generic_container->context'
4505         rather than creating a new one.
4506
4507 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4508
4509         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
4510
4511         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
4512
4513 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
4514
4515         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
4516         the experimental aot cache stuff.
4517
4518 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
4519
4520         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
4521         mini-exceptions.c: update to exception clause structure changes.
4522
4523 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
4524
4525         * exceptions-x86.c (throw_exception): Fix warnings.
4526
4527         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
4528         for OP_RETHROW.
4529
4530 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
4531
4532         * exceptions-sparc.c (get_throw_exception): Really fix this.
4533
4534 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
4535
4536         * tramp-*.c: we no longer support icalls without wrappers, so
4537         a bit of code can be removed here
4538
4539 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
4540
4541         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
4542         patch.
4543
4544         * cpu-sparc.md: Add op_rethrow.
4545
4546         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
4547
4548         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
4549
4550         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
4551         * mini-ops.h: Add OP_RETHROW.
4552
4553         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
4554
4555         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
4556
4557 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
4558         
4559         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
4560         Makes the output much easier to read
4561
4562 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
4563
4564         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
4565         prevents another huge leak when compiling with ssa. Secondly, the
4566         performance of doing this rather than freeing the lists is much
4567         better. GList does a lock every time you allocate a list link,
4568         so that it can use a memory pool. So, it is better to just use
4569         a memory pool of our own.
4570         
4571         * ssa.c, linear-scan.c: replace g_list_remove_link with
4572         g_list_delete.  The remove one does not free the GList, so we were
4573         leaking memory. On -O=all --compile-all with corlib, this cut down
4574         3 MB of allocations.
4575
4576 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
4577
4578         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
4579
4580         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
4581
4582         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
4583         into a new function mono_create_jit_trampoline ().
4584
4585 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
4586
4587         * trace.c (get_spec): Allow tracing of classes without a namespace.
4588
4589 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
4590
4591         * mini.c: Fix pointer overwrite in mini_method_compile.
4592
4593 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
4594
4595         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
4596         The darwin ABI needs some special handling for 1 and 2 byte structs
4597         Lets use lbz/lhz instead of lwz everywhere.
4598         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
4599         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
4600         Use stb/sth for the former, and put the latter always on stack instead of in
4601         argument registers.
4602
4603 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
4604
4605         * trace.c (is_filenamechar): Add '_'.
4606
4607 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
4608
4609         * mini-s390.c: Fix prolog length to allow for large trace requirements.
4610
4611         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
4612
4613 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
4614
4615         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
4616         depends on libmonogc. Fixes #68805.
4617
4618 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
4619
4620         * mini.c (mono_jit_free_method): Provide extra information for
4621         this error.  Currently this leaks, but will be turned into a
4622         developer option in the future.
4623
4624 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
4625
4626         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
4627
4628 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
4629
4630         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
4631         boundary. Fixes reading of PATCH_INFO_R4 and R8.
4632         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
4633
4634 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
4635
4636         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
4637         trampolines for AOT code.
4638
4639 2004-10-22    <vargaz@freemail.hu>
4640
4641         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
4642         constructed types. Fixes #68136.
4643
4644 2004-10-21  Martin Baulig  <martin@ximian.com>
4645
4646         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
4647         if it returns true, unwind the stack to the call instruction.
4648
4649 2004-10-21    <vargaz@freemail.hu>
4650
4651         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
4652
4653         * mini.h: Bump AOT version number.
4654
4655         * objects.cs: Add another test for unbox trampolines.
4656
4657         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
4658         valuetype methods.
4659
4660 2004-10-20    <vargaz@freemail.hu>
4661
4662         * driver.c: Add SHARED to the set of optimizations tested.
4663
4664         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
4665
4666         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
4667         used by CEE_NEWARR.
4668
4669         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
4670
4671 2004-10-20  Martin Baulig  <martin@ximian.com>
4672
4673         * mini-exceptions.c (mono_handle_exception): Call
4674         mono_debugger_handle_exception() to tell the debugger about
4675         catch/finally clauses.
4676
4677 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
4678
4679         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
4680
4681         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
4682         #68447.
4683
4684 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
4685
4686         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
4687         methods as their native size, fixed bug #57543, #57545.
4688         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
4689         This saves a temporary register and mullw call down into 1 (minor perf
4690         increase for cases like sum = sum * 5;  This use to translate into:
4691             li r11,5
4692             mullw r28,r28,r11
4693         It now translates to
4694             mulli r28,r28,5
4695
4696 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
4697
4698         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
4699         #68388.
4700
4701 2004-10-11  Martin Baulig  <martin@ximian.com>
4702
4703         * mini.c (mono_method_to_ir): If we're a generic method, get the
4704         MonoGenericContainer from our MonoMethodNormal and create a
4705         MonoGenericContext from it.
4706
4707 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
4708
4709         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
4710
4711         * basic-long.cs: Add test for checked i8->i2 cast.
4712
4713 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
4714
4715         * inssel-ppc.brg: added a couple of speedup rules.
4716
4717 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
4718
4719         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
4720         to speed up rebuilds.
4721
4722 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4723
4724         * mini-s390.c: Minor fix to OP_OR_IMM.
4725
4726 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
4727
4728         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
4729         better. Fixes appdomain-unload.exe on sparc.
4730
4731 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
4732
4733         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
4734         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
4735         see bug 67324.
4736
4737 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
4738
4739         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
4740
4741 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
4742
4743         * mini.c: Always generate a field read/write wrapper for members
4744         of the class MarshalByRefObject since the actual instance could
4745         be a CBO.
4746
4747 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
4748
4749         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
4750
4751 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
4752
4753         * driver.c mini.h trace.c: Move the setting of the main assembly into
4754         a separate function called mono_trace_set_assembly () and call it after
4755         actually loading the main assembly. Fixes #66872.
4756
4757 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
4758
4759         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
4760         using the code manager.
4761
4762 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
4763
4764         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
4765
4766 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
4767
4768         * cpu-amd64.md: Fix bug in previous patch.
4769         
4770         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
4771         #66650.
4772
4773 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
4774
4775         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
4776         mini-exceptions.c: updates for changed stack walk interface.
4777
4778 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
4779
4780         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
4781
4782 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
4783
4784         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
4785
4786 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
4787
4788         * driver.c (mini_regression_list): Do not call mono_assembly_close 
4789         since assemblies can't be unloaded.
4790         
4791 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
4792
4793         * cpu-amd64.md: Fix more instruction lengths.
4794
4795         * cpu-amd64.md: Fix lengths of some instructions.
4796
4797 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
4798
4799         * inssel.brg: Make the array ldelema check aot friendly.
4800
4801 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
4802
4803         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
4804
4805         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
4806
4807 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
4808
4809         * mini-x86.c: Fix build.
4810
4811         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
4812         mono_type_get_underlying_type () helper function to simplify code.
4813         
4814 2004-09-09  Martin Baulig  <martin@ximian.com>
4815
4816         * mini-amd64.c: Don't access `type->data.klass' directly, call
4817         mono_class_from_mono_type() instead since the type may be a
4818         generic instance.
4819
4820 2004-09-09  Martin Baulig  <martin@ximian.com>
4821
4822         * mini-amd64.c (get_call_info): Fix support for generic instances.
4823         (add_valuetype): Use mono_class_from_mono_type() to get the class
4824         since we can be a generic instance.
4825
4826 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
4827
4828         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
4829
4830 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
4831
4832         * liveness.c: reset spill costs on each scan: bug 62107
4833
4834 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
4835
4836         * exceptions-sparc.c (mono_arch_find_jit_info): remove
4837         unnecessary line that doesn't compile
4838
4839 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4840
4841         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
4842         trampolines, make them call an error function so people can fix their
4843         code.
4844
4845 2004-09-06  Martin Baulig  <martin@ximian.com>
4846
4847         * mini.c (mono_method_to_ir): When initializing locals, handle a
4848         generic instances like a valuetype if it's a valuetype and like a
4849         class if it's a class.
4850
4851 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4852
4853         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
4854         stack. Fixes #64674.
4855
4856         * exceptions.cs: Add test for unwinding of call arguments.
4857
4858 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
4859
4860         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
4861         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
4862         set the carry/borrow flag). The sparc and s390 implementations
4863         can now use optimized versions (and simplify the code). ppc bugfixes.
4864
4865 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4866
4867         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
4868
4869 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
4870
4871         * inssel-amd64.brg: Remove leftover 32 bit rule.
4872
4873         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
4874
4875 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
4876
4877         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
4878         mono_arch_find_jit_info functions into a new function. Fix a memory
4879         leak.
4880
4881         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
4882         refactored code.
4883         
4884 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4885
4886         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
4887         as well.
4888         
4889         * exceptions.cs: Add array size tests.
4890
4891         * mini.c: Allocate a separate icall wrapper for each arity of 
4892         mono_array_new_va. Fixes #59509.
4893
4894         * exceptions.cs: Add testcase for 64578.
4895
4896         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
4897
4898         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
4899         
4900 2004-09-02  Martin Baulig  <martin@ximian.com>
4901
4902         * mini.c (mono_method_to_ir): When initializing the locals, call
4903         handle_initobj() on the generic instance itself, not its
4904         underlying type.
4905
4906 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4907
4908         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
4909         MonoJitInfo for dynamic methods.
4910
4911         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
4912
4913         * mini.c: Add support for freeing JIT data for dynamic methods.
4914         
4915 2004-09-01  Martin Baulig  <martin@ximian.com>
4916
4917         * mini-x86.c (is_regsize_var): Added support for generic
4918         instances.
4919         (mono_arch_emit_prolog): Make this compile again, use
4920         `x86_push_imm_template (code)'.
4921
4922 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
4923
4924         * mini-x86.c: make all push_imm instructions that get
4925         patched always emit the long form
4926
4927 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
4928
4929         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
4930         in a per-domain hash.
4931
4932         * mini-amd64.c (merge_argument_class_from_type): Handle generic
4933         types.
4934
4935 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
4936
4937         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
4938         work.
4939         
4940         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
4941         work.
4942
4943         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
4944         Beginnings of SSE2 support.
4945
4946         * exceptions.cs: Add more tests for checked int<->uint casts.
4947
4948 2004-08-28  Martin Baulig  <martin@ximian.com>
4949
4950         * mini-x86.c (mono_arch_instrument_epilog): Added support for
4951         generic instances.
4952
4953         * mini.c
4954         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
4955         Handle generic instances recursively.
4956
4957 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
4958
4959         * iltests.il: test for conv.u8 on a constant
4960
4961 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
4962
4963         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
4964         LCONV_x4 (shrun_32 (membase)).
4965
4966 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
4967
4968         * inssel-x86.brg: c&p rules for push/setret of long
4969
4970 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
4971
4972         * inssel-x86.brg: c&p rules for compare (base, regvar) and
4973         compare (regvar, base)
4974
4975         * inssel-x86.brg: more burg love
4976
4977         * inssel.brg: more cleanup
4978
4979         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
4980
4981 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
4982
4983         * basic-long.cs, basic-calls.cs: new tests for optimization.
4984
4985 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
4986
4987         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
4988         patch.
4989
4990 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
4991
4992         * mini-amd64.c (read_tls_offset_from_method): Add another case.
4993         
4994 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
4995
4996         * inssel.brg (mini_emit_memcpy): use 
4997         NO_UNALIGNED_ACCESS to disable memcpy optimization
4998
4999 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
5000
5001         * mini-amd64.c: Handle generic types in various places.
5002
5003         * mini.c (mono_method_to_ir): Handle generic types in init locals.
5004
5005 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
5006
5007         * mini.c (handle_box): Fix warning.
5008
5009         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
5010
5011         * mini-amd64.h: Enable the emit_state optimization.
5012
5013         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
5014
5015         * mini-amd64.c: Add some new 64 bit peephole opts.
5016
5017         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
5018
5019         * cpu-amd64.md: sreg1 of div instructions must be %rax.
5020
5021         * mini-amd64.c: Register allocator fixes.
5022
5023         * mini.c: Add an optimization to emit_state to avoid allocation of new
5024         registers on some platforms.
5025
5026 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
5027
5028         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
5029
5030         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
5031         allocation. Fixes #63085.
5032
5033         * basic-long.cs: Add new regression test.
5034
5035         * mini-amd64.c: Register allocator improvements.
5036
5037 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
5038
5039         * mini-amd64.c (read_tls_offset_from_method): Add another code
5040         sequence.
5041
5042         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
5043         instruction sequence for nullifying class init trampolines.
5044
5045         * objects.cs: Add new regalloc test.
5046
5047         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
5048
5049 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
5050
5051         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
5052         
5053         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
5054         arguments.
5055
5056         * driver.c: Fix profiling after TLS changes.
5057         
5058         * driver.c (mono_main): Set mono_stats.enabled if needed.
5059
5060         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
5061         CEE_BOX.
5062
5063 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
5064
5065         * mini-x86.c: use a 1 op rather than a 2 op tls access
5066         instruction -> faster.
5067
5068 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
5069
5070         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
5071         x86 backend.
5072
5073 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
5074
5075         * exceptions-sparc.c (throw_exception): fix typo
5076
5077 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
5078
5079         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
5080         set tree->dreg correctly with tls. Allow any
5081         register to be used.
5082
5083         * mini-x86.c (read_tls_offset_from_method): add new code
5084         generation pattern seen with GCC.
5085
5086
5087 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
5088
5089         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
5090         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
5091         exceptions-sparc.c: fix some performance issues in exception
5092         handling and setting of the stack trace for exceptions that were
5093         already thrown.
5094
5095 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
5096
5097         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
5098         x86 backend.
5099         
5100         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
5101         registers.
5102
5103 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
5104
5105         This patch inlines tls access, when possible.
5106         
5107         * mini.h: new arch functions for TLS intrinsics.
5108         All platforms updated with a stub.
5109
5110         * mini.c: use the new intrinsics
5111
5112         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
5113         arch specific intrinsic for tls variables
5114
5115 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
5116
5117         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
5118         under windows.
5119
5120 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
5121
5122         * mini.c: thread local allocation
5123
5124 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
5125
5126         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
5127
5128         * Makefile.am: Link against the static version of libmonogc.
5129         
5130         * Makefile.am: Link the static versions of the convenience libraries
5131         into the mono executable.
5132
5133         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
5134
5135 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
5136
5137         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
5138         on integer overflow.
5139
5140         * mini-amd64.c: Reorganize function call code.
5141
5142         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
5143
5144 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
5145
5146         * inssel-x86.brg: use xor eax,eax.
5147         
5148         * basic.cs: new tests
5149
5150 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
5151
5152         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
5153         in exception throwing code.
5154         
5155 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
5156
5157         * inssel-x86.brg: use xor esi,esi.
5158
5159 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
5160
5161         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
5162         can trace methods compiled during mini_init () too.
5163
5164         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
5165         CEE_CONV_U4.
5166
5167 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
5168
5169         * Makefile.am: static link on x86 (r=zoltan)
5170
5171 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
5172
5173         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
5174         code since it causes some programs to fail.
5175
5176 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
5177
5178         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
5179
5180 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
5181
5182         * mini.c: ovfops_op_map - add STACK_OBJ case for
5183         CONV_I 
5184         * basic.cs: add test_0_pin_string as test
5185         case for above.
5186
5187 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
5188
5189         * Makefile.am: build C# if srcdir != builddir
5190
5191 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
5192
5193         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
5194         fall-through blocks.
5195
5196 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
5197
5198         * driver.c: enable loop by default again and include abcrem in -O=all.
5199
5200 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
5201
5202         * iltests.il: Add some localloc tests.
5203
5204         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
5205
5206         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
5207         Fixes #62574.
5208
5209         * inssel-amd64.brg: Add some optimizations.
5210
5211         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
5212         for gcc-3.4.
5213
5214         * Makefile.am: Statically link mono against libmono on AMD64.
5215         
5216         * mini-amd64.c inssel-amd64.brg: Optimizations.
5217
5218 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
5219
5220         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
5221
5222         * tramp-amd64.c: Patch calling code in trampolines.
5223
5224 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
5225
5226         * mini-amd64.c: pinvoke struct passing fixes.
5227
5228 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
5229
5230         * mini-sparc.c: redo change, make mono_arch_cpu_init call
5231         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
5232
5233 2004-08-05  Duncan Mak  <duncan@ximian.com>
5234
5235         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
5236         CEE_LDELEM_ANY.
5237
5238 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
5239
5240         * mini-amd64.c (emit_move_return_value): Move return value for normal
5241         calls too.
5242
5243 2004-08-05  Martin Baulig  <martin@ximian.com>
5244
5245         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
5246         `type->type'; just modify `type' itself when dealing with enums
5247         and generic instances.
5248         (check_call_signature): Make `simple_type' a `MonoType *'.
5249
5250 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
5251
5252         * mini.c: Use OP_PADD to add offsets to addresses.
5253
5254         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
5255
5256 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
5257
5258         * mini-sparc.c (mono_arch_emit_epilog): fix check
5259         for folding last op into restore instruction
5260
5261 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
5262
5263         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
5264         helper methods using the code manager.
5265         
5266         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
5267
5268         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
5269
5270 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
5271         
5272         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
5273           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
5274
5275         * mini-s390.c: fix tail processing
5276
5277 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
5278
5279         * mini-ppc.c: mul.ovf.un exception name fix.
5280
5281 2004-08-03  Martin Baulig  <martin@ximian.com>
5282
5283         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
5284         instances; before jumping to `handle_enum', also modify `ptype'.
5285
5286 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
5287
5288         * cpu-sparc.md: fcall maximal length too small.
5289
5290 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
5291
5292         * mini-amd64.c mini.h: Add initial support for passing/returning 
5293         structures to/from pinvoked methods.
5294
5295 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
5296
5297         * mini-ppc.c: reg allocator fix.
5298
5299 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
5300
5301         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
5302
5303         * inssel.brg: Optimize memset on 64 bit machines.
5304
5305         * mini-amd64.c: Fix some vararg cases.
5306
5307 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
5308
5309         * mini-s390.c: Corrected macro in emit_float_to_int
5310
5311         * s390-abi.cs: Tests to exercise the s390 ABI
5312
5313 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
5314
5315         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
5316         caller saved regs.
5317
5318         * basic.cs: Add a test for add.ovf.un.
5319
5320 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
5321
5322         * mini-sparc.c: add case for OP_IDIV_UN
5323
5324 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
5325
5326         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
5327         
5328         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
5329
5330 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
5331
5332         * basic.cs: regression tests.
5333
5334         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
5335         regressions.
5336
5337 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
5338
5339         * basic.cs: Add a new test.
5340
5341         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
5342         and AOT. Various fixes and optimizations.
5343
5344         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
5345
5346 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
5347
5348         * mini-ppc.c: make sure temp regs are not used for global reg
5349         allocation.
5350
5351 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
5352
5353         * cpu-sparc.md: conv_i8 fix for 64bits
5354
5355         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
5356
5357 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
5358         
5359         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
5360         add opcode for cmp BYTE PTR [eax], imm.
5361
5362         * inssel.brg: Make memcpy and memset takes bases.
5363
5364 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
5365
5366         * *-amd64.*: More AMD64 work.
5367         
5368 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
5369
5370         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
5371         add a compare-not-equal opcode.
5372         
5373 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
5374
5375         * mini.c: Use mono_init_from_assembly instead of mono_init.
5376         
5377 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
5378
5379         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
5380
5381         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
5382
5383         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
5384
5385         * inssel.brg: 64 bit fixes.
5386
5387         * mini.h (MonoCallInst): Add some AMD64 specific data.
5388
5389         * mini.h: Add some OP_P opcodes.
5390
5391 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
5392
5393         * basic.cs: tests for 61797 and 61740
5394
5395 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
5396
5397         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
5398         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
5399
5400 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
5401
5402         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
5403
5404         * *-amd64*.*: Ongoing AMD64 work.
5405
5406 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
5407
5408         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
5409
5410         * *-amd64*: Ongoing AMD64 work.
5411
5412         * mini-arch.h: Add AMD64 support.
5413
5414         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
5415
5416         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
5417
5418         * mini-ops.h: Add new opcodes.
5419
5420         * Makefile.am: Add AMD64 support.
5421
5422         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
5423         rules into the inssel-long*.brg files.
5424
5425         * *-amd64.*: Add beginnings of AMD64 backend.
5426
5427 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
5428
5429         * mini.c (print_dfn): commenting out the code that prints
5430         the cil. With -O=deadce, this makes -v -v crash.
5431         
5432         * cpu-pentium.md: make checkthis have a length of 2
5433
5434 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
5435
5436         * mini-sparc.h: fix implementations of __builtin
5437         functions for Sun compiler for V9.
5438
5439 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
5440
5441         * mini.c: use the new stelem.ref wrapper
5442         * exceptions.cs, arrays.cs: new stelem.ref tests
5443
5444 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
5445
5446         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
5447         new XSP should work with these changes).
5448
5449 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
5450         
5451         * inssel-{long32,x86,}.brg: trivial optimizations.
5452         
5453 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
5454
5455         * mini.c: load value when emitting box operation in
5456         constrained calls.
5457
5458 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
5459
5460         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
5461         is one byte shorter than cmp DWORD PTR [eax], 0.
5462
5463 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
5464
5465         * inssel-ppc.brg: arguments on the stack are always
5466         relative to the stack pointer (spotted by Neale Ferguson).
5467
5468 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5469
5470         * exceptions-x86.c: delay appending the method name to the trace until
5471         after mono_jit_info_table_find is called, as this gets the real
5472         MonoMethod.
5473
5474 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
5475
5476         * aot.c: register roots
5477
5478 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
5479
5480         * aot.c : I could just use PLATFORM_WIN32 flag.
5481
5482 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
5483
5484         * aot.c : Reverting the previous fix. This time it broke linux build.
5485
5486 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
5487
5488         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
5489
5490 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
5491
5492         * mini.c (handle_stack_args): Remove some more debugging code.
5493         
5494         * mini.c (handle_stack_args): Remove debug output left in by mistake.
5495
5496         * driver.c mini.h aot.c: Allow additional options to be specified with
5497         --aot and pass them to mono_compile_assembly.
5498
5499         * aot.c: Add experimental code to AOT compile all loaded assemblies
5500         on demand and save the code into a cache in the filesystem.
5501
5502         * aot.c: Add support for more wrapper methods.
5503         
5504         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
5505         58863.
5506
5507         * cpu-*.md: Remove removed opcodes.
5508
5509         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
5510         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
5511         related icalls to marshal.c.
5512
5513 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
5514
5515         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
5516
5517         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
5518
5519         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
5520
5521 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
5522         * liveness.c: If liveness is recomputated we need to reset the information
5523         for each variable. This way, if the liveness range has been narrowed
5524         by optimizations that happened after the last computation, we can return
5525         a smaller range.
5526         
5527         For example, if you have
5528         
5529         {
5530                 int i = 0;
5531                 
5532                 // Tons of code that does not affect i
5533                 
5534                 i = foo ();
5535                 ...
5536         }
5537         
5538         i = 0 is dead code and will be removed by SSA. However, when
5539         linear scan gets to the code, i will still appear to be live
5540         throughout the entire block. This prevents good register allocation.
5541
5542 2004-07-06  Martin Baulig  <martin@ximian.com>
5543
5544         * debug-mini.c (mono_debug_init_method): Allow
5545         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
5546         (mono_debug_add_icall_wrapper): New method.
5547
5548         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
5549
5550 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
5551
5552         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
5553         optimization.
5554
5555 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
5556
5557         * aot.c (mono_aot_load_method): Fix loading of debug info.
5558
5559 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
5560
5561         * aot.c: Add logging support.
5562
5563 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
5564
5565         * mini.h: Add prototype for mono_print_method_from_ip.
5566
5567         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
5568
5569         * inssel.brg: 64 bit fixes.
5570
5571         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
5572         inssel-long32.brg.
5573
5574         * Makefile.am: Add SPARC64 support.
5575
5576 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
5577
5578         * aot.c: Fix alignment problems on 32 bit platforms.
5579
5580 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
5581
5582         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
5583         SPARC64.
5584
5585         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
5586         problems.
5587
5588         * mini.h: Bump AOT file version. Some 64 bit fixes.
5589
5590 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
5591
5592         * inssel-sparc.brg: Add new rule to avoid register moves.
5593
5594         * inssel.brg: Add ldind_to_load_membase helper function.
5595
5596 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
5597
5598         * mini.c: OffsetToStringData intrinsic.
5599         
5600 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
5601
5602         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
5603
5604         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
5605         regression tests.
5606
5607         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
5608 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
5609
5610         * mini.c: reinstated mono_compile_get_interface_var()
5611         on x86, too, since the change breaks the Gtk# build there as well.
5612
5613 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
5614
5615         * driver.c: remove loop from the default optimizations: it seems to
5616         interact badly with some of the other options (see bug #60613).
5617
5618 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
5619
5620         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
5621         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
5622
5623 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
5624
5625         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
5626         vararg-using methods.
5627
5628 2004-06-21  Martin Baulig  <martin@ximian.com>
5629
5630         * mini/mini-exceptions.c
5631         (mono_handle_exception): Added `gpointer original_ip' argument.
5632         After calling mono_unhandled_exception(), call
5633         mono_debugger_unhandled_exception() and if that returns true,
5634         restore the context and return.
5635
5636 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
5637
5638         * mini-ppc.c: prefer the use of relative branches so
5639         they won't need to be patched in aot code (patch from Patrick Beard).
5640
5641 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
5642
5643         * aot.c: patch from Patrick Beard to make the output assembly
5644         more correct for the MacOSX assembler. Small tweak to
5645         generate sane images on Linux/PPC, too.
5646
5647 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
5648
5649         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
5650         case until bug #59509 is fixed (shows up in #60332).
5651
5652 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
5653
5654         * mini.c: make sure the needed wrappers are compiled, too, with
5655         precomp.
5656
5657 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
5658
5659         * driver.c: remove NPTL reference in --version output.
5660
5661 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
5662
5663         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
5664         generate valid assembly for the Mach-O assembler.
5665
5666 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
5667
5668         * driver.c: don't include abcrem in the all optimization specifier
5669         since it slows down jit compilation too much for now.
5670
5671 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
5672
5673         * mini.c: use BIGMUL only if both operands have the same signage.
5674         * iltests.il: Test for bug 60056. (errors related to signage in
5675         BIGMUL).
5676
5677         r=lupus.
5678
5679 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
5680
5681         * mini.c, aot.c: memory leak fixes.
5682
5683 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
5684
5685         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
5686
5687 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
5688
5689         * Makefile.am: remove the -static hack completely, it links in
5690         statically glib as well.
5691
5692 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
5693
5694         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
5695         * exceptions.cs: make it compile with new mcs/csc.
5696
5697 2004-06-03 Massimiliano Mantione <massi@ximian.com>
5698         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
5699         and added relevant test case.
5700
5701 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
5702
5703         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
5704         regressions in gtk-sharp.
5705
5706 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
5707
5708         * exceptions.cs: New regression tests.
5709
5710         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
5711
5712 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
5713
5714         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
5715
5716 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
5717
5718         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
5719
5720         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
5721
5722 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
5723
5724         * mini.c (mono_jit_runtime_invoke): Init class in this
5725         method instead of trusting mono_jit_compile_method to
5726         do the work (because wrappers can be in object class)
5727
5728 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
5729
5730         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
5731
5732         * basic-long.cs: New regression test.
5733
5734 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
5735
5736         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
5737         and div/rem checks.
5738
5739 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
5740
5741         * Makefile.am: fix miguel's change to build mono statically against
5742         libmono (track build dependencies).
5743
5744 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
5745
5746         * cfold.c: Some glib versions do not have G_MININT32.
5747
5748 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
5749
5750         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
5751         with precision of tan, atan, sin and cos, and implemented related
5752         regressions tests (fixes bug 54467, but one new problem appeared and
5753         is not fixed yet).
5754
5755 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
5756
5757         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
5758
5759         * exceptions.cs: Add test for constant folding && division by zero.
5760
5761         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
5762         since driver.c is in libmono too, so the optimization was useless.
5763
5764         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
5765         variable to driver.c so the compiler can emit more efficient code to
5766         access them.
5767
5768 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5769
5770         * Makefile.am: don't distribute generated inssel.[ch] files.
5771
5772 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
5773
5774         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
5775         into the default appdomain. Fixes #58707.
5776
5777         * jit-icalls.c: Remove the broken approximation for truncl, doing
5778         no conversion is better.
5779
5780         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
5781         Fixes #58863.
5782
5783 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
5784
5785         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
5786         of the mcrxr instruction which is not available on some processors
5787         even if it's documented to be. Implement add and sub overflow correctly
5788         (still not complete for long unsigned). Speed up icalls a bit.
5789
5790 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
5791
5792         * mini.c (mono_jit_compile_method_with_opt): Make sure that
5793         we run .cctor in the current domain instead of target_domain.
5794         
5795         Fixes bug #58558, .cctor not being called in -O=shared.
5796
5797 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
5798
5799         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
5800
5801 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
5802
5803         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
5804         which can be done with an imm8, do it that way.
5805         (mono_arch_output_basic_block): ditto for a jmp
5806         (mono_arch_emit_prolog): Computate maximum offset of a label.
5807
5808 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
5809
5810         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
5811         now tries to allocate prefered physical reg's for virtual
5812         regs. This reduces the number of emited spills/loads with
5813         20-30% on our core assemblies.
5814
5815 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
5816
5817         * jit-icalls.c: truncl() is not needed and trunc() is
5818         the correct thing to do anyway (bug #58287).
5819
5820 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
5821
5822         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
5823         if available.
5824
5825 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
5826
5827         * driver.c: enable loop optimizations by default.
5828
5829 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
5830
5831         * mini-x86.c: fix calc of max loop size when aligning loops start.
5832
5833 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
5834
5835         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
5836         the stack.
5837
5838 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
5839
5840         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
5841         should set carry.
5842
5843         * basic-long.cs: Add tests for add/subtract of immediates with carry.
5844
5845         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
5846         
5847         * mini.c (inline_method): Allways inline some wrappers even if the cost
5848         is too large. Fixes #58785.
5849
5850         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
5851         
5852 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
5853
5854         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
5855         (crichton@gimp.org). Beginning of support for sparc/linux.
5856
5857         * mini-sparc.c: Optimize retrieval of LMF address.
5858
5859 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
5860
5861         * exceptions-ppc.c:  handle alloca in methods with clauses.
5862
5863 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
5864
5865         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
5866
5867 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
5868
5869         * mini.c: Delegate most of the abort signal work to 
5870           mono_thread_request_interruption, which also handles Stop and Suspend
5871           states.
5872
5873 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
5874
5875         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
5876         supports the save/restore lmf opcodes.
5877
5878 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
5879
5880         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
5881         by gcc-3.4 as well.
5882
5883         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
5884
5885 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
5886
5887         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
5888         methods which contain array accesses.
5889
5890         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
5891         boundaries. Fixes #58537.
5892
5893         * iltests.il: Add regression test for #58537.
5894
5895 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
5896
5897         * mini-x86.c (mono_arch_local_regalloc): Last part of
5898         fix for bug #58633 (releasing register to early).
5899
5900 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
5901
5902         * basic-long.cs: Add new regression test.
5903
5904 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
5905
5906         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
5907         register too early on the chain.
5908
5909 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
5910
5911         * mini.c (create_helper_signature): Use a helper function to reduce
5912         the code which needs to be written. Also set the calling convention of
5913         icalls on windows. Fixes #57840.
5914
5915 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
5916
5917         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
5918         exceptions-ppc.c: added helper function to get the instruction address
5919         from a signal handler context.
5920
5921 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
5922
5923         * helpers.c: use g_get_tmp_dir. Invokes happyness 
5924         from gonzalo.
5925
5926 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
5927
5928         * helpers.c: Add new env variable to pass args to objdump.
5929         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
5930
5931 2004-05-17  Radek Doulik  <rodo@ximian.com>
5932
5933         * Makefile.am (common_sources): added abcremoval.h so it get
5934         disted and daily mono packages on go-mono.com will build again
5935
5936 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
5937
5938         * abcremoval.c: Fixed coding style, added copyright header.
5939
5940         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
5941
5942         * mini.h: Added prototype for abc removal main function.
5943
5944         * build_relations_propagation_table.pl: Added copyright header.
5945
5946 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
5947
5948         * basic-long.cs: reg test for complex ceq_long bug.
5949
5950 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
5951
5952         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
5953         reg in long and clob case (bug #58343). Fixed/added comments.
5954
5955 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
5956
5957         * mini.c (mono_jit_runtime_invoke): Follow new convention
5958         of calling the invoke method with an function pointer.
5959
5960 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
5961
5962         * ChangeLog: Fix author of memory leak patch.
5963
5964 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
5965
5966         * Makefile.am: fix make dist as well...
5967
5968
5969 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
5970
5971         * cfold.c: Made so that conversions from pointer to int4 are no-ops
5972         on archs where pointers are 4 bytes long.
5973
5974         * Makefile.am: Added abcremoval.c source file.
5975
5976         * abcremoval.c: Added abcremoval.c.
5977
5978         * abcremoval.h: Added abcremoval.h.
5979
5980         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
5981
5982         * inssel.brg: Enabled bounds check removal.
5983
5984         * mini.c: Added support for abcrem optimization.
5985
5986         * mini.h: Added abcrem optimization label.
5987
5988         * driver.c: Added support for abcrem optimization.
5989
5990         * propagated_relations_table.def: Added propagated_relations_table.def.
5991
5992 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
5993
5994         * mini.c, cfold.c: fix style.
5995
5996 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
5997
5998         * mini.c: handle issue with the low-level implementation of
5999         some long opcodes (bug #54209).
6000
6001 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
6002
6003         * basic.cs: test for my new cmov stuff.
6004
6005 2004-05-13      Patrik Torstensson
6006
6007         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
6008         opt and added peephole documentation.
6009
6010 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
6011
6012         * tramp-ppc.c: rewrote the generic trampoline code.
6013
6014 2004-05-11      Patrik Torstensson
6015
6016         * mini-x86.c: optimize long shl/shr asm code (one less branch)
6017
6018 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
6019
6020         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
6021
6022         * mini.h mini.c dominators.c: Applied patch from Derek Woo
6023         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
6024
6025         * mini.c: Add new icalls for AsAny marshalling.
6026
6027 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
6028
6029         * tramp-ppc.c, mini-ppc.c: more cleanups.
6030
6031 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6032
6033         * mini.c: no warnings.
6034
6035 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
6036
6037         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
6038
6039 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
6040
6041         * mini.c: In the thread abort signal handler, if the thread is in the
6042         process of being stoped, don't throw the Abort exception, just stop the
6043         thread.
6044
6045 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
6046
6047         * tramp-ppc.c: removed old code.
6048
6049 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
6050
6051         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
6052         do some simple speed optimizations on ppc.
6053
6054 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
6055
6056         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
6057         and large offsets in load/store.
6058
6059 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
6060
6061         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
6062         it causes regressions.
6063
6064 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
6065
6066         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
6067         support.
6068
6069 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
6070
6071         * jit-icalls.c: remove warnings.
6072         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
6073         speedups for unsafe code.
6074
6075 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
6076
6077         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
6078
6079 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
6080
6081         * basic-calls.cs: Add new regression test.
6082
6083         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
6084         more portable.
6085
6086         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
6087
6088         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
6089         is no longer used.
6090
6091 2004-05-06      Patrik Torstensson
6092
6093         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
6094         long reg allocation in any reg (not only eax:edx) and implemented 
6095         long shl/shr ops in asm instead of helpers.
6096
6097 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
6098
6099         * mini-sparc.h: Fix warnings.
6100
6101         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
6102         stack.
6103
6104         * mini-exceptions.c (mono_handle_exception): Call the filter in a
6105         separate statement for clarity.
6106
6107         * mini-sparc.c: Update status.
6108
6109 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
6110
6111         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
6112         here.
6113
6114 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
6115
6116         * inssel-ppc.brg: another small pre-release workaround:
6117         we don't do overflow detection for long_sub_un.
6118
6119 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
6120
6121         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
6122         (also works around a weird ppc bug: 57957).
6123
6124 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
6125
6126         * tramp-ppc.c: trampoline fixes.
6127
6128 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
6129
6130         * mini-ppc.c: fixed typos.
6131
6132 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
6133
6134         * mini-ppc.c, exceptions-ppc.c: more code saves registers
6135         at the top of the stack. Fixed typos. Use a frame registers
6136         for all the methods with exception clauses.
6137
6138 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
6139
6140         * exceptions-ppc.c: restore fp registers.
6141
6142 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
6143
6144         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
6145         order from the stack top (moved the stack room to save the
6146         return value for trace after the param area). Fixed corruption
6147         in restoring registers on unwind.
6148
6149 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
6150
6151         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
6152
6153 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
6154
6155         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
6156         and prolog/epilog for methods that use it. Allow
6157         enough param area room for varargs methods. Fix miguel's
6158         breakage in exception handling.
6159
6160 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
6161
6162         * Makefile.am: run genmdesc only on current arch.
6163
6164 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6165
6166         * exceptions-x86.c:
6167         * mini-x86.h: fix the build on windows.
6168
6169 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
6170
6171         * 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.
6172
6173         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
6174
6175         * mini-exceptions.c: New file.
6176         
6177         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
6178         Move some parts of the x86 exception handling code to an 
6179         arch-independent file so it can be shared with other ports.
6180
6181 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
6182
6183         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
6184
6185 2004-04-26  David Waite  <mass@akuma.org>
6186
6187         * driver.c: remove comma from end of enumeration declaration
6188
6189 2004-04-26  Jackson Harper  <jackson@ximian.com>
6190
6191         * driver.c: parse config file before loading first assembly. This
6192         allows the user gac to be enabled/disabled. 
6193         
6194 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
6195
6196         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
6197         simpler mechanism: we do not care what is encoded initially
6198         (branch absolute or relative), we care about the code and its
6199         target.  I kept the old code for reference for now.
6200
6201         The new code tries first to determine if the jump is anywhere in
6202         the -/+32 absolute meg range, if it succeeds, it encodes using the
6203         absolute branch;  If not, it tried to find something in the
6204         relative range, if not, it uses the handle_thunk code. 
6205
6206 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
6207
6208         * exceptions-ppc.c: use the correct ip register on macosx.
6209
6210 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
6211
6212         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
6213
6214 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
6215
6216         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
6217         Raise exception on integer divide by zero by hand since the hw
6218         doesn't support it. Handle NaNs in FP compares.
6219
6220 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
6221
6222         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
6223         code reducing duplication between the platforms and enabled
6224         signal exception handling (on linux for now).
6225
6226 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
6227
6228         * exceptions-ppc.c: more macosx support.
6229
6230 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
6231
6232         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
6233
6234 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
6235
6236         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
6237
6238 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
6239
6240         * iltests.il: more tests.
6241
6242 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
6243
6244         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
6245         vars as well.
6246
6247 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
6248
6249         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
6250
6251 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
6252
6253         * liveness.c: Mark variables as volatile in all basic blocks reachable
6254         from exception clauses.
6255
6256 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
6257
6258         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
6259         inlining.
6260
6261 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
6262
6263         * iltests.il, basic.cs: more tests for regalloc.
6264
6265 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
6266
6267         * iltests.il: Some tests for register allocation modifications
6268         I have locally.
6269
6270 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
6271
6272         * exceptions.cs: Add regression test for bug #56782.
6273
6274         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
6275         original stack trace if an exception is rethrown. Fixes #56782. Oh,
6276         the beauty of fixing the same thing in 5 different files...
6277
6278 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
6279
6280         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
6281         methods.
6282
6283 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
6284
6285         * mini.c: Add support for STRWLPARRAY marshalling convention.
6286
6287 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
6288
6289         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
6290         to init the context to setup the regs pointer).
6291
6292 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
6293
6294         * exceptions-ppc.c: more exceptions work.
6295
6296 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
6297
6298         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
6299         not allowed.
6300
6301 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
6302
6303         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
6304         can use the memory directly.
6305
6306         * cpu-pentium.md: Update documentation from a post from Zoltan. 
6307
6308         add x86_add_membase, x86_sub_membase, x86_mul_membase
6309
6310 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
6311
6312         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
6313         GENERAL_REGS they were also hardcoded for all PPC ports.
6314
6315         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
6316
6317         Remove hard-coded limit for floating point registers, use
6318         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
6319
6320         Notice that in MacOS X calling conventions you can fit a lot more
6321         floating point values in registers, so I should update the PInvoke
6322         test to excercise the passing of floating point values on the
6323         stack (currently broken).
6324         
6325 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
6326
6327         * tramp-ppc.c (create_trampoline_code): Added
6328         JUMP_TRAMPOLINE_SIZE. 
6329         (ppc_magic_trampoline): Follow the pattern from
6330         x86_magic_trampoline: if code is set to zero, return. 
6331         (create_trampoline_code): Always pass MonoMethod to the jump
6332         trampoline, before it was passing a null.
6333         (mono_arch_create_jump_trampoline): Implement the jump stub, could
6334         share the code with mono_arch_create_jit_trampoline. 
6335
6336         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
6337         implemented.
6338         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
6339         implemented.  
6340
6341         * cpu-g4.md: Added length for jmp instruction, the worst case
6342         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
6343         for save_lmf).
6344
6345 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
6346
6347         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
6348
6349 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
6350
6351         * mini.c: Only set bblock->real_offset when adding a new bblock, and
6352         before each IL instruction.
6353
6354         * mini.c (CEE_BOX): Fix warnings.
6355
6356 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6357
6358         * mini.c: removed a few unused vars and extra whitespace.
6359
6360 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
6361
6362         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
6363         checks.
6364         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
6365         index.
6366         (OP_GETCHR): use the above
6367         (CEE_LDELEMA): use the above.
6368
6369         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
6370         version of the generic impl.
6371         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
6372         (CEE_LDELEMA): use the above.
6373
6374 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
6375
6376         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
6377         Fixes #56317.
6378
6379         * iltests.il: Added new regression test for #56317.
6380
6381 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
6382
6383         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
6384         under NetBSD. Fixes #56450.
6385
6386         * liveness.c (update_gen_kill_set): Fix previous patch.
6387
6388 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6389
6390         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
6391
6392 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
6393
6394         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
6395         ldsfld and ldsflda.
6396
6397         * inssel-sparc.brg: Add more optimizations.
6398
6399         * mini-sparc.c: Replace multiply/divide with shifts if possible.
6400
6401 2004-04-01  Martin Baulig  <martin@ximian.com>
6402
6403         * mini.c (handle_box): New static function; moved the
6404         implementation of CEE_BOX here.
6405         (mono_method_to_ir): Added `constrained_call' variable.
6406         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
6407         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
6408         mono_method_get_constrained() to get the method.
6409
6410 2004-04-01  Martin Baulig  <martin@ximian.com>
6411
6412         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
6413         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
6414         (mono_method_to_ir): We don't need these macros anymore since
6415         mono_class_get_full() already takes care of it. 
6416
6417 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6418
6419         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
6420         use @function (as doesn't accept #function here) and check the return
6421         value of system and stop if fails.
6422
6423 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6424
6425         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
6426
6427 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
6428
6429         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
6430
6431         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
6432
6433         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
6434         #56223.
6435
6436         * basic-long.cs: Add test for negation of Int64.MinValue.
6437
6438 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
6439
6440         * mini-sparc.c: Update status.
6441
6442         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
6443
6444         * exceptions-sparc.c: Fix return value in filters.
6445
6446         * inssel-sparc.brg: Fix register allocation in some rules.
6447
6448 2004-03-28  Martin Baulig  <martin@ximian.com>
6449
6450         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
6451         if neccessary.  
6452
6453 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
6454
6455         * mini-x86.c (mono_arch_patch_code): Fix warnings.
6456         
6457         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
6458         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
6459         remove unused conv_u4 opcode.
6460
6461         * mini-x86.c: Remove valgrind workaround since it slows down things
6462         even when mono is not run under valgrind.
6463
6464 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
6465
6466         * mini-sparc.c: Update status.
6467
6468         * inssel-sparc.brg: Add some optimizations.
6469
6470         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
6471         future delay slot filling. Add support for varargs, tail calls and JMP.
6472
6473         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
6474         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
6475
6476         * inssel.brg: Fix register allocation in OP_ARGLIST.
6477
6478         * inssel.brg: Fix warnings.
6479
6480 2004-03-25  Martin Baulig  <martin@ximian.com>
6481
6482         * mini.c (inflate_generic_field): Removed.
6483         (mini_get_method): Removed, use mono_get_method_full(),
6484         (mini_get_class): Removed, use mono_class_get_full().
6485         (mono_method_to_ir): Pass our generic context to
6486         mono_field_from_token().        
6487
6488 2004-03-25  Martin Baulig  <martin@ximian.com>
6489
6490         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
6491         of a `MonoMethod *'.
6492         (mini_get_method): Take a `MonoGenericContext *' instead
6493         of a `MonoMethod *'.
6494         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
6495         a new local variable called `generic_context' which holds the
6496         current `MonoGenericContext *'; use it to lookup things.
6497
6498 2004-03-24  Martin Baulig  <martin@ximian.com>
6499
6500         * mini.c (mini_get_class): New static method; if we're inside a
6501         generic instance, inflate the class if neccessary.
6502         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
6503
6504 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
6505
6506         * iltests.il: New regression test for #55976.
6507
6508         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
6509         #55976.
6510
6511 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
6512
6513         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
6514         output.
6515
6516 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
6517
6518         * liveness.c: Consider SSA stores as well as loads when making vars
6519         volatile.
6520
6521         * exceptions.cs: New regression tests for register allocation.
6522         
6523 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
6524
6525         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
6526         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
6527           domain lock only to protect puntual access to data structures.
6528           Added access lock for sighash, jit_icall_hash_name, 
6529           jit_icall_hash_addr and domain->code_mp.
6530
6531 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
6532
6533         * driver.c: Print SIGSEGV handling method.
6534
6535         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
6536
6537         * mini.c (setup_jit_tls_data): Handle case when this is called
6538         multiple times for a thread.
6539
6540         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
6541         is different from fbxx_un. Fixes #54303. Also use constants instead of
6542         magic numbers in a lot of places.
6543
6544 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
6545
6546         * exceptions.cs: Fix cctor test when --regression is used.
6547
6548 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
6549
6550         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
6551         for Linux/ppc.
6552
6553 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
6554
6555         * inssel-ppc.brg: fixed register assignments for some rules.
6556
6557 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
6558
6559         * exceptions.cs: Add test for exceptions in static constructors.
6560
6561         * mini.c (mono_jit_compile_method_with_out): Move the calling of
6562         static constructors outside the domain lock. Fixes #55720.
6563
6564 2004-03-17  Martin Baulig  <martin@ximian.com>
6565
6566         * mini.c (get_generic_field_inst): Removed, this'll never happen.
6567         (inflate_generic_field): Take the `MonoMethod *' instead of the
6568         `MonoClass *' and added support for generic method.
6569         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
6570         have a `field->parent->gen_params', only inflate the field if it's
6571         an open constructed type.
6572
6573 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
6574
6575         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
6576         exception object instead of the preconstructed ones.
6577
6578 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6579
6580         * mini.c: reverted changed to sigsegv_signal_handler commited
6581         accidentally in the previous patch.
6582
6583 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6584
6585         * mini.c:
6586         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
6587         running --aot with an old assembly.
6588
6589 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
6590
6591         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
6592         point values.
6593
6594         * mini-sparc.c: Add support for v9 branches with prediction.
6595
6596 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
6597
6598         * mini.c (mini_init): #warning is GNUC only
6599
6600         * mini-sparc.h: implement __builtin_frame_address
6601         and __builtin_return_address for Sun C compiler
6602
6603 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
6604
6605         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
6606
6607 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
6608
6609         * basic-calls.cs: Add test for unaligned byref long argument passing.
6610
6611         * mini-ops.h: Add sparcv9 compare and branch instructions.
6612
6613         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
6614         v9 instructions if we have a v9 cpu.
6615
6616         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
6617         registers for global allocation.
6618
6619         * exceptions-sparc.c: Fixes.
6620         
6621 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
6622
6623         * liveness.c (mono_analyze_liveness): Optimized version.
6624
6625         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
6626
6627         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
6628         sparc work.
6629
6630         * basic-float.cs basic-calls.cs: New regression tests.
6631
6632 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
6633
6634         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
6635         sigaltstack implementation.
6636
6637         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
6638         
6639         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
6640         stuff if SIGSEGV_ON_ALTSTACK is not defined.
6641
6642 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
6643
6644         * mini.c: Fix warnings.
6645         
6646         * mini.c (mono_resolve_patch_target): New function which contains the
6647         arch independent part of the patching process.
6648
6649         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
6650         patching code to a separate function.
6651
6652 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
6653
6654         * mini.c (add_signal_handler): ifdef out on Windows
6655
6656 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
6657
6658         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
6659         cpu-sparc.md: Add exception handling support + other fixes.
6660
6661         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
6662         typed GC detection in --version.
6663
6664         * basic.cs exceptions.cs: New regression tests.
6665
6666         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
6667         the arch specific code can store data during a compilation.
6668
6669         * mini-ops.h: Add OP_SETFRET.
6670
6671         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
6672         function, register a separate icall for each arity, so the icalls can
6673         get a wrapper.
6674         
6675         * mini.c (mono_print_tree): Print negative offsets in a more readable
6676         form.
6677         
6678         * mini.c: Make signal handling work on sparc.
6679         
6680         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
6681
6682         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
6683
6684         * jit-icalls.c: Emulate truncl by aintl on solaris.
6685
6686         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
6687
6688 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
6689
6690         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
6691
6692 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
6693
6694         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
6695         a MarshalByRef type, inline a method that performs the check, taking into
6696         account that the object can be a proxy. Also implemented tow new opcodes:
6697         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
6698         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
6699         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
6700
6701 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
6702
6703         * mini-ppc.c: if a relative branch displacement is too big
6704         but it points to and area reachable with an absolute branch, 
6705         avoid the thunks.
6706
6707 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
6708
6709         * mini.c: optimize small copies in cpblk.
6710
6711 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
6712
6713         * basic-calls.cs basic-float.cs: New regression tests.
6714
6715         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
6716         negative offsets from %fp. Implement localloc. Fix local register 
6717         allocation. Fix the case when the this argument needs to be saved to
6718         the stack. Implement some missing opcodes.
6719
6720 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
6721
6722         * mini.c (mini_method_compile): Reenable global regalloc in methods
6723         with exception handlers.
6724
6725         * linear-scan.c (mono_varlist_sort): Fix warning.
6726
6727         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
6728
6729         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
6730         regalloc costs.
6731
6732         * liveness.c: Make all variables uses in exception clauses volatile, to
6733         prevent them from being allocated to registers. Fixes #42136.
6734
6735 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
6736
6737         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
6738         causes regressions.
6739
6740         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
6741         argument to mono_arch_regalloc_cost.
6742
6743         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
6744         precisely.
6745
6746 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
6747
6748         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
6749         Make the cost of allocating a variable to a register arch dependent.
6750
6751         * basic-calls.cs: Fix compilation of tests.
6752         
6753         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
6754         helper function to cut back on the number of #ifdefs needed.
6755
6756         * mini-ppc.c: Fix compilation.
6757
6758         * basic-calls.cs: New regression tests.
6759
6760         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
6761
6762         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
6763         of l0 since that is callee saved.
6764
6765         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
6766         to virtual calls.
6767
6768         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
6769         of delay instruction.
6770
6771         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
6772
6773         * mini.h (MonoCallInst): Add 'virtual' flag.
6774
6775         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
6776
6777 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
6778
6779         * *.cs: New regression tests.
6780
6781         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
6782         work.
6783
6784         * mini.c (mono_runtime_install_handlers): Fix build.
6785
6786         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
6787         'signal_stack_size' members.
6788
6789         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
6790         alternate signal stack.
6791
6792         * exceptions-x86.c: Add stack overflow handling.
6793
6794         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
6795         functions to arch independent code.
6796
6797         * mini.c (mono_print_tree): Print more detailed info for load_membase
6798         opcodes.
6799         
6800 2004-02-23  Martin Baulig  <martin@ximian.com>
6801
6802         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
6803
6804 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
6805
6806         * mini-x86.c: fixed reg allocation for div/rem.
6807
6808 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
6809
6810         * driver.c (mono_main): Report some configuratio options on --version.
6811
6812 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
6813
6814         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
6815         low in the address space. Correctly flush memory in thunks where we
6816         output native code.
6817
6818 2004-02-20  Martin Baulig  <martin@ximian.com>
6819
6820         * mini.c (mini_get_method): New static method; inflate all generic
6821         methods and methods in open generic instances.
6822         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
6823         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
6824
6825 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
6826
6827         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
6828
6829         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
6830
6831 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
6832
6833         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
6834
6835         * mini-sparc.c (flushi mono_arch_output_basic_block): make
6836         it compile using Sun's compiler.
6837
6838 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
6839
6840         * 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.
6841
6842         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
6843
6844 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
6845
6846         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
6847         code.
6848         * mini-ppc.c: handle calls outside of the allowed range with thunks
6849         allocated using the code manager.
6850         * tramp-ppc.c: use the code manager to hold generated native code.
6851         Fixed the magic trampoline to just patch vtable entries.
6852
6853 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
6854
6855         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
6856         independent file.
6857
6858 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
6859
6860         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
6861         PPC.
6862
6863         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
6864         if we have a working __thread implementation.
6865
6866         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
6867         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
6868
6869 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
6870
6871         * mini-x86.c: Fix compilation under gcc 2.
6872         
6873 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
6874
6875         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
6876         contains a call to the wrapped function.
6877
6878         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
6879         OP_<CALL>_IMM opcodes, and use them under X86.
6880         
6881         * mini.c (mono_jit_find_compiled_method): Fix warning.
6882
6883         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
6884
6885         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
6886
6887         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
6888         functionality to mini.c.
6889
6890         * mini.c (mono_create_jump_trampoline): New function to create a jump
6891         trampoline. Return a compiled method instead of a trampoline if it
6892         exists. Add a cache for jump trampolines.
6893
6894         * mini.c (mono_jit_find_compiled_method): New function to return a
6895         compiled method if it exists.
6896
6897         * mini-x86.c: Call mono_create_jump_trampoline instead of 
6898         mono_arch_create_jit_trampoline.
6899
6900         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
6901         a jump trampoline. Fixes #52092.
6902         
6903 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
6904
6905         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
6906         which is not up-to-date. Add check_corlib_version () instead.
6907
6908         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
6909         have to call it.
6910         
6911         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
6912         since newer valgrind versions do not need it.
6913
6914         * mini.c (mono_jit_compile_method_with_opt): New helper function to
6915         compile a method with a given set of optimizations.
6916
6917         * mini.c: Compile icall wrappers on-demand instead of at startup.
6918
6919         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
6920         wrapper for an icall.
6921
6922 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
6923
6924         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
6925         #54063.
6926
6927         * iltests.il: Add test for non-empty stack before switch instruction.
6928
6929 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
6930
6931         * mini.c: Add support for new stringbuilder marshalling conventions.
6932
6933         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
6934
6935 2004-02-01  Martin Baulig  <martin@ximian.com>
6936
6937         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
6938         in `ginst->mtype_argv'.
6939
6940 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
6941
6942         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
6943         facilitate grepping.
6944
6945 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
6946
6947         * mini.c: fixed buglet in initobj generic implementation for references.
6948
6949 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
6950
6951         * Makefile.am: make the version script conditional.
6952         * jit-icalls.c: handle missing truncl().
6953
6954 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
6955
6956         * exceptions.cs: Add more tests for double->int conversion.
6957
6958         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
6959         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
6960
6961 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
6962
6963         * driver.c: make --verbose --version emit an error
6964         if the loaded corlib doesn't match the runtime version.
6965
6966 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
6967
6968         * mini-ppc.h: export ppc_patch().
6969         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
6970         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
6971         on par or better than on MacOSX.
6972
6973 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
6974
6975         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
6976         mono_lookup_pinvoke_call.
6977
6978         * mini-x86.c: Under windows, the default pinvoke calling convention is
6979         stdcall. Fixes #52834.
6980
6981         * mini.c (optimize_branches): Add an upper bound to the number of
6982         iterations to prevent infinite loops on strange loops. Fixes #53003.
6983
6984 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
6985
6986         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
6987         and ISINST. Fixes #52093.
6988
6989         * objects.cs (test_0_vector_array_cast): New tests.
6990         
6991 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
6992
6993         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
6994         checking in Array.Set ().
6995
6996         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
6997         #52590.
6998
6999         * object.cs (test_0_multi_array_cast): New regression test.
7000
7001 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
7002
7003         * exceptions-ppc.c: fix build on Linux/PPC.
7004
7005 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
7006
7007         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
7008         running under valgrind.
7009         (x86_magic_trampoline): Fix build bustage.
7010
7011         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
7012         negative values as well. This is needed for the encoding of the line number
7013         info, since sometimes the line numbers are not in increasing order.
7014
7015 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
7016
7017         * cpu-pentium.md (localloc): Increase the size of the localloc 
7018         instruction since it is a loop under Win32.
7019
7020         * debug-mini.c (record_line_number): Get rid of unneccesary memory
7021         allocation.
7022
7023 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
7024
7025         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
7026         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
7027         Max Horn (max@quendi.de). Fix file names in comments.
7028
7029 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
7030
7031         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
7032         avoid stack overflow.
7033         (replace_usage): Avoid uninitialized variable warnings.
7034
7035         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
7036         and taking the address of valuetype variables.
7037
7038 2004-01-03  Patrik Torstensson
7039
7040         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
7041         for other purposes than FP later on.
7042
7043 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
7044
7045         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
7046         of tail calls.
7047
7048 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
7049
7050         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
7051
7052 2003-12-30  Patrik Torstensson <p@rxc.se>
7053
7054         * mini-x86.h: Decreased number of availiable fp regs.
7055         Solves corner cases with FP spilling.
7056
7057 2003-12-23  Patrik Torstensson <p@rxc.se>
7058
7059         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
7060         for floating point stack tracking / spilling on x86. 
7061         Fixes bug #49012.
7062         
7063         * basic-float.cs: added float mul overflow test.
7064
7065 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
7066
7067         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
7068
7069 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
7070
7071         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
7072         supports for cond branches that overflow the immediate
7073         overflow offset. mcs can compile simple programs.
7074
7075 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
7076
7077         * exceptions-ppc.c: exception handling support wip:
7078         finally handlers get run on exception.
7079
7080 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
7081
7082         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
7083         profiling.
7084
7085 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
7086
7087         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
7088         initial support for stack walking and unwinding.
7089
7090 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
7091
7092         * driver.c (mono_main): Make corlib-out-of-sync message more 
7093         descriptive. Also remove verify_corlib call.
7094
7095 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
7096
7097         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
7098         not overlap with other call's arguments, too.
7099
7100 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
7101
7102         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
7103         move to arch-specific code the choice of arch-specific
7104         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
7105         * mini.c: ensure emulation calls will not interleave
7106         with other calls.
7107
7108 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
7109
7110         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
7111         the magic trampoline stack frame is dropped before executing
7112         the new method.
7113
7114 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7115
7116         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
7117         and integer to fp conversions. Added support for overflowing
7118         arguments on the stack. Reserve a couple more registers as temps.
7119         Added support for aot compilation (as output still needs to be
7120         tweaked, though).
7121
7122 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
7123
7124         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
7125         Don't overwrite return register in some corner cases.
7126
7127 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
7128
7129         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
7130         static constructors when AOT compiling.
7131
7132         * driver.c (mono_main): Call mono_check_corlib_version.
7133
7134 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
7135
7136         * cpu-g4.md, basic.cs: fixed div target register.
7137
7138 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
7139
7140         * mini-ppc.c, basic.cs: shl_imm fix with test.
7141
7142 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
7143
7144         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
7145         structures by value. Misc fixes.
7146         * objects.cs: more tests.
7147
7148 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
7149
7150         * mini-ppc.c: lconv.ovf.i implemented.
7151
7152 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7153
7154         * mini.c:
7155         (mini_init): don't error out if someone already called g_thread_init.
7156
7157 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
7158
7159         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
7160         to be any type per the spec. Fix abnormal memory usage when
7161         the same object is repeatedly thrown.
7162
7163 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
7164
7165         * mini.c: check for overruns in IL code.
7166
7167 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
7168
7169         * TODO: Add/remove some todo entries.
7170
7171 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
7172
7173         * driver.c (mono_main): Call mono_verify_corlib.
7174
7175 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
7176
7177         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
7178         This has been moved to mini.c
7179         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
7180         type being casted is marshalbyref it could be a proxy, so instead of
7181         emitting the type check code, emit a call to a runtime method that will
7182         perform the check by calling CanCastTo if needed.
7183
7184 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
7185
7186         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
7187         methods with large stack frames under Win32.
7188
7189 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
7190
7191         * Makefile.am: Distribute regression tests.
7192
7193         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
7194         at the end instead of inserting each variable into the sorted list.
7195
7196         * linear-scan.c (mono_varlist_sort): New helper function.
7197         
7198 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
7199
7200         * mini.c: ensure arguments and locals are within bounds.
7201
7202 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
7203
7204         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
7205         related fixes.
7206
7207 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
7208
7209         * mini.c (mono_cprop_copy_values): Fix crash.
7210
7211         * aot.c: Set verbosity back to 0.
7212         
7213 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7214
7215         * regalloc.c: complete memory leak fix by Laurent Morichetti
7216         (l_m@pacbell.net).
7217
7218 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
7219
7220         * driver.c (main_thread_handler): Revert the previous patch.
7221
7222         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
7223         under valgrind.
7224
7225         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
7226         memory from the memory pool.
7227
7228         * driver.c (main_thread_handler): Turn on all optimizations when
7229         --aot is used.
7230
7231         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
7232         an array for better performance.
7233
7234         * regalloc.c (mono_regstate_assign): Fix memory leak.
7235
7236         * debug-mini.c (mono_debug_serialize_debug_info): New function to
7237         serialize the debug info.
7238
7239         * debug-mini.c (mono_debug_add_aot_method): New function to load the
7240         debug info from the serialized representation.
7241
7242         * aot.c: Save debug info into the generated file and load it when 
7243         loading a method.
7244
7245         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
7246
7247 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
7248
7249         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
7250         More FP-related fixes.
7251
7252 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
7253
7254         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
7255         and register allocation buglet. Hello world now runs.
7256
7257 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
7258
7259         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
7260         * tramp-ppc.c: fixed class init trampoline.
7261         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
7262
7263 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
7264
7265         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
7266         mini.c: more ppc changes/fixes.
7267
7268 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
7269
7270         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
7271         Also optimize the case when the arguments are the same in the caller 
7272         and in the callee.
7273
7274         * iltests.il: Add tests for tail calls with valuetype arguments.
7275
7276 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
7277
7278         * mini-ppc.c: fixes for struct return type.
7279
7280 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
7281
7282         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
7283         mono_spillvar_offset() to arch-specific code.
7284
7285 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
7286
7287         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
7288
7289 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
7290
7291         * exceptions-x86.c: Fix stack space leaks.
7292         
7293         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
7294         registers from the lmf if the method has save_lmf set.
7295
7296 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
7297
7298         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
7299         of icall wrappers into InvokeInDomain, since these are now per-domain.
7300
7301 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
7302
7303         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
7304         make some opcode emulation and intrinsic ops enabled/disabled 
7305         according to the architecture. More fixes.
7306
7307 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7308
7309         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
7310
7311 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
7312
7313         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
7314         arch-specific handling for 'this' and struct return type to
7315         arch-specific code.
7316
7317 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7318
7319         * aot.c: prevent divide by zero error when reporting (it happened with
7320         Accessibility.dll).
7321
7322 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
7323
7324         * mini.h (inst_switch): Remove unused macro.
7325
7326 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7327
7328         * aot.c:
7329         (load_aot_module): free 'info->methods' and 'info' properly. No more
7330         "free(): invalid pointer blah" messages when you have an old aot
7331         compiled assembly.
7332
7333 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
7334
7335         * jit-icalls.c, mini.c: Added support for context static fields.
7336
7337 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
7338
7339         * mini.c (mono_method_blittable): Methods which set LastError are not 
7340         blittable either. Fixes #51108.
7341         
7342 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
7343
7344         * mini.c: flush icache.
7345         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
7346
7347 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
7348
7349         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
7350
7351 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
7352
7353         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
7354         safe on IA32.
7355
7356         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
7357         vararg calls.
7358
7359         * inssel.brg (CEE_MKREFANY): Fix AOT case.
7360
7361 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
7362
7363         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
7364         instruction when the result is discarded.
7365
7366         * iltests.il (test_0_div_regalloc): New regression test.
7367
7368         * arrays.cs: Fix compilation error.
7369
7370 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
7371
7372         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
7373         float rules to inssel-x86.brg: sane architectures with FP registers
7374         don't need to implement these rules.
7375
7376 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
7377
7378         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
7379
7380 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7381
7382         * mini.h, inssel-long32.brg: fixed endianess issues in int64
7383         implementation of 32 bit systems.
7384
7385 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
7386
7387         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
7388         (Jeroen Zwartepoorte).
7389
7390 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7391
7392         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
7393         the caller and the callee matches.
7394         
7395         * mini.c (mono_method_to_ir): Add comment.
7396
7397         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
7398         signbit is missing on some platforms.
7399
7400 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
7401
7402         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
7403
7404         * mini.c (setup_jit_tls_data): Call the new function.
7405         
7406         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
7407
7408         * mini-x86.c: Add experimental support for fast access to the lmf
7409         structure under NPTL/Linux 2.6.x.
7410
7411 2003-11-06  Martin Baulig  <martin@ximian.com>
7412
7413         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
7414         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
7415         the debugger.
7416
7417 2003-11-02  Martin Baulig  <martin@ximian.com>
7418
7419         * mini.c (inflate_generic_field): New static method.
7420         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
7421         generic instance and the field is declared in a generic type, call
7422         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
7423
7424 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
7425
7426         * mini.h mini.c (mono_method_same_domain): New function to return
7427         whenever the caller and the callee are in the same domain.
7428
7429         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
7430
7431 2003-10-30  Martin Baulig  <martin@ximian.com>
7432
7433         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
7434         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
7435         method parameters.
7436         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
7437         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
7438
7439 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
7440
7441         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
7442         propagation.
7443
7444         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
7445         object here, so it is in the correct appdomain etc.
7446
7447 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
7448
7449         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
7450         already done.
7451         (mono_method_to_ir): Avoid freeing the type created returned from
7452         mono_type_create_from_typespec, since it is put into an internal cache
7453         by the function. Fixes pointer.exe.
7454
7455         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
7456         trampolines for icalls and pinvokes as well. Fixes #33569.
7457
7458 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
7459
7460         * mini.c: Update after appdomain changes.
7461
7462         * mini.c (mono_jit_compile_method_inner): Allways compile native
7463         method wrappers in the root domain, since there can only be one
7464         instance of them, whose address is stored in method->info.
7465
7466 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
7467
7468         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
7469         environment variable. Instead detect automatically whenever running
7470         under valgrind using the magic macro RUNNING_ON_VALGRIND from
7471         valgrind.h.
7472
7473 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
7474
7475         * trace.c, trace.h: New files that implement the new trace option
7476         parsing. 
7477
7478         * driver.c: Document new --trace options.
7479
7480         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
7481         mini-x86.c: Apply:
7482
7483         -       if (mono_jit_trace_calls)
7484         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
7485
7486         * mini.h: prototypes.
7487         
7488 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
7489
7490         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
7491
7492         * mini.c inssel.brg: Implement typedefbyref opcodes.
7493
7494         * mini.c (mono_jit_compile_method): Remove unused local variable.
7495
7496         * mini.c (mono_jit_compile_method_inner): Ditto.
7497         
7498 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
7499
7500         * tramp-x86.c (x86_class_init_trampoline): Fix build.
7501         
7502         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
7503
7504 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
7505
7506         * mini.c (mono_no_aot): Remove unused global variable.
7507
7508         * mini.c: Thread safety fixes.
7509
7510 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
7511
7512         * mini.c (mono_create_class_init_trampoline): Add a lock around
7513         class_init_hash_addr.
7514
7515         * arrays.cs (test_0_newarr_emulation): Add new regression test for
7516         #30073.
7517
7518         * mini.c: Decompose the NEWARR instruction before decomposing its
7519         arguments. Fixes #30073.
7520
7521 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
7522
7523         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
7524         convention.
7525
7526 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
7527
7528         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
7529
7530         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
7531
7532         * driver.c: Add support for compiling icall wrappers to --compile.
7533
7534 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
7535
7536         * inssel.brg: The empty value in class->interface_offsets is -1, not
7537         0. Fixes #49287.
7538
7539 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
7540
7541         * objects.cs: New test for 'is' operator on an array of interfaces.
7542
7543 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7544
7545         * tramp-ppc.c: update trampoline code to support jumps
7546         and class initialization.
7547
7548 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
7549
7550         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
7551
7552         * inssel.brg (OP_UNBOXCAST): Fix #46027.
7553
7554         * inssel.brg (OP_UNBOX): Remove unused rule.
7555
7556         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
7557         region instead of one for each method. Fixes #47813.
7558
7559 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
7560
7561         * exceptions.cs (test_0_nested_finally): New regression test for
7562         nested exception handlers.
7563
7564         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
7565
7566         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
7567
7568         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
7569         inlining.
7570
7571         * mini.c (mono_method_check_inlining): Make the inlining limit 
7572         configurable by an environment variable.
7573         
7574         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
7575
7576         * mini.h: Bump AOT file version.
7577
7578         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
7579         token, store the image along with the token, since the token might not 
7580         refer to the same image as the method containing the relocation, 
7581         because of inlining.
7582
7583 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
7584
7585         * mini.c (mono_precompile_assemblies): New function to compile
7586         all methods in all loaded assemblies.
7587
7588         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
7589
7590         * regalloc.h regalloc.c (MonoRegState): Change the type of 
7591         iassign and fassign to int*, since they can contain large negative
7592         values if the register is spilled. Also added some comments. Fixes
7593         #45817.
7594
7595         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
7596         under Win32. Fixes #42964.
7597
7598 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
7599
7600         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
7601
7602         * aot.c: Added support for AOT compiling methods which contain calls
7603         to wrappers. Currently, only remoting-invoke-with-check wrappers are
7604         handled.
7605         
7606         * driver.c (compile_all_methods): Run the compilation in a thread
7607         managed by mono. Fixes #44023.
7608
7609         * mini.c (mono_codegen): Print full method name in verbose output.
7610
7611         * mini-x86.c (mono_arch_patch_code): Fix warning.
7612         
7613         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
7614         jumps, since the method we are jumping to might be domain-specific.
7615
7616         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
7617
7618 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
7619
7620         * inssel.brg: string chars are unsigned.
7621
7622 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7623
7624         * TODO: New todo item.
7625
7626         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
7627         which calls mono_runtime_class_init and patches the call site to
7628         avoid further calls.
7629         (mono_arch_create_class_init_trampoline): New arch specific function 
7630         to create a class init trampoline.
7631         (create_trampoline_code): Generalized so it can create
7632         class init trampolines as well.
7633
7634         * mini.c (helper_sig_class_init_trampoline): New helper variable.
7635         (mono_create_class_init_trampoline): New function to create and cache
7636         class init trampolines.
7637         (mono_find_class_init_trampoline_by_addr): New function to lookup the
7638         vtable given the address of a class init trampoline. Used by the
7639         patching process.
7640         (mono_codegen): Generate a call to a trampoline instead of
7641         mono_runtime_class_init in LDSFLD[A].
7642         (mono_codegen): Add relocations for the new trampoline.
7643         
7644         * mini.h mini-x86.c aot.c: Added a new relocation type: 
7645         MONO_PATCH_INFO_CLASS_INIT.
7646
7647         * mini.h: Bump AOT version number.
7648
7649         * aot.c: Create a copy of the loaded code instead of using the original
7650         so methods which call each other will be close in memory, improving
7651         cache behaviour.
7652         
7653         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
7654         patch since it breaks the regression tests.
7655         
7656         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
7657         for the register saving instruction sequence since the 
7658         frame_state_for function in glibc 2.3.2 don't seem to detect it.
7659
7660 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
7661
7662         * TODO: Fix todo item && remove another.
7663
7664 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
7665
7666         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
7667         previous checkin.
7668
7669         * aot.c: Moved the check for MONO_LASTAOT into the initialization
7670         function of the module.
7671
7672         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
7673         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
7674         --no-aot command line option.
7675
7676 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7677
7678         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
7679         by Bernie Solomon (bernard@ugsolutions.com).
7680
7681         * inssel.brg: Refactor the interface offset table related code into
7682         its separate functions and add support for the AOT case.
7683
7684 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7685
7686         * aot.c (mono_aot_get_method_inner): Fix memory leak.
7687         
7688         * aot.c: Added mono_aot_verbose variable and made all debugging
7689         output depend on the value of this variable.
7690
7691         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
7692         method_label and info_label.
7693
7694         * mini.h mini-x86.c aot.c: Added a new relocation type 
7695         MONO_PATCH_INFO_IID for klass->interface_id.
7696
7697         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
7698         the MonoJitInfo structure.
7699
7700         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
7701         a non-root appdomain in shared mode.
7702
7703 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7704
7705         * aot.c: make aot loader less verbose. Remove free of unused variable.
7706
7707 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7708
7709         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
7710
7711         * .cvsignore: Added *.dll.
7712
7713         * mini.c (mono_print_tree_nl): New function callable while debugging.
7714
7715         * mini.c (mono_print_code): Export this.
7716
7717         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
7718         patched code.
7719
7720 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
7721
7722         * mini.h (MonoCompile): Added 'jit_info' field.
7723
7724         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
7725         the cfg structure, since it is needed by the AOT compiler.
7726
7727         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
7728
7729         * aot.c: A major rewrite. Changes include:
7730         - save exception tables for methods which have them.
7731         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
7732         to g_module_symbol.
7733         - reworked the file format so it is now much smaller and needs
7734         fewer relocation entries.
7735         
7736 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7737
7738         * aot.c (load_aot_module): Fix build bustage on platforms without
7739         Boehm GC.
7740
7741 2003-09-04  Martin Baulig  <martin@ximian.com>
7742
7743         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
7744
7745 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7746
7747         * TODO: Some new optimization ideas.
7748
7749         * aot.c: Move AOT module loading logic here from mono_assembly_open.
7750
7751         * aot.c: Save the optimization flags used to compile the code into
7752         the AOT module.
7753
7754         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
7755         support emitting domain specific code.
7756         
7757         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
7758         no longer domain neutral. It can be made domain neutral by compiling 
7759         with --optimize=shared.
7760
7761         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
7762         between appdomains.
7763
7764         * driver.c mini.h mini.c: New --no-aot debugging option which disables
7765         loading of AOT code.
7766
7767         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
7768         
7769         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
7770         if there is no domain neutrality information.
7771
7772 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7773
7774         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
7775         format version into the generated library.
7776
7777         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
7778         callee method into the caller since one of them could be shared.
7779
7780         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
7781         system exceptions from AOT code now works.
7782
7783         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
7784         method if it is domain neutral and the callee is not.
7785
7786         * graph.c (cfg_emit_one_loop_level): Fix warning.
7787
7788 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7789
7790         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
7791         last checkin.
7792
7793 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7794
7795         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
7796         is needed  by code which is executed before mono_runtime_init ().
7797         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
7798         
7799         * mini.c (mono_thread_abort): Fix warning.
7800         (mono_jit_compile_method): Call static constructor in the AOT case too.
7801
7802         * aot.c (mono_compile_assembly): Fix warning.
7803
7804 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7805
7806         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
7807
7808 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
7809
7810         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
7811
7812         * cpu-pentium.md: Fix the length of call opcodes so they include the
7813         ESP restoring instruction. Fixes #47968.
7814
7815 2003-08-28  Martin Baulig  <martin@ximian.com>
7816
7817         * mini-x86.c (mono_arch_call_opcode): Added support for
7818         MONO_TYPE_GENERICINST.
7819
7820         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
7821
7822 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7823
7824         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
7825         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
7826
7827         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
7828         metadata_section.
7829
7830 2003-08-26  Martin Baulig  <martin@ximian.com>
7831
7832         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
7833         when reporting an error, set this to the actual error location.
7834         (mono_method_to_ir): Report the correct error location if
7835         get_basic_blocks() returned an error.
7836
7837 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7838
7839         * mini.c (mono_type_blittable): OBJECT is not blittable.
7840         (mono_method_blittable): Methods which have marshalling descriptors
7841         are not blittable either. Fixes #47842.
7842
7843 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
7844
7845         * driver.c mini.c: Use an environment variable instead of a global 
7846         variable. Also fix the build.
7847
7848         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
7849         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
7850         reporting this. 
7851
7852         * driver.c mini.c: Added --with-valgrind option to turn off some
7853         code which prevents mono from running under valgrind.
7854
7855         * mini.c (mono_emit_call_args): Fixed warning.
7856
7857         * mini.c (mono_emulate_opcode): Fixed warning.
7858
7859 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7860
7861         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
7862         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
7863         regalloc.c, regalloc.h: specify available registers in arch-specific
7864         code and support floats in the regallocator (patch by Laurent Morichetti 
7865         <l_m@pacbell.net>)
7866
7867 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7868
7869         * mini.c: mono_thread_current() can be called only after
7870         mono_runtime_init(): rearrange code to not call it early on.
7871
7872 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
7873
7874         * mini.c: allocate jump tables in the code mempools.
7875
7876 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
7877
7878         * mini.c, mini.h: make sure per-thread data allocated by the jit is
7879         freed.
7880
7881 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
7882
7883         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
7884         12 to 16.  This fixes bug #47453.
7885
7886
7887 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7888
7889         * mini-ppc.c: fixed indexed load and unsigned compares.
7890
7891 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
7892
7893         * mini.c: reenabled installation of handler for
7894           thread abort signal.
7895
7896 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7897
7898         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
7899         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
7900         until it's fixed and actually useful.
7901
7902 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7903
7904         * inssel-long32.brg: couple more opcodes implemented.
7905
7906 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
7907         
7908         * mini-sparc.c: Even more opcodes implemeted.
7909
7910 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
7911
7912         * mini-sparc.c: More opcodes implemented.
7913
7914 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
7915
7916         * mini-sparc.c: More opcodes implemented.
7917
7918 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
7919
7920         * inssel-sparc.brg: Add some needed rules.  Direct
7921         copy from PPC.
7922         * Makefile.am: Use inssel-sparc.brg
7923         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
7924         an assert happy for now.
7925
7926 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
7927
7928         * mini-sparc.c: Fixed compile errors.
7929         * exceptions-sparc.c: Same.  We now produce a mono binary 
7930         on sparc-linux.  Yea.
7931
7932 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
7933
7934         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
7935         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
7936         They compile, but do not work.
7937
7938 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7939
7940         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
7941         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
7942         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
7943         (ct@gentoo.org).
7944
7945 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7946
7947         * mini.c: more opcodes implemented and better support for generics.
7948
7949 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
7950
7951         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
7952         * mini.c, mini.h: first cut at generics support: some new instructions 
7953         added and changed the behaviour of some of the existing ones.
7954
7955 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7956
7957         * mini.c: Removed definition of metadata_shared mutex here.
7958
7959 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
7960
7961         * mini-x86.c: make vararg calls work for instance methods.
7962
7963 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7964
7965         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
7966         returns the arguments in a separte list, now.
7967
7968 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
7969
7970         * aot.c, mini.c: updates for array type representation changes.
7971
7972 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
7973
7974         * mini.c: register function to perform jit shutdown.
7975
7976 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7977
7978         * mini.c: use a faster allocator if possible.
7979
7980 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7981
7982         * aot.c: some cleanups and portability changes.
7983
7984 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
7985
7986         * mini.c: use faster allocation for CEE_BOX if possible.
7987
7988 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
7989
7990         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
7991         Moved inlined mempcy code to its own function so that is can be
7992         reused. Added an inline memset function as well (optimized initobj).
7993         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
7994
7995 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
7996
7997         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
7998
7999 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8000
8001         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
8002         arch code can setup the cpu for CLR execution, if needed.
8003         We use it on x86 to set the precision of FP operations.
8004
8005 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8006
8007         * mini.c: disable some optimizations if we can guess they'll cost too
8008         much for a given method.
8009
8010 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
8011
8012         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
8013         
8014 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
8015         * mini.h mini.c mini-x86.c: Added instruction level coverage 
8016         info collection support.
8017
8018 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8019
8020         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
8021         is now implemented in the profiling API. Get rid of a couple of
8022         unnecessary global variables.
8023
8024 2003-06-15  Nick Drochak <ndrochak@gol.com>
8025
8026         * basic-long.cs: tests for negative values for bigmul, and unsigned.
8027         * cpu-g4.md: add op_bigmul and op_bigmul_un
8028         * cpu_pentium.md: add op_bigmul_un
8029         * inssel-long32.brg: add rule for unsigned bigmul
8030         * mini-ops.h: define OP_BIGMUL_UN
8031         * mini-x86.c: THE BUG: handle (un)signed properly
8032         * mini.c: choose unsigned opcode if needed.
8033         This set of patches fixes bug #44291
8034
8035 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
8036
8037         * mini.c (optimize_branches): improved to handle all kinds of
8038         conditional branches.
8039
8040 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
8041
8042         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
8043         don't raise exceptions.
8044
8045 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8046
8047         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
8048         to arch-specific files.
8049
8050 2003-06-09  Martin Baulig  <martin@ximian.com>
8051
8052         * Makefile.am (libs): Added $(LIBGC_LIBS).
8053
8054 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
8055
8056         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
8057         and OP_ATAN (fixes bug#44293).
8058
8059 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
8060
8061         * Makefile.am, mini-x86.c: rename cpu description array to
8062         pentium_desc, since some compilers define the 'pentium' preprocessor
8063         symbol.
8064
8065 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
8066
8067         * mini.c (mini_select_instructions): add explicit branch if the
8068         following block is not the false target of a conditional branch -
8069         we need this with any optimization that reorder or remove bblocks
8070
8071         * mini.c (optimize_branches): bug fixes
8072
8073 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
8074
8075         * mini.c (mono_method_to_ir): inline static readonly fields
8076
8077         * ssa.c (fold_tree): start cfold support for long (very simple
8078         cases only)
8079
8080         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
8081
8082 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
8083
8084         * inssel.brg: fixed memcpy (bug #44219).
8085
8086 2003-06-05  Dick Porter  <dick@ximian.com>
8087
8088         * driver.c: Set the glib log levels to not abort if g_message
8089         recurses.
8090
8091         g_set_prgname() has to happen before mini_init() so that the
8092         process handle gets the info.
8093         
8094 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8095
8096         * driver.c: add intrins to the default optimizations to get wider
8097         exposure.
8098
8099 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
8100
8101         * mini.h: some large basic blocks will overflow a 16-bit
8102         integers for symbolic registers.
8103
8104 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
8105
8106         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
8107         (mono_arch_output_basic_block): fix bug 43499 
8108
8109 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
8110
8111         * mini.c: kill duplicated definition of mono_debug_format.
8112
8113 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8114
8115         * mini-x86.c, arrays.cs: fixed register allocation bug.
8116
8117 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
8118
8119         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
8120
8121         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
8122
8123 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8124
8125         * mini.c:
8126         (print_method_from_ip): also print source location information if
8127         available.
8128
8129 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
8130
8131         * mini.c (mono_find_block_region): bug fix in region code
8132         (mini_method_compile): enable removing unreachable code again, but
8133         only in methods without exception clauses.
8134
8135 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
8136
8137         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
8138         Implemented arglist opcode and handling of TypedReference type.
8139         Fixed x86 call convention when a structure is returned.
8140         Minimal support for calling static vararg methods.
8141
8142 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
8143
8144         * mini.c (mini_method_compile):  always remove unreachable code,
8145         because the code in them may be inconsistent  (access to dead
8146         variables for example).
8147
8148 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8149
8150         * driver.c, debug-mini.c: warning fixes.
8151
8152 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8153
8154         * Makefile.am, jit.h, mini.h: install header for embedding mono.
8155
8156 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
8157
8158         * mini.c: thread-static fields are registered in mono_class_vtable(),
8159         so ensure the function is called before checking for them.
8160
8161 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
8162
8163         * mini.c (optimize_branches): fix for bug 43586
8164
8165         * jit-icalls.c (mono_llmult_ovf): added an additional check for
8166         overflow (fixes Bug #43639)
8167
8168 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8169
8170         * mini.c, objects.cs: allow the use of stobj for primitive types.
8171
8172 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8173
8174         * mini.c: be less strict about argument checking until we support
8175         running the verifier.
8176
8177 2003-05-27  Nick Drochak <ndrochak@gol.com>
8178
8179         * basic-long.cs: tests for (ulong)int * (ulong)int also
8180         * mini.c: use the same trick for (ulong)int * (ulong)int
8181
8182 2003-05-27  Nick Drochak <ndrochak@gol.com>
8183
8184         * basic-long.cs: add regression test for (long)int * (long)int
8185         * cpu-pentium.md: add op_bigmul specification
8186         * inssel-long32.brg: add OP_BIGMUL rule
8187         * mini-ops.h: add OP_BIGMUL
8188         * mini-x86.c: register allocator: handle case where src1 needs to be
8189         in EAX.
8190         * mini.c: substitute special BIGMUL opcode in the tree for 
8191         (long)int * (long)int
8192
8193 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
8194
8195         * jit-icalls.c: call the type ctor on field access if needed.
8196
8197 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
8198
8199         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
8200         to a method (including results of ldelema, bug#43207).
8201
8202 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
8203
8204         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
8205         colors to show exception handler blocks.
8206
8207         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
8208         (fix for pinvoke7.cs).
8209
8210 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8211
8212         * mini.h, mini.c: ensure correct initialization order for types that
8213         require it. Prepare for lazy compilation of jit icall wrappers.
8214         Provide a name for opcode emulation to reduce unneeded mallocing.
8215
8216 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
8217
8218         * mini-x86.c: better register restoring code and profiling
8219         support for tail calls.
8220
8221 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8222
8223         * mini.h, driver.c: prepare for leaf methods optimization.
8224
8225 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
8226
8227         * mini.c: get targets of branches before converting a method.
8228
8229 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
8230
8231         * mini.c (optimize_branches): added some experimental code (disbaled) 
8232
8233 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
8234
8235         * mini.c (optimize_branches): fix branch to branch optimization 
8236
8237         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
8238
8239         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
8240
8241         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
8242
8243         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
8244         if needed.
8245
8246 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
8247
8248         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
8249         enable use of interface variables again.
8250
8251         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
8252         I1 to registers because there is no simply way to sign extend 8bit
8253         quantities in caller saved registers on x86.
8254
8255         * inssel-float.brg: set costs of some rules to 2 so
8256         that monobure always select the arch. specific ones if supplied,
8257         regardless of the order we pass the files to monoburg.
8258
8259 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
8260
8261         * mini.c, mini-x86.c: since the magic trampoline for jumps
8262         can't patch the code directly, we do it as soon as the
8263         method gets compiled.
8264
8265 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
8266
8267         * mini-x86.c, mini.h: introduce a new patching method
8268         to support CEE_JMP and tail calls.
8269         * mini.c: obey tail.call. Don't precompile methods target
8270         of CEE_JMP.
8271         * tramp-x86.c: new trampoline code to handle methods
8272         reached through a jump.
8273
8274 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
8275
8276         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
8277         bit values to registers
8278
8279 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
8280
8281         * mini.c (mono_compile_get_interface_var): share interface
8282         variables if possible.
8283
8284 2003-05-16  Martin Baulig  <martin@ximian.com>
8285
8286         * debug-mini.c (mono_init_debugger): New function to initialize
8287         the debugger.  This is not in the debugger since it needs to
8288         access some of mini's internals.
8289
8290 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
8291
8292         * mini.c (mono_method_to_ir): inlining fixes/cleanups
8293
8294 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
8295
8296         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
8297         for value type handling.
8298
8299 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
8300
8301         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
8302         (mono_method_check_inlining): enable inlining of all kinds of wrappers
8303
8304 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
8305
8306         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
8307           the constructor through a proxy.
8308
8309 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
8310
8311         * jit-icalls.c, inssel.brg: fixes to array element address
8312         calculations.
8313
8314 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
8315
8316         * mini-x86.c (is_regsize_var): allocate pointer to registers
8317
8318 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
8319
8320         * driver.c: fixed typo, added intrins to the set of optimizations
8321         tested with regressions.
8322
8323 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8324
8325         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
8326         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
8327         test case.
8328
8329 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
8330
8331         * inssel.brg: remove some common pop instructions without side effects
8332
8333 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8334
8335         * inssel-x86.brg: fixed thinko in int to double conversions.
8336
8337 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
8338
8339         * mini.c, jit-icalls.c: added runtime thread-static variable support.
8340
8341 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
8342
8343         * inssel-long32.brg: two more missing instructions.
8344
8345 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
8346
8347         * mini.c (mono_emit_call_args): set the cil_code for all arguments
8348         if not already set.
8349
8350 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
8351
8352         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
8353         correctly.
8354
8355         * basic-float.cs: Added tests for negative zero.
8356
8357 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
8358
8359         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
8360         a couple of missing operations for long casts, with test cases.
8361
8362 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8363
8364         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
8365
8366 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
8367
8368         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
8369         code size estimation.
8370
8371 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8372
8373         * mini.c (mono_jit_create_remoting_trampoline): make it work with
8374         abstract methods (fix bug 42542)
8375
8376         * aot.c: add ability to handle array types
8377         
8378 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
8379
8380         * mini.c: Call the _specific versions of the object allocation
8381         functions if possible.
8382
8383 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
8384
8385         * driver.c: call setlocale ().
8386
8387 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
8388
8389         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
8390         windows build.
8391
8392 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8393
8394         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
8395
8396         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
8397         wrappers (fix bug 42122)
8398
8399 2003-05-04  Martin Baulig  <martin@ximian.com>
8400
8401         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
8402
8403         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
8404         s/mini_set_defaults/mono_set_defaults/g.
8405
8406 2003-05-04  Martin Baulig  <martin@ximian.com>
8407
8408         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
8409
8410 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8411
8412         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
8413         (reported by Don Roberts).
8414
8415 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
8416
8417         * mini.c: temporarily work around two bugs for this release.
8418
8419 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8420
8421         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
8422         that contains -export-dynamic and it makes using the ld script
8423         useless.
8424         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
8425
8426 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
8427
8428         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
8429         specific cpu.
8430
8431 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
8432
8433         * mini.c: make sure leave calls all the needed finally blocks,
8434         even when the target jumps out of multiple exception clauses.
8435
8436 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
8437
8438         * ldscript, Makefile.am: add linker script to reduce the number of
8439         exported symbols (should also fix the issues with libwine defining
8440         some of the same symbols in io-layer).
8441
8442 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
8443
8444         * driver.c (mini_main): Avoid assertion when no file name is given on 
8445         the command line.
8446
8447 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
8448
8449         * driver.c: added --version/-V command line option.
8450         Added the inline optimization in the regression tests.
8451
8452 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
8453
8454         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
8455         to the type in the method signature (fixes bug#42134).
8456
8457 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
8458
8459         * mini.c: when inlining, check this is not null only when needed (bug #42135).
8460
8461 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
8462
8463         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
8464
8465 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8466
8467         * driver.c: fixed bug #42100.
8468
8469 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8470
8471         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
8472
8473 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
8474
8475         * mini.c: moved most of the code required to do inlining to its own
8476         function so it can be reused. Inline also ctors if appropriate.
8477
8478 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8479
8480         * Makefile.am: Link with -export-dynamic so shared libs loaded by
8481         the runtime can call mono API functions.
8482
8483 2003-04-27  Martin Baulig  <martin@ximian.com>
8484
8485         * debug-mini.c (mono_debug_init_method): Added
8486         `guint32 breakpoint_id' argument; if the method has a breakpoint,
8487         send a notification to the debugger.
8488
8489         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
8490         running in the Mono Debugger, just pass the breakpoint number to
8491         mono_debug_init_method().
8492
8493         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
8494
8495 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
8496
8497         * mini.c: allow some more unsafe compares.
8498
8499 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8500
8501         * mini-x86.c, Makefile.am: make distcheck works (partially from
8502         a patch by Richard Lee <r.h.lee@attbi.com>).
8503         * regset.c, regset.h: removed, they are unused.
8504
8505 2003-04-25  Dick Porter  <dick@ximian.com>
8506
8507         * driver.c: Usage reports the name as 'mono' not 'mini'
8508         * exceptions-x86.c: Build and run on freebsd
8509
8510 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
8511
8512         * Makefile.am: install the program with the 'mono' name and
8513         the library as libmono instead of mini and libmini.
8514
8515 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
8516
8517         * driver.c: provide the APIs for the embedding interface of the old jit.
8518
8519 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
8520
8521         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
8522
8523 2003-04-23  Martin Baulig  <martin@ximian.com>
8524
8525         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
8526
8527         * driver.c: Added `--debug' command line argument to enable
8528         debugging support.
8529
8530 2003-04-23  Martin Baulig  <martin@ximian.com>
8531
8532         * debug.[ch]: Removed.  The code is now in
8533         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
8534
8535         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
8536         last six months.
8537
8538 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8539
8540         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
8541
8542 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8543
8544         * mini.c:
8545         (mini_cleanup): moved mono_runtime_cleanup call after the call to
8546         mono_domain_finalize.
8547         (mini_method_compile): use mono_method_profile* if the the option is
8548         enabled.
8549
8550 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8551
8552         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
8553         methods with their wrapper.
8554
8555         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
8556         methods with their wrapper.
8557
8558         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
8559         their wrapper.
8560
8561         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
8562         wrapper.
8563
8564         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
8565         methods.
8566
8567 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
8568
8569         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
8570
8571 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
8572
8573         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
8574         of the mempool. This is slightly faster and uses less memory
8575
8576 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8577
8578         * mini.c: avoid O(n) allocation for variables.
8579
8580 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8581
8582         * mini.c: handle items on the stack after inlining methods.
8583
8584 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
8585
8586         * mini.c: make the method->opcode optimization dependent
8587         on MONO_OPT_INSTRINS and do it lazily.
8588
8589 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
8590
8591         * driver.c: print overall results at the end of regression run.
8592
8593 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
8594
8595         * inssel.brg: don't overwrite symbolic registers.
8596
8597 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
8598
8599         * inssel-x86.brg: fix conversion from long to float.
8600
8601 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
8602
8603         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
8604
8605 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8606
8607         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
8608
8609         * driver.c: Added --print-vtable option as in the old JIT.
8610
8611 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8612
8613         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
8614
8615 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
8616
8617         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
8618
8619 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8620
8621         * mini.c regalloc.c regalloc.h: Fix memory leak.
8622
8623 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
8624
8625         * aot.c (mono_aot_get_method): register all used strings
8626
8627 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
8628
8629         * mini.c: always intern strings references with ldstr at compile time.
8630
8631 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
8632
8633         * Makefile.am: add BUILT_SOURCES.
8634
8635 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
8636
8637         * driver.c: give a better error message when the assembly to execute
8638         doesn't have an entry point.
8639
8640 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
8641
8642         * Makefile.am: added hack for automake
8643
8644         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
8645         correct sematics.
8646
8647         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
8648
8649 22003-04-07  Martin Baulig  <martin@ximian.com>
8650
8651         * Makefile.am: Added Makefile.am.
8652
8653         * debugger-main.c: Removed, this is now in the debugger where it
8654         belongs.
8655
8656         * mini.pc.in: Call this package `mini' for the moment.
8657
8658
8659
8660
8661