2007-11-30 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / ChangeLog
1 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
2
3         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
4         
5         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
6
7         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
8
9         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
10
11         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
12         is created by the inlined delegate ctor.
13
14         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
15
16         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
17
18 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
19
20         * cpu-x86.md: Fix the length of ckfinite.
21
22 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
23
24         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
25         
26         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
27         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
28
29         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
30
31         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
32         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
33
34 2007-11-28  Martin Baulig  <martin@ximian.com>
35
36         * mini-x86.c
37         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
38         after creating the trampoline.
39
40 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
41
42         * aot-runtime.c (load_aot_module): Check runtime version if needed.
43
44         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
45         the same version.
46
47         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
48         instead of the calling method to help AOT.
49
50         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
51
52 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
53
54         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
55         is defined.
56
57 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
58
59         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
60         
61         * aot-compiler.c (compile_method): Correct check for generic method definitions.
62         (encode_method_ref): No need to handle generic method definitions specially.
63
64         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
65
66         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
67         decode_klass_info.
68
69         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
70         encode_klass_info.
71         (compile_method): Enable generic sharing.
72
73 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
74
75         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
76         (mini_method_compile): Add preliminary support for AOTing shared generic code.
77
78         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
79         generic code.
80
81         * mini-trampolines.c: Fix a warning.
82
83         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
84         NEW_PCONST.
85         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
86         (generic_class_is_reference_type): Remove unused function.
87
88         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
89         in the generic vtable trampoline case.
90
91         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
92         
93         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
94         return an AOT method based on a vtable slot.
95
96         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
97
98         * mini.c (mini_get_vtable_trampoline): Export this.
99
100 2007-11-22  Martin Baulig  <martin@ximian.com>
101
102         * debug-debugger.h
103         (MonoDebuggerInfo): Move `debugger_version' up.
104
105 2007-11-22  Martin Baulig  <martin@ximian.com>
106
107         * mini-amd64.c
108         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
109
110         * mini-trampolines.c
111         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
112         after compiling the method.
113
114 2007-11-20  Martin Baulig  <martin@ximian.com>
115
116         * debug-mini.c
117         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
118         (mono_debugger_remove_breakpoint): Likewise.
119         (mono_debugger_check_breakpoints): Likewise.
120
121         * debug-debugger.c: Implement the new breakpoint interface here.
122
123 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
124
125         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
126         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
127
128         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
129
130 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
131
132         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
133
134         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
135         mini.c.
136
137         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
138         mini.c.
139
140         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
141         returning a vtype in a register.
142
143         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
144         here from the arch specific code.
145
146         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
147         mini.c.
148
149         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
150         (mono_arch_emit_prolog): Increment maximum prolog size.
151
152         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
153         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
154
155         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
156         MonoGenericSharingContext.
157
158         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
159         MonoGenericSharingContext. Allocate memory from the cfg mempool.
160
161 2007-11-15  Mark Probst  <mark.probst@gmail.com>
162
163         * mini.c, mini.h, generic-sharing.c: Functions for producing code
164         which extract fields out of the runtime generic context.  Full
165         sharing of the NEWARR opcode.
166
167 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
168
169         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
170         --enable-minimal=ssa.
171
172 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
173
174         * mini-trampolines.c (mono_delegate_trampoline): Update after 
175         mono_marshal_get_delegate_invoke () signature change.
176
177 2007-11-13  Mark Probst  <mark.probst@gmail.com>
178
179         * mini.c: Removed the shared context in favor of the generic
180         sharing context.  Allocate the MonoJitInfo structure with room for
181         the generic sharing context if it's needed.
182
183         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
184         domain-internals.h now.
185
186         * mini-x86.c: Pass the generic sharing context to get_call_info ().
187
188         * generic-sharing.c: Several changes for working without a shared
189         context and instead operating on open types instead.
190
191 2007-11-12  David S. Miller  <davem@davemloft.net>
192
193        * inssel-sparc.brg: Fix double instruction emit.
194
195 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
196
197         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
198         Get/Set/Address methods.
199         
200         * mini.c debug-debugger.c mini-trampolines.c: Update after 
201         mono_marshal_get_delegate_invoke signature change.
202
203 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
204
205         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
206         This can happens with dynamic methods. Fixes the other bug in #322722.
207
208 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
209
210         * tramp-arm.c (mono_arch_patch_callsite): Support patching
211         BX call sequence.
212
213         * mini-arm.c (arm_patch): Implement patching of BX call
214         sequence. Fixes one of the bugs in #322722.
215
216 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
217
218        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
219        under Linux.  We only need to flush every 32-byte cache line.    
220
221 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
222
223         * mini.c:
224         move_basic_block_to_end: Add branches when needed, eventually creating
225         a new BB.
226         optimize_branches: added a parameter that tells if it's ok to create
227         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
228         and avoid calling move_basic_block_to_end when it's not ok.
229         Fixes bug 318677.
230
231 2007-11-07  Mark Probst  <mark.probst@gmail.com>
232
233         * mini.c: Abort inlining call to InitializeArray if something
234         looks wrong.  Let the icall handle it, which now has proper safety
235         checks.
236
237 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
238
239         * mini.c (mono_spill_call): add support for soft-float.
240
241         * mini.c (mono_method_to_ir): add support for soft-float
242         to inlined functions that return float.
243
244         * mini.c (mono_method_to_ir): add support for soft-float
245         to cee_stsfld opcode on float fields.
246
247 2007-11-05  Geoff Norton  <gnorton@novell.com>
248
249         * mini-x86.h: Fix the structure access for X86 Leopard.
250
251
252 2007-11-05  Martin Baulig  <martin@ximian.com>
253
254         * mini-trampolines.c
255         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
256         after compiling the method to notify the debugger.
257
258 2007-11-05  Martin Baulig  <martin@ximian.com>
259
260         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
261
262 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
263
264         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
265         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
266
267 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
268
269         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
270         native-to-managed wrappers.
271         
272 2007-11-01  Geoff Norton  <gnorton@novell.com>
273
274         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
275         members.
276
277 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
278
279         * mini.c, mini-x86.c: when getting back from unmanaged code
280         to managed via a marshaled delegate we also need to set the
281         right domain.
282
283 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
284
285         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
286         for amd64.
287
288 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
289
290         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
291         let the debugger or other external agents to tell the JIT when
292         a sw breakpoint has been inserted in the code that the JIT needs
293         to be able to inspect.
294
295 2007-10-31  Martin Baulig  <martin@ximian.com>
296
297         * debug-debugger.h
298         (MonoDebuggerInfo): Remove `runtime_class_init'.
299
300 2007-10-30  Martin Baulig  <martin@ximian.com>
301
302         * debug-mini.h
303         (mono_debugger_thread_created): Added `MonoThread *' argument.
304         (mono_debugger_extended_notification): New public method.
305         (mono_debugger_trampoline_compiled): New public method.
306
307         * debug-mini.c
308         (MonoDebuggerThreadInfo): Added `thread' and
309         `extended_notifications' fields.
310
311         * debug-debugger.c
312         (debugger_executable_code_buffer): New static variable.
313
314         * debug-debugger.h
315         (MonoDebuggerInfo): Added `executable_code_buffer',
316         `executable_code_buffer_size', `breakpoint_info_area',
317         `breakpoint_table' and `breakpoint_table_size'.
318
319 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
320
321         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
322         that IP  either is an unused value or the vtable pointer. IMT 
323         calls use vtable + offset now. Reduced by almost half the size
324         of IMT entries.
325
326 2007-10-26  Jonathan Chambers <joncham@gmail.com>
327
328         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
329         defines to access param registers. Replace long usage with
330         gsize as sizeof(long) != sizeof(void*) on Win64.
331
332         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
333         on Win64. Fix intrinsic, use _AddressOfReturnAddress
334         instead of non-existant _GetAddressOfReturnAddress.
335
336         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
337         param registers. Save/restore %rdi and %rsi in MonoLMF.
338
339         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
340         param registers. Modify (throw_exception) signature to take 
341         %rdi and %rsi on Win64. 
342
343         Code is contributed under MIT/X11 license.
344
345 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
346
347         * helpers.c: unlink debugging output files.
348
349 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
350
351         * mini.c: Move mono_create_ftnptr () to object.c.
352
353 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
354
355         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
356         optional. This function can now be used to disassemble code generated
357         outside the JIT such as trampolines and IMT thunks.
358
359         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
360
361         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
362         vtable pointer from a ldr instruction.
363
364         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
365         new IMT call sequence.
366
367         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
368         call sequence for interface invocations.
369
370         * mini-arm.c (mono_arch_emit_imt_argument): added, required
371         for imt support. This function is empty since IMT on ARM requires no
372         special handling on the IR side.
373
374         * mini-arm.c (mono_arch_find_imt_method): added, required for
375         imt support.
376
377         * mini-arm.c (mono_arch_find_this_argument): added, required
378         for imt support.
379
380         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
381         a ldr instruction to load a value stored in the code stream.
382
383         * mini-arm.c (mono_arch_build_imt_thunk):added, required
384         for imt support.
385
386
387 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
388
389         * mini.c (mini_init): Install the jump trampoline callback.
390
391 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
392
393         * mini-trampolines.c: handle synchronized methods with the common
394         vtable trampoline (bug #335601).
395
396 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
397
398         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
399
400         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
401         64 bit platforms.
402
403         * mini-ia64.h mini-ia64.c: Add support for IMT.
404
405         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
406         prolog. Fixes #331958.
407
408 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
409
410         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
411
412 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
413
414         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
415         trampoline.
416
417 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
418
419         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
420         trampoline.
421
422 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
423
424         * mini-x86.c, mini-x86.h: x86 support for the common vtable
425         trampoline.
426
427 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
428
429         * mini-trampolines.c: changed the magic rampoline to understand
430         the common vtable trampoline method: the method to invoke is
431         determined by the vtable displacement of the call.
432
433 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
434
435         * mini.c, mini.h: register the common vtable trampoline if the
436         architecture supports it.
437
438 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
439
440         * cpu-amd64.md: use the correct max length for tls_get.
441
442 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
443
444         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
445         CEE_STELEM_ANY. Fixes #333696.
446
447 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
448
449         * exceptions-x86.c: provide more graceful handling of the case where
450         we followed a bogus function pointer from managed code (bug #332866).
451
452 2007-10-11  Mark Probst  <mark.probst@gmail.com>
453
454         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
455         replaces the generic_shared flag and will carry more information
456         in the future.
457
458         * generic-sharing.c: Added mini_type_stack_size() which allows
459         allows open types if given a generic sharing context.
460         mini_get_basic_type_from_generic() takes a
461         MonoGenericSharingContext* instead of a MonoCompile* now.
462
463         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
464         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
465         mini-sparc.c, mini-x86.c: Trivial changes required by the two
466         changes above.  Just passing arguments through to the right
467         places.
468
469 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
470
471         * mini-arm.c: unify the call emission to emit_code_seq().
472
473 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
474
475         * tramp-arm.c: reduced the trampoline size.
476
477 2007-10-10  Mark Probst  <mark.probst@gmail.com>
478
479         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
480         variable handling out of arch-specific code.
481
482 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
483
484         * mini-arm.c: implemented fast delegate dispatch.
485
486 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
487
488         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
489         that fp elimination is turned off if the space required by locals is too
490         big. Fixes #331958.
491
492 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
493
494         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
495         ARM to the new style trampoline.
496
497 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
498
499         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
500
501         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
502
503 2007-10-09  Martin Baulig  <martin@ximian.com>
504
505         * debug-debugger.h
506         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
507         `field_info_offset_offset'.     
508
509 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
510
511         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
512         removed more internal usage of the r11 register and made it available
513         to the register allocator.
514
515 2007-10-08  Mark Probst  <mark.probst@gmail.com>
516
517         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
518         when sharing generics and treat type variables as references.
519
520 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
521
522         * mini-ppc.c: started removing the internal uses of register r11
523         to eventually allow the register allocator to manage it as an
524         additional available register.
525
526 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
527
528         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
529
530 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
531
532         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
533         specific trampolines as they are not performance critical as a jump
534         target (maybe align as before only for AOT code?). This saves about
535         200 KB of native code on x86 for monodevelop startup.
536
537 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
538
539         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
540         monodevelop startup.
541
542 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
543
544         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
545
546         * mini-sparc.h mini-sparc.c: Implement IMT support.
547
548         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
549         its smaller and doesn't clobber sparc_g1.
550
551         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
552
553 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
554
555         * mini-ppc.c: optimized the size of the IMT thunks a bit.
556
557 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
558
559         * mini-ppc.c: implemented fast delegate invocation.
560
561 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
562
563         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
564
565 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
566
567         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
568         code to the new style trampoline in preparation for IMT support.
569
570 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
571
572         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
573         systems already. This also reduces the specific trampiline sizes and
574         prepares for the use of r12 as the IMT identifier register.
575
576 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
577
578         * mini-mips.h: endianess fix (simplified from a patch by
579         Thomas Kunze <thommy@tabao.de>, bug #323737).
580
581 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
582
583         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
584         to access ucontext fields and enable netbsd support
585         (partially from Magnus Henoch <mange@freemail.hu>).
586
587 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
588
589         * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
590         use the preprocessor from the CPP env var if it is set.
591
592 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
593
594         * mini-trampolines.c: fixed an assertion and moved it earlier in the
595         code, before interface_offset gets used.
596
597 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
598
599         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
600         mono_class_setup_vtable () before accessing klass->vtable.
601
602 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
603
604         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
605         hackish.
606
607 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
608
609         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
610         IMT slots (this saves hundreds of KB of memory in programs like
611         IronPython and Monodevelop).
612
613 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
614
615         * mini.c: print the delegate counter.
616
617 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
618
619         * mini-x86.c: make it easier to enable the debugging code for IMT
620         slots.
621
622 2007-09-28  Martin Baulig  <martin@ximian.com>
623
624         * debug-debugger.h
625         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
626         `mono_method_klass_offset' and `mono_method_token_offset'.
627
628 2007-09-20  Mark Probst  <mark.probst@gmail.com>
629
630         * mini.c: First generics sharing implementation.  Can only share
631         in very simple cases.  If sharing doesn't work it falls back to
632         dedicated compilation.
633
634         * mini.h: Flag in MonoCompile to specify whether generic
635         compilation is shared.  Flags enum for marking which generic inst
636         of a context is used.  Prototypes for helper functions.
637
638         * generic-sharing.c: Helper functions for generic method sharing.
639
640         * optflags-def.h: Optimization flag (gshared) for enabling generic
641         method sharing added.
642
643         * Makefile.am: generic-sharing.c added.
644
645 2007-09-19 Daniel Nauck <dna@mono-project.de>
646
647         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
648
649 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
650         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
651         fixes bug 325507.
652
653 2007-09-19  Martin Baulig  <martin@ximian.com>
654
655         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
656         mono_debug_cleanup() is now part of mono_cleanup().
657
658 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
659
660         * driver.c (mono_main): Fix a warning.
661
662 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
663
664         * aot-compiler.c: Optimize various parts when processing large assemblies.
665         Fixes ##325568.
666
667         * mini.c (mono_patch_info_hash): Improve hash function.
668
669 2007-09-14  Jonathan Chambers <joncham@gmail.com>
670
671         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
672         
673         Code is contributed under MIT/X11 license.
674
675 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
676
677         * mini.c (mini_init): Fix a leak.
678
679         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
680
681 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
682
683         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
684
685 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
686
687         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
688
689 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
690
691         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
692         variance tests.
693
694         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
695
696         * mini.c (handle_alloc): Enable managed allocators in AOT code.
697
698         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
699
700         * aot-runtime.c (decode_patch_info): Ditto.
701
702 2007-09-12  Jonathan Chambers <joncham@gmail.com>
703
704         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
705         static case. Cache delegates in architecture specific code, 
706         based on number of parameters.
707         
708         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
709         in architecture specific code, based on number of parameters.
710         
711         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
712         caching happen in architecture specific code now.
713         
714         Code is contributed under MIT/X11 license.
715
716 2007-09-12  Jonathan Chambers <joncham@gmail.com>
717
718         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
719         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
720         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
721
722         Code is contributed under MIT/X11 license.
723
724 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
725         * mini.c: (mono_thread_abort) Fixed bug #82416.
726
727 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
728
729         * mini.: hook the new managed GC allocation feature into the JIT.
730
731 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
732
733         * mini.c: implementation for the new runtime tls opcode.
734
735 2007-09-11  Martin Baulig  <martin@ximian.com>
736
737         * debug-debugger.h
738         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
739         `mono_method_inflated_offset'.
740
741 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
742
743         * driver.c mini.h mini.c: Add a new devel command line option for injecting
744         async exceptions into a method.
745
746         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
747         purpose of testing whenever the unwinder works at every instruction.
748
749 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
750
751         * mini.c: check accessibility of method used in ldftn (fixes
752         bug #82635).
753
754 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
755
756         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
757
758         * inssel.brg: Fix a warning.
759
760 2007-09-03  Martin Baulig  <martin@ximian.com>
761
762         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
763         now takes the `main_method' as argument.
764
765 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
766
767         * cpu-sparc.md (endfilter): Add missing src1:i argument.
768
769 2007-08-30  Jonathan Chambers <joncham@gmail.com>
770
771         * driver.c: include the cil-coff.h header on Windows.
772         
773         Code is contributed under MIT/X11 license.
774
775 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
776
777         * mini.c, driver.c: don't include the cil-coff.h header.
778
779 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
780
781         * mini.c: flag places that needs fixes fo soft-float support.
782
783 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
784
785         * mini.h, inssel-float.brg: fix soft-float constant loads on big
786         endian systems (partially from Dean Jenkins, bug #81924).
787
788 2007-08-28  Mark Probst  <mark.probst@gmail.com>
789
790         * mini.c (check_linkdemand): Remove embedded reference object in
791         call to LinkDemandSecurityException.
792         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
793         with an IntPtr instead of a reference object.
794
795 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
796
797         * mini.c (handle_initobj): Handle alignment properly.
798
799         * inssel.brg (mini_emit_memset): Ditto. 
800
801         * inssel.brg (mini_emit_memcpy): Ditto. 
802
803         * inssel-sparc.brg: Ditto.              
804
805         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
806
807 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
808
809         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
810         exceptions raised in unmanaged code. Fixes part of #82594.
811
812 2007-08-24  Mark Probst  <mark.probst@gmail.com>
813
814         * mini.c (mono_method_to_ir), declsec.c
815         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
816
817 2007-08-22  Martin Baulig  <martin@ximian.com>
818
819         * debug-mini.h
820         (MonoDebuggerThreadInfo): New typedef.
821         (mono_debugger_thread_table): New global variable.
822         (mono_debugger_thread_created): New public function.
823         (mono_debugger_thread_cleanup): New public function.
824
825         * debug-debugger.h
826         (MonoDebuggerInfo):
827         - removed `get_current_thread' and `lookup_assembly'.
828         - removed `data_table'.
829         - added `thread_table'.
830
831         * mini.c
832         (mono_thread_start_cb): Call mono_debugger_thread_created().
833         (mono_thread_attach_cb): Likewise.
834         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
835         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
836         initial domain.
837
838         * driver.c (mono_main): Move mono_debug_init() up, before calling
839         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
840
841 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
842
843         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
844         together when passing several arguments of type double (gives a small
845         speedup and saves a few bytes of generated code).
846
847 2007-08-20  Jb Evain  <jbevain@novell.com>
848
849         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
850
851 2007-08-20  Jb Evain  <jbevain@novell.com>
852
853         * mini.c (mono_method_to_ir): throw MethodAccessException
854         and FieldAccessException instead of InvalidProgramException.
855
856 2007-08-20  Mark Probst  <mark.probst@gmail.com>
857
858         * mini.c: CoreCLR security checks.
859
860         * mini.h: Removed MonoSecurityMode (moved to
861         metadata/security-manager.h) and mono_security_mode global var
862         (replaced by set/get functions in security-manager.h).
863
864         * driver.c: Added "core-clr-test" security mode for testing.  Used
865         set-function for setting security mode.
866
867 2007-08-17  Mark Probst  <mark.probst@gmail.com>
868
869         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
870         the new jit_info_table.
871
872         * driver.c: Test code for the new jit_info_table (enabled by the
873         define MONO_JIT_INFO_TABLE_TEST).
874
875 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
876
877         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
878         detection of call <REG> instruction sequence. Fixes build on freebsd.
879
880 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
881
882         * mini-exceptions.c: Fix a warning.
883
884 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
885
886         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
887         stack overflow handling code on amd64 too.
888
889         * mini-exceptions.c (mono_setup_altstack): Make this use 
890         mono_thread_get_stack_bounds ().
891
892         * mini-x86.h: Disable sigaltstack on solaris x86.
893
894 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
895
896         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
897
898 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
899
900         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
901
902 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
903
904         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
905
906         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
907
908 2007-08-03  Neale Ferguson <neale@sinenomine.net>
909
910         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
911         due to alignment.
912
913 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
914
915         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
916         to be emitted (bug #82281).
917
918 2007-08-01  Martin Baulig  <martin@ximian.com>
919
920         Merged the `debugger-dublin' branch.
921
922         * debug-debugger.h (MonoDebuggerInfo):
923         Removed the `old_*' compatibility entries.
924         Added `debugger_version' and `data_table'.
925         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
926         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
927
928         * debug-mini.c
929         (MiniDebugMethodBreakpointInfo): Add `address_list'.
930         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
931         instead of a `gconstpointer'.
932         (mono_debugger_insert_method_breakpoint): Return a
933         `MonoDebugMethodAddressList *'.
934
935 2007-06-28  Martin Baulig  <martin@ximian.com>
936
937         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
938
939 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
940
941         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
942         __builtin_frame_address () since it is broken on older gcc versions.
943
944 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
945
946         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
947         on the stack overflow handling and made the managed stack overflows
948         catchable in most cases using soft guard pages.
949         * exceptions-x86.c: added code to restore the protection in the soft
950         guard pages at the end of exception handling.
951
952 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
953
954         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
955
956 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
957
958         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
959         exception handling.
960
961 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
962
963         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
964         signal handling support until it has been ported to the new mechanism.
965         * mini.c: fixed stack overflow detection and use the new
966         architecture code  to handle signals on the altstack.
967
968 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
969
970         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
971         stack overflows on the alt stack.
972
973 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
974
975         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
976         stack overflows on the alt stack.
977
978 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
979
980         * exceptions-ppc.c: cleanup preparing for altstack support.
981
982 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
983
984         * exceptions-arm.c: cleanup preparing for altstack support.
985
986 2007-07-27  Mark Probst  <mark.probst@gmail.com>
987
988         * mini.c (print_jit_stats): Output hazard pointer stats.
989
990 2007-07-26  Mark Probst  <mark.probst@gmail.com>
991
992         * driver.c, mini.c: Replaced security mode flags with a single
993         enum variable.
994
995 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
996
997         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
998
999 2007-07-25  Mark Probst  <mark.probst@gmail.com>
1000
1001         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
1002         (which doesn't do anything yet) for activating Core CLR
1003         (Silverlight) security.
1004
1005 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
1006
1007         * mini-codegen.c: work around a possible gcc bug on arm.
1008
1009 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
1010
1011         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
1012         message for platforms that don't support AOT compilation.
1013
1014 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
1015
1016         * mini.h, mini.c, driver.c: temporary smcs hack.
1017
1018 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
1019
1020         * mini-arm.h, mini-arm.c: arm EABI fixes.
1021
1022 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
1023
1024         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
1025         case.
1026
1027         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
1028         trampolines taking a method argument.
1029
1030         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
1031
1032         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
1033         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
1034
1035         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
1036         JIT compilation throws an exception. Fixes #82050.
1037
1038 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1039
1040         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
1041         with the MONO_EXCEPTION_ defines.
1042
1043 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
1044
1045         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
1046         #82117.
1047         
1048         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
1049         the cause of an assertion.
1050
1051 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
1052
1053         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
1054         removed.
1055
1056 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
1057
1058         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
1059         assert. Should fix #82103.
1060
1061 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
1062
1063         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
1064         here too. Fixes #82095.
1065
1066         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
1067         addresses.
1068
1069         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
1070
1071         * mini-amd64.h: Enable IMT for amd64.
1072         
1073         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
1074
1075 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
1076
1077         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
1078
1079 2007-07-12  Mark Probst  <mark.probst@gmail.com>
1080
1081         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
1082         as soon as check_linkdemand sets an exception_type.
1083
1084 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1085
1086         * mini-x86.c: fixed offsets for IMT call sequence.
1087         * mini-x86.h: enable IMT again.
1088
1089 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1090
1091         * trace.c (mono_trace_enter_method): Decode MonoType too.
1092
1093         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
1094
1095         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
1096
1097         * mini-amd64.c: Add preliminary IMT implementation.
1098         
1099 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
1100
1101         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
1102         understand the new IMT-base interface invocation (thanks to
1103         Daniel Nauck for the report and the remote debugging session).
1104
1105 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
1106
1107         * mini-x86.c: size and speed optimizations for the IMT bsearch.
1108
1109 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1110
1111         * Makefile.am (aotcheck): Make this actually use the AOTed code.
1112
1113 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
1114
1115         * mini-trampolines.c: implement AOT IMT support.
1116         * mini-x86.h: enable IMT support for wider testing.
1117
1118 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1119
1120         * inssel.brg (emit_imt_argument): Add aot support here.
1121
1122         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
1123
1124 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
1125
1126         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
1127         of the IMT implementation, partially from massi, with my
1128         implementation of the bsearch sequence. Disabled by default until
1129         the AOT code is implemented.
1130
1131 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1132
1133         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
1134
1135         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
1136
1137 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
1138
1139         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
1140         arch-independent IMT JIT code from Massimiliano
1141         Mantione (massi@ximian.com) with small cleanups from me.
1142
1143 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
1144
1145         * Makefile.am: fix svn invocation to get the svn revision to be
1146         independent of the local language (build fix).
1147
1148 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1149
1150         * mini.c (inline_method): Reset cfg->exception_type if the
1151         inlining is aborted.  Fixes: 82049.
1152
1153 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
1154
1155         * mini.c: remove assert from exception handling code when exception_ptr
1156         is not set.
1157
1158 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1159
1160         * mini.c (mono_codegen): Add an assert.
1161
1162         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
1163         enter and leave code.
1164         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
1165
1166 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
1167
1168         * mini-ppc.c: fixed memory corruption for localloc(0)
1169         (bug #81852).
1170
1171 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1172         
1173         * mini.c: Fix warnings.
1174
1175 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
1176
1177         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
1178         to emit better double->int conversions.
1179
1180 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
1181
1182         * mini.c: the provided Min/Max optimizations are valid for unisgned
1183         ints.
1184
1185 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
1186
1187         * 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
1188
1189 2007-06-28  Miguel de Icaza  <miguel@novell.com>
1190
1191         * mini.c (mono_running_on_valgrind): Add support for reporting the
1192         method and  its boundaries to valgrind.
1193
1194 2007-06-28  Martin Baulig  <martin@ximian.com>
1195
1196         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
1197
1198 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
1199
1200         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
1201
1202         * generic.2.cs: Add new test case.
1203
1204 2007-06-25  Martin Baulig  <martin@ximian.com>
1205
1206         Merged the `debugger-dublin' branch.
1207
1208         * debug-mini.c
1209         (mono_debugger_insert_method_breakpoint): New public method.
1210         (mono_debugger_remove_method_breakpoint): Likewise.
1211         (mono_debugger_check_breakpoints): New static method.
1212         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
1213
1214         * debug-debugger.h (MonoDebuggerInfo):
1215         Renamed (to keep backward compatibility in the vtable):
1216         `insert_breakpoint' -> `old_insert_breakpoint'.
1217         `remove_breakpoint' -> `old_remove_breakpoint'.
1218         `create_string' -> `old_create_string'.
1219         `lookup_class' -> `old_lookup_class'.
1220         `lookup_type' -> removed; changed into a dummy field.
1221         `lookup_assembly' -> `old_lookup_assembly'.
1222         Added (same functionality, but different signature):
1223         `create_string', `lookup_class', `lookup_assembly'
1224         Added new:
1225         `get_method_addr_or_bpt', `remove_method_breakpoint',
1226         `runtime_class_init'.
1227
1228         * debug-debugger.c: Merged the `debugger-dublin' branch.
1229
1230 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
1231
1232         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
1233         well.
1234         (peephole_pass): Likewise.
1235
1236 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
1237
1238         * driver.c: hopefully make setaffinity work also for ancient
1239         versions of linux.
1240
1241 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
1242
1243         * driver.c : win32 build fix.
1244
1245 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
1246
1247         * driver.c: check for the MONO_NO_SMP env var and bind to a single
1248         processor if it is set.
1249
1250 2007-06-21  Martin Baulig  <martin@ximian.com>
1251
1252         * debug-mini.h: New file.
1253
1254         * debug-mini.c
1255         (mono_debugger_insert_breakpoint_full): Moved here from
1256         ../metadata/mono-debug-debugger.c.
1257         (mono_debugger_remove_breakpoint): Likewise.
1258         (mono_debugger_breakpoint_callback): Likewise.
1259
1260 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1261
1262         * jit-icalls.c (mono_helper_compile_generic_method): Update to
1263         changes in MonoGenericClass.
1264
1265 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
1266
1267         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
1268
1269 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1270
1271         * jit-icalls.c (mono_helper_compile_generic_method): Update to
1272         removal of MonoGenericMethod.
1273
1274 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
1275
1276         * mini-exceptions.c: hooks for the exception events profiling API.
1277
1278 2007-06-14  Randolph Chung  <tausq@debian.org>
1279
1280         * Makefile.ma: Add hppa target.
1281         * mini-arch.h: Include mini-hppa.h
1282         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
1283         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
1284         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1285
1286 2007-06-14  Randolph Chung  <tausq@debian.org>
1287
1288         * inssel.brg: Add rules for "chained" compare-branch operations so that
1289         a single compare op can affect multiple branches.  Adjust cost for
1290         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
1291         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
1292         cost for some rules so that they can more easily be overridden by
1293         per-arch rules (with fixes from lupus).
1294         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1295
1296 2007-06-13  Randolph Chung  <tausq@debian.org>
1297
1298         * mini-ops.h: Reorder branch ops so that they match the order of the
1299         corresponding CEE_* ops.  The code expects them this way.
1300         Add new ops for HPPA target.
1301         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1302
1303 2007-06-13  Randolph Chung  <tausq@debian.org>
1304
1305         * mini-exceptions.c: Handle cases where the stack grows towards
1306         larger addresses.
1307         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1308
1309 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
1310
1311         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
1312         counter.
1313         * driver.c: explain where a non-matching corlib is found.
1314
1315 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1316
1317         * mini.c (print_jit_stats): Output dynamic code allocation stats.
1318
1319 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
1320
1321         * mini-exceptions.c: Generate a method profile leave event during
1322         an exception to ensure that the profiler gets notified.
1323
1324 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
1325
1326         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
1327         branch.
1328
1329         * cpu-amd64.md: Add long_and/or/xor opcodes.
1330
1331 2007-06-06  Wade Berrier  <wberrier@novell.com>
1332
1333         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
1334         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
1335         length of instruction shr_imm (expected 8, got 10)
1336
1337 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
1338
1339         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
1340
1341 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1342
1343         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
1344         MonoInternalHashTable again (fixed bug in the internal hash table
1345         code).
1346
1347 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1348
1349         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
1350         Have to figure out what makes it crash the SWF regression.
1351
1352 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
1353
1354         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
1355
1356 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
1357
1358         * mini.c: optimize out the type check when storing null in a
1359         reference array.
1360
1361 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1362
1363         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
1364         MonoInternalHashTable.
1365
1366 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
1367
1368         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
1369         signed integer methods.
1370
1371 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
1372
1373         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
1374         permanently since the current approach doesn't work.
1375
1376 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
1377
1378         * inssel.brg (stmt): Only call delegate->invoke_impl if 
1379         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
1380
1381 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
1382
1383         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
1384         the sreg2==rdx case.
1385         
1386         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
1387         account if it contains a rex prefix.
1388         (peephole_pass): Handle OP_FMOVE as well.
1389
1390 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
1391
1392         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
1393         as it causes regressions.
1394
1395 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1396
1397         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
1398         static case as well.
1399
1400         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
1401
1402         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
1403         (mono_arch_get_this_arg_from_call): Ditto.
1404
1405         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
1406
1407         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
1408         invoke_impl field.
1409
1410         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
1411         (mono_arch_get_this_arg_from_call): Ditto.
1412
1413         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
1414         
1415         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
1416         try to create optimized invoke code and use that for further invocations. 
1417         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
1418
1419         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
1420
1421 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
1422
1423         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
1424         sealed classes or methods.
1425         *devirtualization.cs: tests for the new optimization
1426
1427 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
1428
1429         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
1430         by the update_volatile () function.
1431
1432 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
1433
1434         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
1435         require it.
1436
1437         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
1438
1439 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1440
1441         * mini.c: Add configure checks for header files.
1442         * mini-x86.c: Add configure checks for header files.
1443         * trace.c: Add configure checks for header files.
1444         * aot-runtime.c: Add configure checks for header files.
1445         * aot-compiler.c: Add configure checks for header files.
1446         * driver.c: Add configure checks for header files.
1447         * mini-codegen.c: Add configure checks for header files.
1448         
1449         Code is contributed under MIT/X11 license.
1450
1451 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1452
1453         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
1454         icompare_imm -128 + op_iclt. Fixes #81703.
1455
1456 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
1457
1458         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
1459
1460 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1461
1462         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
1463         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
1464         so that all isinst checks now use "interface_bitmap".
1465
1466 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
1467
1468         * cpu-amd64.md (jmp): Fix a warning.
1469
1470         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
1471
1472         * basic.cs: Add new regression test.
1473
1474         * basic.cs: Remove test which is now in basic-long.cs.
1475
1476         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
1477
1478         * basic-long.cs: Add new test.
1479         
1480 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
1481
1482         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
1483
1484 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1485
1486         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
1487
1488         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
1489         places.
1490         
1491         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
1492         throwing code a bit.
1493
1494         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
1495         the exception throwing code a bit.
1496
1497         * mini-x86.c (get_call_info): Allocate result from a mempool.
1498
1499 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
1500
1501         * aot-compiler.c (find_typespec_for_class): Fix the assert.
1502
1503         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
1504
1505         * mini.h (MonoCompile): Add 'token_info_hash' field.
1506
1507         * mini.c: Save token->method associations during compilation so the AOT 
1508         compiler can use it.
1509         
1510         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
1511         which reference generic classes and methods.
1512
1513 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
1514
1515         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
1516
1517         * aot-compiler.c (compile_method): Fix a typo in a comment.
1518
1519         * aot-runtime.c (decode_cached_class_info): Skip generic types.
1520
1521         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
1522         everything generic.
1523
1524         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
1525
1526 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
1527
1528         * mini.h (MonoCompile): Add 'args' field.
1529
1530         * mini.c (mono_compile_create_vars): Store variables representing the arguments
1531         into cfg->args.
1532
1533         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
1534
1535 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
1536
1537         * mini.c (mono_compile_get_interface_var): Remove this unused function.
1538
1539         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
1540
1541         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
1542         opcodes for some opcodes.
1543
1544         * mini.h *.brg *.c: Use the new opcodes.
1545
1546 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1547
1548         * mini.h: Bumped aot revision.
1549
1550         * inssel.brg: modified code generation of type checks for interfaces
1551         to use the new "MonoClass.interface_bitmap" instead of the old
1552         "MonoClass.interface_offsets".
1553
1554 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1555
1556         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
1557
1558 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
1559
1560         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
1561         64 bit platforms.
1562
1563 2007-04-27  Neale Ferguson <neale@sinenomine.net>
1564
1565         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
1566
1567 2007-04-27  Wade Berrier  <wberrier@novell.com>
1568
1569         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
1570         mini.h) to fix build.
1571
1572 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1573
1574         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
1575         
1576         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
1577         causes the corlib unit tests to fail.
1578
1579 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1580
1581         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
1582
1583         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
1584
1585         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
1586         opcodes to the comparison relations.
1587
1588         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
1589         opcodes to their types.
1590         
1591         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
1592
1593         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
1594         it in cfg->arch.cinfo.
1595
1596         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
1597
1598         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
1599         cfg->cil_offset_to_bb.
1600
1601 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1602
1603         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
1604         created becase of initlocals.
1605
1606 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
1607
1608         * mini-alpha.c cpu-alpha.md: More alpha port work from 
1609         Sergey Tikhonov <tsv@solvo.ru>.
1610
1611 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
1612
1613         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
1614
1615 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * cpu-s390.md (break): Correct the length of break instruction.
1618
1619 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
1620
1621         * mini.c: fix a couple of soft-float issues and comments.
1622
1623 2007-04-15  Miguel de Icaza  <miguel@novell.com>
1624
1625         * trace.c (is_filenamechar): - is also a filename char.
1626
1627 2007-04-15  Neale Ferguson <neale@sinenomine.net>
1628
1629         * mini-s390.c: Correct checking for enum type in return value processing.
1630
1631 2007-04-14  Raja R Harinath  <rharinath@novell.com>
1632
1633         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
1634         (version.h): Makefile is in the build directory.
1635
1636 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
1637
1638         * mini-amd64.h: fix for assertion failure on Solaris/amd64
1639
1640 2007-04-11  Martin Baulig  <martin@ximian.com>
1641
1642         * mini.c (can_access_member): Fix handling of generic classes;
1643         fixes #81259.
1644
1645 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
1646
1647         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
1648
1649 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
1650
1651         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
1652
1653 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1654
1655         * mini-codegen.c: make sure the right spill amount is
1656         used for fp or integer registers (fixes the float_sub_spill() on ppc).
1657
1658 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
1659
1660         * mini-ppc.c: fixes for the fp_branch_nan test.
1661
1662 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
1663
1664         * basic.cs: Comment out new test which still fails on ia64.
1665
1666 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1667
1668         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
1669
1670 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1671
1672         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
1673
1674 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
1675
1676         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
1677         on 64 bit machines. Fixes part of #80738.
1678
1679         * basic.cs: Add regression test.
1680
1681 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
1682
1683         * inssel.brg basic.cs: Revert previous change to fix build.
1684
1685         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
1686         platforms.
1687         
1688         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
1689
1690         * basic.cs: Add new regression test.
1691
1692 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
1693
1694         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
1695         many arguments.
1696
1697 2007-03-16  Neale Ferguson <neale@sinenomine.net>
1698
1699         * cpu-s390x.md: Correct length of break instruction.
1700
1701 2007-03-16  Neale Ferguson <neale@sinenomine.net>
1702
1703         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
1704         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
1705
1706 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
1707
1708         * *.c: Begin WIN64 port.
1709         * mini.c:  Use correct register in profiler.
1710         * mini-amd64.c: No inline assembly on Win64.
1711         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
1712         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
1713         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
1714         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
1715         mono_arch_ip_from_context for Win64.
1716         
1717         Contributed under MIT/X11 license.
1718
1719 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
1720
1721         * exceptions-amd64.c (seh_handler): Ditto.
1722
1723         * exceptions-x86.c (seh_handler): Fix a memory leak.
1724
1725 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
1726
1727         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
1728         mini-s390x.c: fixed peephole optimizations to deal
1729         correctly with 1 and 2 byte reload avoidance.
1730
1731 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1732
1733         * cpu-s390.md, cpu-s390x.md: update localloc length.
1734
1735 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1736
1737         * cpu-g4.md: added missing descriptions.
1738
1739 2007-03-14  Miguel de Icaza  <miguel@novell.com>
1740
1741         *  Makefile.am: Add support so the tail tests are not executed on
1742         PowerPC as that is a known limitation of the PowerPC port.
1743
1744 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1745
1746         * runmdesc.bat:  Move to msvc directory.
1747         
1748 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1749
1750         * runmdesc.bat:  Run executable that was produced by the current
1751         target and sent via an argument.
1752         
1753 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
1754
1755         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
1756         #81102.
1757
1758         * generics.2.cs: Add regression test.
1759
1760 2007-03-09  Wade berrier  <wberrier@novell.com>
1761
1762         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
1763
1764 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
1765
1766         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
1767         AOT code depends on this.
1768
1769 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
1770
1771         * mini.c: more precise tracking of types in the eval stack
1772         (part of fix for bug #81044).
1773
1774 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
1775
1776         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
1777
1778         * aot-compiler.c (encode_patch): Remove an obsolete comment.
1779
1780 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1781
1782         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
1783
1784         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
1785
1786 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
1787
1788         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
1789         a pointer on 64 bit systems. Fixes #80190.
1790
1791         * iltests.il: Add new regression test.
1792
1793 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1794
1795         * mini.c: inline a constant for Environment.IsRunningOnWindows.
1796
1797 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
1798
1799         * trace.c: Remove an erroneous alignemnt check when tracing.
1800           Fixes --trace on OSX86.
1801
1802 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
1803
1804         * mini-$(arch).h: initialize SP in context for all the archs.
1805
1806 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
1807
1808         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
1809         regressions in the thread tests.
1810
1811 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
1812
1813         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
1814         - fixed implementation of LOCALLOC opcode
1815         - implemented non-un compare for floats
1816         - code cleanup
1817         - implementation of FDIV and CKFINITE opcodes
1818         - fixes for latest mono updates
1819         - additional arch opcodes
1820
1821 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1822
1823         * Makefile.am: simplify and merge rules for cross-compilation.
1824
1825 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
1826
1827         * local-propagation.c: Actually *apply* the fix for bug 80591...
1828
1829 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1830
1831         * mini-exceptions.c: backuot part of the last change
1832         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
1833
1834 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
1835         * inssel.brg: Fix bug 59286.
1836
1837
1838 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
1839
1840         * mini-exceptions.c: patch from Zoltan to correctly check for
1841         stack boundaries (using the stack register, not the frame register),
1842         fixes bugs #80724, #79717.
1843
1844 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
1845
1846         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
1847         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
1848
1849         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
1850         presence of frame pointer elimination.
1851
1852 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
1853         
1854         * mini-x86.h: NetBSD UCONTEX_REG defines.
1855
1856 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
1857
1858         * inssel-amd64.brg: Fix amd64 build.
1859
1860 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
1861
1862         * mini.h: remove extern to workaround what looks likes gcc bug 26905
1863         on amd64.
1864
1865 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
1866
1867         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
1868         ends.
1869
1870         * mini-<ARCH>.c: Use mono_is_regsize_var ().
1871
1872 2007-01-30 Mark Mason <mason@broadcom.com>
1873
1874            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
1875            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
1876            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
1877            beginning support for CEE_JMP [not quite working yet]
1878            * tramp-mips.c: LMF handling now works
1879         
1880 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
1881
1882         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
1883
1884         * mini.h (NULLIFY_INS): New macro.
1885
1886 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
1887
1888         * mini.c: statistical profiler fix for windows, patch
1889         from Tor Lillqvist (tml@novell.com).
1890
1891 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
1892         * local-propagation.c: Fix bug 80591.
1893
1894 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
1895
1896         * Makefile.am: put back the --export-dynamic option as with
1897         the previous gmodule flags (thanks to Robert Jordan).
1898
1899 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
1900
1901         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
1902
1903         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
1904         simplify and speed up the local register allocator. Also rename some fields
1905         like iassign->vassign.
1906         
1907         * regalloc.c: Remove some functions which are no longer used since their
1908         inlined version is in mini-codegen.c.
1909         
1910         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
1911
1912         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
1913
1914 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
1915
1916         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
1917         narrowing. Fixes #80622.
1918
1919         * iltests.il: Add new regresssion test. 
1920
1921 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1922
1923         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
1924         debug-debugger.c, debug-debugger.h: warning fixes.
1925         * driver.c: updated copyright year and made it fit in one line.
1926
1927 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
1928
1929         * aot-runtime.c: updated to use mono-dl instead of gmodule.
1930
1931 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
1932
1933         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
1934
1935         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
1936
1937         * iltests.il: Add new test for bug #80507.
1938
1939 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1940
1941         * mini-arm.h: use soft-float also on vfp for now.
1942
1943 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1944
1945         * mini.c: fix some more soft-float issues.
1946
1947 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1948
1949         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
1950
1951 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
1952         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
1953         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
1954         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
1955
1956 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
1957
1958         * mini-arm.c: typo fix.
1959
1960 2007-01-23  Neale Ferguson <neale@sinenomine.net>
1961
1962         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
1963
1964 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
1965
1966         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
1967         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
1968
1969         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
1970
1971         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
1972
1973         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
1974         
1975         * inssel.brg: Fix a warning.
1976
1977         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
1978
1979         * abcremoval.c ssa.c ssapre.c: Update after this change.
1980         
1981         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
1982
1983         * dominators.c (df_set): Use mono_bitset_union_fast.    
1984
1985 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
1986
1987         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
1988         mini-codegen.c: reduce relocations and memory usage for the cpu
1989         description.
1990
1991 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
1992
1993         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
1994
1995         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
1996         to reduce their size.
1997
1998 2007-01-19 Mark Mason <mason@broadcom.com>
1999
2000         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
2001         * mini-mips.c: more configuration macros, support long conditional branches, additional
2002         asserts, fix epilog instrumentation.
2003         * mini-mips.h: use standard stack walk
2004         * cpu-mips.md: increase size of div, rem and conditional branches
2005         
2006 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
2007
2008         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
2009         to cpu spec data.
2010
2011 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
2012
2013         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
2014         (compile_method): Ditto.
2015
2016         * aot-runtime.c (decode_klass_info): Ditto.
2017
2018         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
2019         needed by the code generated by inssel.brg. Also fix a warning.
2020
2021 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
2022
2023         * mini.c: deal with enums that become genericinsts by
2024         being nested in a generic class (bug #79956).
2025
2026 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
2027
2028         * mini.c: match the generic definition to check for
2029         private access with generic types (bug #78431).
2030
2031 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
2032
2033         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
2034         to make life easier for people cross-compiling that insist on not
2035         using scratchbox.
2036
2037 2007-01-17 Mark Mason <mason@broadcom.com>
2038
2039         * inssel-long.brg: patch to deal with mips missing flags
2040         * inssel-long32-mips.brg: implement overflow checks
2041         * insset-mips.brg: implement overflow checks
2042         * mini-mips.h: implement conditional exception handling
2043         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
2044           Remove unused code, minor cleanups.
2045         * exceptions-mips.c: minor cleanups
2046         * mini-ops.h: add mips conditional exception ops
2047         * cpu-mips.md: add mips conditional exception ops
2048
2049         
2050 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
2051
2052         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
2053         to deal with mips missing of flags.
2054
2055 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
2056
2057         * exceptions-ppc.c: execute fault handlers.
2058
2059 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
2060
2061         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
2062
2063 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2064
2065         * mini.c: handle also floating point values in initialize_array.
2066
2067 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
2068
2069         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
2070         array initialization and make it conditional on the intrins option.
2071
2072 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
2073
2074         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
2075         relocations and put the patch info names close to the enum definition.
2076
2077 2007-01-15 Mark Mason <mason@broadcom.com>
2078
2079         * basic.cs, exceptions.cs: break up large tests to increase debugability.
2080
2081 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
2082
2083         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
2084
2085 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2086
2087         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
2088
2089 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
2090
2091         * Makefile.am: distribute the mips sources.
2092
2093 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
2094
2095         * mini-codegen.h: handle bug #80489 here, by excluding ecx
2096         directly.
2097
2098 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
2099
2100         * cpu-x86.md: back out for now as this triggers other regressions.
2101
2102 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2103
2104         * cpu-x86.md: force src1 and dest regpair for long shift instructions
2105         to eax:edx, so ecx can't get allocated to them (bug #80489).
2106
2107 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
2108
2109         * mini.c, mini-exceptions.c: enabled running fault handlers
2110         (bug #80469).
2111
2112 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2113
2114         * driver.c: If nothing fail, do not use the string "failed",
2115         because it makes it very annoying to view test result logs on the
2116         web. 
2117
2118 2006-12-30  Miguel de Icaza  <miguel@novell.com>
2119
2120         * debug-debugger.c (mono_debugger_main): Rename "main" to
2121         "main_method" to prevent a warning.
2122
2123         Remove a warning for unused field.
2124
2125 2006-12-28  Martin Baulig  <martin@ximian.com>
2126
2127         * debug-debugger.c
2128         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
2129
2130 2006-12-22  Martin Baulig  <martin@ximian.com>
2131
2132         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
2133         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
2134         seperate `.mdb_debug_info' section, so we can access it from the
2135         debugger even if the binary is stripped.
2136
2137         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
2138         from the `.mdb_debug_info' here to prevent the linker from
2139         removing that section.
2140
2141         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
2142         mdb-debug-info64.s.
2143
2144 2006-12-19  Robert Jordan  <robertj@gmx.net>
2145
2146         * mini-x86: enable the code to return small structures in
2147         registers for FreeBSD as well. Fixes bug #80278.
2148         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
2149
2150 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2151
2152         * mini-x86.c: align the stack when calling the profiler
2153         function instrumenting the prolog (on OSX).
2154
2155 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2156
2157         * mini.c: emit a break opcode where Debugger.Break () is called.
2158
2159 2006-12-13  Miguel de Icaza  <miguel@novell.com>
2160
2161         * mini.c (mono_method_to_ir): Provide useful information on this
2162         assert, to prevent others from debugging like I did.
2163
2164 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2165
2166         * mini.c: enable code which was incorrectly commented
2167         (bug #80235).
2168
2169 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
2170
2171         * mini-x86.c: enable on OSX, too, the code to return small
2172         structures in registers.
2173
2174 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
2175
2176         * mini-x86.c: remove the use of the dynamic code manager here, too.
2177
2178 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2179
2180         * mini.h, debug-debugger.c, tramp-*.c: fixed 
2181         mono_debugger_create_notification_function() to use
2182         mono_global_codeman_reserve () instead of a dynamic code manager.
2183
2184 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2185
2186         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
2187         ves_array_element_address() jit icall and use a generated
2188         managed method instead (which is about 4 times faster for a rank 3
2189         array access).
2190
2191 2006-11-29  Mark Mason  <mason@broadcom.com>
2192
2193         * basic-calls.cs: additional tests for passing
2194         structures as function arguments.
2195
2196 2006-11-29  Mark Mason  <mason@broadcom.com>
2197
2198         * mini-mips.h: disable custom exception handling
2199         * mini-mips.c: throw/rethrow should use jalr to call
2200         exception stubs.  Fixed bug with passing structures
2201         by value. More support for tracing floating point
2202         functions.
2203
2204 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2205
2206         * mini.c: fixed typo in the soft-float ldind.r4 handling
2207         (bug #80086).
2208
2209 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2210
2211         * mini.c, mini.h, driver.c: added --runtime command line
2212         option to select a different runtime than the autodetected one.
2213         * jit.h: added API for embedders to initialize with a specific
2214         runtime version.
2215
2216 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
2217
2218         * mini.c: handle also boxing of r4 values (bug #80024).
2219
2220 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2221
2222         * mini-ppc.c: force indirect calls until we reserve
2223         enough address space for all the generated code.
2224
2225 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
2226
2227         * exceptions-arm.c: workaround bugs in the libc definition
2228         of struct ucontext.
2229
2230 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2231
2232         * inssel.brg: fixes from me and Mark Mason.
2233
2234 2006-11-23  Dick Porter  <dick@ximian.com>
2235
2236         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
2237         semaphore display now we've fixed the initial value
2238
2239 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2240
2241         * inssel.brg: partially revert the last change to fix the build.
2242
2243 2006-11-21  Mark Mason  <mason@broadcom.com>
2244
2245         * inssel.brg: Add and use compare-and-branch macros to support
2246         architectures that do not have condition code registers (ie. MIPS).
2247         * *-mips.{c,brg,md}: Fix copyright statements
2248
2249 2006-11-20  Mark Mason  <mason@broadcom.com>
2250
2251         * Makefile.am: remove mini-codegen.c from list of MIPS sources
2252         * mini.c: Allow GET_CONTEXT to be specified by the arch port
2253         * mini.h: Added declaration for mono_print_ins()
2254         * mini-codegen.c: added ins_spec initializer for MIPS
2255         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
2256         vreg to be virtual and hreg to be non-virtual.
2257         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
2258         is not yet working/implemented correctly.
2259         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
2260         non-static, fixup calls to print_ins() from other parts in the file.
2261
2262 2006-11-20  Mark Mason  <mason@broadcom.com>
2263
2264         * basic-calls.cs: added tests for passing structures as arguments
2265         to calls.
2266
2267 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2268
2269         * inssel-long32.brg: optimize signed division by power of two.
2270
2271 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2272
2273         * mini-arm.c: added support for interworking with thumb code
2274         (mono must be still be built using the ARM instruction encoding).
2275
2276 2006-11-19  Miguel de Icaza  <miguel@novell.com>
2277
2278         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
2279         verifier has different rules for it.   Fixes a few verifier issues
2280         in the test suite.
2281
2282         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
2283         at the end, so people know what happened.
2284
2285 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2286
2287         * brach-opts.c: in optimize_exception_target() make sure we
2288         are in a catch clause (fixes bug #79871).
2289
2290 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2291
2292         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
2293         more soft-float support fixes.
2294
2295 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
2296
2297         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
2298         that are passed half on the stack and half in registers.
2299
2300 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2301
2302         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
2303         more mips integration work from Mark E Mason 
2304         <mark.e.mason@broadcom.com>.
2305
2306 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2307
2308         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
2309         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
2310         tramp-mips.c: added sources for the mips port, not
2311         integrated in the build yet. Contributed by
2312         Mark E Mason <mark.e.mason@broadcom.com>.
2313
2314 2006-11-14  Neale Ferguson <neale@sinenomine.net>
2315
2316         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
2317
2318 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2319
2320         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
2321         put the soft-float rules in its own file since it seems to
2322         break s390 compilation.
2323
2324 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2325
2326         * mini-arm.c: fixed wrnings.
2327
2328 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
2329
2330         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
2331         inssel-arm.brg: ARM support for soft-float.
2332
2333 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
2334
2335         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
2336         loads and stores of 32 bit fp values.
2337
2338 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
2339
2340         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
2341
2342         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
2343         works. Fixes #79852 and #79463.
2344
2345 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2346
2347         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
2348         more soft-float support WIP and fixes.
2349
2350 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
2351
2352         * mini-arm.c: some VFP updates.
2353
2354 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2355
2356         * mini-exceptions.c: 0 is a valid local var offset in some
2357         architectures, don't assert (bug #78508).
2358
2359 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
2360
2361         * exceptions-arm.c: fixed off by one error in stack walk code.
2362
2363 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2364
2365         * mini.h, mini.c: more precise tracking of type load exceptions.
2366
2367 2006-11-03  Robert Jordan  <robertj@gmx.net>
2368
2369         * Makefile.am: [WIN32] Add monow.exe target.
2370         * driver.c: [WIN32] Don't detach the console when debugging.
2371         Fixes bug #79797.
2372         
2373 2006-10-30  Miguel de Icaza  <miguel@novell.com>
2374
2375         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
2376
2377 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2378
2379         * aot-compiler.c (emit_method_info): Add a case missed earlier.
2380
2381         * driver.c (mini_regression): Fix --regression with AOT.
2382
2383         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
2384
2385 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
2388
2389         * mini-sparc.h: Don't use sigaction on sparc/linux.
2390
2391         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
2392
2393         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
2394
2395         * mini-exceptions.c: Add proper include files for getpid ().
2396
2397 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
2398
2399         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
2400         address instead of a MonoJitInfo* to avoid decoding the exception info for the
2401         method.
2402
2403         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
2404         name cache to reduce its size.
2405
2406         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
2407
2408 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2409
2410         * mini-x86.c: Save/restore the current LMF structure more efficiently using
2411         the mono_lmf TLS variable.
2412
2413         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
2414         trampoline lmf frames.  
2415
2416         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
2417
2418 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
2419
2420         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
2421         the mono_lmf TLS variable.
2422
2423         * mini-exceptions.c: Access the LMF structure through accessors.
2424
2425         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
2426         variable instead of in jit_tls->lmf.
2427
2428         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
2429         
2430         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
2431         trampoline lmf frames.
2432
2433         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
2434
2435 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2436
2437        * mini.c trace.c mini-x86.c: Revert these too.
2438         
2439        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
2440        signature change.
2441
2442 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
2443
2444         * genmdesc.c: removed now dead code.
2445
2446 2006-10-09  Robert Jordan <robertj@gmx.net>
2447
2448         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
2449
2450 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2451
2452         * mini.h: do not leave gaps in the opcode values.
2453
2454 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
2455
2456         * jit-icalls.h: flag functions as internal here, too.
2457
2458 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
2459
2460         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
2461         functions with the internal attribute.
2462
2463 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
2464
2465         * aot-compiler.c: fclose the file descriptor in the profile read loop.
2466
2467 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2468
2469         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
2470         for soft-float.
2471
2472 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2473
2474         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
2475         tail calls as on other platforms.
2476
2477         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
2478
2479         * iltests.il: Add a few tailcall tests.
2480
2481 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2482
2483         * driver.c: fix loop for old compilers (bug #79521).
2484
2485 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2486
2487         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
2488
2489         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
2490
2491         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
2492         metadata without any code.
2493
2494         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
2495         more precise debugging information using gdb.
2496
2497 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2498
2499         * inssel-ia64.brg: Make the helper methods static.
2500
2501 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
2502
2503         * inssel-x86.brg: make the helper methods static.
2504
2505 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
2506
2507         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
2508
2509 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
2510
2511         * mini.c: updates for monoburg changes.
2512         * inssel.brg: make a few helper functions static as they should.
2513
2514 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2515
2516         * Makefile.am: Move mini-codegen.c to common_sources.
2517
2518 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2519
2520         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
2521         instructions.
2522         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
2523         mini-ppc.h: port to use the common local register allocator.
2524
2525 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2526
2527         * mini.h: Remove the comment too then.
2528
2529 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
2530
2531         * mini.h: put back backend.data which is to be used shortly and
2532         doesn't increase the size of MonoInst. If any 64 bit arch aligned
2533         pointers on 4 byte boundaries it'd have much bigger issues running
2534         and you can ifdef it out anyway.
2535
2536 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2537
2538         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
2539         MonoInst size by 4 bytes on 64 bit machines.
2540
2541 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2542
2543         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
2544         replacement with more meaningful field names. Arch maintainers, please
2545         check the assigned names are good enough for your arch.
2546
2547 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2548
2549         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
2550         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
2551
2552 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2553
2554         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
2555         relocations and memory requirements, put the optimization flags
2556         definitions in their own file.
2557
2558 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
2559
2560         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
2561
2562         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
2563
2564 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
2565
2566         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
2567
2568 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
2569
2570         * inssel.brg: use the correct function to get the size of an item
2571         in an array, given an element class.
2572         * aot-compiler.c: do not access class->class_size directly.
2573
2574 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2575
2576         * mini.h, debug-mini.c: added a debugging function to print
2577         info about local variables and arguments in a jitted method.
2578
2579 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
2580
2581         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
2582
2583         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
2584
2585 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
2586
2587         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
2588         inner and outer loops when passing vtypes.
2589
2590 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
2591
2592         * mini-ppc.c: take into account the cpu errata for cache flushing
2593         which caused some random errors (bug #79381).
2594
2595 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
2596
2597         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
2598         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
2599
2600 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2601
2602         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
2603         loaded.
2604
2605         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
2606         freebsd ports tree.
2607
2608         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
2609         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
2610
2611         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
2612         displacement.
2613
2614 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
2615
2616         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
2617
2618 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
2619
2620         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
2621         macro does not have to be changed during debugging.
2622
2623         * 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>.
2624
2625         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
2626
2627         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
2628         
2629         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
2630         MONO_ARCH_NO_EMULATE_MUL is defined.
2631
2632         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
2633
2634         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
2635
2636         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
2637
2638         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
2639         
2640 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2641
2642         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
2643         stuff to mini-exceptions.c where it is used.
2644
2645         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
2646         setup code, the real one is in mini-exceptions.c.
2647
2648         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
2649         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
2650         some changes from the freebsd ports tree.
2651
2652         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
2653         constants.
2654         
2655         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
2656
2657 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
2658
2659         * mini.c: on Linux, check for /proc to be mounted
2660         (bug# 79351, novell bug#201204).
2661
2662 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2663
2664         * mini.c: handle cases where pthread_attr_getstack() behaves
2665         incorrectly (bug #78096).
2666
2667 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
2668
2669         * mini-arm.c: support larger stack frames (bug #79272).
2670
2671 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2672
2673         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
2674
2675         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
2676         tokens.
2677
2678         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
2679         mono_class_from_name () to find a class from its name.
2680
2681         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
2682
2683 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
2684
2685         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
2686
2687 2006-09-05  Kornél Pál  <kornelpal@gmail.com>
2688
2689         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
2690
2691 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2692
2693         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
2694         callinfo->trampoline.
2695
2696         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
2697         fixes #79271.
2698         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
2699         future.
2700
2701 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2702
2703         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
2704
2705 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
2706
2707         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
2708         stats.method_trampolines, it is already done by the generic trampoline code.
2709
2710         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
2711         
2712 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2713
2714         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
2715
2716         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
2717
2718         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
2719
2720         * mini.c (print_jit_stats): Print mscorlib mempool size too.
2721         
2722         * mini.c (print_jit_stats): Print new stats.
2723
2724         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
2725
2726 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2727
2728         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
2729         Address on two dimensional arrays. Fixes #78729.
2730
2731         * mini.h (MonoCompile): Add a 'skip_visibility' field.
2732
2733         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
2734         a method.
2735
2736         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
2737
2738         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
2739         #79130.
2740         
2741         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
2742         a race condition.
2743         (mini_get_ldelema_ins): Ditto.
2744
2745 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
2746
2747         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
2748         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
2749         Fixes #79213.
2750
2751 2006-08-29 Neale Ferguson <neale@sinenomine.net>
2752
2753         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
2754         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
2755
2756         * exceptions-s390x.c: Cosmetic change.
2757
2758         * tramp-s390.c: Fix warning.
2759
2760         * cpu-s390.md: Correct length of mul_imm.
2761
2762 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2763
2764         * aot-compiler.c: added binary writer with ELF backend
2765         implementation (only on Linux/x86 for now).
2766
2767 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
2768
2769         * Makefile.am: Don't run net 2.0 AOT tests.
2770
2771         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
2772         (mono_compile_assembly): Skip net 2.0 assemblies as well.
2773
2774         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
2775
2776 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2777
2778         * aot-compiler.c: simplified and refactored the asm-writing code
2779         to allow different backends.
2780
2781 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
2782
2783         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
2784
2785         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
2786         little. Share patches of type TYPE_FROM_HANDLE as well.
2787
2788         * mini.c (mono_patch_info_equal): New helper function.
2789         (mono_patch_info_hash): Ditto.
2790
2791         * aot-compiler.c (emit_method_code): Fix s390 build.
2792
2793         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
2794         is not handled because it is stored as a flag and not as a type ctor. Fixes
2795         #79016.
2796
2797 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2798
2799         * aot-compiler.c: Fix computation of GOT slot statistics.
2800         
2801         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
2802         Also remove support for not PIC AOT.
2803
2804         * mini.h: Bump AOT file format version.
2805
2806         * objects.cs: Add a test for #78990.
2807
2808         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
2809         (peter.dettman@iinet.net.au). Fixes #79087.
2810
2811         * basic-long.cs: Add a test for the above.
2812
2813 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
2814
2815         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
2816         
2817         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
2818         code somewhat.
2819
2820 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
2821
2822         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
2823         exceptions.
2824
2825 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2826
2827         * mini.c: Don't verify COM proxy invoke calls
2828         
2829
2830 2006-08-10  Dick Porter  <dick@ximian.com>
2831
2832         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
2833         which process is holding semaphores locked.
2834
2835 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
2836
2837         * mini-ia64.c mini-amd64.c: Fix #79027.
2838
2839         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
2840
2841         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
2842
2843         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
2844         implicit arguments in a vararg call. Fixes #79027.
2845
2846 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
2847
2848         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
2849         (mono_get_array_new_va_signature): Ditto.
2850
2851 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
2852
2853         * aot-runtime.c: Call init_plt lazily.
2854
2855         * inssel-long.brg: Fix unsigned long->int conversion.
2856
2857         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
2858
2859         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
2860         that most data is now in the .rss/.data section.
2861
2862 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
2863
2864         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
2865
2866         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
2867
2868         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
2869
2870         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
2871
2872         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
2873         virtual call. Fixes #79010.
2874
2875         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
2876         and use the result as the this argument in the real call.
2877
2878         * generics.2.cs: Add a new test for #79010.
2879         
2880 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
2881
2882         * mini-x86.c: Fix a warning.
2883
2884         * aot-compiler.c: Add a bunch of statistics.
2885
2886         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
2887
2888 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
2889
2890         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
2891
2892 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2893
2894         * 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>.
2895
2896 2006-07-13  Miguel de Icaza  <miguel@novell.com>
2897
2898         * mini.c (mono_method_to_ir): Obtain the original method in the
2899         CIL stream and use this to perform validation.
2900
2901         Fixed: #78816
2902
2903 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
2906         (mono_arch_call_opcode): Ditto.
2907
2908         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
2909         #78826.
2910
2911         * mini.c (mono_patch_info_dup_mp): New helper function.
2912         
2913         * aot-compiler.c (compile_method): Fix some of the memory allocated during
2914         compilation. Fixes #78827.
2915
2916 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2917
2918         * declsec.c: Use original security informations for
2919           MONO_WRAPPER_MANAGED_TO_MANAGED.
2920
2921 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2922
2923         * mini.c: Allow Com Interop methods/classes and
2924         don't verify COM wrapper calls
2925         
2926
2927 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
2928
2929         * inssel-long32.brg: Fix long->i4 checked conversion.
2930
2931         * exceptions.cs: Add a test for the above.
2932
2933 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2934
2935         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
2936
2937         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
2938         leaks.
2939
2940         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
2941         #78775.
2942
2943 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
2944
2945         * mini.c: Fix solaris/x86 exception handling.
2946
2947         * Makefile.am: Get rid of $(ICU_LIBS).
2948
2949 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
2950
2951         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
2952         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
2953         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
2954
2955         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
2956
2957         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
2958         this function causes a SIGSEGV.
2959
2960 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
2961
2962         * mini.c: Remove unused solaris/x86 includes.
2963
2964 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2965
2966         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
2967
2968 2006-06-20  Jb Evain  <jbevain@gmail.com>
2969
2970         * cpu-g4.md: fix max length of start_handler instruction.
2971
2972 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
2973         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
2974
2975 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
2976         * ssa.c: Fixed bug 78653 for SSA based deadce.
2977         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
2978         MonoInst.flags, used in SSA based deadce.
2979         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
2980         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
2981
2982 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2983
2984         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
2985         it can end up using non executable memory on ppc64 systems
2986         running ppc32 userspace (fix from Johannes Berg).
2987
2988 2006-06-14  Dick Porter  <dick@ximian.com>
2989
2990         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
2991         4.1.1
2992
2993 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
2994         * mini.c: Made so that inline is locally disabled if it would
2995         trigger a .cctor, because too many apps depend on this behavior
2996         (which seems to be also the one of the MS CLR).
2997
2998 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
2999
3000         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
3001         No idea why this worked before.
3002
3003         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
3004         which branch to outer exception clauses since they could skip the
3005         inner finally clauses. Fixes #78633.
3006
3007         * exceptions.cs: Add a test for the above.
3008
3009         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
3010         Fixes #78629.
3011
3012         * iltests.il: Add a test for the above.
3013
3014 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
3015
3016         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
3017         after the end of a try bblock, to prevent asserts in mini_method_compile ().
3018
3019         * iltests.il: Add a test for the above.
3020
3021 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
3022
3023         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
3024         
3025         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
3026         methods as instrinsics.
3027
3028 2006-06-09  Wade Berrier <wberrier@novell.com>
3029
3030         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
3031         (simple-cee-ops.h ssapre-mini-ops.h)
3032
3033 2006-06-09  Neale Ferguson <neale@sinenomine.net>
3034
3035         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
3036         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
3037         instruction).
3038         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
3039         * cpu-s390x.md: Fix max. length values for a couple of instructions.
3040
3041 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3042
3043         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
3044
3045 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
3046
3047         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
3048         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
3049         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
3050         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
3051         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
3052         of opcodes, so that bug 78549 should not happen again.
3053         * ssapre.c: Updated to use the renamed files.
3054
3055 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3056
3057         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
3058         in OP_ATOMIC_EXCHANGE_I4.
3059
3060 2006-06-07  Wade Berrier <wberrier@novell.com>
3061
3062         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
3063         in mono_debugger_create_notification_function)
3064
3065 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
3066
3067         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
3068         
3069         * mini.c (type_from_stack_type): Disable some changes which do not
3070         seem to work.
3071
3072         * driver.c: Reenable opts.
3073
3074         * mini.h (MonoStackSlot): New structure to keep track of the verification state
3075         of the evaluation stack.
3076         
3077         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
3078         evaluation stack trace at entry to the bblock.
3079
3080         * mini.c (merge_stacks): New function to perform verification of stack merges.
3081         Turned off by default.
3082
3083         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
3084         STACK_MP.
3085         
3086 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
3087
3088         * local-propagation.c: Fixed bug 78549.
3089
3090 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
3091
3092         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
3093
3094 2006-06-02  Miguel de Icaza  <miguel@novell.com>
3095
3096         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
3097         tramp-arm.c, tramp-ia64.c
3098         (mono_debugger_create_notification_function): Update signature to
3099         new signature and use new protocol for creating the notification
3100         function.  
3101
3102         Should fix the build.
3103
3104 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
3105
3106         * exceptions-ppc.c (mono_jit_walk_stack)
3107         (ves_icall_get_frame_info): Fix the build
3108
3109 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3110
3111         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
3112
3113 2006-05-31  Raja R Harinath  <rharinath@novell.com>
3114
3115         * il2tests.2.il: New file for generics CIL tests.  Add test for
3116         #78019.
3117         * Makefile.am: Update.
3118
3119         Fix #78019
3120         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
3121         to nullable types.
3122
3123 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
3124
3125         * aliasing.c: Fixed bug 78311.
3126
3127 2006-05-29  Martin Baulig  <martin@ximian.com>
3128
3129         * mini-exceptions.c (mono_find_jit_info): When computing the
3130         native offset, check whether we're actually inside the method's
3131         code; call mono_debug_print_stack_frame() to format the frame.
3132         (ves_icall_System_Exception_get_trace): Call
3133         mono_debug_print_stack_frame() to format the stack frame.
3134         (ves_icall_get_trace): Update to the new debugging API.
3135         (mono_jit_walk_stack_from_ctx): Likewise.
3136         (ves_icall_get_frame_info): Likewise.
3137
3138         * mini.c (get_method_from_ip): Use the new debugging API.
3139         (mono_print_method_from_ip): Likewise.
3140
3141         * exceptions-ppc.c
3142         (mono_jit_walk_stack): Use the new debugging API.
3143         (ves_icall_get_frame_info): Likewise.   
3144
3145 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3146
3147         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
3148
3149 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
3150
3151         * mini.c: Added "limitator" to inline for debugging.
3152
3153 2006-05-24  Martin Baulig  <martin@ximian.com>
3154
3155         * debug-debugger.c (mono_debugger_init): Create a private,
3156         malloc()-based code manager for the notification function and
3157         intentionally leak it on exit.  This fixes the crash-on-exit race
3158         condition.
3159
3160         * tramp-amd64.c
3161         (mono_debugger_create_notification_function): Added
3162         `MonoCodeManager *' argument.
3163
3164         * tramp-x86.c
3165         (mono_debugger_create_notification_function): Added
3166         `MonoCodeManager *' argument.
3167
3168 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
3169
3170         * aliasing.c: Fixed 64 bit issue.
3171         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
3172         default since all known bugs are fixed (one more time!).
3173
3174 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3175
3176         * mini.c: write barrier support.
3177
3178 2006-05-23  Martin Baulig  <martin@ximian.com>
3179
3180         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
3181         check at the top of the file.
3182
3183 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3184
3185         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
3186         reverting changes without reason and without changelog entries.
3187
3188 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3189
3190         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
3191         to a few opcodes. Fixes #78439.
3192
3193         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
3194         consistency with other archs.
3195
3196         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
3197
3198 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3199
3200         * debug-debugger.c: fix the build.
3201
3202 2006-05-17  Martin Baulig  <martin@ximian.com>
3203
3204         * debug-debugger.c
3205         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
3206         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
3207         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
3208         (debugger_attach): Call GC_mono_debugger_add_all_threads().
3209
3210 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3211
3212         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
3213
3214 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3215
3216         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
3217         MONO_TYPE_GENERICINST.
3218         
3219         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
3220         MONO_TYPE_GENERICINST.
3221
3222 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3223
3224         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
3225         #78325.
3226
3227 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
3228
3229         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
3230         mempool.
3231         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
3232
3233 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3234
3235         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
3236         mono_trace_cleanup ().
3237
3238         * iltests.il: Fix problem with the newly added test.
3239
3240         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
3241         due to register constraints, free up the previous hreg. Fixes #78314.
3242
3243         * iltests.il: Add new test for #78314.  
3244
3245         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
3246         Interlocked.Add. Fixes #78312.
3247
3248         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
3249         
3250 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3251
3252         * inssel.brg (mini_emit_virtual_call): Fix a warning.
3253
3254 2006-05-05  Martin Baulig  <martin@ximian.com>
3255
3256         * debug-mini.c (mono_debug_open_block): New method.
3257
3258         * mini-amd64.c
3259         (mono_arch_output_basic_block): Call mono_debug_open_block() at
3260         the beginning of each basic block.
3261
3262         * mini-x86.c
3263         (mono_arch_output_basic_block): Call mono_debug_open_block() at
3264         the beginning of each basic block.
3265
3266 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
3267
3268         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
3269         default until I understand why they break the build on amd64.
3270
3271 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3272
3273         * mini.c (mini_cleanup): Call mono_cleanup ().
3274
3275         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
3276         errors.
3277
3278 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
3279
3280         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
3281         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
3282         default since all known bugs are fixed, and I cannot reproduce bug
3283         77944... I'm asking Matt Hargett to test again after this commit.
3284
3285 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
3286
3287         * mini-codegen.c: Fixed typo that thrashed inline.
3288
3289 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
3290
3291         * dominators.c (compute_dominators): Avoid using a worklist since
3292         it is not correct in some cases. Instead, iterate over all bblocks as
3293         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
3294
3295 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3296
3297         * mini.c (mono_jit_compile_method_inner): Use
3298         mono_prepare_exception_from_error that resets the value
3299         internally.
3300
3301 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3302
3303         * mini.c: Move the mini_loader_error_to_exception to metadata. 
3304         
3305 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
3306
3307         * aliasing.c: Fixed bug 78210.
3308
3309 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
3310
3311         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
3312         default until all their problems (or the ones they trigger) are fixed.
3313
3314 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
3315
3316         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
3317         
3318         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
3319         as loaded only after resolving patches since that could invoke the same method.
3320
3321         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
3322
3323         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
3324         functions.
3325
3326         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
3327         AOT loader.
3328
3329         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
3330         stack.
3331
3332         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
3333         made from AOT code through the PLT table.
3334
3335         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
3336         holding the plt offset when a call is made to the aot plt trampoline.
3337         
3338 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
3339
3340         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
3341         amd64 AOT support.
3342
3343         * Makefile.am (common_sources): Fix build breakage.
3344
3345         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
3346         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
3347         intra-assembly calls if possible.
3348         
3349         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
3350
3351         * mini-trampolines.c: Handle PLT entries.
3352
3353         * mini.c: Avoid creating a GOT var for calls.
3354
3355         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
3356         from mscorlib code.
3357
3358         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
3359         from mscorlib code.
3360
3361         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
3362         AOT code.       
3363
3364         * mini.h: Bump AOT file format version.
3365         
3366         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
3367         covers more cases.
3368
3369 2006-04-25  Martin Baulig  <martin@ximian.com>
3370
3371         * driver.c: Disable copyprop, consprop and inline when running
3372         inside the debugger.
3373
3374 2006-04-25  Martin Baulig  <martin@ximian.com>
3375
3376         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
3377         with `get_current_thread' and added `detach'.
3378         (MonoDebuggerMetadataInfo): Added `thread_size',
3379         `thread_tid_offset', `thread_stack_ptr_offset' and
3380         `thread_end_stack_offset'.
3381
3382 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
3383
3384         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
3385         aot-runtime.c.
3386
3387         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
3388         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
3389
3390         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
3391
3392         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
3393
3394         * aot.c: Add support for ADJUSTED_IID.  
3395
3396 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3397
3398         * aot.c (emit_method_order): Don't align method_order_end.
3399
3400         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
3401         the interface ID changes.
3402
3403 2006-04-21  Dick Porter  <dick@ximian.com>
3404
3405         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
3406         cleaning up a thread.  Fixes the new part of bug 77470.
3407
3408 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
3409
3410         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
3411         to managed wrapper.
3412                      
3413 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3414
3415         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
3416         
3417         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
3418         SIGSEGV. Fixes #78072.
3419
3420         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
3421         unregister our SIGABRT handler.
3422
3423 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
3424
3425         * mini.c: Disabled inline where it can alter the call stack in a
3426         way visible from managed code.
3427         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
3428         default.
3429
3430 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
3431
3432         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
3433         on other platforms. Fixes #78089.
3434
3435 2006-04-13  Martin Baulig  <martin@ximian.com>
3436
3437         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
3438         determine whether we're inside the debugger.
3439
3440         * debug-debugger.h
3441         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
3442
3443 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3444
3445         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
3446         handler clauses. Fixes #78024.
3447
3448         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
3449         in the CALL_MEMBASE opcodes. Fixes #78088.
3450         (mono_arch_get_vcall_slot_addr): Ditto.
3451
3452 2006-04-10  Martin Baulig  <martin@ximian.com>
3453
3454         * debug-debugger.c: The thread handling code has now been moved
3455         into ../metadata/threads.c.
3456
3457 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3458
3459         * driver.c (mono_main): Fix --with-gc=none build.
3460
3461         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
3462         (mono_spillvar_offset_float): Ditto.
3463         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
3464         hreg, not when its !global, since on ia64, there is a third category: stacked
3465         registers.      
3466
3467 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
3468
3469         * mini.c: set MonoInst->klass for load field address and a few other
3470         places.
3471
3472 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
3475
3476 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3477
3478         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
3479         the branch opt changes.
3480
3481 2006-04-06  Dick Porter  <dick@ximian.com>
3482
3483         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
3484         
3485         * wapihandles.c (mini_wapi_seminfo): 
3486         * driver.c (mono_main): Add semaphore info option
3487
3488 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3489
3490         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
3491         branch optimization changes. Fixes #78009.
3492
3493 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3494
3495         * mini.c: ignore accessibility of methods in managed->native wrappers.
3496
3497 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3498
3499         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
3500         
3501         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
3502
3503 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3504
3505         * mini.c: Modify the branch optimizations to preserve the invariant that
3506         the entries inside the in_bb and out_bb arrays are unique.
3507         (mono_unlink_bblock): Avoid creation of new arrays.
3508
3509 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
3510
3511         * mini.c (mono_unlink_bblock): Fix regression caused by previous
3512         change (#77992).
3513
3514 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
3515
3516         * mini.c (optimize_branches): Remove the "optimizations" in
3517         the cbranch1/cbranch2 -> branch cases which were causing several
3518         problems in the past. Fixes #77986.
3519
3520 2006-03-31  Chris Toshok  <toshok@ximian.com>
3521
3522         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
3523         default optimizations :(
3524
3525 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3526
3527         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
3528         branch.
3529
3530 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
3531
3532         * local-propagation.c: Added comments to structs and removed
3533         "Mono" prefixes from local tree mover types.
3534
3535 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
3536
3537         * Makefile.am (arch_sources): Define this for each architecture so 
3538         libmono_la_SOURCES is defined in one place.
3539
3540 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3541
3542         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
3543         from handles/.
3544
3545 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
3546
3547         * driver.c: print the GC name supplied by configure.
3548
3549 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
3550
3551         * local-propagation.c: Added tree mover, and moved here all the
3552         local propagation code from mini.c
3553         * mini.c: Added support for treeprop, and moved all the local
3554         propagation code to local-propagation.c
3555         * mini.h: Added support for treeprop
3556         * driver.c: Added support for treeprop, enabled consprop, copyprop,
3557         treeprop, inline and deadce by default
3558         * Makefile.am: Added local-propagation.c
3559
3560 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
3561
3562         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
3563
3564 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
3565
3566         * debug-debugger.c: make it compile without the Boehm GC.
3567
3568 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3569
3570         * mini.c: fixed issue with mismatch when an icall is registered
3571         with multiple names but same address.
3572
3573 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
3574
3575         * declsec.c, mini-exceptions.c: use write barrier to set reference
3576         fields of managed objects.
3577
3578 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
3579
3580         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
3581         (can_access_internals): Fix a warning.
3582
3583         * mini.c (print_method_from_ip): Rename this to 
3584         mono_print_method_from_ip so it gets exported.
3585
3586         * trace.c: Deal with strings inside StringBuilder's containing garbage
3587         and fix memory leaks. Fixes #77848.
3588
3589 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
3590
3591         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
3592         fixes #77787.
3593
3594 2006-03-16 Neale Ferguson <neale@sinenomine.net>
3595         
3596         * mini-s390.c: Remove OP_X86_TEST_NULL.
3597
3598 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
3599
3600         * mini.c: use the correct GetHashCode() for the moving collector.
3601
3602 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
3603
3604         * liveness.c: Regalloc spill cost tuning.
3605
3606 2006-03-15 Neale Ferguson <neale@sinenomine.net>
3607         
3608         * mini-s390x.h: Correct S390_LONG macro.
3609
3610         * mini-s390x.c: Cleanup unused code.
3611
3612 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3613
3614         * jit-icalls.h: New file.
3615
3616         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
3617         icalls and include that instead of including jit-icalls.c.
3618
3619         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
3620         OP_X86 opcodes.
3621
3622 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
3623
3624         * mini.c: when checking for member accessibility, also check for
3625         friend assemblies and for explicit interface implementations.
3626
3627 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3628
3629         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
3630
3631         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
3632
3633         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
3634         common cases are done first.    
3635
3636         * mini-ops.h: Only define platform specific opcodes on the given platform.
3637
3638         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
3639         branch.
3640         
3641 2006-03-14  Martin Baulig  <martin@ximian.com>
3642
3643         Revert Paolo's change from r57348:
3644
3645         * mini.h: don't use gboolean for bitfields.
3646         * mini.c: verifier changes for fields and methods accessibility.
3647
3648 2006-03-13  Neale Ferguson <neale@sinenomine.net>
3649
3650         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
3651
3652         * mini-s390x.c: Fix conv_r_un.
3653
3654         * cpu-s390, cpu-s390x.md: Fix lengths.
3655
3656 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
3657
3658         * mini.c: nested types have access to all the nesting
3659         levels, not just the enclosing types.
3660
3661 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3662
3663         * mini.c: added a few more verification checks.
3664
3665 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
3666
3667         * liveness.c: Merge optimizations from the linear-il branch.
3668
3669 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3670
3671         * mini-ia64.c (emit_call): Add a comment.
3672
3673         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
3674
3675         * tramp-ia64.c: Fix some warnings.
3676
3677 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
3678
3679         * mini.h: don't use gboolean for bitfields.
3680         * mini.c: verifier changes for fields and methods accessibility.
3681
3682 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3683
3684         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
3685         lazy icall wrapper changes.
3686
3687         * dominators.c: Replace all the dominator algorithms with faster
3688         ones from the linear-il branch.
3689
3690         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
3691         the mempool.
3692
3693         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
3694         common cases are done first.
3695
3696         * mini-amd64.c: Fix some warnings.
3697
3698         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
3699         from the mempool.
3700
3701         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
3702         added code.
3703
3704         * mini.h: Add a missing prototype.
3705
3706 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3707
3708         * mini.c: Compile icall wrappers lazily.
3709
3710         * mini-codegen.c: Use printf instead of g_print since its much faster.
3711
3712         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
3713         function.
3714
3715         * mini.c (optimize_branches): Cache the negative result from 
3716         remove_block_if_useless ().
3717
3718         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
3719         Also fix some bblock linking issues.
3720
3721         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
3722         assembly files.
3723
3724         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
3725
3726         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
3727         accessed fields first, for better cache behavior.
3728         
3729 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3730
3731         * mini.c: speedup IList<T> array accesses.
3732
3733 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3734
3735         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
3736         inline_costs counter. Fixes #77190.
3737
3738 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
3739
3740         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
3741         trace messages. Fixes #77706.
3742
3743 2006-03-04  Martin Baulig  <martin@ximian.com>
3744
3745         * tramp-amd64.c, tramp-x86.c
3746         (mono_debugger_create_notification_function): Use
3747         mono_global_codeman_reserve() to allocate a buffer at runtime and
3748         return it.
3749
3750         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
3751
3752         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
3753         notification function at runtime and then call `initialize' in the
3754         `MONO_DEBUGGER__debugger_info' vtable.
3755
3756 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3757
3758         * iltests.il: Fix a visibility problem.
3759
3760 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3761
3762         * driver.c, mini.c: add hooks for the counters API.
3763
3764 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
3765
3766         * driver.c: show disabled options.
3767
3768 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
3769
3770         * linear-scan.c: always use cost-driven selection.
3771
3772 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3773
3774         * jit-icalls.c (helper_compile_generic_method): Revert change from
3775         2006-02-24.
3776
3777 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
3778
3779         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
3780
3781 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3782
3783         * inssel.brg: style fixes, mostly to force the updated monoburg
3784         to run for people using svn.
3785
3786 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
3787
3788         * mini.c: match monoburg changes.
3789
3790 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
3791
3792         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
3793         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
3794         declaration in the header file.
3795
3796 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3797
3798         * helpers.c: reduce relocations and mem usage.
3799
3800 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3801
3802         * mini.h, mini-codegen.c: disable logging features if
3803         requested by configure.
3804
3805 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
3806
3807         * mini.c: tiny verifier changes.
3808
3809 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
3810
3811         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
3812         cpu-pentium.md: stack alignment changes for osx/x86,
3813         partially from Geoff Norton <gnorton@customerdna.com>.
3814
3815 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3816
3817         * jit-icalls.c (helper_compile_generic_method): Update to changes
3818         in metadata/class.c.
3819
3820 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3821         
3822         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
3823         
3824         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
3825         interface calls with large offsets.
3826
3827 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3828
3829         * jit-icalls.c (helper_compile_generic_method): Document the
3830         special-case we depend on so that we can inflate the method twice
3831         with the same context with no bad side-effects.
3832
3833 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
3834
3835         * mini-x86.c, mini-amd64.c: fix for case when xen support
3836         is disabled.
3837
3838 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
3839
3840         * mini-x86.c, mini-amd64.c: generate code to access tls items
3841         in a faster way for Xen systems.
3842
3843 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3844
3845         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
3846         updates and compilation fixes for the OSX/x86 port, mostly from
3847         Geoff Norton <gnorton@customerdna.com>.
3848
3849 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
3850
3851         * inssel.brg: faster interface call implementation
3852         to sync with the interface_offsets MonoVTable changes.
3853
3854 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
3855
3856         * mini.c: more verification checks.
3857
3858 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
3859
3860         * mini.c: added a few more verification checks.
3861
3862 2006-02-17      Neale Ferguson <neale@sinenomine.net>
3863
3864         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
3865         facility on the processor and use it if available.
3866
3867 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
3868
3869         * driver.c, aot.c, mini.c: throw exception if the IL code is
3870         invalid or unverifiable.
3871
3872 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3873
3874         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
3875         m.StructField.
3876
3877 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
3878
3879         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
3880
3881 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3882
3883         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
3884         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
3885         handling of instantiated generic valuetypes.
3886
3887 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3888
3889         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
3890         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
3891         instead.
3892
3893         * generics.2.cs: Revert the nullable reftypes tests.
3894
3895 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
3896
3897         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
3898         using __builtin_frame_address (1) as it doesn't work in the presence
3899         of optimizations. Hopefully fixes #77273.
3900
3901         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
3902         -> generics.cs change as it doesn't work with some automake versions.
3903
3904 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3905
3906         * mini.c: handle systems that sue a different way to
3907         retrieve the stack address of the current thread.
3908
3909 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3910
3911         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
3912         it specially in the makefile.
3913
3914         * generics.2.cs: Add tests for nullable reference types.
3915
3916 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3917
3918         * mini.c: always handle the case when mono_jit_init()
3919         is called in a thread different from the main thread,
3920         confusing libgc (bug #77309).
3921
3922 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
3923
3924         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
3925
3926 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3927
3928         * mini.c: change optimize_branches () to use a single loop
3929         and introduce a new optimization to simplify some range checks.
3930
3931 2006-02-03  Martin Baulig  <martin@ximian.com>
3932
3933         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
3934         and merged with debugger_thread_manager_add_thread().
3935         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
3936         inform the debugger about the main thread.
3937
3938 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
3939
3940         * basic.cs: Add test for div.un/rem.un constant folding.
3941
3942 2006-02-03  Neale Ferguson <neale@sinenomine.net>
3943
3944         * cpu-s390x.md: correct int_xor_imm length
3945
3946 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
3947
3948         * generics.2.cs: New test for #77442.
3949
3950         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
3951         #77442.
3952
3953 2006-02-02  Martin Baulig  <martin@ximian.com>
3954
3955         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
3956         <mono/metadata/mono-debug-debugger.h>   
3957
3958         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
3959
3960 2006-02-02  Martin Baulig  <martin@ximian.com>
3961
3962         * debug-debugger.h: New header file for debug-debugger.c.
3963
3964         * debug-debugger.c: Big API cleanup; don't run the managed Main()
3965         function is a separate thread anymore; add support for attaching.
3966
3967 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3968
3969         * tramp-x86.c: Fix a warning.
3970
3971 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3972
3973         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
3974         on very large methods.
3975
3976         * aot.c (load_patch_info): Fix a warning.
3977
3978 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
3979
3980         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
3981         mini-ops.h: alu membase optimizations.
3982
3983 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
3984
3985         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
3986         to speedup StringBuilder.
3987
3988 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
3989
3990         * dominators.c (mono_compute_natural_loops): Fix detection of
3991         loop body start blocks.
3992
3993         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
3994
3995 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3996
3997         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
3998         #75145.
3999
4000 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
4001
4002         * aliasing.c: Fixed aliasing issue on 64 bit archs.
4003
4004 2006-01-25  Martin Baulig  <martin@ximian.com>
4005
4006         * debug-debugger.c: Moved the `MonoDebuggerManager' and
4007         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
4008         started to cleanup this file a little bit.
4009
4010 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
4011
4012         * mini.c: optimize a codepath frequently happening in generics code.
4013
4014 2006-01-23  Martin Baulig  <martin@ximian.com>
4015
4016         * Makefile.am: Only compile debug-debugger.c on supported platforms.
4017
4018         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
4019         functions directly.
4020
4021         * driver.c: debug-debugger.c is only available if
4022         `MONO_DEBUGGER_SUPPORTED' is defined.   
4023
4024 2006-01-23  Martin Baulig  <martin@ximian.com>
4025
4026         * debug-debugger.c: Only enable this on platforms where the Mono
4027         Debugger is working (x86 and x86_64).
4028
4029 2006-01-21  Martin Baulig  <martin@ximian.com>
4030
4031         The Mono Debugger is now using the normal `mono' instead of the
4032         `mono-debugger-mini-wrapper' when executing managed code.
4033
4034         * debug-debugger.c: New file; previously known as
4035         debugger/wrapper/wrapper.c.
4036
4037         * debug-mini.c (mono_init_debugger): Removed.
4038
4039         * driver.c (mono_main): Added new `--inside-mdb' command line
4040         argument which is used when running inside the debugger.
4041
4042 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
4043
4044         * liveness.c (mono_analyze_liveness): Remove some unused data
4045         structures.
4046
4047 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4048
4049         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
4050
4051 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
4052
4053         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
4054         depends on implementation details of monobitset.
4055
4056         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
4057         Fixes #77271.
4058
4059 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
4060
4061         * liveness.c: Update after monobitset changes.
4062
4063 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
4064
4065         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
4066
4067 2006-01-11 Neale Ferguson <neale@sinenomine.net>
4068
4069         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
4070
4071         * mini-s390x.c: Remove warning messages.
4072
4073 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4074
4075         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
4076
4077 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
4078
4079         * generics.2.cs: Add ldelem/stelem_any test.
4080
4081 2006-01-10 Neale Ferguson <neale@sinenomine.net>
4082
4083         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
4084
4085 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
4086
4087         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
4088         
4089 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
4090
4091         * generics.2.cs: Reenable vtype tests.
4092
4093         * inssel-x86.brg: Remove an icorrect valuetype rule.
4094
4095 2006-01-06 Neale Ferguson <neale@sinenomine.net>
4096
4097         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
4098         initial support for OP_ABS.
4099
4100 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4101
4102         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
4103
4104 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4105
4106         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
4107         conversion and implement LADD/LSUB.
4108
4109         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
4110         architectures.
4111
4112 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4113
4114         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
4115
4116         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
4117         architectures.
4118
4119 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4120
4121         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
4122         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
4123         (stack walk problem).
4124
4125 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
4126
4127         * aot.c (mono_aot_load_method): Fix a warning.
4128
4129 2006-01-03  Neale Ferguson <neale@sinenomine.net>
4130
4131         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
4132
4133 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4134
4135         * iltests.il: Add test for #77148.
4136
4137         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
4138         #77148.
4139
4140 2006-01-03  Neale Ferguson <neale@sinenomine.net>
4141
4142         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
4143
4144 2006-01-03  Neale Ferguson <neale@sinenomine.net>
4145
4146         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
4147         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
4148
4149         * basic-long.cs: Add lconv-to-r4/r8 tests.
4150
4151 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4152
4153         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
4154
4155         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
4156         here as on other archs.
4157
4158 2005-12-29 Neale Ferguson <neale@sinenomine.net>
4159
4160         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
4161
4162 2005-12-29 Neale Ferguson <neale@sinenomine.net>
4163
4164         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
4165         
4166         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
4167
4168         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
4169         instrument_prolog; Add memory_barrier instruction.
4170
4171 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
4172
4173         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
4174
4175 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
4176
4177         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
4178
4179         * aliasing.c inssel.brg: Fix warnings.
4180
4181         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
4182         could skip initialization of some parts of memory.
4183
4184         * mini.c mini-ia64.c: Fix warnings.
4185
4186         * inssel-sparc.brg: Add an implementation of lneg which actually works.
4187
4188 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4189
4190         * aliasing.c (mono_build_aliasing_information): Add a workaround for
4191         a crash seen on sparc.
4192
4193         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
4194         
4195         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
4196
4197 2005-12-21 Neale Ferguson <neale@sinenomine.net>
4198
4199         * mini-ops.h: Add s390_backchain instruction
4200
4201         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
4202
4203         * cpu-s390.md: Add s390_backchain instruction
4204
4205         * mini-s390.c: Significant ABI changes
4206
4207         * mini-s390.h: Cater for zero length structures
4208
4209 2005-12-20 Neale Ferguson <neale@sinenomine.net>
4210
4211         * mini-s390.c: ABI fixes
4212
4213         * inssel-s390.brg: Remove debug statements
4214
4215         * cpu-s390.md: Fix length of ATOMIC_xx operations
4216
4217 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
4218
4219         * basic-float.cs: Add float<->long conversion tests.
4220
4221 2005-12-16 Neale Ferguson <neale@sinenomine.net>
4222
4223         * mini-s390.c: Fix LOCALLOC processing.
4224
4225         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
4226
4227 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4228
4229         * iltests.il: Add tests for some opcodes not covered by the other
4230         tests.
4231
4232 2005-12-15 Neale Ferguson <neale@sinenomine.net>
4233
4234         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
4235         register loading for Tail processing; Correct trace output.
4236
4237         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
4238
4239         * cpu-s390.md: Correct size of jmp instruction. 
4240
4241 2005-12-13 Neale Ferguson <neale@sinenomine.net>
4242
4243         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
4244
4245 2005-12-13 Neale Ferguson <neale@sinenomine.net>
4246
4247         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
4248           Bring s390 up to current level.
4249
4250 2005-12-12  Zltan Varga  <vargaz@gmail.com>
4251
4252         * generics.2.cs: Disable the newly added tests as they do not work yet.
4253         
4254         * generics.2.cs: Add valuetype tests.
4255
4256 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
4257
4258         * basic-long.cs: Add i4->u8 test.
4259
4260         * objects.cs: Add tests for JIT intrinsic.
4261
4262         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
4263         optimizations lost by a mistake.
4264
4265 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4266
4267         * basic-long.cs: Remove a test moved to objects.cs.
4268
4269         * arrays.cs: Add more array tests.
4270
4271 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4272
4273         * arrays.cs: Add new tests for multi-dimensional arrays.
4274
4275 2005-12-06  Raja R Harinath  <rharinath@novell.com>
4276
4277         * Makefile.am (test_sources2): Add generics.2.cs.
4278         (EXTRA_DIST): Add test_sources2.
4279
4280 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4281
4282         Support for boxing and unboxing nullable types as well as the
4283         isinst operation on nullables, per the CLI ammendment.
4284
4285         * inssel.brg (CEE_ISINST): Special case for nullable
4286
4287         * mini.c (handle_unbox_nullable): new method
4288         (handle_box): Special case for nullable types
4289         (mono_method_to_ir): Call handle_unbox_nullable in correct
4290         places.
4291
4292         * generics.2.cs: New test suite
4293
4294         * Makefile.am: Support for regression tests with generics.
4295
4296 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
4297
4298         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
4299         allocated to registers. Fixes #76800.
4300
4301 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
4302
4303         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
4304
4305 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
4306
4307         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
4308         of platforms.
4309
4310 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
4311
4312         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
4313         objects.cs.
4314
4315         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
4316         
4317         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
4318 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
4319
4320         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
4321         single precision before storing to a single precision location.
4322
4323 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4324
4325         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
4326
4327 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
4328
4329         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
4330         correct files.
4331
4332         * basic.cs: Remove test_0_byte_compares test which was moved to
4333         objects.cs a long time ago.
4334
4335 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
4336
4337         * aliasing.c: Fixed aliasing issue on 64 bit archs.
4338
4339 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
4340
4341         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
4342         handlers are called.
4343
4344         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
4345         throwing code.
4346
4347          * mini-ia64.c: Add support for the throw->branch exception 
4348         optimization.   
4349
4350         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
4351
4352 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
4353
4354         * mini.c: Enabled "fastpath" deadce :-)
4355         
4356 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
4357
4358         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
4359         alias analysis pass to support it.
4360         * mini.h: Likewise.
4361         * ssa.c: Likewise.
4362         * liveness.c: Likewise (liveness computation can use aliasing
4363         information to be more accurate).
4364         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
4365         moreover made so that "--compile-all" uses the given optimization
4366         flags and not the default ones.
4367         * aliasing.c: Alias analysis (new file).
4368         * aliasing.h: Likewise.
4369         * Makefile.am: added "aliasing.c" and "aliasing.h".
4370         
4371 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4372
4373         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
4374         OP_L opcodes.
4375
4376 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
4377
4378         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
4379         fp >= end_of_stack exit condition, as it is not needed, and it might
4380         become true for fp eliminated frames.
4381
4382 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4383
4384         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
4385         coded offsets.
4386
4387 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
4388
4389         * mini-arm.c: fixed alignment of doubles/longs to match
4390         the C ABI (bug #76635).
4391
4392 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
4393
4394         * aot.c: fix compilation with --enable-minimal=aot.
4395
4396 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
4397
4398         * mini-arm.c: fixed compatibility with the new
4399         floating point emulator package for compares.
4400
4401 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
4402
4403         * mini.c : reverted sig->pinvoke changes (r51396-51397).
4404
4405 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
4406
4407         * mini-exceptions.c (print_stack_frame): Output to stderr.
4408         (mono_handle_native_sigsegv): Ditto.
4409
4410 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4411
4412         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
4413         OP_LCONV_TO_OVF_I implementation.
4414
4415         * mini-amd64.c: Add support for the throw->branch exception 
4416         optimization.
4417
4418         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
4419         when the catch clause catches a more general exception, i.e. Object.
4420
4421 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
4422
4423         * cpu-ia64.md: Remove unused opcodes.
4424
4425         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
4426         specific defines for architectures defining USE_SIGACTION.
4427
4428         * mini-ia64.c: Fix some warnings.
4429
4430         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
4431         version seemed to skip a frame.
4432
4433 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4434
4435         * mini.c: Clean up the usage of sig->pinvoke flag. Now
4436         only calls which are made to native code use this flag.
4437
4438 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4439
4440         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
4441         varargs methods as well.
4442         
4443         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
4444         which have save_lmf set. Reorganize methods prologs a bit.
4445
4446         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
4447         debugger to the proper place.
4448
4449 2005-10-29  Martin Baulig  <martin@ximian.com>
4450
4451         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
4452         when running inside the debugger until the debugger has support
4453         for it.
4454
4455 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4456
4457         * mini.h: Fix a warning.
4458
4459 2005-10-24  Miguel de Icaza  <miguel@novell.com>
4460
4461         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
4462         we expose publicly, this returns the string.
4463
4464 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
4465
4466         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
4467         with fp elimination.
4468
4469 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4470
4471         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
4472         native stacktrace using the glibc 'backtrace' function if available.
4473
4474 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
4475
4476         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
4477
4478         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
4479         handle SIGSEGVs received while in native code.
4480
4481         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
4482         code, call mono_handle_native_sigsegv which will abort the runtime
4483         after printing some diagnostics, instead of converting it into a
4484         confusing NullReferenceException.
4485
4486 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4487
4488         * cpu-pentium.md: Remove unused opcodes.
4489
4490 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
4491
4492         * mini-amd64.h (MonoLMF): Add rsp field.
4493
4494         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
4495         the lmf too.
4496
4497 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
4498
4499         * mini-codegen.c (get_register_spilling): Fix some warnings.
4500
4501 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
4502
4503         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
4504         elimination during exception handling. Enable fp elimination by
4505         default.
4506
4507         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
4508         elimination.
4509
4510 2005-10-16  Martin Baulig  <martin@ximian.com>
4511
4512         * mini-exceptions.c
4513         (mono_debugger_run_finally): New public method for the debugger.
4514
4515 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4516
4517         * debug-mini.c (mono_debug_init_method): Fix warning.
4518
4519         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
4520         the 'exname' parameter const to fix some warnings.
4521
4522 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
4523
4524         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
4525         introduced by the previous patch.
4526
4527 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
4528
4529         * basic-float.cs: Add test for precision of float arithmetic.
4530
4531         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
4532         when loading/storing single values from/to memory.
4533
4534         * mini.c (mono_jit_compile_method_with_opt): Create the function
4535         pointers in the correct domain.
4536
4537 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4538
4539         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
4540         introduced by previous patch.
4541         
4542         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
4543         when out_filter_idx is NULL.
4544
4545         * mini-exceptions.c: Don't run filter clauses twice during exception
4546         handling. Fixes #75755.
4547
4548 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4549
4550         * aot.c: Add support for ldflda wrappers.
4551
4552         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
4553         #75902.
4554
4555 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
4556
4557         * mini.c, mini.h: do not consider exception handlers blocks when
4558         setting up interface variables.
4559
4560 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
4561
4562         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
4563
4564 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
4565
4566         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
4567         causes a regression.
4568
4569         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
4570
4571 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
4572
4573         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
4574         of the OP_P definitions.
4575
4576         * TODO: Add a proposal for dealing with the CEE/OP mess.
4577
4578         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
4579         optimizations from the x86 port.
4580
4581         * cpu-amd64.md: Ditto.
4582
4583         * basic.cs basic-long.cs: Add tests.
4584
4585 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
4586
4587         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
4588         Patrik Torstensson's implementation of my exception-handling
4589         optimization idea, when the exception object is not used
4590         (bug #62150).
4591
4592 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
4593
4594         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
4595         of the mul_imm optimizations from the old jit.
4596
4597 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
4598
4599         * mini.c, liveness.c: patch by Patrik Torstensson and
4600         Zoltan Varga to improve performance in methods with
4601         exception clauses.
4602
4603 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4604
4605         * driver.c: Remove 'Globalization' entry from --version.
4606
4607 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
4608
4609         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
4610         there is a profiler interested in JIT events.
4611
4612         * aot.c: Load profile files produced by the AOT profiling module, and
4613         reorder methods based on the profiling info. Add a 'method_order' table
4614         to the AOT file to make mono_aot_find_jit_info work with the reordered
4615         methods.
4616
4617         * mini.h: Bump AOT file version info.
4618
4619 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
4620
4621         * mini-arm.h: work around what looks like a gcc bug when optimizations
4622         are enabled.
4623
4624 2005-09-28  Raja R Harinath  <rharinath@novell.com>
4625
4626         * Makefile.am (AM_CFLAGS): Don't use += to append inside
4627         conditionals.  Use ...
4628         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
4629
4630 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
4631
4632         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
4633         to determine the amount of memory to copy when passing valuetypes.
4634
4635         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
4636         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
4637
4638 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
4639
4640         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
4641         information about aot.
4642
4643 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4644
4645         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4646         macros. This will allow a deadlock debugger to easily be plugged
4647         in.
4648
4649 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
4650
4651         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
4652
4653 2005-09-27  Raja R Harinath  <rharinath@novell.com>
4654
4655         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
4656         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
4657         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
4658         ($(arch_built)) [CROSS_COMPILING]: Error out.
4659
4660 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4661
4662         * aot.c: Add support for the no_special_static flag for classes.
4663
4664 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4665
4666         * Reapply reverted patches.
4667
4668         * *: Revert r50174 as well.
4669
4670         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
4671
4672 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4673
4674         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
4675
4676 2005-09-23  Miguel de Icaza  <miguel@novell.com>
4677
4678         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
4679         part of the SIG_HANDLER_SIGNATURE.  
4680
4681 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4682
4683         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
4684         statistics.
4685
4686         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
4687         introduced by previous patch.
4688
4689 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
4690
4691         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
4692         saved registers too.
4693
4694         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
4695         upon the information returned by get_call_info ().
4696         
4697         * mini-x86.c (add_float): Fix stack size calculation.
4698         (mono_arch_call_opcode): Rewrite this so it works based up the
4699         information returned by get_call_info ().
4700         (mono_arch_get_this_vret_args): Ditto.
4701
4702 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
4703
4704         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
4705         in cinfo to determine the registers which need to be used.
4706
4707 2005-09-20  Miguel de Icaza  <miguel@novell.com>
4708
4709         * driver.c (mono_main): Add --server and --desktop flags. 
4710
4711 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
4712
4713         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
4714         registers as global registers.
4715
4716         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
4717         longer needed with the new register allocator.
4718
4719         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
4720
4721         * cpu-ia64.md: Remove unused opcodes.
4722         
4723         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
4724         
4725 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
4726
4727         * cpu-amd64.md: Remove unused opcodes.
4728
4729         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
4730         needed with the new register allocator.
4731
4732         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
4733         reg-reg moves.
4734
4735 2005-09-16  Raja R Harinath  <rharinath@novell.com>
4736
4737         * Makefile.am (check-local): Don't invoke semdel-wrapper.
4738
4739 2005-09-16  Martin Baulig  <martin@ximian.com>
4740
4741         * exceptions-amd64.c
4742         (throw_exception): Don't call mono_debugger_throw_exception() if
4743         we're a rethrow - see the FIXME in the code.
4744
4745 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
4746
4747         * mini.c (mono_init_exceptions): This only works on some architectures.
4748         
4749 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
4750
4751         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
4752         on ia64.
4753
4754         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
4755
4756         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
4757         now in mini-exceptions.c.
4758
4759 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
4760
4761         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
4762         now in mini-exceptions.c.
4763
4764 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
4765
4766         * exceptions-x86.c: Applied patch from Patrik Torstensson 
4767         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
4768
4769         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
4770         code into mini-exceptions.c. Add some assertions to it.
4771
4772 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4773
4774         * aot.c (emit_section_change): Applied patch from "The Software Team" 
4775         (<software@solmersa.com>). Fix as errors on windows.
4776
4777 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
4778
4779         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
4780         method info into the LMF.
4781
4782 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4783         
4784         * mini-ia64.c: Add proper unwind info for method epilogs.
4785
4786         * exceptions-ia64.c: Add some code to help debugging.
4787         
4788         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
4789
4790         * mini-exceptions.c: Fix warning.
4791
4792 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
4793
4794         * mini.c: Really fix build.
4795
4796         * mini-x86.c mini-amd64.c: Fix build.
4797
4798 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4799
4800         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
4801
4802         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
4803         some Interlocked methods as intrinsics.
4804
4805         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
4806         for Thread methods as well.
4807
4808         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
4809
4810         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
4811
4812         * mini-ia64.c mini-x86.c mini-amd64.c 
4813         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
4814         OP_MEMORY_BARRIER.
4815         
4816         * mini.c (mono_init_exceptions): Fix build breakage.
4817
4818 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
4819
4820         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
4821         of instructions. Use the new ia64_unw_op macros for emitting unwind
4822         info.
4823
4824         * mini.c (mono_init_exceptions): Initialize exception handling
4825         related trampolines at startup.
4826
4827 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
4828
4829         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
4830
4831 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4832
4833         * mini.c: Handle type loading errors gracefully during compilation and
4834         throw the appropriate exception.
4835
4836 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
4837
4838         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
4839         for the mono binary.
4840
4841 2005-09-09  Martin Baulig  <martin@ximian.com>
4842
4843         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
4844         the release.
4845
4846 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
4847
4848         * mini-arm.h: use emulation for conv.r.un for the release.
4849
4850 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
4851
4852         * mini-arm.c, objects.cs: more fixes and tests for them.
4853
4854 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
4855
4856         * mini-arm.c: align structures to at least 4 bytes to be able
4857         to keep our current optimized memcpy.
4858
4859 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
4860
4861         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
4862
4863 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4864
4865         * mini.c: ignore SIGPIPE.
4866
4867 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
4868
4869         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
4870
4871         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
4872
4873 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
4874
4875         * mini.h: Add prototype for mono_allocate_stack_slots_full.
4876
4877 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
4878
4879         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
4880         exception handling support.
4881         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
4882         patch by Brian Koropoff <briank@marakicorp.com>).
4883
4884 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
4885
4886         * mini.c: revert another 'optimization' which breaks when
4887         items on the eval stack need to be saved at a basic block end
4888         (bug #75940).
4889
4890 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
4891
4892         * jit-icalls.c: for arrays, ensure we always provide
4893         lower bounds.
4894
4895 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
4896
4897         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
4898         
4899         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
4900
4901 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4902
4903         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
4904         arguments in their original register.
4905
4906 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
4907
4908         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
4909         memset/memcpy.
4910
4911         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
4912         when ssapre is enabled.
4913
4914         * inssel-long.brg: Fix bug in previous patch.
4915
4916         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
4917         multiplication by a constant.
4918
4919 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
4920
4921         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
4922         icc.
4923
4924         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
4925         saving registers.
4926
4927 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
4928
4929         * inssel-arm.brg: apply changes tested by Brian Koropoff
4930         <briank@marakicorp.com>.
4931
4932 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4933
4934         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
4935         
4936 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
4937
4938         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
4939         to the same register if dreg is just a base register.
4940         (print_ins): Improve printing of membase opcodes.
4941
4942         * inssel-x86.brg: Add optimized ldind(reg) rules.
4943
4944         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
4945
4946 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
4947
4948         * mini.c: when running under valgrind, set the stack bottom for
4949         the GC at the actual approximate stack for the app (fixes running
4950         mono with valgrind).
4951
4952 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
4953
4954         * mini.c: do no break at the first valuetype to init found
4955         (fixes bug #75791).
4956
4957 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
4958
4959         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
4960
4961 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
4962
4963         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
4964
4965 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
4966
4967         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
4968
4969 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4970
4971         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
4972
4973         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
4974         code.
4975
4976         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
4977         code.
4978
4979         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
4980         methods.
4981
4982 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
4983
4984         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
4985
4986 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4987
4988         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
4989         in the tail recursion optimization.
4990
4991         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
4992         debug info into the assembly file.
4993
4994         * iltests.il: Add test for filter regions.
4995
4996         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
4997         initial stack of filter regions. Fixes #75755.
4998
4999 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
5000
5001         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
5002         stack requirements.
5003
5004 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5005
5006         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
5007         the check for an already compiled method on non-ia64 platforms.
5008         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
5009         proper domain.
5010
5011         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
5012
5013         * inssel-x86.brg: Add some optimized call rules.
5014
5015 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5016
5017         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
5018         method here.
5019
5020         * mini.h mini-trampolines.c: Pass the trampoline argument to 
5021         mono_arch_patch_delegate_trampoline.
5022
5023         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
5024
5025         * mini-trampolines.c: Fix build.
5026
5027         * mini-amd64.h: Add delegate trampolines.
5028
5029         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
5030
5031         * inssel-amd64.brg: Add optimized call rules.
5032         
5033         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
5034
5035         * inssel-ia64.brg: Add optimized ldind(reg) rules.
5036
5037 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5038
5039         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
5040         change.
5041
5042         * mini-ia64.c: Remove LMF fixmes.
5043
5044         * mini-ia64.h: Remove most fields from LMF.
5045
5046         * inssel-ia64.brg (stmt): Fix unaligned access errors.
5047
5048         * mini-trampolines.c: Add support for IA64 function descriptors.
5049
5050         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
5051         for IA64 function descriptors.
5052
5053 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
5054
5055         * tramp-arm.c: patch the vtable for virtual calls. Added
5056         support code to register/unregister the LMF.
5057         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
5058         more LMF work.
5059
5060 2005-08-19  Dick Porter  <dick@ximian.com>
5061
5062         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
5063         bit value if needed.
5064
5065 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5066
5067         * mini.c (mini_get_method): Move handling of wrapper data here.
5068
5069         * mini.c (mono_method_to_ir): Add support for dynamic methods.
5070
5071         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
5072         virtual.
5073
5074         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
5075         bblock->code does not remain empty.
5076
5077 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
5078
5079         * arrays.cs: Add regression test for #75832.
5080
5081         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
5082         rules. Fixes #75832.
5083
5084         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
5085         instruction scheduling.
5086
5087 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
5088
5089         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
5090
5091 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5092
5093         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
5094
5095         * mini-codegen.c: Fix VC build.
5096
5097         * cpu-pentium.md: Increase length of atomic_exhange_i4.
5098
5099 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5100
5101         * mini.h: fix signature for mono_register_opcode_emulation.
5102
5103 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
5104
5105         * mini.c: Get rid of most of the helper_sig_... constants using
5106         mono_create_icall_signature ().
5107
5108 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5109
5110         * jit-icalls.c (helper_ldstr): New helper function.
5111
5112         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
5113
5114         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
5115         throw, load the string using a helper call instead of creating a string object.
5116
5117         * aot.c: Update after LDSTR changes.
5118
5119         * mini.h: Bump AOT file version.
5120         
5121         * aot.c: Save class size info into the AOT file. Print more statistics during
5122         compilation.
5123
5124         * mini.h: Bump AOT file version.
5125
5126         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
5127         ordering of disasm cases. Fixes #74957.
5128
5129 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
5130
5131         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
5132         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
5133         the generic code needed for the ARM port.
5134
5135 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
5136
5137         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
5138         inssel-arm.brg: more ARM features and fixes.
5139
5140 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
5141
5142         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
5143         ARM port work in progress.
5144
5145 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5146
5147         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
5148
5149         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
5150
5151         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
5152
5153         * inssel.brg (mini_emit_memset): Add support for unaligned access.
5154
5155         * *-ia64.*: Ongoing IA64 work.
5156         
5157         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
5158
5159 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5160
5161         * TODO: Remove out-of-data todo stuff.
5162
5163         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
5164         dead code.
5165
5166         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
5167
5168         * mini.h: Bump corlib version.
5169
5170 2005-07-27  Martin Baulig  <martin@ximian.com>
5171
5172         * mini-codegen.c
5173         (create_copy_ins): Added `const unsigned char *ip' argument; set
5174         `copy->cil_code' from it.
5175
5176 2005-07-27  Martin Baulig  <martin@ximian.com>
5177
5178         * mini-exceptions.c (mono_handle_exception): Don't call
5179         mono_debugger_handle_exception() for filters.
5180
5181 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
5182
5183         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
5184         as well.
5185
5186 2005-07-26  Martin Baulig  <martin@ximian.com>
5187
5188         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
5189
5190         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
5191         helper_compile_generic_method() if the method is actually virtual
5192         and non-final.
5193
5194 2005-07-26  Martin Baulig  <martin@ximian.com>
5195
5196         * mini.c
5197         (trampoline_code): Renamed to `mono_trampoline_code' and made it
5198         public; this is now accessed directly by the debugger.
5199         (mono_generic_trampoline_code): Removed.
5200
5201         * debug-mini.c
5202         (mono_debug_init_method): Also add interncalls and wrappers.
5203
5204 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
5205
5206         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
5207
5208 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5209
5210         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
5211
5212 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5213
5214         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
5215
5216 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5217
5218         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
5219         getting TLS offsets on AMD64 too.
5220
5221 2005-07-20  Kornél Pál <kornelpal@hotmail.com>
5222
5223         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
5224
5225 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
5226
5227         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
5228         inssel-arm.brg, mini-arm.h: ARM port work in progress.
5229
5230 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5231
5232         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
5233
5234         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
5235         to mini.c.
5236
5237         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
5238         mono_sparc_is_virtual_call ().
5239         
5240         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
5241
5242         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
5243         trampoline parameters.
5244
5245         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
5246         
5247         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
5248         to mono_arch_get_vcall_slot_addr.
5249
5250         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
5251         trampoline code.
5252
5253         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
5254
5255 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
5256
5257         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
5258
5259 2005-07-19  Martin Baulig  <martin@ximian.com>
5260
5261         * exceptions-amd64.c (throw_exception): Call
5262         mono_debugger_throw_exception() here like we're doing it on i386.
5263
5264 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
5265
5266         * mini-ia64.c: Add optimized TLS access support.
5267
5268 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
5269
5270         * mini-exceptions.c: Ongoing IA64 work.
5271
5272         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
5273
5274         * mini.c: Use the default optimization set when embedding. Fixes
5275         #75194.
5276
5277 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
5278
5279         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
5280         of trampolines to a separate file.
5281
5282         * mini-trampolines.c: New file.
5283
5284         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
5285         separate file.
5286         
5287         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
5288         amd64/ia64 code.
5289
5290         * mini-codegen.c: Fix cygwin build.
5291
5292 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
5293
5294         * mini.c: Add some minor changes needed by the IA64 port.
5295
5296         * *-ia64.*: Ongoing IA64 work.
5297
5298 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
5299
5300         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
5301         trampolines into arch-independent and arch-dependent parts.
5302
5303         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
5304
5305 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
5306
5307         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
5308
5309         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
5310         the xp-regalloc-branch for amd64.
5311
5312         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
5313         xp-regalloc-branch for x86.
5314
5315 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5316
5317         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
5318
5319 2005-07-06  Martin Baulig  <martin@ximian.com>
5320
5321         * mini.c
5322         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
5323         (mono_jit_runtime_invoke): Likewise.
5324
5325 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5326
5327         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
5328         on x86 too.
5329         
5330         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
5331         without loading their metadata. Reorganize the file format so exception handling+
5332         debug info is kept separate from normal method info. Create MonoJitInfo 
5333         structures for methods lazily.
5334
5335         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
5336         loading metadata.
5337         (x86_class_init_trampoline): Patch AOT class init trampolines too.
5338
5339         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
5340
5341         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
5342         in AOT code.
5343
5344         * mini.h: Bump AOT file version.
5345
5346 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
5347
5348         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
5349
5350 2005-07-01  Raja R Harinath  <rharinath@novell.com>
5351
5352         * Makefile.am (check-local): Call semdel-wrapper.
5353
5354 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
5355
5356         * mini-x86.c: Revert the last change as it seems to break the build..
5357
5358 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5359
5360         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
5361         
5362         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
5363
5364 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
5365
5366         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
5367         outside of the macro, so strange stuff doesn't happen with gcc4
5368         (NEW_AOTCONST_TOKEN): Likewise.
5369
5370 2005-06-28  Martin Baulig  <martin@ximian.com>
5371
5372         * mini.c (mini_class_is_system_array): New static method; use this
5373         instead of `klass->parent == mono_defaults.array_class' everywhere
5374         since this also works for the new generic array class.
5375
5376 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5377
5378         * inssel.brg: Remove warnings.
5379
5380 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
5381
5382         * mini-ia64.c: Ongoing IA64 work.
5383
5384         * basic-float.cs: Add float->i1 conversion test.
5385
5386         * iltests.il: Add conv.u4 test.
5387
5388 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
5389
5390         * inssel-long.brg: Fix bug caused by last change.
5391
5392 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
5393
5394         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
5395         BSDs.  Allows the x86 JIT to work on OSX86
5396
5397 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
5398
5399         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
5400         u4->i8 conversion.
5401
5402         * mini-ia64.c: Ongoing IA64 work.
5403
5404 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5405
5406         * mini-ia64.c: Ongoing IA64 work.
5407
5408         * driver.c: Clean up jit_code_hash as well when using --regression.
5409
5410         * inssel-long.brg: Fix long->i4/u4 conversion rules.
5411
5412         * basic-long.cs: Add tests for long->u4 conversion.
5413
5414 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
5415
5416         * mini.c: Take mono_get_domainvar out of macros. This makes sure
5417         that we do not depend on undefined C behavior: the order stuff
5418         gets evaluated within an expression. Fixes mono when compiled on
5419         GCC 4.
5420
5421 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
5422
5423         * *-ia64.*: Ongoing IA64 work.
5424
5425         * aot.c: Lower memory usage while loading AOT methods.
5426
5427         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
5428
5429         * mini.h: Bump AOT file format version.
5430
5431 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5432
5433         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
5434
5435 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
5436
5437         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
5438         not on callee assembly). Fixed some comments.
5439
5440 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
5441
5442         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
5443         it gets proper disassembly.
5444         (emit_method_info): Remove some dead code.
5445
5446         * mini.c (mini_method_compile): Allways allocate the GOT var in
5447         mono_method_to_ir for emulating opcodes.
5448
5449 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
5450
5451         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
5452         before freeing the code memory. Fixes #74990.
5453
5454         * objects.cs: Add regression test for #74992.
5455
5456         * liveness.c: Extend live ranges of arguments to the beginning of the
5457         method. Fixes #74992.
5458
5459         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
5460         so it points into the faulting instruction.
5461
5462 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
5463
5464         * jit-icalls.c (mono_imul_ovf): Add exception handling.
5465
5466         * *-ia64.*: Ongoing IA64 work.
5467
5468         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
5469
5470 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
5471
5472         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
5473
5474         * *-ia64.*: Ongoing IA64 work.
5475
5476 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
5477
5478         * basic-long.cs: Add tests for add/sub.ovf.
5479
5480         * basic.cs: Add tests for sub.ovf.
5481
5482         * *-ia64.*: Ongoing IA64 work.
5483
5484 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
5485
5486         * *-ia64.*: Ongoing IA64 work.
5487
5488         * basic.cs: Add conv.ovf.i4.un test.
5489
5490 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
5491
5492         * mini.c: (remove_block_if_useless) Fixed bug 75061.
5493         
5494 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5495
5496         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
5497
5498 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5499
5500         * *-ia64.*: Ongoing IA64 work.
5501
5502 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5503
5504         * trace.[ch]:
5505         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
5506
5507 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
5508
5509         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
5510
5511 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
5512
5513         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
5514
5515         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
5516         of a call is callable by a near call.
5517
5518 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
5519
5520         * mini-ia64.c: Ongoing IA64 work.
5521
5522 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
5523
5524         * genmdesc.c: Make the generated array non-static.
5525
5526         * inssel-long.brg: Fix LSHR_IMM rule.
5527
5528         * *-ia64.*: Ongoing IA64 work.
5529
5530         * *-ia64.*: Ongoing IA64 work.
5531
5532 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
5533
5534         * *-ia64.*: Ongoing IA64 work.
5535
5536         * *-ia64.*: Ongoing IA64 work.
5537         
5538         * mini-ia64.c: Ongoing IA64 work.
5539
5540         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
5541
5542 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
5543
5544         * objects.cs basic-calls.cs: Move some tests to objects.cs.
5545         
5546         * objects.cs basic-long.cs: Move some tests to objects.cs.
5547
5548 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
5549
5550         * *-ia64.*: Ongoing IA64 work.
5551
5552         * iltests.il: Add a new test.
5553
5554         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
5555         newobj. Fixes #75042.
5556
5557 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
5558
5559         * *-ia64.*: Ongoing IA64 work.
5560         
5561         * *-ia64.*: Ongoing IA64 work.
5562         
5563         * *-ia64.*: Ongoing IA64 work.
5564
5565         * basic.cs objects.cs: Move tests accessing static variables as well.
5566
5567         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
5568
5569 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
5570
5571         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
5572
5573         * driver.c: Always print failed tests.
5574
5575         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
5576         frame pointer.
5577
5578         * *ia64*: Ongoing IA64 work.
5579
5580 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5581
5582         * basic.cs: Add tests for add.ovf. Fix warnings.
5583
5584 2005-05-18  Miguel de Icaza  <miguel@novell.com>
5585
5586         * driver.c (mono_main): Avoid crash if no argument is passed to
5587         --break;  Do not use g_error, but f_printf.   And fix all other
5588         ocurrences of the same crash.
5589
5590 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
5591
5592         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
5593         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
5594         Fixes #74742.
5595
5596 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
5597
5598         * *-ia64.*: Add beginnings of IA64 backend.
5599
5600         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
5601
5602 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
5603
5604         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
5605         Fixes #74925.
5606
5607         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
5608
5609         * mini-amd64.c: Fix a warning.
5610
5611 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
5612
5613         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
5614         in float_neg. Fixes #74897.
5615
5616         * mini-amd64.c (emit_call): Fix another near call bug.
5617
5618 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
5619
5620         * declsec.c: Keep the appdomain information in the structure. Added a 
5621         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
5622         value gets overwritten).
5623         * declsec.h: Set the default MonoArray for the the stack to 6. Added
5624         an MonoAppDomain member to MonoSecurityFrame.
5625         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
5626         used in the stack walk. Now use a MonoArray which grow (double) when
5627         it gets full.
5628
5629 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5630
5631         * mini.c: Re-enabled runtime cleanup, since running threads should
5632         now properly stop when exiting.
5633
5634 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5635
5636         * mini-codegen.c: New file contaning the arch-independent local
5637         register allocator. Not used by any architectures yet.
5638
5639         * mini.h linear-scan.c: Merge some changes from the 
5640         mini-xp-local-regalloc branch.
5641
5642 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5643
5644         * mini-amd64.c (emit_call): Fix calls to native functions when the
5645         runtime is compiled as a shared library. Fixes #74756.
5646
5647         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
5648         on a literal field. Fixes #74751.
5649
5650 2005-04-25  Raja R Harinath  <rharinath@novell.com>
5651
5652         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
5653
5654 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5655
5656         * objects.cs: Add missing null casting test.
5657
5658 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5659
5660         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
5661         in wrapper methods. Also rename 'address' variable to 'offset'.
5662
5663 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5664
5665         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
5666         warnings.
5667         
5668         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
5669
5670         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
5671         work on windows.
5672
5673 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
5674
5675         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
5676
5677 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
5678
5679         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
5680         just the last bytes.
5681
5682 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
5683
5684         * aot.c (mono_compile_assembly): Fix warning.
5685
5686         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
5687         by the _MSC_VER stuff.
5688
5689 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5690
5691         * inssel-long.brg: Fix #74588.
5692
5693         * cpu-amd64.md: Fix #74591.
5694
5695         * iltests.il: Add new regression tests.
5696
5697 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5698
5699         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
5700         valuetype.
5701
5702 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
5703
5704         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
5705
5706         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
5707         from Bill Middleton <flashdict@gmail.com>.
5708
5709 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5710
5711         * arrays.cs: Add new regression test. Fix warnings.
5712
5713 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
5714
5715         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
5716         and leakage in CKFINITE.
5717
5718         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
5719         this to a null op since it is called on amd64 too.
5720
5721         * exceptions-amd64.c (get_throw_trampoline): Align stack.
5722
5723         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
5724         body since this is not used on amd64.
5725         
5726         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
5727
5728         * mini-amd64.c: Remove obsolete fixmes.
5729
5730         * mini.c (print_method_from_ip): Fix debugging support.
5731
5732 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
5733
5734         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
5735         so that expressions that don't give much gain are not reduced.
5736         * ssapre.h: Likewise.
5737
5738 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5739
5740         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
5741
5742         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
5743
5744         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
5745
5746 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
5747
5748         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
5749
5750         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
5751
5752 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
5753
5754         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
5755         stack touching.
5756
5757         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
5758
5759         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
5760
5761         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
5762
5763         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
5764         MONO_ARCH_USE_SIGACTION. Fixes #74252.
5765
5766         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
5767
5768         * mini-x86.c: Fix up stack overflow handling.   
5769
5770         * exceptions.cs: Add new regression test.
5771
5772 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
5773
5774         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
5775         mono_jit_thread_attach.
5776
5777         * mini.c (mono_method_to_ir): Verify called method is not abstract.
5778
5779 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5780
5781         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
5782         avoid calling constructors using callvirt.
5783
5784         * inssel.brg: Fix #74073.
5785
5786 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5787
5788         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
5789         compilation with non-GCC compilers.
5790         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
5791         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
5792
5793 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5794
5795         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
5796         klass->interface_offsets (will likely fix bug#74073).
5797
5798 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5799
5800         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
5801
5802 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
5803
5804         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
5805         to amd64_div_reg_size ().
5806         
5807         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
5808
5809 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
5810
5811         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
5812
5813 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5814
5815         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
5816
5817 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5818
5819         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
5820         
5821         * mini.c (mono_precompile_assembly): Load and precompile referenced
5822         assemblies as well. Fixes #74015.
5823
5824 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5825
5826         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
5827
5828 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
5829
5830         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
5831         a lot of checks and (anyway) permissions cannot work until corlib is 
5832         loaded.
5833
5834 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
5835
5836         * mini-ppc.c: fixed ABI issue on sysv/ppc.
5837
5838 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
5839
5840         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
5841         calls (fixes bug#72824).
5842
5843 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
5844
5845         * mini.c: fix tail recursion elimination (see test in bug#73936).
5846
5847 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
5848
5849         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
5850         some fp functions in sse2 mode.
5851
5852 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
5853
5854         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
5855
5856 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
5857
5858         * mini.h mini.c: Add mono_get_jit_tls_key ().
5859
5860         * mini-x86.c: Enable fast TLS support on windows.
5861
5862 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5863
5864         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
5865         * mini.c: Check for p/invoke method when generating code. If a
5866         p/invoke method, or it's class, isn't decorated with [Suppress
5867         UnmanagedCodeSecurity] then generate code to call System.Security.
5868         UnmanagedDemand (only if the security manager is active).
5869
5870 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
5871
5872         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
5873         last change as it seems to cause strange crashes.
5874         
5875 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
5876
5877         * *.c: handle unsafe function pointers where needed.
5878
5879 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
5880
5881         * mini.c (mono_jit_free_method): Remove the fixme too.
5882
5883 2005-03-15  Miguel de Icaza  <miguel@novell.com>
5884
5885         * mini.c: As discussed, make the code actually free the delegate
5886         thunk now, to enable the debugging of delegate problems, use
5887         MONO_DEBUG=1 when running Mono. 
5888
5889         This takes also care of parts of the leaks as seen by Joe.
5890
5891 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
5892
5893         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
5894         thread_tls_offset calculation.
5895
5896 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
5897
5898         * declsec.c: Reworked linkdemand checks for icall. The previous code
5899         was using the declaration code (untrusted) and didn't work as expected
5900         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
5901         specific case.
5902
5903 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
5904
5905         * iltests.il: Add new localloc test.
5906
5907         * mini-amd64.c: Handle large stack allocations the same way as on
5908         windows if stack overflow handling is working.
5909         
5910         * mini-amd64.c: Allocate the signal stack using mmap.
5911
5912         * mini.c (sigsegv_signal_handler): Fix reading of context.
5913
5914         * mini-exceptions.c: Fix up stack overflow handling.
5915
5916         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
5917
5918         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
5919
5920         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
5921
5922         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
5923
5924         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
5925         tramp_init functions as they are no longer needed.
5926
5927 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
5928
5929         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
5930         
5931         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
5932
5933         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
5934         
5935         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
5936         support that now.
5937
5938         * mini-ops.h: Add OP_LMUL_IMM.
5939
5940         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
5941         long mul/div opcodes as intrinsic.
5942
5943         * mini-amd64.c (emit_call): Handle the case when the callee might be
5944         an AOT method.
5945
5946 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
5947
5948         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
5949         extra safe.
5950         
5951         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
5952
5953         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
5954
5955 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
5956
5957         * mini.c (mono_codegen): Don't leak here, to help people running
5958         monogrind.
5959
5960 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
5961
5962         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
5963         conversions in sse2 mode.
5964
5965         * basic-float.cs: Add regression test.
5966         
5967         * mini-amd64.c: Reenable sse2.
5968
5969 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
5970
5971         * mini-amd64.c: Disable sse2 until some regressions are fixed.
5972
5973 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
5974
5975         * driver.c: Copyright text should include 2005.
5976         
5977 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
5978
5979         * cpu-amd64.md (load_membase): Fix more max lengths.
5980
5981 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
5982
5983         * cpu-amd64.md (load_membase): Fix max length.
5984
5985         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
5986
5987         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
5988
5989         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
5990         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
5991
5992         * basic-float.cs: Add rounding regression test.
5993
5994         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
5995
5996 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
5997
5998         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
5999         structures in registers for pinvoke wrappers.
6000
6001 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6002
6003         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
6004
6005 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6006
6007         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
6008         wrapper to mono_jit_thread_attach.
6009
6010         * mini.c (mini_jit_thread_attach): New jit icall.
6011
6012         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
6013         native->managed wrappers.
6014
6015         * exceptions.cs: Add new regression test.
6016
6017         * mini.c (optimize_branches): Check regions in the cbranch to throw
6018         block case as well. Fixes #73242.
6019
6020 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6021
6022         * mini.c: thread safety fixes.
6023
6024 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
6025
6026         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
6027         patching stuff, since delegates use jump trampolines so there is
6028         no caller.
6029
6030         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
6031         jump trampolines.
6032         
6033         * tramp-amd64.c: Fix build.
6034
6035         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
6036         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
6037
6038         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
6039         Rename this to mono_arch....
6040         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
6041
6042         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
6043
6044         * mini-amd64.c (emit_call): If both the caller and the callee is
6045         guaranteed to have 32 bit addresses, emit a normal call.
6046
6047         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
6048
6049         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
6050         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
6051         method_ptr inside delegates.
6052
6053 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
6054
6055         * mini.c (mono_jit_free_method): Free the method info even if the native code is
6056         invalidated. Fixes #73001.
6057
6058         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
6059
6060         * mini-x86.c: Only use stdcall for pinvokes on windows.
6061
6062 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
6063
6064         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
6065         * mini-x86.c: remove unreliable __thread var offset detection,
6066         use the correct accessors and enable by default.
6067
6068 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6069
6070         * mini.c (mono_jit_free_method): Fix memory leak.
6071
6072 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
6073
6074         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
6075
6076 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
6077
6078         * cpu-amd64.md: Fix lengths of atomic opcodes.
6079
6080 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6081
6082         * driver.c: try to not imply using ICU is any good.
6083
6084 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6085
6086         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
6087         functions as inline ops.
6088
6089         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
6090         some Interlocked functions as inline ops.
6091
6092         * mini.c (move_basic_block_to_end): Fix bug in last patch.
6093
6094         * mini.h (MonoBasicBlock): Reorganize fields a bit.
6095
6096         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
6097
6098         * mini.c: Add support for OP_NOT_TAKEN.
6099
6100         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
6101         structures in registers for pinvoke wrappers.
6102
6103         * mini-amd64.c: Fix warnings.
6104
6105 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
6106
6107         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
6108
6109         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
6110
6111         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
6112         address instead of loading the address from it.
6113
6114         * mini-x86.c: Add support for returning small structs in registers
6115         on Win32. Fixes part of #70864.
6116         
6117 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
6118
6119         * trace.c (get_token): Improve error checking.
6120
6121 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6122
6123         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
6124
6125 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
6126  
6127         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
6128         it can be reused for MonoClass.
6129         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
6130         _LINKDEMAND.
6131
6132 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
6133
6134         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
6135         instead of a MonoReflectionMethod. The method information wasn't used
6136         when displaying SecurityException details (but will be now).
6137
6138 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
6139
6140         * Makefile.am : windows build fix.
6141
6142 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6143
6144         * iltests.il: Add new regression test.
6145
6146         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
6147         #72522.
6148
6149 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
6150  
6151         * mini.c: Moved linkdemand check into helper function check_linkdemand
6152         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
6153         LDFTN, LDVIRTFTN).
6154
6155 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
6156
6157         * declsec.c: Added statistics counter for different kinds of 
6158         LinkDemands.
6159         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
6160         (and commented) declaration.
6161         * mini.c: Added statistics counter for security Demand code 
6162         generation. Added display of security statistics.
6163
6164 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6165
6166         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
6167         Fix compilation errors under gcc-2.95.
6168
6169 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6170
6171         * mini.c, driver.c: Use the new jit trampoline hashtable
6172
6173 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
6174
6175         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
6176
6177 2005-02-11  Martin Baulig  <martin@ximian.com>
6178
6179         * debug-mini.c (mono_debug_close_method): Free the line number array.
6180
6181 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
6182
6183         * aot.c: Break up large methods into smaller ones. Share GOT slots for
6184         icalls.
6185
6186         * mini.h: Bump AOT file format version. 
6187
6188 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6189
6190         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
6191         APTC and P/Invoke.
6192         * declsec.h: Added macros to get/set lazyly initialized security 
6193         informations about assemblies. Added new enum for different type of
6194         possible LinkDemand violation. Added function to check LinkDemands.
6195         * mini.h: Added a field to MonoCompile to hold any security violation
6196         detected when JITting a method (so it can be thrown later).
6197         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
6198         and CEE_CALLVIRT. Added code to throw exception at the end of
6199         mini_method_compile (note: the exception is unhandled right now).
6200
6201 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6202
6203         * mini.c, jit-icalls.c: use the managed implementation of
6204         memset for initobj and memset, to avoid managed <-> unmanaged
6205         transitions.
6206
6207 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
6208
6209         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
6210         optimization if it would need a GOT var.
6211
6212         * basic.cs: Add tests for constant propagation and switch statements.
6213
6214         * ssa.c: Fix out-of-range constant propagation and switch statements.
6215
6216 2005-02-09    <vargaz@freemail.hu>
6217
6218         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
6219
6220 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
6221
6222         * cpu-amd64.md (load_membase): Fix max length of load_membase.
6223
6224 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
6225
6226         * mini.c: update to new signature of mono_class_get_allocation_ftn().
6227
6228 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
6229
6230         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
6231         arithmetic operations.
6232
6233 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
6234
6235         * mini-ppc.c: add a workaround for broken user code that
6236         DllImports vararg functions with non-vararg signatures.
6237
6238 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6239
6240         * mini.c (mono_jit_compile_method_inner): Add detection and a 
6241         meaningfull error message for assemblies written in Managed C++.
6242
6243         * tramp-amd64.c mini-amd64.h: Add support for 
6244         create_trampoline_from_token ().
6245
6246         * aot.c mini-x86.c abcremoval.c: Applied patch from
6247         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6248
6249 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6250
6251         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
6252         which takes a MonoImage/token as parameter instead of a MonoMethod.
6253
6254         * aot.c: Use the new trampoline for initializing vtables.
6255
6256         * aot.c: Add support for ldfld/stfld_remote wrappers.
6257
6258         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
6259         rules for compare <MEM>, IMM.
6260
6261         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
6262
6263         * aot.c: Handle inherited finalizers correctly.
6264
6265 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6266
6267         * inssel.brg (stmt): Add a missing _setup_... ().
6268
6269         * aot.c: Save some parts of the class state to the AOT file and use it
6270         to recompute that state when a class is initialized.
6271
6272         * mini.c: Install AOT hooks into the runtime.
6273
6274         * mini.h: Bump AOT file format version.
6275         
6276         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
6277         Fixes #72148.
6278
6279         * iltests.il: Add new test.
6280
6281 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6282
6283         * mini.c: fix typo.
6284
6285 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
6286
6287         * mini.c: setup the statistical profiler in the thread attach
6288         callback to cope with the new single thread code.
6289
6290 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6291
6292         * mini-ppc.c: ensure we have enough room for the profiler
6293         calls (fixed bug#72084).
6294
6295 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6296
6297         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
6298         it.
6299
6300 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
6301
6302         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
6303
6304 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
6305
6306         * ssapre.c: Fixed an issue with down safety (this allows IronPython
6307         to succesfully execute parrotbench).
6308         * ssapre.h: Likewise.
6309
6310 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
6311
6312         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
6313         variable for stores to method arguments (fixes a SSAPRE issue).
6314
6315 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6316
6317         * mini.c: handle value types in dup, fixes gen-112.cs.
6318
6319 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
6320
6321         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
6322         sequence for calls in dynamic methods to avoid thunks.
6323
6324 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6325
6326         * mini.c: correctly remove dynamic methods from the hashtable.
6327
6328 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6329
6330         * driver.c: Disabled SSAPRE until fix the bug that appears
6331         in IronPython's parrotbench.
6332
6333 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6334
6335         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
6336
6337         * mini.c (mono_method_to_ir): Revert the previous change.
6338         
6339         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
6340         when AOT compiling.
6341
6342         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
6343         mono_jit_info_table_find () etc. when running under valgrind.
6344
6345         * inssel.brg: Fix warnings.
6346
6347         * mini-exceptions.c: Fix warnings.
6348
6349 2005-01-31  Martin Baulig  <martin@ximian.com>
6350
6351         * driver.c (compile_all_methods_thread_main): Don't try to compile
6352         generic methods or anything which has type parameters.
6353
6354 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6355
6356         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
6357
6358         * TestDriver.cs: Add --verbose flags.
6359
6360         * graph.c ssa.c: Fix 64 bit warnings.
6361         
6362         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
6363         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
6364         Fix 64 bit warnings.
6365
6366         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
6367         variable not spotted by gcc.
6368         
6369         * mini-amd64.c inssel-amd64.brg: Applied patch from  
6370         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
6371         X86_COMPARE_MEMBASE opcodes.
6372
6373         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
6374
6375 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6376
6377         * *: MonoMethod->signature might be NULL now. You *MUST* use
6378         mono_method_signature.
6379
6380 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6381
6382         * driver.c (compile_all_methods_thread_main): Compile the methods
6383         without invoking cctors.
6384
6385 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6386
6387         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
6388         * basic-calls.cs: test for the above.
6389
6390 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6391
6392         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
6393         MonoJitInfo changes.
6394
6395 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
6396
6397         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
6398         eagerly if it contains dynamic methods.
6399         
6400         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
6401
6402         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
6403         trace, it is now computed by an icall from trace_ips.
6404         
6405         * mini-exceptions.c: Fix a warning.
6406
6407 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6408
6409         * mini-exceptions.c: don't bother getting stack trace info if
6410         it's not going to be used.
6411
6412 2005-01-27  Raja R Harinath  <rharinath@novell.com>
6413
6414         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
6415         ssapre-mini-ops.h.
6416
6417 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
6418
6419         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
6420
6421         * aot.c: Avoid calling mono_method_get_header () if not needed.
6422
6423         * mini.h: Bump AOT file format version.
6424         
6425         * mini.c (mono_emit_native_call): Allocate a GOT var here.
6426
6427         * mini.c (mono_print_tree): Print more info for calls.
6428
6429 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
6430
6431         * declsec.h: Remove warning by adding missing include for marshal.h
6432
6433 2005-01-26  Martin Baulig  <martin@ximian.com>
6434
6435         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
6436         `ip' twice.
6437
6438 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
6439
6440         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
6441         flags.
6442
6443         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
6444
6445         * aot.c (mono_compile_assembly): Fix a warning.
6446
6447 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
6448
6449         * declsec.c: Look for security attributes on the original MonoMethod 
6450         (and not the wrapped one). This fix permissions on icalls.
6451
6452 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
6453
6454         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
6455
6456         * mini.c (mono_allocate_stack_slots): Add a fixme.
6457
6458         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
6459
6460 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6461
6462         * inssel.brg: optimize casts of sealed types (more
6463         optimizations waiting for fixes in remoting).
6464
6465 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
6466
6467         * inssel.brg (stmt): Add another dummy rule.
6468
6469         * driver.c: Fix warnings.
6470
6471         * driver.c (mono_main): If running under valgrind, instruct glib to use
6472         the system allocation functions so valgrind can track the memory
6473         allocated by the g_... functions.
6474
6475         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
6476
6477         * mini-ops.h: Add OP_DUMMY_STORE opcode.
6478
6479         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
6480
6481         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
6482         variables in try regions.
6483
6484         * mini.c (mini_method_compile): Don't disable optimizations on large
6485         methods when AOT compiling.
6486
6487         * mini.c (mono_allocate_stack_slots): New arch independent method to 
6488         allocate stack slots. Not yet used.
6489
6490 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
6491
6492         * debug-mini.c (mono_debug_close_method): Plug some leaks.
6493
6494 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
6495
6496         * mini-ppc.c: make the branch info relative as the code
6497         buffer can be reallocated.
6498
6499 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
6500
6501         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
6502         * driver.c: Removed the AOT/security restriction. Now initialize the
6503         security manager (in metadata) if --security is used.
6504         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
6505         rather than the pointer to declarative security, when AOT is used.
6506
6507 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
6508
6509         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
6510         basic blocks, reduced intrinsic exception throwing code size.
6511
6512 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
6513
6514         * driver.c (mini_usage): Reorder the usage screen.
6515
6516 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
6517
6518         * mini.c (mono_resolve_patch_target): Fix warning.
6519
6520 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
6521
6522         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
6523         previous patch.
6524
6525         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
6526
6527         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
6528         breaks the amd64 build.
6529
6530         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
6531         register allocation. Fixes #71454.
6532
6533         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
6534
6535         * arrays.cs: Add new regression test.   
6536
6537 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6538
6539         * ssapre.c: Turned usage of snprintf to GString.
6540         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
6541         (I left it on by mistake in my previous commit).
6542
6543 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
6544
6545         * mini.c, cfold.c, basic-calls.cs: preserve side effects
6546         on cond branch optimization (fixes bug# 71515).
6547
6548 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6549
6550         * abcremoval.c: Fixed bug 71062.
6551         * abcremoval.h: Likewise.
6552
6553 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6554
6555         * mini.c: Added a new functionality to optimize_branches, the removal
6556         of useless basic blocks, and fixed some problem in the removal of
6557         critical edges; some utility functions added for both purposes.
6558         * ssapre.c: Added complex expression support, and fixed bug 70637.
6559         * ssapre.h: Likewise.
6560         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
6561         enabled in SSAPRE.
6562         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
6563         * driver.c: Re-enabled SSAPRE.
6564
6565 2005-01-19  Martin Baulig  <martin@ximian.com>
6566
6567         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
6568         the result of mono_get_method_constrained().
6569
6570 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
6571
6572         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
6573         manager.
6574
6575 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
6576
6577         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
6578         be detected.  Fixes #59296.
6579
6580 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
6581
6582         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
6583         which can happen. Fixes #71361.
6584
6585 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
6586
6587         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
6588         manager.
6589
6590 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
6591
6592         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
6593         appdomain-unload.exe to fail.
6594         
6595         * mini.c: Fix some memory leaks.
6596
6597 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
6598
6599         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
6600         Fixed bug and sped up some codepaths.
6601
6602 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
6603
6604         * mini.c: Fix some memory leaks.
6605
6606         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
6607         conversion.
6608
6609         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
6610
6611         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
6612         #71320.
6613
6614         * iltests.il: Add regression test for #71320.
6615
6616 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
6617
6618         * mini.c (mono_codegen): Fix installation of profiler hooks.
6619
6620         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
6621
6622 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6623
6624         * mini.h, mini.c, cfold.c: optimize access to enum
6625         readonly fields, too. Eval conditional branches if possible
6626         to perform unreachable code removal in more cases.
6627
6628 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
6629
6630         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
6631
6632         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
6633         code manager.
6634
6635         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
6636         WinXP DEP. Fixes #71244.
6637
6638 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
6639
6640         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
6641
6642 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
6643
6644         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
6645
6646 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
6647
6648         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
6649         changes.
6650
6651         * mini.h: Bump AOT version.
6652
6653         * mini.h (MonoCompile): Change exvar to a hash table.
6654
6655         * mini.c: Allocate a separate exvar for each handler block.
6656
6657         * mini.c: Get rid of the computation of filter_lengths, its not needed.
6658
6659         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
6660         ex var with the pending exception and only throw if the two are equal.
6661         Fixes #68552.
6662         
6663         * exceptions.cs: Add tests for rethrow and nested catch clauses.
6664
6665         * mini-x86.c: Fix warnings.
6666
6667         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
6668         used by all the ports now.
6669
6670         * aot.c: Add write-symbols and save-temps options.
6671
6672 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
6673
6674         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
6675
6676 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
6677
6678         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
6679         operations.
6680
6681         * tramp-s390.c: Check vtable slot belongs to the domain.
6682
6683         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
6684         as per other platforms.
6685
6686         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
6687
6688 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6689
6690         * driver.c: we don't run the Main() code in a subthread anymore.
6691
6692 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
6693
6694         * mini.c: added experimental rtc support in the statistical
6695         profiler: if the user has the permission, more accurate statistics
6696         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
6697         The MONO_RTC value must be restricted to what the linux rtc allows:
6698         power of two from 64 to 8192 Hz.
6699
6700 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
6701
6702         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
6703
6704 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
6705
6706         * mini-ppc.c: better icache flush for smp.
6707
6708 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
6709
6710         * mini-amd64.c (emit_move_return_value): Fix memory leak.
6711
6712         * mini-x86.c (get_call_info): Add the get_call_info () code from the
6713         amd64 port, not yet used.
6714
6715 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
6716
6717         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
6718         a struct type.
6719
6720 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
6721
6722         * driver.c: Added --security option to activate the security manager.
6723         Right now this will allow code generation for declarative demands and
6724         is disabled when AOT is specified.
6725         * mini.c: Add code generation for declarative security demands.
6726         * mini.h: Add mono_use_security_manager as an extern gboolean.
6727
6728 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
6729
6730         * aot.c (mono_compile_assembly): Speed up compilation a bit by
6731         emitting more dense assembly code.
6732
6733         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
6734         exception throwing stuff.
6735
6736 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
6737
6738         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
6739         dead code.
6740
6741         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
6742         left in by mistake.
6743
6744         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
6745         fixed.
6746
6747         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
6748
6749         * tramp-*.c: Only patch vtable slots if the object is in the current
6750         domain. Fixes appdomain-unload.exe.
6751
6752         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
6753         
6754         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
6755         x86 branch.
6756
6757 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
6758
6759         * mini.c (reverse_branch_op): New helper function.
6760
6761         * mini.c (optimize_branches): Run the new optimization only on 
6762         platforms which support it. Also reverse all kinds of branches.
6763
6764         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
6765
6766         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
6767         a throw statement.
6768
6769         * mini.c (optimize_branches): Reverse not-equals branches if the false
6770         bblock is a throw. This happens a lot of time with argument checking in
6771         corlib.
6772
6773         * mini.c (mono_codegen): Add support for placing basic blocks after
6774         the function epilogue.
6775
6776         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
6777         function epilogue.
6778         
6779 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
6780
6781         * mini.c (setup_stat_profiler): Only set this up if the platform
6782         supports ITIMER_PROF.
6783
6784 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
6785
6786         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
6787         previous patch.
6788
6789         * inssel.brg: Fix a warning.
6790
6791 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
6792
6793         * mini.c: added support for statistical profiler 
6794         (run with: --profile=default:stat).
6795
6796 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
6797
6798         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
6799
6800         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
6801
6802         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
6803         related to global registers from the amd64 port.
6804
6805 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
6806
6807         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
6808
6809         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
6810         with global registers.
6811         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
6812
6813         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
6814
6815 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
6816
6817         * debug-mini.c (encode_value): Fix off-by-one.
6818
6819         * aot.c (encode_value): Likewise.
6820
6821         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
6822
6823 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
6824
6825         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
6826         AOT.
6827
6828         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
6829         
6830         * aot.c (emit_method_info): Increase size of temp buffer.
6831
6832         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
6833         the AOT case.
6834
6835 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
6836
6837         * aot.c (emit_method_info): Fix build.
6838         
6839         * aot.c: Further rework of the AOT file format to reduce the size of
6840         the method info data.
6841
6842         * mini.h: Bump AOT file format version.
6843
6844 2004-12-27  Martin Baulig  <martin@ximian.com>
6845
6846         * mini.c (mini_get_method): New static method; call
6847         mono_get_method_full() and mono_get_inflated_method().
6848         (mono_method_to_ir): Use mini_get_method() instead of
6849         mono_get_method_full(). 
6850
6851 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
6852
6853         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
6854
6855 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
6856
6857         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
6858
6859         * inssel-amd64.brg: Add some optimization rules.
6860
6861 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
6862
6863         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
6864         standard not GC'd stuff is fine.
6865
6866 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
6867
6868         * aot.c: Rework the AOT file format to get rid of most of the global
6869         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
6870
6871         * mini.h: Bump AOT file format version.
6872         
6873 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
6874
6875         * mini.h: Bump AOT file format version.
6876
6877         * aot.c (mono_aot_is_got_entry): New function to determine if an 
6878         address is inside a GOT.
6879
6880         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
6881
6882         * cpu-pentium.md: Increase the maximum size of some instructions which
6883         might involve a got access.
6884         
6885         * mini.c (get_method_from_ip): Another debug helper function.
6886
6887         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
6888         when got var accesses are created during the decompose phase.
6889
6890         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
6891
6892         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
6893         argument mini_compile_method and to MonoCompile, and use this to
6894         determine whenever a given method is compiled for AOT. This allows the
6895         other methods compiled during AOT compilation to be free of AOT stuff,
6896         so the backends does not need to add special support for them by
6897         creating a fake GOT etc.
6898
6899         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
6900         longer needed.
6901
6902 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
6903
6904         * mini.c (mono_method_to_ir): It turns out that some of the
6905         x-appdomain wrappers are lax with types, so just ignore this for
6906         all wrappers.
6907
6908         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
6909         at the vtable->klass. If it is non-shared code we can just use the
6910         vtable.
6911
6912 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
6913
6914         * mini-ppc.c: access MonoDomain from tls, too.
6915
6916 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
6917
6918         * declsec.c: Removed unused variable (and related warning ;-)
6919
6920 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
6921
6922         * iltests.il: New test for LDELEMA on an array of ref types.
6923
6924         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
6925         all ldelema's on reftypes.
6926         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
6927         it was the wrong place to put it.
6928
6929         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
6930         register to pop to make this cleaner, at the request of Paolo.
6931
6932 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
6933
6934         * mini-ops.h (OP_GETHASHCODE): New op.
6935
6936         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
6937
6938         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
6939         operation.
6940
6941         For a microbenchmark, this reduces the cost of Hashtable.get_Item
6942         by 25%.
6943         
6944         * mini-x86.c (mono_arch_output_basic_block): Rather than
6945
6946         add ebp, 4
6947
6948         Emit
6949
6950         pop edx
6951
6952         The first is 3 bytes while the second is 1. This saves 36 kb on
6953         mscorlib, quite a big saving. When bootstraping mcs, I was able to
6954         see a small boost because of icache locality.
6955
6956         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
6957
6958 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
6959
6960         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
6961         started code sharing with the generic code.
6962
6963 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
6964
6965         * mini-ppc.c, cpu-g4.md: added code for direct access to
6966         tls data slots.
6967
6968 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
6969
6970         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
6971          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
6972         to OP_TLS_GET.
6973
6974 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
6975
6976         * declsec.c|h: Added functions to cache the declarative stack modifiers
6977         in MonoJitInfo and to create a security frame from a MonoJitInfo 
6978         structure.
6979         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
6980         created. Register internal calls for System.Security.SecurityFrame::
6981         _GetSecurityFrame and _GetSecurityStack.
6982         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
6983         the definitions for the new stack walk/callback mechanism.
6984         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
6985         first security frame for LinkDemands and InheritanceDemands) and
6986         GetSecurityStack for Demands. Both use the new mono_walk_stack code
6987         from lupus.
6988         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
6989         walk initialization (lupus).
6990
6991 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
6992
6993         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
6994         idiom.
6995         (handle_loaded_temps): Do not create a temporary variable for
6996         things that we know are temps. They will never be modified.
6997         (mono_spill_call): Set MONO_INST_IS_TEMP
6998         (mono_emulate_opcode): ditto
6999         (emit_tree): ditto
7000         (mono_method_to_ir.CEE_DUP): ditto
7001
7002 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
7003
7004         * mini.c (type_to_eval_stack_type): Make this handle the void type
7005         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
7006         (emit_tree): use ip_in_bb to special case some common idioms
7007         Update all callers to pass in the IP.
7008         (mono_method_to_ir): Make CEE_CALL* do the above as well.
7009
7010         This gives us a nice 2% speedup in mcs bootstrap.
7011
7012         * mini-x86.c (peephole_pass): Peephole pass to make
7013         mov  [foo], eax
7014         push [foo]
7015
7016         into
7017
7018         mov [foo], eax
7019         push eax
7020
7021         * mini.c (ip_in_bb): new method.
7022         (mono_method_to_ir): use this method rather than doing the hash
7023         lookup ourselves.
7024
7025         * linear-scan.c (mono_linear_scan): When expiring actives, you
7026         don't need to keep around variables that expire on this
7027         instruction. This makes it so that:
7028              a = b + 1
7029         will turn into:
7030              store (ebx add (ebx, 1))
7031         which will become
7032              add ebx, 1
7033
7034 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
7035
7036         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
7037         combination to avoid doing two copies. Fix up problems with previous
7038         patch.
7039
7040         * mini.c: Fix 64 bit warnings.
7041
7042         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
7043
7044 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
7045
7046         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
7047         changes from the x86 code.
7048
7049         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
7050
7051 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7052
7053         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
7054         throwing code to reduce its size, unify the AOT and non-aot code and 
7055         get rid of relocations in the AOT case.
7056
7057         * mini-x86.h mini.c exceptions-x86.c 
7058         (mono_arch_get_throw_corlib_exception): New arch specific function to 
7059         raise corlib exceptions which doesn't require relocations in the 
7060         caller.
7061
7062         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
7063
7064 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7065
7066         * mini.c (mono_emit_method_call): Only allocate the got var when it is
7067         needed.
7068
7069         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
7070         in the AOT case.
7071
7072 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
7073
7074         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
7075         with add function when used from Inc/dec atomic 
7076         functions. Re-enabled optimization on x86.
7077         * mini-ops.h: renamed atomic_add functions to
7078         allow _add to match the Interlocked::Add and
7079         _add_next to match Interlocked::Inc/Dec.
7080
7081 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
7082
7083         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
7084         linking of BBs to the end BB, and enabled SSAPRE also with
7085         consprop and copyprop (which was prevented by that bug).
7086
7087 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
7088
7089         * mini-x86.c: disabling the Interlocked optimizing code. 
7090
7091 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7092
7093         * aot.c (load_aot_module): Move reading of got_addr after the AOT
7094         file version check.
7095         
7096 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
7097
7098         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
7099         interlocked optimization due lack of support on x86, rewrote 
7100         exchange to take into account that base may be in eax.
7101         
7102         xsp works again; activated Interlocked optimizing code.
7103         
7104 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7105
7106         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
7107
7108 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
7109
7110         * mini-ops.h: Add new opcodes.
7111
7112         * mini.h: Add new patch types. Add got_var to MonoCompile.
7113
7114         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
7115         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
7116         make it work with all kinds of patchable code.
7117
7118         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
7119         address of the GOT, and referencing entries in the GOT.
7120
7121         * mini.c: Add code to load the GOT address if needed by an opcode.
7122
7123         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
7124         independent AOT code on the x86 using an elf-style Global Offset Table.
7125
7126 2004-12-14  Raja R Harinath  <rharinath@novell.com>
7127
7128         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
7129
7130 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7131
7132         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
7133         when running xsp.
7134
7135 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
7136
7137         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
7138         of Interlocked:Increment/Decrement/Add as inline ops.
7139         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
7140
7141 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
7142
7143         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
7144         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
7145
7146 2004-12-12  Duncan Mak  <duncan@ximian.com>
7147
7148         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
7149         again. `patch_info->table_size' is no longer valid after Zoltan's
7150         commit #37636.
7151
7152 2004-12-12  Martin Baulig  <martin@ximian.com>
7153
7154         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
7155         if we are the "real" method, ie. not an inlined method inside it.
7156
7157 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
7158
7159         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
7160         before we look in the special fields table. This fixes
7161         ../tests/thread-static-init.cs.
7162
7163 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7164
7165         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
7166         for Array get_Rank and get_Length. Fixes bug #70465.
7167
7168 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
7169
7170         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
7171         separate structure to reduce the size of MonoJumpInfo.
7172
7173 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7174
7175         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
7176
7177 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
7178
7179         * mini.c (mini_get_inst_for_method): Changed to allow ports
7180         to return a MonoInst instead of opcode 
7181         (renamed mini_get_opcode_for_method to better reflect the new functionality)
7182         
7183         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
7184         Allow ports to return a created MonoInst instead of op-code, will enable
7185         new optimizations.
7186         (renamed mini_get_opcode_for_method to better reflected the functionality)
7187
7188 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
7189
7190         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
7191
7192 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7193
7194         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
7195         Fixes #69985.
7196
7197 2004-12-08  Martin Baulig  <martin@ximian.com>
7198
7199         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
7200         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
7201
7202 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7203
7204         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
7205         correctly.
7206
7207         * exceptions.cs: Disable some tests which depend on properties of x86 fp
7208         arithmetic.
7209
7210 2004-12-08  Raja R Harinath  <rharinath@novell.com>
7211
7212         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
7213
7214 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7215
7216         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
7217         bug introduced by the previous patch.
7218
7219 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
7220
7221         * mini-ppc.c, objectc.cs: handle large structs passed by value
7222         (fixes bug #69972).
7223
7224 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7225
7226         * mini-ppc.c: OP_ARGLIST implementation from
7227         Geoff Norton  <gnorton@customerdna.com>.
7228
7229 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
7230
7231         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
7232         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
7233
7234 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
7235
7236         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
7237
7238 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7239
7240         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
7241         support.
7242
7243 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7244
7245         * mini-sparc.c: Zero out localled-ed memory.
7246
7247         * iltests.il: Add tests for zeroing out localloc-ed memory.
7248
7249 2004-12-04  Martin Baulig  <martin@ximian.com>
7250
7251         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
7252         mono_method_get_signature_full().       
7253
7254 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
7255
7256         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
7257         and some utility functions (always for SSAPRE), integrated SSAPRE.
7258         * mini.h: Likewise.
7259         * driver.c: Added ssapre option.
7260         * ssa.c: Small fix on OP_ARG handling.
7261         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
7262         * Makefile.am: Likewise.
7263
7264 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7265
7266         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
7267         now in the xp code.
7268
7269         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
7270         icall.
7271
7272 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7273
7274         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
7275         
7276         * cpu-s390.md : Increase instruction length of oparglist.
7277
7278         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
7279
7280 2004-11-30  Martin Baulig  <martin@ximian.com>
7281
7282         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
7283         virtual generic methods.  We call a special helper_compile_generic_method()
7284         icall to retrieve the method from the vtable, inflate and compile
7285         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
7286
7287         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
7288
7289 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
7290
7291         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
7292
7293 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
7294
7295         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
7296         Fixes #69929.
7297
7298 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
7299
7300         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
7301         platforms with PIC aot.
7302
7303 2004-11-28  Martin Baulig  <martin@ximian.com>
7304
7305         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
7306         Fixes gen-112.cs.
7307
7308 2004-11-28  Martin Baulig  <martin@ximian.com>
7309
7310         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
7311         the result of mono_type_get_underlying_type() to check whether
7312         we're byref.
7313
7314 2004-11-26  Martin Baulig  <martin@ximian.com>
7315
7316         * mini.c
7317         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
7318         in the g_assert().
7319
7320 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
7321
7322         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
7323         the same way as the other arguments so they won't get clobbered.
7324
7325         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
7326         calls through R11 since it is clobbered by the trampoline code.
7327
7328 2004-11-26  Raja R Harinath  <rharinath@novell.com>
7329
7330         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
7331         pick up in-tree mscorlib.dll.
7332
7333 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7334
7335         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
7336
7337         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
7338         runtime data/code are now stored in a table similar to the GOT in ELF. 
7339         This allows the code itself to be position independent.
7340
7341         * aot.c: Fix loading of referenced assemblies after the lazy assembly
7342         loading changes.
7343
7344         * aot.c: Attach ELF type (object/function) directives to all global
7345         symbols.
7346
7347         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
7348
7349         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
7350
7351         * mini-amd64.h: Turn on PIC AOT code.
7352
7353         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
7354         returning the offset within an OP_AOTCONST instruction where the GOT
7355         offset needs to be added.
7356
7357         * mini.h: Bump AOT file format version.
7358
7359 2004-11-25  Martin Baulig  <martin@ximian.com>
7360
7361         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
7362         uninflated generic methods.
7363
7364 2004-11-25  Martin Baulig  <martin@ximian.com>
7365
7366         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
7367
7368 2004-11-24  Martin Baulig  <martin@ximian.com>
7369
7370         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
7371         original klass (this only applies for generic instances).
7372
7373 2004-11-24  Martin Baulig  <martin@ximian.com>
7374
7375         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
7376         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
7377         that array).
7378
7379 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7380
7381         * mini.c (mono_method_to_ir): Disable inlining for methods containing
7382         localloc. Fixes #69678.
7383
7384         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
7385         
7386 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
7387
7388         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
7389         used SSE registers on pinvoke calls. Fixes #69774.
7390
7391 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
7392
7393         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
7394         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
7395
7396 2004-11-23  Raja R Harinath  <rharinath@novell.com>
7397
7398         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
7399         Refer directly to the mcs/ tree.
7400
7401 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7402
7403         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
7404         Check if a trampoline for a synchronized method is required. 
7405
7406 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
7407
7408         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
7409         with localloc if needed. Throe arithmetric exception in
7410         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
7411         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
7412
7413 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
7414
7415         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
7416         types before switching on type.  Fixes #69622.
7417
7418 2004-11-19  Raja R Harinath  <rharinath@novell.com>
7419
7420         * Makefile.am (check-local): New.  Integrate into 'make check'.
7421         (MCS,RUNTIME): Define using in-tree mono and mcs.
7422         (ILASM): New.
7423         (%.exe): Use $(ILASM).
7424
7425 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
7426
7427         * mini-ppc.c: adjust initial prolog size (bug #69691).
7428
7429 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
7430
7431         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
7432         #69664.
7433
7434 2004-11-17  Raja R Harinath  <rharinath@novell.com>
7435
7436         * Makefile.am (clean-local): Rename from 'clean'.
7437
7438 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7439
7440         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
7441         to mono_arch_is_int_overflow. 
7442         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
7443         SIGFPE events.
7444
7445 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
7446
7447         * declsec.c|h: New files to support declarative security attributes.
7448         Added function to check if a method has (applicable) security.
7449         * mini.c|h: Add check for declarative security attributes in
7450         mono_method_check_inlining.
7451         * Makefile.am: Added declsec.c and declsec.h to the build.
7452
7453 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7454
7455         * mini.c, mini.h: update to keep dynamic code info per-domain.
7456
7457 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
7458
7459         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
7460         (mini_init): Get rid of it from here too.
7461
7462 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
7463
7464         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
7465         implemented OP_RETHROW (patch by Geoff Norton
7466         <gnorton@customerdna.com>).
7467
7468 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
7469
7470         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
7471         between appdomains.  Fixes appdomain-unload on PPC.
7472
7473 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
7474
7475         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
7476         mini-exceptions.c: handle the new wrapper types.
7477         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
7478         token value as a MonoClass* when compiling a wrapper.
7479         mono_jit_create_remoting_trampoline now takes an additional
7480         MonoRemotingTarget parameter.
7481         
7482 2004-11-10  Martin Baulig  <martin@localhost>
7483
7484         * mini.c (mono_method_to_ir): Use `generic_container->context'
7485         rather than creating a new one.
7486
7487 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7488
7489         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
7490
7491         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
7492
7493 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
7494
7495         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
7496         the experimental aot cache stuff.
7497
7498 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
7499
7500         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
7501         mini-exceptions.c: update to exception clause structure changes.
7502
7503 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
7504
7505         * exceptions-x86.c (throw_exception): Fix warnings.
7506
7507         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
7508         for OP_RETHROW.
7509
7510 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
7511
7512         * exceptions-sparc.c (get_throw_exception): Really fix this.
7513
7514 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
7515
7516         * tramp-*.c: we no longer support icalls without wrappers, so
7517         a bit of code can be removed here
7518
7519 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
7520
7521         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
7522         patch.
7523
7524         * cpu-sparc.md: Add op_rethrow.
7525
7526         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
7527
7528         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
7529
7530         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
7531         * mini-ops.h: Add OP_RETHROW.
7532
7533         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
7534
7535         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
7536
7537 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
7538         
7539         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
7540         Makes the output much easier to read
7541
7542 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
7543
7544         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
7545         prevents another huge leak when compiling with ssa. Secondly, the
7546         performance of doing this rather than freeing the lists is much
7547         better. GList does a lock every time you allocate a list link,
7548         so that it can use a memory pool. So, it is better to just use
7549         a memory pool of our own.
7550         
7551         * ssa.c, linear-scan.c: replace g_list_remove_link with
7552         g_list_delete.  The remove one does not free the GList, so we were
7553         leaking memory. On -O=all --compile-all with corlib, this cut down
7554         3 MB of allocations.
7555
7556 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
7557
7558         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
7559
7560         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
7561
7562         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
7563         into a new function mono_create_jit_trampoline ().
7564
7565 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
7566
7567         * trace.c (get_spec): Allow tracing of classes without a namespace.
7568
7569 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
7570
7571         * mini.c: Fix pointer overwrite in mini_method_compile.
7572
7573 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
7574
7575         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
7576         The darwin ABI needs some special handling for 1 and 2 byte structs
7577         Lets use lbz/lhz instead of lwz everywhere.
7578         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
7579         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
7580         Use stb/sth for the former, and put the latter always on stack instead of in
7581         argument registers.
7582
7583 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
7584
7585         * trace.c (is_filenamechar): Add '_'.
7586
7587 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
7588
7589         * mini-s390.c: Fix prolog length to allow for large trace requirements.
7590
7591         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
7592
7593 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
7594
7595         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
7596         depends on libmonogc. Fixes #68805.
7597
7598 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
7599
7600         * mini.c (mono_jit_free_method): Provide extra information for
7601         this error.  Currently this leaks, but will be turned into a
7602         developer option in the future.
7603
7604 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
7605
7606         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
7607
7608 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
7609
7610         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
7611         boundary. Fixes reading of PATCH_INFO_R4 and R8.
7612         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
7613
7614 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
7615
7616         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
7617         trampolines for AOT code.
7618
7619 2004-10-22    <vargaz@freemail.hu>
7620
7621         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
7622         constructed types. Fixes #68136.
7623
7624 2004-10-21  Martin Baulig  <martin@ximian.com>
7625
7626         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
7627         if it returns true, unwind the stack to the call instruction.
7628
7629 2004-10-21    <vargaz@freemail.hu>
7630
7631         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
7632
7633         * mini.h: Bump AOT version number.
7634
7635         * objects.cs: Add another test for unbox trampolines.
7636
7637         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
7638         valuetype methods.
7639
7640 2004-10-20    <vargaz@freemail.hu>
7641
7642         * driver.c: Add SHARED to the set of optimizations tested.
7643
7644         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
7645
7646         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
7647         used by CEE_NEWARR.
7648
7649         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
7650
7651 2004-10-20  Martin Baulig  <martin@ximian.com>
7652
7653         * mini-exceptions.c (mono_handle_exception): Call
7654         mono_debugger_handle_exception() to tell the debugger about
7655         catch/finally clauses.
7656
7657 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
7658
7659         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
7660
7661         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
7662         #68447.
7663
7664 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
7665
7666         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
7667         methods as their native size, fixed bug #57543, #57545.
7668         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
7669         This saves a temporary register and mullw call down into 1 (minor perf
7670         increase for cases like sum = sum * 5;  This use to translate into:
7671             li r11,5
7672             mullw r28,r28,r11
7673         It now translates to
7674             mulli r28,r28,5
7675
7676 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
7677
7678         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
7679         #68388.
7680
7681 2004-10-11  Martin Baulig  <martin@ximian.com>
7682
7683         * mini.c (mono_method_to_ir): If we're a generic method, get the
7684         MonoGenericContainer from our MonoMethodNormal and create a
7685         MonoGenericContext from it.
7686
7687 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
7688
7689         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
7690
7691         * basic-long.cs: Add test for checked i8->i2 cast.
7692
7693 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
7694
7695         * inssel-ppc.brg: added a couple of speedup rules.
7696
7697 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
7698
7699         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
7700         to speed up rebuilds.
7701
7702 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7703
7704         * mini-s390.c: Minor fix to OP_OR_IMM.
7705
7706 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
7707
7708         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
7709         better. Fixes appdomain-unload.exe on sparc.
7710
7711 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
7712
7713         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
7714         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
7715         see bug 67324.
7716
7717 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
7718
7719         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
7720
7721 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
7722
7723         * mini.c: Always generate a field read/write wrapper for members
7724         of the class MarshalByRefObject since the actual instance could
7725         be a CBO.
7726
7727 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
7728
7729         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
7730
7731 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
7732
7733         * driver.c mini.h trace.c: Move the setting of the main assembly into
7734         a separate function called mono_trace_set_assembly () and call it after
7735         actually loading the main assembly. Fixes #66872.
7736
7737 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
7738
7739         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
7740         using the code manager.
7741
7742 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
7743
7744         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
7745
7746 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
7747
7748         * cpu-amd64.md: Fix bug in previous patch.
7749         
7750         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
7751         #66650.
7752
7753 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
7754
7755         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
7756         mini-exceptions.c: updates for changed stack walk interface.
7757
7758 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7759
7760         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
7761
7762 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
7763
7764         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
7765
7766 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
7767
7768         * driver.c (mini_regression_list): Do not call mono_assembly_close 
7769         since assemblies can't be unloaded.
7770         
7771 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
7772
7773         * cpu-amd64.md: Fix more instruction lengths.
7774
7775         * cpu-amd64.md: Fix lengths of some instructions.
7776
7777 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
7778
7779         * inssel.brg: Make the array ldelema check aot friendly.
7780
7781 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
7782
7783         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
7784
7785         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
7786
7787 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
7788
7789         * mini-x86.c: Fix build.
7790
7791         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
7792         mono_type_get_underlying_type () helper function to simplify code.
7793         
7794 2004-09-09  Martin Baulig  <martin@ximian.com>
7795
7796         * mini-amd64.c: Don't access `type->data.klass' directly, call
7797         mono_class_from_mono_type() instead since the type may be a
7798         generic instance.
7799
7800 2004-09-09  Martin Baulig  <martin@ximian.com>
7801
7802         * mini-amd64.c (get_call_info): Fix support for generic instances.
7803         (add_valuetype): Use mono_class_from_mono_type() to get the class
7804         since we can be a generic instance.
7805
7806 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
7807
7808         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
7809
7810 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
7811
7812         * liveness.c: reset spill costs on each scan: bug 62107
7813
7814 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
7815
7816         * exceptions-sparc.c (mono_arch_find_jit_info): remove
7817         unnecessary line that doesn't compile
7818
7819 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7820
7821         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
7822         trampolines, make them call an error function so people can fix their
7823         code.
7824
7825 2004-09-06  Martin Baulig  <martin@ximian.com>
7826
7827         * mini.c (mono_method_to_ir): When initializing locals, handle a
7828         generic instances like a valuetype if it's a valuetype and like a
7829         class if it's a class.
7830
7831 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7832
7833         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
7834         stack. Fixes #64674.
7835
7836         * exceptions.cs: Add test for unwinding of call arguments.
7837
7838 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
7839
7840         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
7841         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
7842         set the carry/borrow flag). The sparc and s390 implementations
7843         can now use optimized versions (and simplify the code). ppc bugfixes.
7844
7845 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7846
7847         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
7848
7849 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
7850
7851         * inssel-amd64.brg: Remove leftover 32 bit rule.
7852
7853         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
7854
7855 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
7856
7857         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
7858         mono_arch_find_jit_info functions into a new function. Fix a memory
7859         leak.
7860
7861         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
7862         refactored code.
7863         
7864 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7865
7866         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
7867         as well.
7868         
7869         * exceptions.cs: Add array size tests.
7870
7871         * mini.c: Allocate a separate icall wrapper for each arity of 
7872         mono_array_new_va. Fixes #59509.
7873
7874         * exceptions.cs: Add testcase for 64578.
7875
7876         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
7877
7878         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
7879         
7880 2004-09-02  Martin Baulig  <martin@ximian.com>
7881
7882         * mini.c (mono_method_to_ir): When initializing the locals, call
7883         handle_initobj() on the generic instance itself, not its
7884         underlying type.
7885
7886 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7887
7888         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
7889         MonoJitInfo for dynamic methods.
7890
7891         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
7892
7893         * mini.c: Add support for freeing JIT data for dynamic methods.
7894         
7895 2004-09-01  Martin Baulig  <martin@ximian.com>
7896
7897         * mini-x86.c (is_regsize_var): Added support for generic
7898         instances.
7899         (mono_arch_emit_prolog): Make this compile again, use
7900         `x86_push_imm_template (code)'.
7901
7902 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
7903
7904         * mini-x86.c: make all push_imm instructions that get
7905         patched always emit the long form
7906
7907 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
7908
7909         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
7910         in a per-domain hash.
7911
7912         * mini-amd64.c (merge_argument_class_from_type): Handle generic
7913         types.
7914
7915 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
7916
7917         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
7918         work.
7919         
7920         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
7921         work.
7922
7923         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
7924         Beginnings of SSE2 support.
7925
7926         * exceptions.cs: Add more tests for checked int<->uint casts.
7927
7928 2004-08-28  Martin Baulig  <martin@ximian.com>
7929
7930         * mini-x86.c (mono_arch_instrument_epilog): Added support for
7931         generic instances.
7932
7933         * mini.c
7934         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
7935         Handle generic instances recursively.
7936
7937 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
7938
7939         * iltests.il: test for conv.u8 on a constant
7940
7941 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
7942
7943         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
7944         LCONV_x4 (shrun_32 (membase)).
7945
7946 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
7947
7948         * inssel-x86.brg: c&p rules for push/setret of long
7949
7950 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
7951
7952         * inssel-x86.brg: c&p rules for compare (base, regvar) and
7953         compare (regvar, base)
7954
7955         * inssel-x86.brg: more burg love
7956
7957         * inssel.brg: more cleanup
7958
7959         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
7960
7961 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
7962
7963         * basic-long.cs, basic-calls.cs: new tests for optimization.
7964
7965 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
7966
7967         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
7968         patch.
7969
7970 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
7971
7972         * mini-amd64.c (read_tls_offset_from_method): Add another case.
7973         
7974 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
7975
7976         * inssel.brg (mini_emit_memcpy): use 
7977         NO_UNALIGNED_ACCESS to disable memcpy optimization
7978
7979 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
7980
7981         * mini-amd64.c: Handle generic types in various places.
7982
7983         * mini.c (mono_method_to_ir): Handle generic types in init locals.
7984
7985 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
7986
7987         * mini.c (handle_box): Fix warning.
7988
7989         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
7990
7991         * mini-amd64.h: Enable the emit_state optimization.
7992
7993         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
7994
7995         * mini-amd64.c: Add some new 64 bit peephole opts.
7996
7997         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
7998
7999         * cpu-amd64.md: sreg1 of div instructions must be %rax.
8000
8001         * mini-amd64.c: Register allocator fixes.
8002
8003         * mini.c: Add an optimization to emit_state to avoid allocation of new
8004         registers on some platforms.
8005
8006 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
8007
8008         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
8009
8010         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
8011         allocation. Fixes #63085.
8012
8013         * basic-long.cs: Add new regression test.
8014
8015         * mini-amd64.c: Register allocator improvements.
8016
8017 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
8018
8019         * mini-amd64.c (read_tls_offset_from_method): Add another code
8020         sequence.
8021
8022         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
8023         instruction sequence for nullifying class init trampolines.
8024
8025         * objects.cs: Add new regalloc test.
8026
8027         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
8028
8029 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
8030
8031         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
8032         
8033         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
8034         arguments.
8035
8036         * driver.c: Fix profiling after TLS changes.
8037         
8038         * driver.c (mono_main): Set mono_stats.enabled if needed.
8039
8040         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
8041         CEE_BOX.
8042
8043 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
8044
8045         * mini-x86.c: use a 1 op rather than a 2 op tls access
8046         instruction -> faster.
8047
8048 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
8049
8050         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
8051         x86 backend.
8052
8053 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
8054
8055         * exceptions-sparc.c (throw_exception): fix typo
8056
8057 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
8058
8059         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
8060         set tree->dreg correctly with tls. Allow any
8061         register to be used.
8062
8063         * mini-x86.c (read_tls_offset_from_method): add new code
8064         generation pattern seen with GCC.
8065
8066
8067 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
8068
8069         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
8070         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
8071         exceptions-sparc.c: fix some performance issues in exception
8072         handling and setting of the stack trace for exceptions that were
8073         already thrown.
8074
8075 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
8076
8077         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
8078         x86 backend.
8079         
8080         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
8081         registers.
8082
8083 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
8084
8085         This patch inlines tls access, when possible.
8086         
8087         * mini.h: new arch functions for TLS intrinsics.
8088         All platforms updated with a stub.
8089
8090         * mini.c: use the new intrinsics
8091
8092         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
8093         arch specific intrinsic for tls variables
8094
8095 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
8096
8097         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
8098         under windows.
8099
8100 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
8101
8102         * mini.c: thread local allocation
8103
8104 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
8105
8106         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
8107
8108         * Makefile.am: Link against the static version of libmonogc.
8109         
8110         * Makefile.am: Link the static versions of the convenience libraries
8111         into the mono executable.
8112
8113         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
8114
8115 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
8116
8117         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
8118         on integer overflow.
8119
8120         * mini-amd64.c: Reorganize function call code.
8121
8122         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
8123
8124 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
8125
8126         * inssel-x86.brg: use xor eax,eax.
8127         
8128         * basic.cs: new tests
8129
8130 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
8131
8132         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
8133         in exception throwing code.
8134         
8135 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
8136
8137         * inssel-x86.brg: use xor esi,esi.
8138
8139 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
8140
8141         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
8142         can trace methods compiled during mini_init () too.
8143
8144         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
8145         CEE_CONV_U4.
8146
8147 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
8148
8149         * Makefile.am: static link on x86 (r=zoltan)
8150
8151 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
8152
8153         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
8154         code since it causes some programs to fail.
8155
8156 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
8157
8158         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
8159
8160 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
8161
8162         * mini.c: ovfops_op_map - add STACK_OBJ case for
8163         CONV_I 
8164         * basic.cs: add test_0_pin_string as test
8165         case for above.
8166
8167 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
8168
8169         * Makefile.am: build C# if srcdir != builddir
8170
8171 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
8172
8173         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
8174         fall-through blocks.
8175
8176 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
8177
8178         * driver.c: enable loop by default again and include abcrem in -O=all.
8179
8180 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
8181
8182         * iltests.il: Add some localloc tests.
8183
8184         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
8185
8186         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
8187         Fixes #62574.
8188
8189         * inssel-amd64.brg: Add some optimizations.
8190
8191         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
8192         for gcc-3.4.
8193
8194         * Makefile.am: Statically link mono against libmono on AMD64.
8195         
8196         * mini-amd64.c inssel-amd64.brg: Optimizations.
8197
8198 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
8199
8200         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
8201
8202         * tramp-amd64.c: Patch calling code in trampolines.
8203
8204 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
8205
8206         * mini-amd64.c: pinvoke struct passing fixes.
8207
8208 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
8209
8210         * mini-sparc.c: redo change, make mono_arch_cpu_init call
8211         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
8212
8213 2004-08-05  Duncan Mak  <duncan@ximian.com>
8214
8215         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
8216         CEE_LDELEM_ANY.
8217
8218 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
8219
8220         * mini-amd64.c (emit_move_return_value): Move return value for normal
8221         calls too.
8222
8223 2004-08-05  Martin Baulig  <martin@ximian.com>
8224
8225         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
8226         `type->type'; just modify `type' itself when dealing with enums
8227         and generic instances.
8228         (check_call_signature): Make `simple_type' a `MonoType *'.
8229
8230 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
8231
8232         * mini.c: Use OP_PADD to add offsets to addresses.
8233
8234         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
8235
8236 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
8237
8238         * mini-sparc.c (mono_arch_emit_epilog): fix check
8239         for folding last op into restore instruction
8240
8241 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
8242
8243         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
8244         helper methods using the code manager.
8245         
8246         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
8247
8248         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
8249
8250 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8251         
8252         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
8253           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
8254
8255         * mini-s390.c: fix tail processing
8256
8257 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
8258
8259         * mini-ppc.c: mul.ovf.un exception name fix.
8260
8261 2004-08-03  Martin Baulig  <martin@ximian.com>
8262
8263         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
8264         instances; before jumping to `handle_enum', also modify `ptype'.
8265
8266 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
8267
8268         * cpu-sparc.md: fcall maximal length too small.
8269
8270 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
8271
8272         * mini-amd64.c mini.h: Add initial support for passing/returning 
8273         structures to/from pinvoked methods.
8274
8275 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
8276
8277         * mini-ppc.c: reg allocator fix.
8278
8279 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
8280
8281         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
8282
8283         * inssel.brg: Optimize memset on 64 bit machines.
8284
8285         * mini-amd64.c: Fix some vararg cases.
8286
8287 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8288
8289         * mini-s390.c: Corrected macro in emit_float_to_int
8290
8291         * s390-abi.cs: Tests to exercise the s390 ABI
8292
8293 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8294
8295         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
8296         caller saved regs.
8297
8298         * basic.cs: Add a test for add.ovf.un.
8299
8300 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
8301
8302         * mini-sparc.c: add case for OP_IDIV_UN
8303
8304 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8305
8306         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
8307         
8308         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
8309
8310 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
8311
8312         * basic.cs: regression tests.
8313
8314         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
8315         regressions.
8316
8317 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8318
8319         * basic.cs: Add a new test.
8320
8321         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
8322         and AOT. Various fixes and optimizations.
8323
8324         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
8325
8326 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8327
8328         * mini-ppc.c: make sure temp regs are not used for global reg
8329         allocation.
8330
8331 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
8332
8333         * cpu-sparc.md: conv_i8 fix for 64bits
8334
8335         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
8336
8337 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
8338         
8339         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
8340         add opcode for cmp BYTE PTR [eax], imm.
8341
8342         * inssel.brg: Make memcpy and memset takes bases.
8343
8344 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
8345
8346         * *-amd64.*: More AMD64 work.
8347         
8348 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
8349
8350         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
8351         add a compare-not-equal opcode.
8352         
8353 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
8354
8355         * mini.c: Use mono_init_from_assembly instead of mono_init.
8356         
8357 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
8358
8359         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
8360
8361         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
8362
8363         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
8364
8365         * inssel.brg: 64 bit fixes.
8366
8367         * mini.h (MonoCallInst): Add some AMD64 specific data.
8368
8369         * mini.h: Add some OP_P opcodes.
8370
8371 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
8372
8373         * basic.cs: tests for 61797 and 61740
8374
8375 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
8376
8377         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
8378         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
8379
8380 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
8381
8382         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
8383
8384         * *-amd64*.*: Ongoing AMD64 work.
8385
8386 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
8387
8388         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
8389
8390         * *-amd64*: Ongoing AMD64 work.
8391
8392         * mini-arch.h: Add AMD64 support.
8393
8394         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
8395
8396         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
8397
8398         * mini-ops.h: Add new opcodes.
8399
8400         * Makefile.am: Add AMD64 support.
8401
8402         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
8403         rules into the inssel-long*.brg files.
8404
8405         * *-amd64.*: Add beginnings of AMD64 backend.
8406
8407 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
8408
8409         * mini.c (print_dfn): commenting out the code that prints
8410         the cil. With -O=deadce, this makes -v -v crash.
8411         
8412         * cpu-pentium.md: make checkthis have a length of 2
8413
8414 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
8415
8416         * mini-sparc.h: fix implementations of __builtin
8417         functions for Sun compiler for V9.
8418
8419 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
8420
8421         * mini.c: use the new stelem.ref wrapper
8422         * exceptions.cs, arrays.cs: new stelem.ref tests
8423
8424 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
8425
8426         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
8427         new XSP should work with these changes).
8428
8429 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
8430         
8431         * inssel-{long32,x86,}.brg: trivial optimizations.
8432         
8433 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
8434
8435         * mini.c: load value when emitting box operation in
8436         constrained calls.
8437
8438 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
8439
8440         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
8441         is one byte shorter than cmp DWORD PTR [eax], 0.
8442
8443 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
8444
8445         * inssel-ppc.brg: arguments on the stack are always
8446         relative to the stack pointer (spotted by Neale Ferguson).
8447
8448 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8449
8450         * exceptions-x86.c: delay appending the method name to the trace until
8451         after mono_jit_info_table_find is called, as this gets the real
8452         MonoMethod.
8453
8454 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
8455
8456         * aot.c: register roots
8457
8458 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
8459
8460         * aot.c : I could just use PLATFORM_WIN32 flag.
8461
8462 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
8463
8464         * aot.c : Reverting the previous fix. This time it broke linux build.
8465
8466 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
8467
8468         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
8469
8470 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
8471
8472         * mini.c (handle_stack_args): Remove some more debugging code.
8473         
8474         * mini.c (handle_stack_args): Remove debug output left in by mistake.
8475
8476         * driver.c mini.h aot.c: Allow additional options to be specified with
8477         --aot and pass them to mono_compile_assembly.
8478
8479         * aot.c: Add experimental code to AOT compile all loaded assemblies
8480         on demand and save the code into a cache in the filesystem.
8481
8482         * aot.c: Add support for more wrapper methods.
8483         
8484         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
8485         58863.
8486
8487         * cpu-*.md: Remove removed opcodes.
8488
8489         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
8490         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
8491         related icalls to marshal.c.
8492
8493 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
8494
8495         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
8496
8497         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
8498
8499         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
8500
8501 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
8502         * liveness.c: If liveness is recomputated we need to reset the information
8503         for each variable. This way, if the liveness range has been narrowed
8504         by optimizations that happened after the last computation, we can return
8505         a smaller range.
8506         
8507         For example, if you have
8508         
8509         {
8510                 int i = 0;
8511                 
8512                 // Tons of code that does not affect i
8513                 
8514                 i = foo ();
8515                 ...
8516         }
8517         
8518         i = 0 is dead code and will be removed by SSA. However, when
8519         linear scan gets to the code, i will still appear to be live
8520         throughout the entire block. This prevents good register allocation.
8521
8522 2004-07-06  Martin Baulig  <martin@ximian.com>
8523
8524         * debug-mini.c (mono_debug_init_method): Allow
8525         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
8526         (mono_debug_add_icall_wrapper): New method.
8527
8528         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
8529
8530 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
8531
8532         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
8533         optimization.
8534
8535 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
8536
8537         * aot.c (mono_aot_load_method): Fix loading of debug info.
8538
8539 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
8540
8541         * aot.c: Add logging support.
8542
8543 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
8544
8545         * mini.h: Add prototype for mono_print_method_from_ip.
8546
8547         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
8548
8549         * inssel.brg: 64 bit fixes.
8550
8551         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
8552         inssel-long32.brg.
8553
8554         * Makefile.am: Add SPARC64 support.
8555
8556 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
8557
8558         * aot.c: Fix alignment problems on 32 bit platforms.
8559
8560 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
8561
8562         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
8563         SPARC64.
8564
8565         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
8566         problems.
8567
8568         * mini.h: Bump AOT file version. Some 64 bit fixes.
8569
8570 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
8571
8572         * inssel-sparc.brg: Add new rule to avoid register moves.
8573
8574         * inssel.brg: Add ldind_to_load_membase helper function.
8575
8576 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
8577
8578         * mini.c: OffsetToStringData intrinsic.
8579         
8580 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
8581
8582         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
8583
8584         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
8585         regression tests.
8586
8587         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
8588 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
8589
8590         * mini.c: reinstated mono_compile_get_interface_var()
8591         on x86, too, since the change breaks the Gtk# build there as well.
8592
8593 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
8594
8595         * driver.c: remove loop from the default optimizations: it seems to
8596         interact badly with some of the other options (see bug #60613).
8597
8598 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
8599
8600         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
8601         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
8602
8603 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
8604
8605         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
8606         vararg-using methods.
8607
8608 2004-06-21  Martin Baulig  <martin@ximian.com>
8609
8610         * mini/mini-exceptions.c
8611         (mono_handle_exception): Added `gpointer original_ip' argument.
8612         After calling mono_unhandled_exception(), call
8613         mono_debugger_unhandled_exception() and if that returns true,
8614         restore the context and return.
8615
8616 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
8617
8618         * mini-ppc.c: prefer the use of relative branches so
8619         they won't need to be patched in aot code (patch from Patrick Beard).
8620
8621 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
8622
8623         * aot.c: patch from Patrick Beard to make the output assembly
8624         more correct for the MacOSX assembler. Small tweak to
8625         generate sane images on Linux/PPC, too.
8626
8627 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
8628
8629         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
8630         case until bug #59509 is fixed (shows up in #60332).
8631
8632 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
8633
8634         * mini.c: make sure the needed wrappers are compiled, too, with
8635         precomp.
8636
8637 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
8638
8639         * driver.c: remove NPTL reference in --version output.
8640
8641 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
8642
8643         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
8644         generate valid assembly for the Mach-O assembler.
8645
8646 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
8647
8648         * driver.c: don't include abcrem in the all optimization specifier
8649         since it slows down jit compilation too much for now.
8650
8651 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
8652
8653         * mini.c: use BIGMUL only if both operands have the same signage.
8654         * iltests.il: Test for bug 60056. (errors related to signage in
8655         BIGMUL).
8656
8657         r=lupus.
8658
8659 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
8660
8661         * mini.c, aot.c: memory leak fixes.
8662
8663 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
8664
8665         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
8666
8667 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
8668
8669         * Makefile.am: remove the -static hack completely, it links in
8670         statically glib as well.
8671
8672 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
8673
8674         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
8675         * exceptions.cs: make it compile with new mcs/csc.
8676
8677 2004-06-03 Massimiliano Mantione <massi@ximian.com>
8678         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
8679         and added relevant test case.
8680
8681 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
8682
8683         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
8684         regressions in gtk-sharp.
8685
8686 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
8687
8688         * exceptions.cs: New regression tests.
8689
8690         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
8691
8692 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
8693
8694         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
8695
8696 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
8697
8698         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
8699
8700         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
8701
8702 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
8703
8704         * mini.c (mono_jit_runtime_invoke): Init class in this
8705         method instead of trusting mono_jit_compile_method to
8706         do the work (because wrappers can be in object class)
8707
8708 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
8709
8710         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
8711
8712         * basic-long.cs: New regression test.
8713
8714 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
8715
8716         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
8717         and div/rem checks.
8718
8719 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
8720
8721         * Makefile.am: fix miguel's change to build mono statically against
8722         libmono (track build dependencies).
8723
8724 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8725
8726         * cfold.c: Some glib versions do not have G_MININT32.
8727
8728 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
8729
8730         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
8731         with precision of tan, atan, sin and cos, and implemented related
8732         regressions tests (fixes bug 54467, but one new problem appeared and
8733         is not fixed yet).
8734
8735 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8736
8737         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
8738
8739         * exceptions.cs: Add test for constant folding && division by zero.
8740
8741         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
8742         since driver.c is in libmono too, so the optimization was useless.
8743
8744         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
8745         variable to driver.c so the compiler can emit more efficient code to
8746         access them.
8747
8748 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8749
8750         * Makefile.am: don't distribute generated inssel.[ch] files.
8751
8752 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
8753
8754         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
8755         into the default appdomain. Fixes #58707.
8756
8757         * jit-icalls.c: Remove the broken approximation for truncl, doing
8758         no conversion is better.
8759
8760         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
8761         Fixes #58863.
8762
8763 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
8764
8765         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
8766         of the mcrxr instruction which is not available on some processors
8767         even if it's documented to be. Implement add and sub overflow correctly
8768         (still not complete for long unsigned). Speed up icalls a bit.
8769
8770 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
8771
8772         * mini.c (mono_jit_compile_method_with_opt): Make sure that
8773         we run .cctor in the current domain instead of target_domain.
8774         
8775         Fixes bug #58558, .cctor not being called in -O=shared.
8776
8777 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
8778
8779         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
8780
8781 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
8782
8783         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
8784         which can be done with an imm8, do it that way.
8785         (mono_arch_output_basic_block): ditto for a jmp
8786         (mono_arch_emit_prolog): Computate maximum offset of a label.
8787
8788 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
8789
8790         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
8791         now tries to allocate prefered physical reg's for virtual
8792         regs. This reduces the number of emited spills/loads with
8793         20-30% on our core assemblies.
8794
8795 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
8796
8797         * jit-icalls.c: truncl() is not needed and trunc() is
8798         the correct thing to do anyway (bug #58287).
8799
8800 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
8801
8802         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
8803         if available.
8804
8805 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
8806
8807         * driver.c: enable loop optimizations by default.
8808
8809 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
8810
8811         * mini-x86.c: fix calc of max loop size when aligning loops start.
8812
8813 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
8814
8815         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
8816         the stack.
8817
8818 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
8819
8820         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
8821         should set carry.
8822
8823         * basic-long.cs: Add tests for add/subtract of immediates with carry.
8824
8825         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
8826         
8827         * mini.c (inline_method): Allways inline some wrappers even if the cost
8828         is too large. Fixes #58785.
8829
8830         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
8831         
8832 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
8833
8834         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
8835         (crichton@gimp.org). Beginning of support for sparc/linux.
8836
8837         * mini-sparc.c: Optimize retrieval of LMF address.
8838
8839 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
8840
8841         * exceptions-ppc.c:  handle alloca in methods with clauses.
8842
8843 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
8844
8845         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
8846
8847 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
8848
8849         * mini.c: Delegate most of the abort signal work to 
8850           mono_thread_request_interruption, which also handles Stop and Suspend
8851           states.
8852
8853 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
8854
8855         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
8856         supports the save/restore lmf opcodes.
8857
8858 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
8859
8860         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
8861         by gcc-3.4 as well.
8862
8863         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
8864
8865 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
8866
8867         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
8868         methods which contain array accesses.
8869
8870         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
8871         boundaries. Fixes #58537.
8872
8873         * iltests.il: Add regression test for #58537.
8874
8875 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
8876
8877         * mini-x86.c (mono_arch_local_regalloc): Last part of
8878         fix for bug #58633 (releasing register to early).
8879
8880 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
8881
8882         * basic-long.cs: Add new regression test.
8883
8884 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
8885
8886         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
8887         register too early on the chain.
8888
8889 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
8890
8891         * mini.c (create_helper_signature): Use a helper function to reduce
8892         the code which needs to be written. Also set the calling convention of
8893         icalls on windows. Fixes #57840.
8894
8895 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
8896
8897         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
8898         exceptions-ppc.c: added helper function to get the instruction address
8899         from a signal handler context.
8900
8901 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
8902
8903         * helpers.c: use g_get_tmp_dir. Invokes happyness 
8904         from gonzalo.
8905
8906 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
8907
8908         * helpers.c: Add new env variable to pass args to objdump.
8909         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
8910
8911 2004-05-17  Radek Doulik  <rodo@ximian.com>
8912
8913         * Makefile.am (common_sources): added abcremoval.h so it get
8914         disted and daily mono packages on go-mono.com will build again
8915
8916 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
8917
8918         * abcremoval.c: Fixed coding style, added copyright header.
8919
8920         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
8921
8922         * mini.h: Added prototype for abc removal main function.
8923
8924         * build_relations_propagation_table.pl: Added copyright header.
8925
8926 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
8927
8928         * basic-long.cs: reg test for complex ceq_long bug.
8929
8930 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
8931
8932         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
8933         reg in long and clob case (bug #58343). Fixed/added comments.
8934
8935 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
8936
8937         * mini.c (mono_jit_runtime_invoke): Follow new convention
8938         of calling the invoke method with an function pointer.
8939
8940 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
8941
8942         * ChangeLog: Fix author of memory leak patch.
8943
8944 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
8945
8946         * Makefile.am: fix make dist as well...
8947
8948
8949 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
8950
8951         * cfold.c: Made so that conversions from pointer to int4 are no-ops
8952         on archs where pointers are 4 bytes long.
8953
8954         * Makefile.am: Added abcremoval.c source file.
8955
8956         * abcremoval.c: Added abcremoval.c.
8957
8958         * abcremoval.h: Added abcremoval.h.
8959
8960         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
8961
8962         * inssel.brg: Enabled bounds check removal.
8963
8964         * mini.c: Added support for abcrem optimization.
8965
8966         * mini.h: Added abcrem optimization label.
8967
8968         * driver.c: Added support for abcrem optimization.
8969
8970         * propagated_relations_table.def: Added propagated_relations_table.def.
8971
8972 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
8973
8974         * mini.c, cfold.c: fix style.
8975
8976 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
8977
8978         * mini.c: handle issue with the low-level implementation of
8979         some long opcodes (bug #54209).
8980
8981 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
8982
8983         * basic.cs: test for my new cmov stuff.
8984
8985 2004-05-13      Patrik Torstensson
8986
8987         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
8988         opt and added peephole documentation.
8989
8990 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
8991
8992         * tramp-ppc.c: rewrote the generic trampoline code.
8993
8994 2004-05-11      Patrik Torstensson
8995
8996         * mini-x86.c: optimize long shl/shr asm code (one less branch)
8997
8998 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
8999
9000         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
9001
9002         * mini.h mini.c dominators.c: Applied patch from Derek Woo
9003         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
9004
9005         * mini.c: Add new icalls for AsAny marshalling.
9006
9007 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
9008
9009         * tramp-ppc.c, mini-ppc.c: more cleanups.
9010
9011 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9012
9013         * mini.c: no warnings.
9014
9015 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
9016
9017         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
9018
9019 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
9020
9021         * mini.c: In the thread abort signal handler, if the thread is in the
9022         process of being stoped, don't throw the Abort exception, just stop the
9023         thread.
9024
9025 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
9026
9027         * tramp-ppc.c: removed old code.
9028
9029 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
9030
9031         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
9032         do some simple speed optimizations on ppc.
9033
9034 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
9035
9036         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
9037         and large offsets in load/store.
9038
9039 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
9040
9041         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
9042         it causes regressions.
9043
9044 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
9045
9046         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
9047         support.
9048
9049 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9050
9051         * jit-icalls.c: remove warnings.
9052         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
9053         speedups for unsafe code.
9054
9055 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
9056
9057         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
9058
9059 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
9060
9061         * basic-calls.cs: Add new regression test.
9062
9063         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
9064         more portable.
9065
9066         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
9067
9068         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
9069         is no longer used.
9070
9071 2004-05-06      Patrik Torstensson
9072
9073         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
9074         long reg allocation in any reg (not only eax:edx) and implemented 
9075         long shl/shr ops in asm instead of helpers.
9076
9077 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
9078
9079         * mini-sparc.h: Fix warnings.
9080
9081         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
9082         stack.
9083
9084         * mini-exceptions.c (mono_handle_exception): Call the filter in a
9085         separate statement for clarity.
9086
9087         * mini-sparc.c: Update status.
9088
9089 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
9090
9091         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
9092         here.
9093
9094 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
9095
9096         * inssel-ppc.brg: another small pre-release workaround:
9097         we don't do overflow detection for long_sub_un.
9098
9099 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9100
9101         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
9102         (also works around a weird ppc bug: 57957).
9103
9104 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
9105
9106         * tramp-ppc.c: trampoline fixes.
9107
9108 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
9109
9110         * mini-ppc.c: fixed typos.
9111
9112 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9113
9114         * mini-ppc.c, exceptions-ppc.c: more code saves registers
9115         at the top of the stack. Fixed typos. Use a frame registers
9116         for all the methods with exception clauses.
9117
9118 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
9119
9120         * exceptions-ppc.c: restore fp registers.
9121
9122 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
9123
9124         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
9125         order from the stack top (moved the stack room to save the
9126         return value for trace after the param area). Fixed corruption
9127         in restoring registers on unwind.
9128
9129 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9130
9131         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
9132
9133 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
9134
9135         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
9136         and prolog/epilog for methods that use it. Allow
9137         enough param area room for varargs methods. Fix miguel's
9138         breakage in exception handling.
9139
9140 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
9141
9142         * Makefile.am: run genmdesc only on current arch.
9143
9144 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9145
9146         * exceptions-x86.c:
9147         * mini-x86.h: fix the build on windows.
9148
9149 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
9150
9151         * 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.
9152
9153         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
9154
9155         * mini-exceptions.c: New file.
9156         
9157         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
9158         Move some parts of the x86 exception handling code to an 
9159         arch-independent file so it can be shared with other ports.
9160
9161 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9162
9163         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
9164
9165 2004-04-26  David Waite  <mass@akuma.org>
9166
9167         * driver.c: remove comma from end of enumeration declaration
9168
9169 2004-04-26  Jackson Harper  <jackson@ximian.com>
9170
9171         * driver.c: parse config file before loading first assembly. This
9172         allows the user gac to be enabled/disabled. 
9173         
9174 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
9175
9176         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
9177         simpler mechanism: we do not care what is encoded initially
9178         (branch absolute or relative), we care about the code and its
9179         target.  I kept the old code for reference for now.
9180
9181         The new code tries first to determine if the jump is anywhere in
9182         the -/+32 absolute meg range, if it succeeds, it encodes using the
9183         absolute branch;  If not, it tried to find something in the
9184         relative range, if not, it uses the handle_thunk code. 
9185
9186 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
9187
9188         * exceptions-ppc.c: use the correct ip register on macosx.
9189
9190 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
9191
9192         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
9193
9194 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
9195
9196         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
9197         Raise exception on integer divide by zero by hand since the hw
9198         doesn't support it. Handle NaNs in FP compares.
9199
9200 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9201
9202         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
9203         code reducing duplication between the platforms and enabled
9204         signal exception handling (on linux for now).
9205
9206 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
9207
9208         * exceptions-ppc.c: more macosx support.
9209
9210 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
9211
9212         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
9213
9214 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9215
9216         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
9217
9218 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
9219
9220         * iltests.il: more tests.
9221
9222 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
9223
9224         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
9225         vars as well.
9226
9227 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9228
9229         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
9230
9231 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
9232
9233         * liveness.c: Mark variables as volatile in all basic blocks reachable
9234         from exception clauses.
9235
9236 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
9237
9238         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
9239         inlining.
9240
9241 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9242
9243         * iltests.il, basic.cs: more tests for regalloc.
9244
9245 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9246
9247         * iltests.il: Some tests for register allocation modifications
9248         I have locally.
9249
9250 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
9251
9252         * exceptions.cs: Add regression test for bug #56782.
9253
9254         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
9255         original stack trace if an exception is rethrown. Fixes #56782. Oh,
9256         the beauty of fixing the same thing in 5 different files...
9257
9258 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
9259
9260         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
9261         methods.
9262
9263 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
9264
9265         * mini.c: Add support for STRWLPARRAY marshalling convention.
9266
9267 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9268
9269         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
9270         to init the context to setup the regs pointer).
9271
9272 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
9273
9274         * exceptions-ppc.c: more exceptions work.
9275
9276 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9277
9278         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
9279         not allowed.
9280
9281 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
9282
9283         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
9284         can use the memory directly.
9285
9286         * cpu-pentium.md: Update documentation from a post from Zoltan. 
9287
9288         add x86_add_membase, x86_sub_membase, x86_mul_membase
9289
9290 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
9291
9292         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
9293         GENERAL_REGS they were also hardcoded for all PPC ports.
9294
9295         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
9296
9297         Remove hard-coded limit for floating point registers, use
9298         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
9299
9300         Notice that in MacOS X calling conventions you can fit a lot more
9301         floating point values in registers, so I should update the PInvoke
9302         test to excercise the passing of floating point values on the
9303         stack (currently broken).
9304         
9305 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
9306
9307         * tramp-ppc.c (create_trampoline_code): Added
9308         JUMP_TRAMPOLINE_SIZE. 
9309         (ppc_magic_trampoline): Follow the pattern from
9310         x86_magic_trampoline: if code is set to zero, return. 
9311         (create_trampoline_code): Always pass MonoMethod to the jump
9312         trampoline, before it was passing a null.
9313         (mono_arch_create_jump_trampoline): Implement the jump stub, could
9314         share the code with mono_arch_create_jit_trampoline. 
9315
9316         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
9317         implemented.
9318         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
9319         implemented.  
9320
9321         * cpu-g4.md: Added length for jmp instruction, the worst case
9322         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
9323         for save_lmf).
9324
9325 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
9326
9327         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
9328
9329 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
9330
9331         * mini.c: Only set bblock->real_offset when adding a new bblock, and
9332         before each IL instruction.
9333
9334         * mini.c (CEE_BOX): Fix warnings.
9335
9336 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9337
9338         * mini.c: removed a few unused vars and extra whitespace.
9339
9340 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
9341
9342         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
9343         checks.
9344         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
9345         index.
9346         (OP_GETCHR): use the above
9347         (CEE_LDELEMA): use the above.
9348
9349         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
9350         version of the generic impl.
9351         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
9352         (CEE_LDELEMA): use the above.
9353
9354 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
9355
9356         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
9357         Fixes #56317.
9358
9359         * iltests.il: Added new regression test for #56317.
9360
9361 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
9362
9363         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
9364         under NetBSD. Fixes #56450.
9365
9366         * liveness.c (update_gen_kill_set): Fix previous patch.
9367
9368 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9369
9370         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
9371
9372 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
9373
9374         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
9375         ldsfld and ldsflda.
9376
9377         * inssel-sparc.brg: Add more optimizations.
9378
9379         * mini-sparc.c: Replace multiply/divide with shifts if possible.
9380
9381 2004-04-01  Martin Baulig  <martin@ximian.com>
9382
9383         * mini.c (handle_box): New static function; moved the
9384         implementation of CEE_BOX here.
9385         (mono_method_to_ir): Added `constrained_call' variable.
9386         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
9387         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
9388         mono_method_get_constrained() to get the method.
9389
9390 2004-04-01  Martin Baulig  <martin@ximian.com>
9391
9392         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
9393         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
9394         (mono_method_to_ir): We don't need these macros anymore since
9395         mono_class_get_full() already takes care of it. 
9396
9397 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9398
9399         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
9400         use @function (as doesn't accept #function here) and check the return
9401         value of system and stop if fails.
9402
9403 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9404
9405         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
9406
9407 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
9408
9409         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
9410
9411         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
9412
9413         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
9414         #56223.
9415
9416         * basic-long.cs: Add test for negation of Int64.MinValue.
9417
9418 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
9419
9420         * mini-sparc.c: Update status.
9421
9422         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
9423
9424         * exceptions-sparc.c: Fix return value in filters.
9425
9426         * inssel-sparc.brg: Fix register allocation in some rules.
9427
9428 2004-03-28  Martin Baulig  <martin@ximian.com>
9429
9430         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
9431         if neccessary.  
9432
9433 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
9434
9435         * mini-x86.c (mono_arch_patch_code): Fix warnings.
9436         
9437         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
9438         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
9439         remove unused conv_u4 opcode.
9440
9441         * mini-x86.c: Remove valgrind workaround since it slows down things
9442         even when mono is not run under valgrind.
9443
9444 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
9445
9446         * mini-sparc.c: Update status.
9447
9448         * inssel-sparc.brg: Add some optimizations.
9449
9450         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
9451         future delay slot filling. Add support for varargs, tail calls and JMP.
9452
9453         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
9454         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
9455
9456         * inssel.brg: Fix register allocation in OP_ARGLIST.
9457
9458         * inssel.brg: Fix warnings.
9459
9460 2004-03-25  Martin Baulig  <martin@ximian.com>
9461
9462         * mini.c (inflate_generic_field): Removed.
9463         (mini_get_method): Removed, use mono_get_method_full(),
9464         (mini_get_class): Removed, use mono_class_get_full().
9465         (mono_method_to_ir): Pass our generic context to
9466         mono_field_from_token().        
9467
9468 2004-03-25  Martin Baulig  <martin@ximian.com>
9469
9470         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
9471         of a `MonoMethod *'.
9472         (mini_get_method): Take a `MonoGenericContext *' instead
9473         of a `MonoMethod *'.
9474         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
9475         a new local variable called `generic_context' which holds the
9476         current `MonoGenericContext *'; use it to lookup things.
9477
9478 2004-03-24  Martin Baulig  <martin@ximian.com>
9479
9480         * mini.c (mini_get_class): New static method; if we're inside a
9481         generic instance, inflate the class if neccessary.
9482         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
9483
9484 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
9485
9486         * iltests.il: New regression test for #55976.
9487
9488         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
9489         #55976.
9490
9491 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
9492
9493         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
9494         output.
9495
9496 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
9497
9498         * liveness.c: Consider SSA stores as well as loads when making vars
9499         volatile.
9500
9501         * exceptions.cs: New regression tests for register allocation.
9502         
9503 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
9504
9505         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
9506         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
9507           domain lock only to protect puntual access to data structures.
9508           Added access lock for sighash, jit_icall_hash_name, 
9509           jit_icall_hash_addr and domain->code_mp.
9510
9511 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
9512
9513         * driver.c: Print SIGSEGV handling method.
9514
9515         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
9516
9517         * mini.c (setup_jit_tls_data): Handle case when this is called
9518         multiple times for a thread.
9519
9520         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
9521         is different from fbxx_un. Fixes #54303. Also use constants instead of
9522         magic numbers in a lot of places.
9523
9524 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
9525
9526         * exceptions.cs: Fix cctor test when --regression is used.
9527
9528 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
9529
9530         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
9531         for Linux/ppc.
9532
9533 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
9534
9535         * inssel-ppc.brg: fixed register assignments for some rules.
9536
9537 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
9538
9539         * exceptions.cs: Add test for exceptions in static constructors.
9540
9541         * mini.c (mono_jit_compile_method_with_out): Move the calling of
9542         static constructors outside the domain lock. Fixes #55720.
9543
9544 2004-03-17  Martin Baulig  <martin@ximian.com>
9545
9546         * mini.c (get_generic_field_inst): Removed, this'll never happen.
9547         (inflate_generic_field): Take the `MonoMethod *' instead of the
9548         `MonoClass *' and added support for generic method.
9549         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
9550         have a `field->parent->gen_params', only inflate the field if it's
9551         an open constructed type.
9552
9553 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
9554
9555         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
9556         exception object instead of the preconstructed ones.
9557
9558 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9559
9560         * mini.c: reverted changed to sigsegv_signal_handler commited
9561         accidentally in the previous patch.
9562
9563 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9564
9565         * mini.c:
9566         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
9567         running --aot with an old assembly.
9568
9569 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
9570
9571         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
9572         point values.
9573
9574         * mini-sparc.c: Add support for v9 branches with prediction.
9575
9576 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
9577
9578         * mini.c (mini_init): #warning is GNUC only
9579
9580         * mini-sparc.h: implement __builtin_frame_address
9581         and __builtin_return_address for Sun C compiler
9582
9583 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
9584
9585         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
9586
9587 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
9588
9589         * basic-calls.cs: Add test for unaligned byref long argument passing.
9590
9591         * mini-ops.h: Add sparcv9 compare and branch instructions.
9592
9593         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
9594         v9 instructions if we have a v9 cpu.
9595
9596         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
9597         registers for global allocation.
9598
9599         * exceptions-sparc.c: Fixes.
9600         
9601 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
9602
9603         * liveness.c (mono_analyze_liveness): Optimized version.
9604
9605         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
9606
9607         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
9608         sparc work.
9609
9610         * basic-float.cs basic-calls.cs: New regression tests.
9611
9612 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
9613
9614         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
9615         sigaltstack implementation.
9616
9617         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
9618         
9619         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
9620         stuff if SIGSEGV_ON_ALTSTACK is not defined.
9621
9622 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
9623
9624         * mini.c: Fix warnings.
9625         
9626         * mini.c (mono_resolve_patch_target): New function which contains the
9627         arch independent part of the patching process.
9628
9629         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
9630         patching code to a separate function.
9631
9632 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
9633
9634         * mini.c (add_signal_handler): ifdef out on Windows
9635
9636 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
9637
9638         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
9639         cpu-sparc.md: Add exception handling support + other fixes.
9640
9641         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
9642         typed GC detection in --version.
9643
9644         * basic.cs exceptions.cs: New regression tests.
9645
9646         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
9647         the arch specific code can store data during a compilation.
9648
9649         * mini-ops.h: Add OP_SETFRET.
9650
9651         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
9652         function, register a separate icall for each arity, so the icalls can
9653         get a wrapper.
9654         
9655         * mini.c (mono_print_tree): Print negative offsets in a more readable
9656         form.
9657         
9658         * mini.c: Make signal handling work on sparc.
9659         
9660         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
9661
9662         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
9663
9664         * jit-icalls.c: Emulate truncl by aintl on solaris.
9665
9666         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
9667
9668 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
9669
9670         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
9671
9672 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
9673
9674         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
9675         a MarshalByRef type, inline a method that performs the check, taking into
9676         account that the object can be a proxy. Also implemented tow new opcodes:
9677         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
9678         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
9679         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
9680
9681 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
9682
9683         * mini-ppc.c: if a relative branch displacement is too big
9684         but it points to and area reachable with an absolute branch, 
9685         avoid the thunks.
9686
9687 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
9688
9689         * mini.c: optimize small copies in cpblk.
9690
9691 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
9692
9693         * basic-calls.cs basic-float.cs: New regression tests.
9694
9695         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
9696         negative offsets from %fp. Implement localloc. Fix local register 
9697         allocation. Fix the case when the this argument needs to be saved to
9698         the stack. Implement some missing opcodes.
9699
9700 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
9701
9702         * mini.c (mini_method_compile): Reenable global regalloc in methods
9703         with exception handlers.
9704
9705         * linear-scan.c (mono_varlist_sort): Fix warning.
9706
9707         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
9708
9709         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
9710         regalloc costs.
9711
9712         * liveness.c: Make all variables uses in exception clauses volatile, to
9713         prevent them from being allocated to registers. Fixes #42136.
9714
9715 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
9716
9717         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
9718         causes regressions.
9719
9720         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
9721         argument to mono_arch_regalloc_cost.
9722
9723         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
9724         precisely.
9725
9726 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
9727
9728         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
9729         Make the cost of allocating a variable to a register arch dependent.
9730
9731         * basic-calls.cs: Fix compilation of tests.
9732         
9733         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
9734         helper function to cut back on the number of #ifdefs needed.
9735
9736         * mini-ppc.c: Fix compilation.
9737
9738         * basic-calls.cs: New regression tests.
9739
9740         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
9741
9742         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
9743         of l0 since that is callee saved.
9744
9745         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
9746         to virtual calls.
9747
9748         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
9749         of delay instruction.
9750
9751         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
9752
9753         * mini.h (MonoCallInst): Add 'virtual' flag.
9754
9755         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
9756
9757 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
9758
9759         * *.cs: New regression tests.
9760
9761         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
9762         work.
9763
9764         * mini.c (mono_runtime_install_handlers): Fix build.
9765
9766         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
9767         'signal_stack_size' members.
9768
9769         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
9770         alternate signal stack.
9771
9772         * exceptions-x86.c: Add stack overflow handling.
9773
9774         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
9775         functions to arch independent code.
9776
9777         * mini.c (mono_print_tree): Print more detailed info for load_membase
9778         opcodes.
9779         
9780 2004-02-23  Martin Baulig  <martin@ximian.com>
9781
9782         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
9783
9784 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
9785
9786         * mini-x86.c: fixed reg allocation for div/rem.
9787
9788 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
9789
9790         * driver.c (mono_main): Report some configuratio options on --version.
9791
9792 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
9793
9794         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
9795         low in the address space. Correctly flush memory in thunks where we
9796         output native code.
9797
9798 2004-02-20  Martin Baulig  <martin@ximian.com>
9799
9800         * mini.c (mini_get_method): New static method; inflate all generic
9801         methods and methods in open generic instances.
9802         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
9803         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
9804
9805 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
9806
9807         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
9808
9809         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
9810
9811 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
9812
9813         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
9814
9815         * mini-sparc.c (flushi mono_arch_output_basic_block): make
9816         it compile using Sun's compiler.
9817
9818 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
9819
9820         * 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.
9821
9822         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
9823
9824 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
9825
9826         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
9827         code.
9828         * mini-ppc.c: handle calls outside of the allowed range with thunks
9829         allocated using the code manager.
9830         * tramp-ppc.c: use the code manager to hold generated native code.
9831         Fixed the magic trampoline to just patch vtable entries.
9832
9833 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
9834
9835         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
9836         independent file.
9837
9838 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
9839
9840         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
9841         PPC.
9842
9843         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
9844         if we have a working __thread implementation.
9845
9846         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
9847         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
9848
9849 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
9850
9851         * mini-x86.c: Fix compilation under gcc 2.
9852         
9853 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
9854
9855         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
9856         contains a call to the wrapped function.
9857
9858         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
9859         OP_<CALL>_IMM opcodes, and use them under X86.
9860         
9861         * mini.c (mono_jit_find_compiled_method): Fix warning.
9862
9863         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
9864
9865         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
9866
9867         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
9868         functionality to mini.c.
9869
9870         * mini.c (mono_create_jump_trampoline): New function to create a jump
9871         trampoline. Return a compiled method instead of a trampoline if it
9872         exists. Add a cache for jump trampolines.
9873
9874         * mini.c (mono_jit_find_compiled_method): New function to return a
9875         compiled method if it exists.
9876
9877         * mini-x86.c: Call mono_create_jump_trampoline instead of 
9878         mono_arch_create_jit_trampoline.
9879
9880         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
9881         a jump trampoline. Fixes #52092.
9882         
9883 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
9884
9885         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
9886         which is not up-to-date. Add check_corlib_version () instead.
9887
9888         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
9889         have to call it.
9890         
9891         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
9892         since newer valgrind versions do not need it.
9893
9894         * mini.c (mono_jit_compile_method_with_opt): New helper function to
9895         compile a method with a given set of optimizations.
9896
9897         * mini.c: Compile icall wrappers on-demand instead of at startup.
9898
9899         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
9900         wrapper for an icall.
9901
9902 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
9903
9904         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
9905         #54063.
9906
9907         * iltests.il: Add test for non-empty stack before switch instruction.
9908
9909 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
9910
9911         * mini.c: Add support for new stringbuilder marshalling conventions.
9912
9913         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
9914
9915 2004-02-01  Martin Baulig  <martin@ximian.com>
9916
9917         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
9918         in `ginst->mtype_argv'.
9919
9920 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
9921
9922         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
9923         facilitate grepping.
9924
9925 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
9926
9927         * mini.c: fixed buglet in initobj generic implementation for references.
9928
9929 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
9930
9931         * Makefile.am: make the version script conditional.
9932         * jit-icalls.c: handle missing truncl().
9933
9934 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
9935
9936         * exceptions.cs: Add more tests for double->int conversion.
9937
9938         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
9939         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
9940
9941 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
9942
9943         * driver.c: make --verbose --version emit an error
9944         if the loaded corlib doesn't match the runtime version.
9945
9946 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9947
9948         * mini-ppc.h: export ppc_patch().
9949         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
9950         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
9951         on par or better than on MacOSX.
9952
9953 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
9954
9955         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
9956         mono_lookup_pinvoke_call.
9957
9958         * mini-x86.c: Under windows, the default pinvoke calling convention is
9959         stdcall. Fixes #52834.
9960
9961         * mini.c (optimize_branches): Add an upper bound to the number of
9962         iterations to prevent infinite loops on strange loops. Fixes #53003.
9963
9964 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
9965
9966         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
9967         and ISINST. Fixes #52093.
9968
9969         * objects.cs (test_0_vector_array_cast): New tests.
9970         
9971 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
9972
9973         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
9974         checking in Array.Set ().
9975
9976         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
9977         #52590.
9978
9979         * object.cs (test_0_multi_array_cast): New regression test.
9980
9981 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
9982
9983         * exceptions-ppc.c: fix build on Linux/PPC.
9984
9985 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
9986
9987         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
9988         running under valgrind.
9989         (x86_magic_trampoline): Fix build bustage.
9990
9991         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
9992         negative values as well. This is needed for the encoding of the line number
9993         info, since sometimes the line numbers are not in increasing order.
9994
9995 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
9996
9997         * cpu-pentium.md (localloc): Increase the size of the localloc 
9998         instruction since it is a loop under Win32.
9999
10000         * debug-mini.c (record_line_number): Get rid of unneccesary memory
10001         allocation.
10002
10003 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
10004
10005         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
10006         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
10007         Max Horn (max@quendi.de). Fix file names in comments.
10008
10009 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
10010
10011         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
10012         avoid stack overflow.
10013         (replace_usage): Avoid uninitialized variable warnings.
10014
10015         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
10016         and taking the address of valuetype variables.
10017
10018 2004-01-03  Patrik Torstensson
10019
10020         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
10021         for other purposes than FP later on.
10022
10023 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
10024
10025         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
10026         of tail calls.
10027
10028 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
10029
10030         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
10031
10032 2003-12-30  Patrik Torstensson <p@rxc.se>
10033
10034         * mini-x86.h: Decreased number of availiable fp regs.
10035         Solves corner cases with FP spilling.
10036
10037 2003-12-23  Patrik Torstensson <p@rxc.se>
10038
10039         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
10040         for floating point stack tracking / spilling on x86. 
10041         Fixes bug #49012.
10042         
10043         * basic-float.cs: added float mul overflow test.
10044
10045 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
10046
10047         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
10048
10049 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
10050
10051         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
10052         supports for cond branches that overflow the immediate
10053         overflow offset. mcs can compile simple programs.
10054
10055 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
10056
10057         * exceptions-ppc.c: exception handling support wip:
10058         finally handlers get run on exception.
10059
10060 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
10061
10062         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
10063         profiling.
10064
10065 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
10066
10067         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
10068         initial support for stack walking and unwinding.
10069
10070 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
10071
10072         * driver.c (mono_main): Make corlib-out-of-sync message more 
10073         descriptive. Also remove verify_corlib call.
10074
10075 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
10076
10077         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
10078         not overlap with other call's arguments, too.
10079
10080 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
10081
10082         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
10083         move to arch-specific code the choice of arch-specific
10084         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
10085         * mini.c: ensure emulation calls will not interleave
10086         with other calls.
10087
10088 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
10089
10090         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
10091         the magic trampoline stack frame is dropped before executing
10092         the new method.
10093
10094 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10095
10096         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
10097         and integer to fp conversions. Added support for overflowing
10098         arguments on the stack. Reserve a couple more registers as temps.
10099         Added support for aot compilation (as output still needs to be
10100         tweaked, though).
10101
10102 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
10103
10104         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
10105         Don't overwrite return register in some corner cases.
10106
10107 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
10108
10109         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
10110         static constructors when AOT compiling.
10111
10112         * driver.c (mono_main): Call mono_check_corlib_version.
10113
10114 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
10115
10116         * cpu-g4.md, basic.cs: fixed div target register.
10117
10118 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
10119
10120         * mini-ppc.c, basic.cs: shl_imm fix with test.
10121
10122 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
10123
10124         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
10125         structures by value. Misc fixes.
10126         * objects.cs: more tests.
10127
10128 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
10129
10130         * mini-ppc.c: lconv.ovf.i implemented.
10131
10132 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10133
10134         * mini.c:
10135         (mini_init): don't error out if someone already called g_thread_init.
10136
10137 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
10138
10139         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
10140         to be any type per the spec. Fix abnormal memory usage when
10141         the same object is repeatedly thrown.
10142
10143 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
10144
10145         * mini.c: check for overruns in IL code.
10146
10147 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
10148
10149         * TODO: Add/remove some todo entries.
10150
10151 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
10152
10153         * driver.c (mono_main): Call mono_verify_corlib.
10154
10155 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
10156
10157         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
10158         This has been moved to mini.c
10159         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
10160         type being casted is marshalbyref it could be a proxy, so instead of
10161         emitting the type check code, emit a call to a runtime method that will
10162         perform the check by calling CanCastTo if needed.
10163
10164 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
10165
10166         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
10167         methods with large stack frames under Win32.
10168
10169 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
10170
10171         * Makefile.am: Distribute regression tests.
10172
10173         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
10174         at the end instead of inserting each variable into the sorted list.
10175
10176         * linear-scan.c (mono_varlist_sort): New helper function.
10177         
10178 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
10179
10180         * mini.c: ensure arguments and locals are within bounds.
10181
10182 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
10183
10184         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
10185         related fixes.
10186
10187 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
10188
10189         * mini.c (mono_cprop_copy_values): Fix crash.
10190
10191         * aot.c: Set verbosity back to 0.
10192         
10193 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
10194
10195         * regalloc.c: complete memory leak fix by Laurent Morichetti
10196         (l_m@pacbell.net).
10197
10198 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
10199
10200         * driver.c (main_thread_handler): Revert the previous patch.
10201
10202         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
10203         under valgrind.
10204
10205         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
10206         memory from the memory pool.
10207
10208         * driver.c (main_thread_handler): Turn on all optimizations when
10209         --aot is used.
10210
10211         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
10212         an array for better performance.
10213
10214         * regalloc.c (mono_regstate_assign): Fix memory leak.
10215
10216         * debug-mini.c (mono_debug_serialize_debug_info): New function to
10217         serialize the debug info.
10218
10219         * debug-mini.c (mono_debug_add_aot_method): New function to load the
10220         debug info from the serialized representation.
10221
10222         * aot.c: Save debug info into the generated file and load it when 
10223         loading a method.
10224
10225         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
10226
10227 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
10228
10229         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
10230         More FP-related fixes.
10231
10232 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
10233
10234         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
10235         and register allocation buglet. Hello world now runs.
10236
10237 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
10238
10239         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
10240         * tramp-ppc.c: fixed class init trampoline.
10241         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
10242
10243 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
10244
10245         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
10246         mini.c: more ppc changes/fixes.
10247
10248 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
10249
10250         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
10251         Also optimize the case when the arguments are the same in the caller 
10252         and in the callee.
10253
10254         * iltests.il: Add tests for tail calls with valuetype arguments.
10255
10256 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
10257
10258         * mini-ppc.c: fixes for struct return type.
10259
10260 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
10261
10262         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
10263         mono_spillvar_offset() to arch-specific code.
10264
10265 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
10266
10267         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
10268
10269 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
10270
10271         * exceptions-x86.c: Fix stack space leaks.
10272         
10273         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
10274         registers from the lmf if the method has save_lmf set.
10275
10276 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
10277
10278         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
10279         of icall wrappers into InvokeInDomain, since these are now per-domain.
10280
10281 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
10282
10283         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
10284         make some opcode emulation and intrinsic ops enabled/disabled 
10285         according to the architecture. More fixes.
10286
10287 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
10288
10289         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
10290
10291 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
10292
10293         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
10294         arch-specific handling for 'this' and struct return type to
10295         arch-specific code.
10296
10297 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10298
10299         * aot.c: prevent divide by zero error when reporting (it happened with
10300         Accessibility.dll).
10301
10302 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
10303
10304         * mini.h (inst_switch): Remove unused macro.
10305
10306 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10307
10308         * aot.c:
10309         (load_aot_module): free 'info->methods' and 'info' properly. No more
10310         "free(): invalid pointer blah" messages when you have an old aot
10311         compiled assembly.
10312
10313 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
10314
10315         * jit-icalls.c, mini.c: Added support for context static fields.
10316
10317 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
10318
10319         * mini.c (mono_method_blittable): Methods which set LastError are not 
10320         blittable either. Fixes #51108.
10321         
10322 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
10323
10324         * mini.c: flush icache.
10325         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
10326
10327 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
10328
10329         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
10330
10331 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
10332
10333         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
10334         safe on IA32.
10335
10336         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
10337         vararg calls.
10338
10339         * inssel.brg (CEE_MKREFANY): Fix AOT case.
10340
10341 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
10342
10343         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
10344         instruction when the result is discarded.
10345
10346         * iltests.il (test_0_div_regalloc): New regression test.
10347
10348         * arrays.cs: Fix compilation error.
10349
10350 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
10351
10352         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
10353         float rules to inssel-x86.brg: sane architectures with FP registers
10354         don't need to implement these rules.
10355
10356 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
10357
10358         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
10359
10360 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
10361
10362         * mini.h, inssel-long32.brg: fixed endianess issues in int64
10363         implementation of 32 bit systems.
10364
10365 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
10366
10367         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
10368         (Jeroen Zwartepoorte).
10369
10370 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
10371
10372         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
10373         the caller and the callee matches.
10374         
10375         * mini.c (mono_method_to_ir): Add comment.
10376
10377         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
10378         signbit is missing on some platforms.
10379
10380 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
10381
10382         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
10383
10384         * mini.c (setup_jit_tls_data): Call the new function.
10385         
10386         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
10387
10388         * mini-x86.c: Add experimental support for fast access to the lmf
10389         structure under NPTL/Linux 2.6.x.
10390
10391 2003-11-06  Martin Baulig  <martin@ximian.com>
10392
10393         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
10394         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
10395         the debugger.
10396
10397 2003-11-02  Martin Baulig  <martin@ximian.com>
10398
10399         * mini.c (inflate_generic_field): New static method.
10400         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
10401         generic instance and the field is declared in a generic type, call
10402         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
10403
10404 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
10405
10406         * mini.h mini.c (mono_method_same_domain): New function to return
10407         whenever the caller and the callee are in the same domain.
10408
10409         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
10410
10411 2003-10-30  Martin Baulig  <martin@ximian.com>
10412
10413         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
10414         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
10415         method parameters.
10416         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
10417         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
10418
10419 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
10420
10421         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
10422         propagation.
10423
10424         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
10425         object here, so it is in the correct appdomain etc.
10426
10427 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
10428
10429         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
10430         already done.
10431         (mono_method_to_ir): Avoid freeing the type created returned from
10432         mono_type_create_from_typespec, since it is put into an internal cache
10433         by the function. Fixes pointer.exe.
10434
10435         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
10436         trampolines for icalls and pinvokes as well. Fixes #33569.
10437
10438 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
10439
10440         * mini.c: Update after appdomain changes.
10441
10442         * mini.c (mono_jit_compile_method_inner): Allways compile native
10443         method wrappers in the root domain, since there can only be one
10444         instance of them, whose address is stored in method->info.
10445
10446 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
10447
10448         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
10449         environment variable. Instead detect automatically whenever running
10450         under valgrind using the magic macro RUNNING_ON_VALGRIND from
10451         valgrind.h.
10452
10453 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
10454
10455         * trace.c, trace.h: New files that implement the new trace option
10456         parsing. 
10457
10458         * driver.c: Document new --trace options.
10459
10460         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
10461         mini-x86.c: Apply:
10462
10463         -       if (mono_jit_trace_calls)
10464         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
10465
10466         * mini.h: prototypes.
10467         
10468 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
10469
10470         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
10471
10472         * mini.c inssel.brg: Implement typedefbyref opcodes.
10473
10474         * mini.c (mono_jit_compile_method): Remove unused local variable.
10475
10476         * mini.c (mono_jit_compile_method_inner): Ditto.
10477         
10478 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
10479
10480         * tramp-x86.c (x86_class_init_trampoline): Fix build.
10481         
10482         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
10483
10484 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
10485
10486         * mini.c (mono_no_aot): Remove unused global variable.
10487
10488         * mini.c: Thread safety fixes.
10489
10490 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
10491
10492         * mini.c (mono_create_class_init_trampoline): Add a lock around
10493         class_init_hash_addr.
10494
10495         * arrays.cs (test_0_newarr_emulation): Add new regression test for
10496         #30073.
10497
10498         * mini.c: Decompose the NEWARR instruction before decomposing its
10499         arguments. Fixes #30073.
10500
10501 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
10502
10503         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
10504         convention.
10505
10506 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
10507
10508         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
10509
10510         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
10511
10512         * driver.c: Add support for compiling icall wrappers to --compile.
10513
10514 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
10515
10516         * inssel.brg: The empty value in class->interface_offsets is -1, not
10517         0. Fixes #49287.
10518
10519 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
10520
10521         * objects.cs: New test for 'is' operator on an array of interfaces.
10522
10523 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
10524
10525         * tramp-ppc.c: update trampoline code to support jumps
10526         and class initialization.
10527
10528 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
10529
10530         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
10531
10532         * inssel.brg (OP_UNBOXCAST): Fix #46027.
10533
10534         * inssel.brg (OP_UNBOX): Remove unused rule.
10535
10536         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
10537         region instead of one for each method. Fixes #47813.
10538
10539 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
10540
10541         * exceptions.cs (test_0_nested_finally): New regression test for
10542         nested exception handlers.
10543
10544         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
10545
10546         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
10547
10548         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
10549         inlining.
10550
10551         * mini.c (mono_method_check_inlining): Make the inlining limit 
10552         configurable by an environment variable.
10553         
10554         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
10555
10556         * mini.h: Bump AOT file version.
10557
10558         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
10559         token, store the image along with the token, since the token might not 
10560         refer to the same image as the method containing the relocation, 
10561         because of inlining.
10562
10563 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
10564
10565         * mini.c (mono_precompile_assemblies): New function to compile
10566         all methods in all loaded assemblies.
10567
10568         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
10569
10570         * regalloc.h regalloc.c (MonoRegState): Change the type of 
10571         iassign and fassign to int*, since they can contain large negative
10572         values if the register is spilled. Also added some comments. Fixes
10573         #45817.
10574
10575         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
10576         under Win32. Fixes #42964.
10577
10578 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
10579
10580         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
10581
10582         * aot.c: Added support for AOT compiling methods which contain calls
10583         to wrappers. Currently, only remoting-invoke-with-check wrappers are
10584         handled.
10585         
10586         * driver.c (compile_all_methods): Run the compilation in a thread
10587         managed by mono. Fixes #44023.
10588
10589         * mini.c (mono_codegen): Print full method name in verbose output.
10590
10591         * mini-x86.c (mono_arch_patch_code): Fix warning.
10592         
10593         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
10594         jumps, since the method we are jumping to might be domain-specific.
10595
10596         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
10597
10598 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
10599
10600         * inssel.brg: string chars are unsigned.
10601
10602 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
10603
10604         * TODO: New todo item.
10605
10606         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
10607         which calls mono_runtime_class_init and patches the call site to
10608         avoid further calls.
10609         (mono_arch_create_class_init_trampoline): New arch specific function 
10610         to create a class init trampoline.
10611         (create_trampoline_code): Generalized so it can create
10612         class init trampolines as well.
10613
10614         * mini.c (helper_sig_class_init_trampoline): New helper variable.
10615         (mono_create_class_init_trampoline): New function to create and cache
10616         class init trampolines.
10617         (mono_find_class_init_trampoline_by_addr): New function to lookup the
10618         vtable given the address of a class init trampoline. Used by the
10619         patching process.
10620         (mono_codegen): Generate a call to a trampoline instead of
10621         mono_runtime_class_init in LDSFLD[A].
10622         (mono_codegen): Add relocations for the new trampoline.
10623         
10624         * mini.h mini-x86.c aot.c: Added a new relocation type: 
10625         MONO_PATCH_INFO_CLASS_INIT.
10626
10627         * mini.h: Bump AOT version number.
10628
10629         * aot.c: Create a copy of the loaded code instead of using the original
10630         so methods which call each other will be close in memory, improving
10631         cache behaviour.
10632         
10633         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
10634         patch since it breaks the regression tests.
10635         
10636         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
10637         for the register saving instruction sequence since the 
10638         frame_state_for function in glibc 2.3.2 don't seem to detect it.
10639
10640 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
10641
10642         * TODO: Fix todo item && remove another.
10643
10644 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
10645
10646         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
10647         previous checkin.
10648
10649         * aot.c: Moved the check for MONO_LASTAOT into the initialization
10650         function of the module.
10651
10652         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
10653         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
10654         --no-aot command line option.
10655
10656 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
10657
10658         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
10659         by Bernie Solomon (bernard@ugsolutions.com).
10660
10661         * inssel.brg: Refactor the interface offset table related code into
10662         its separate functions and add support for the AOT case.
10663
10664 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
10665
10666         * aot.c (mono_aot_get_method_inner): Fix memory leak.
10667         
10668         * aot.c: Added mono_aot_verbose variable and made all debugging
10669         output depend on the value of this variable.
10670
10671         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
10672         method_label and info_label.
10673
10674         * mini.h mini-x86.c aot.c: Added a new relocation type 
10675         MONO_PATCH_INFO_IID for klass->interface_id.
10676
10677         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
10678         the MonoJitInfo structure.
10679
10680         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
10681         a non-root appdomain in shared mode.
10682
10683 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
10684
10685         * aot.c: make aot loader less verbose. Remove free of unused variable.
10686
10687 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
10688
10689         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
10690
10691         * .cvsignore: Added *.dll.
10692
10693         * mini.c (mono_print_tree_nl): New function callable while debugging.
10694
10695         * mini.c (mono_print_code): Export this.
10696
10697         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
10698         patched code.
10699
10700 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
10701
10702         * mini.h (MonoCompile): Added 'jit_info' field.
10703
10704         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
10705         the cfg structure, since it is needed by the AOT compiler.
10706
10707         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
10708
10709         * aot.c: A major rewrite. Changes include:
10710         - save exception tables for methods which have them.
10711         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
10712         to g_module_symbol.
10713         - reworked the file format so it is now much smaller and needs
10714         fewer relocation entries.
10715         
10716 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
10717
10718         * aot.c (load_aot_module): Fix build bustage on platforms without
10719         Boehm GC.
10720
10721 2003-09-04  Martin Baulig  <martin@ximian.com>
10722
10723         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
10724
10725 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
10726
10727         * TODO: Some new optimization ideas.
10728
10729         * aot.c: Move AOT module loading logic here from mono_assembly_open.
10730
10731         * aot.c: Save the optimization flags used to compile the code into
10732         the AOT module.
10733
10734         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
10735         support emitting domain specific code.
10736         
10737         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
10738         no longer domain neutral. It can be made domain neutral by compiling 
10739         with --optimize=shared.
10740
10741         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
10742         between appdomains.
10743
10744         * driver.c mini.h mini.c: New --no-aot debugging option which disables
10745         loading of AOT code.
10746
10747         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
10748         
10749         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
10750         if there is no domain neutrality information.
10751
10752 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
10753
10754         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
10755         format version into the generated library.
10756
10757         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
10758         callee method into the caller since one of them could be shared.
10759
10760         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
10761         system exceptions from AOT code now works.
10762
10763         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
10764         method if it is domain neutral and the callee is not.
10765
10766         * graph.c (cfg_emit_one_loop_level): Fix warning.
10767
10768 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
10769
10770         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
10771         last checkin.
10772
10773 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
10774
10775         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
10776         is needed  by code which is executed before mono_runtime_init ().
10777         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
10778         
10779         * mini.c (mono_thread_abort): Fix warning.
10780         (mono_jit_compile_method): Call static constructor in the AOT case too.
10781
10782         * aot.c (mono_compile_assembly): Fix warning.
10783
10784 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10785
10786         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
10787
10788 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
10789
10790         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
10791
10792         * cpu-pentium.md: Fix the length of call opcodes so they include the
10793         ESP restoring instruction. Fixes #47968.
10794
10795 2003-08-28  Martin Baulig  <martin@ximian.com>
10796
10797         * mini-x86.c (mono_arch_call_opcode): Added support for
10798         MONO_TYPE_GENERICINST.
10799
10800         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
10801
10802 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
10803
10804         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
10805         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
10806
10807         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
10808         metadata_section.
10809
10810 2003-08-26  Martin Baulig  <martin@ximian.com>
10811
10812         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
10813         when reporting an error, set this to the actual error location.
10814         (mono_method_to_ir): Report the correct error location if
10815         get_basic_blocks() returned an error.
10816
10817 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
10818
10819         * mini.c (mono_type_blittable): OBJECT is not blittable.
10820         (mono_method_blittable): Methods which have marshalling descriptors
10821         are not blittable either. Fixes #47842.
10822
10823 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
10824
10825         * driver.c mini.c: Use an environment variable instead of a global 
10826         variable. Also fix the build.
10827
10828         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
10829         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
10830         reporting this. 
10831
10832         * driver.c mini.c: Added --with-valgrind option to turn off some
10833         code which prevents mono from running under valgrind.
10834
10835         * mini.c (mono_emit_call_args): Fixed warning.
10836
10837         * mini.c (mono_emulate_opcode): Fixed warning.
10838
10839 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10840
10841         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
10842         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
10843         regalloc.c, regalloc.h: specify available registers in arch-specific
10844         code and support floats in the regallocator (patch by Laurent Morichetti 
10845         <l_m@pacbell.net>)
10846
10847 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
10848
10849         * mini.c: mono_thread_current() can be called only after
10850         mono_runtime_init(): rearrange code to not call it early on.
10851
10852 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
10853
10854         * mini.c: allocate jump tables in the code mempools.
10855
10856 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
10857
10858         * mini.c, mini.h: make sure per-thread data allocated by the jit is
10859         freed.
10860
10861 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
10862
10863         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
10864         12 to 16.  This fixes bug #47453.
10865
10866
10867 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
10868
10869         * mini-ppc.c: fixed indexed load and unsigned compares.
10870
10871 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
10872
10873         * mini.c: reenabled installation of handler for
10874           thread abort signal.
10875
10876 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10877
10878         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
10879         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
10880         until it's fixed and actually useful.
10881
10882 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
10883
10884         * inssel-long32.brg: couple more opcodes implemented.
10885
10886 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
10887         
10888         * mini-sparc.c: Even more opcodes implemeted.
10889
10890 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
10891
10892         * mini-sparc.c: More opcodes implemented.
10893
10894 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
10895
10896         * mini-sparc.c: More opcodes implemented.
10897
10898 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
10899
10900         * inssel-sparc.brg: Add some needed rules.  Direct
10901         copy from PPC.
10902         * Makefile.am: Use inssel-sparc.brg
10903         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
10904         an assert happy for now.
10905
10906 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
10907
10908         * mini-sparc.c: Fixed compile errors.
10909         * exceptions-sparc.c: Same.  We now produce a mono binary 
10910         on sparc-linux.  Yea.
10911
10912 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
10913
10914         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
10915         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
10916         They compile, but do not work.
10917
10918 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10919
10920         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
10921         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
10922         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
10923         (ct@gentoo.org).
10924
10925 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10926
10927         * mini.c: more opcodes implemented and better support for generics.
10928
10929 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
10930
10931         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
10932         * mini.c, mini.h: first cut at generics support: some new instructions 
10933         added and changed the behaviour of some of the existing ones.
10934
10935 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
10936
10937         * mini.c: Removed definition of metadata_shared mutex here.
10938
10939 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
10940
10941         * mini-x86.c: make vararg calls work for instance methods.
10942
10943 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10944
10945         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
10946         returns the arguments in a separte list, now.
10947
10948 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
10949
10950         * aot.c, mini.c: updates for array type representation changes.
10951
10952 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
10953
10954         * mini.c: register function to perform jit shutdown.
10955
10956 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10957
10958         * mini.c: use a faster allocator if possible.
10959
10960 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
10961
10962         * aot.c: some cleanups and portability changes.
10963
10964 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
10965
10966         * mini.c: use faster allocation for CEE_BOX if possible.
10967
10968 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
10969
10970         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
10971         Moved inlined mempcy code to its own function so that is can be
10972         reused. Added an inline memset function as well (optimized initobj).
10973         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
10974
10975 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
10976
10977         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
10978
10979 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
10980
10981         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
10982         arch code can setup the cpu for CLR execution, if needed.
10983         We use it on x86 to set the precision of FP operations.
10984
10985 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10986
10987         * mini.c: disable some optimizations if we can guess they'll cost too
10988         much for a given method.
10989
10990 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
10991
10992         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
10993         
10994 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
10995         * mini.h mini.c mini-x86.c: Added instruction level coverage 
10996         info collection support.
10997
10998 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
10999
11000         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
11001         is now implemented in the profiling API. Get rid of a couple of
11002         unnecessary global variables.
11003
11004 2003-06-15  Nick Drochak <ndrochak@gol.com>
11005
11006         * basic-long.cs: tests for negative values for bigmul, and unsigned.
11007         * cpu-g4.md: add op_bigmul and op_bigmul_un
11008         * cpu_pentium.md: add op_bigmul_un
11009         * inssel-long32.brg: add rule for unsigned bigmul
11010         * mini-ops.h: define OP_BIGMUL_UN
11011         * mini-x86.c: THE BUG: handle (un)signed properly
11012         * mini.c: choose unsigned opcode if needed.
11013         This set of patches fixes bug #44291
11014
11015 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
11016
11017         * mini.c (optimize_branches): improved to handle all kinds of
11018         conditional branches.
11019
11020 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
11021
11022         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
11023         don't raise exceptions.
11024
11025 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
11026
11027         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
11028         to arch-specific files.
11029
11030 2003-06-09  Martin Baulig  <martin@ximian.com>
11031
11032         * Makefile.am (libs): Added $(LIBGC_LIBS).
11033
11034 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
11035
11036         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
11037         and OP_ATAN (fixes bug#44293).
11038
11039 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
11040
11041         * Makefile.am, mini-x86.c: rename cpu description array to
11042         pentium_desc, since some compilers define the 'pentium' preprocessor
11043         symbol.
11044
11045 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
11046
11047         * mini.c (mini_select_instructions): add explicit branch if the
11048         following block is not the false target of a conditional branch -
11049         we need this with any optimization that reorder or remove bblocks
11050
11051         * mini.c (optimize_branches): bug fixes
11052
11053 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
11054
11055         * mini.c (mono_method_to_ir): inline static readonly fields
11056
11057         * ssa.c (fold_tree): start cfold support for long (very simple
11058         cases only)
11059
11060         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
11061
11062 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
11063
11064         * inssel.brg: fixed memcpy (bug #44219).
11065
11066 2003-06-05  Dick Porter  <dick@ximian.com>
11067
11068         * driver.c: Set the glib log levels to not abort if g_message
11069         recurses.
11070
11071         g_set_prgname() has to happen before mini_init() so that the
11072         process handle gets the info.
11073         
11074 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
11075
11076         * driver.c: add intrins to the default optimizations to get wider
11077         exposure.
11078
11079 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
11080
11081         * mini.h: some large basic blocks will overflow a 16-bit
11082         integers for symbolic registers.
11083
11084 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
11085
11086         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
11087         (mono_arch_output_basic_block): fix bug 43499 
11088
11089 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
11090
11091         * mini.c: kill duplicated definition of mono_debug_format.
11092
11093 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
11094
11095         * mini-x86.c, arrays.cs: fixed register allocation bug.
11096
11097 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
11098
11099         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
11100
11101         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
11102
11103 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11104
11105         * mini.c:
11106         (print_method_from_ip): also print source location information if
11107         available.
11108
11109 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
11110
11111         * mini.c (mono_find_block_region): bug fix in region code
11112         (mini_method_compile): enable removing unreachable code again, but
11113         only in methods without exception clauses.
11114
11115 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
11116
11117         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
11118         Implemented arglist opcode and handling of TypedReference type.
11119         Fixed x86 call convention when a structure is returned.
11120         Minimal support for calling static vararg methods.
11121
11122 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
11123
11124         * mini.c (mini_method_compile):  always remove unreachable code,
11125         because the code in them may be inconsistent  (access to dead
11126         variables for example).
11127
11128 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
11129
11130         * driver.c, debug-mini.c: warning fixes.
11131
11132 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
11133
11134         * Makefile.am, jit.h, mini.h: install header for embedding mono.
11135
11136 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
11137
11138         * mini.c: thread-static fields are registered in mono_class_vtable(),
11139         so ensure the function is called before checking for them.
11140
11141 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
11142
11143         * mini.c (optimize_branches): fix for bug 43586
11144
11145         * jit-icalls.c (mono_llmult_ovf): added an additional check for
11146         overflow (fixes Bug #43639)
11147
11148 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11149
11150         * mini.c, objects.cs: allow the use of stobj for primitive types.
11151
11152 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11153
11154         * mini.c: be less strict about argument checking until we support
11155         running the verifier.
11156
11157 2003-05-27  Nick Drochak <ndrochak@gol.com>
11158
11159         * basic-long.cs: tests for (ulong)int * (ulong)int also
11160         * mini.c: use the same trick for (ulong)int * (ulong)int
11161
11162 2003-05-27  Nick Drochak <ndrochak@gol.com>
11163
11164         * basic-long.cs: add regression test for (long)int * (long)int
11165         * cpu-pentium.md: add op_bigmul specification
11166         * inssel-long32.brg: add OP_BIGMUL rule
11167         * mini-ops.h: add OP_BIGMUL
11168         * mini-x86.c: register allocator: handle case where src1 needs to be
11169         in EAX.
11170         * mini.c: substitute special BIGMUL opcode in the tree for 
11171         (long)int * (long)int
11172
11173 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
11174
11175         * jit-icalls.c: call the type ctor on field access if needed.
11176
11177 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
11178
11179         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
11180         to a method (including results of ldelema, bug#43207).
11181
11182 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
11183
11184         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
11185         colors to show exception handler blocks.
11186
11187         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
11188         (fix for pinvoke7.cs).
11189
11190 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11191
11192         * mini.h, mini.c: ensure correct initialization order for types that
11193         require it. Prepare for lazy compilation of jit icall wrappers.
11194         Provide a name for opcode emulation to reduce unneeded mallocing.
11195
11196 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
11197
11198         * mini-x86.c: better register restoring code and profiling
11199         support for tail calls.
11200
11201 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11202
11203         * mini.h, driver.c: prepare for leaf methods optimization.
11204
11205 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
11206
11207         * mini.c: get targets of branches before converting a method.
11208
11209 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
11210
11211         * mini.c (optimize_branches): added some experimental code (disbaled) 
11212
11213 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
11214
11215         * mini.c (optimize_branches): fix branch to branch optimization 
11216
11217         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
11218
11219         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
11220
11221         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
11222
11223         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
11224         if needed.
11225
11226 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
11227
11228         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
11229         enable use of interface variables again.
11230
11231         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
11232         I1 to registers because there is no simply way to sign extend 8bit
11233         quantities in caller saved registers on x86.
11234
11235         * inssel-float.brg: set costs of some rules to 2 so
11236         that monobure always select the arch. specific ones if supplied,
11237         regardless of the order we pass the files to monoburg.
11238
11239 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
11240
11241         * mini.c, mini-x86.c: since the magic trampoline for jumps
11242         can't patch the code directly, we do it as soon as the
11243         method gets compiled.
11244
11245 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
11246
11247         * mini-x86.c, mini.h: introduce a new patching method
11248         to support CEE_JMP and tail calls.
11249         * mini.c: obey tail.call. Don't precompile methods target
11250         of CEE_JMP.
11251         * tramp-x86.c: new trampoline code to handle methods
11252         reached through a jump.
11253
11254 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
11255
11256         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
11257         bit values to registers
11258
11259 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
11260
11261         * mini.c (mono_compile_get_interface_var): share interface
11262         variables if possible.
11263
11264 2003-05-16  Martin Baulig  <martin@ximian.com>
11265
11266         * debug-mini.c (mono_init_debugger): New function to initialize
11267         the debugger.  This is not in the debugger since it needs to
11268         access some of mini's internals.
11269
11270 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
11271
11272         * mini.c (mono_method_to_ir): inlining fixes/cleanups
11273
11274 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
11275
11276         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
11277         for value type handling.
11278
11279 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
11280
11281         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
11282         (mono_method_check_inlining): enable inlining of all kinds of wrappers
11283
11284 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
11285
11286         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
11287           the constructor through a proxy.
11288
11289 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
11290
11291         * jit-icalls.c, inssel.brg: fixes to array element address
11292         calculations.
11293
11294 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
11295
11296         * mini-x86.c (is_regsize_var): allocate pointer to registers
11297
11298 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
11299
11300         * driver.c: fixed typo, added intrins to the set of optimizations
11301         tested with regressions.
11302
11303 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
11304
11305         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
11306         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
11307         test case.
11308
11309 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
11310
11311         * inssel.brg: remove some common pop instructions without side effects
11312
11313 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
11314
11315         * inssel-x86.brg: fixed thinko in int to double conversions.
11316
11317 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
11318
11319         * mini.c, jit-icalls.c: added runtime thread-static variable support.
11320
11321 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
11322
11323         * inssel-long32.brg: two more missing instructions.
11324
11325 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
11326
11327         * mini.c (mono_emit_call_args): set the cil_code for all arguments
11328         if not already set.
11329
11330 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
11331
11332         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
11333         correctly.
11334
11335         * basic-float.cs: Added tests for negative zero.
11336
11337 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
11338
11339         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
11340         a couple of missing operations for long casts, with test cases.
11341
11342 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11343
11344         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
11345
11346 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
11347
11348         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
11349         code size estimation.
11350
11351 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
11352
11353         * mini.c (mono_jit_create_remoting_trampoline): make it work with
11354         abstract methods (fix bug 42542)
11355
11356         * aot.c: add ability to handle array types
11357         
11358 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
11359
11360         * mini.c: Call the _specific versions of the object allocation
11361         functions if possible.
11362
11363 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
11364
11365         * driver.c: call setlocale ().
11366
11367 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
11368
11369         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
11370         windows build.
11371
11372 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
11373
11374         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
11375
11376         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
11377         wrappers (fix bug 42122)
11378
11379 2003-05-04  Martin Baulig  <martin@ximian.com>
11380
11381         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
11382
11383         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
11384         s/mini_set_defaults/mono_set_defaults/g.
11385
11386 2003-05-04  Martin Baulig  <martin@ximian.com>
11387
11388         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
11389
11390 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
11391
11392         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
11393         (reported by Don Roberts).
11394
11395 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
11396
11397         * mini.c: temporarily work around two bugs for this release.
11398
11399 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
11400
11401         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
11402         that contains -export-dynamic and it makes using the ld script
11403         useless.
11404         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
11405
11406 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
11407
11408         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
11409         specific cpu.
11410
11411 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
11412
11413         * mini.c: make sure leave calls all the needed finally blocks,
11414         even when the target jumps out of multiple exception clauses.
11415
11416 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
11417
11418         * ldscript, Makefile.am: add linker script to reduce the number of
11419         exported symbols (should also fix the issues with libwine defining
11420         some of the same symbols in io-layer).
11421
11422 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
11423
11424         * driver.c (mini_main): Avoid assertion when no file name is given on 
11425         the command line.
11426
11427 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
11428
11429         * driver.c: added --version/-V command line option.
11430         Added the inline optimization in the regression tests.
11431
11432 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
11433
11434         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
11435         to the type in the method signature (fixes bug#42134).
11436
11437 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
11438
11439         * mini.c: when inlining, check this is not null only when needed (bug #42135).
11440
11441 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
11442
11443         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
11444
11445 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11446
11447         * driver.c: fixed bug #42100.
11448
11449 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
11450
11451         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
11452
11453 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
11454
11455         * mini.c: moved most of the code required to do inlining to its own
11456         function so it can be reused. Inline also ctors if appropriate.
11457
11458 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
11459
11460         * Makefile.am: Link with -export-dynamic so shared libs loaded by
11461         the runtime can call mono API functions.
11462
11463 2003-04-27  Martin Baulig  <martin@ximian.com>
11464
11465         * debug-mini.c (mono_debug_init_method): Added
11466         `guint32 breakpoint_id' argument; if the method has a breakpoint,
11467         send a notification to the debugger.
11468
11469         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
11470         running in the Mono Debugger, just pass the breakpoint number to
11471         mono_debug_init_method().
11472
11473         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
11474
11475 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
11476
11477         * mini.c: allow some more unsafe compares.
11478
11479 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
11480
11481         * mini-x86.c, Makefile.am: make distcheck works (partially from
11482         a patch by Richard Lee <r.h.lee@attbi.com>).
11483         * regset.c, regset.h: removed, they are unused.
11484
11485 2003-04-25  Dick Porter  <dick@ximian.com>
11486
11487         * driver.c: Usage reports the name as 'mono' not 'mini'
11488         * exceptions-x86.c: Build and run on freebsd
11489
11490 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
11491
11492         * Makefile.am: install the program with the 'mono' name and
11493         the library as libmono instead of mini and libmini.
11494
11495 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
11496
11497         * driver.c: provide the APIs for the embedding interface of the old jit.
11498
11499 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
11500
11501         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
11502
11503 2003-04-23  Martin Baulig  <martin@ximian.com>
11504
11505         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
11506
11507         * driver.c: Added `--debug' command line argument to enable
11508         debugging support.
11509
11510 2003-04-23  Martin Baulig  <martin@ximian.com>
11511
11512         * debug.[ch]: Removed.  The code is now in
11513         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
11514
11515         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
11516         last six months.
11517
11518 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
11519
11520         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
11521
11522 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11523
11524         * mini.c:
11525         (mini_cleanup): moved mono_runtime_cleanup call after the call to
11526         mono_domain_finalize.
11527         (mini_method_compile): use mono_method_profile* if the the option is
11528         enabled.
11529
11530 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
11531
11532         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
11533         methods with their wrapper.
11534
11535         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
11536         methods with their wrapper.
11537
11538         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
11539         their wrapper.
11540
11541         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
11542         wrapper.
11543
11544         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
11545         methods.
11546
11547 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
11548
11549         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
11550
11551 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
11552
11553         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
11554         of the mempool. This is slightly faster and uses less memory
11555
11556 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
11557
11558         * mini.c: avoid O(n) allocation for variables.
11559
11560 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
11561
11562         * mini.c: handle items on the stack after inlining methods.
11563
11564 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
11565
11566         * mini.c: make the method->opcode optimization dependent
11567         on MONO_OPT_INSTRINS and do it lazily.
11568
11569 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
11570
11571         * driver.c: print overall results at the end of regression run.
11572
11573 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
11574
11575         * inssel.brg: don't overwrite symbolic registers.
11576
11577 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
11578
11579         * inssel-x86.brg: fix conversion from long to float.
11580
11581 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
11582
11583         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
11584
11585 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
11586
11587         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
11588
11589         * driver.c: Added --print-vtable option as in the old JIT.
11590
11591 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
11592
11593         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
11594
11595 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
11596
11597         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
11598
11599 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
11600
11601         * mini.c regalloc.c regalloc.h: Fix memory leak.
11602
11603 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
11604
11605         * aot.c (mono_aot_get_method): register all used strings
11606
11607 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
11608
11609         * mini.c: always intern strings references with ldstr at compile time.
11610
11611 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
11612
11613         * Makefile.am: add BUILT_SOURCES.
11614
11615 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
11616
11617         * driver.c: give a better error message when the assembly to execute
11618         doesn't have an entry point.
11619
11620 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
11621
11622         * Makefile.am: added hack for automake
11623
11624         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
11625         correct sematics.
11626
11627         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
11628
11629 22003-04-07  Martin Baulig  <martin@ximian.com>
11630
11631         * Makefile.am: Added Makefile.am.
11632
11633         * debugger-main.c: Removed, this is now in the debugger where it
11634         belongs.
11635
11636         * mini.pc.in: Call this package `mini' for the moment.
11637
11638
11639
11640
11641
11642
11643
11644