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