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