2007-12-06 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / ChangeLog
1 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
2
3         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
4
5         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
6         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
7
8 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
9
10         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
11
12 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13
14         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
15         code stream.
16
17 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
18
19         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
20
21         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
22         optimization in the AOT case.
23         
24 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
25
26         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
27         
28         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
29
30         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
31
32         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
33
34         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
35         is created by the inlined delegate ctor.
36
37         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
38
39         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
40
41 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
42
43         * cpu-x86.md: Fix the length of ckfinite.
44
45 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
46
47         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
48         
49         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
50         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
51
52         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
53
54         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
55         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
56
57 2007-11-28  Martin Baulig  <martin@ximian.com>
58
59         * mini-x86.c
60         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
61         after creating the trampoline.
62
63 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
64
65         * aot-runtime.c (load_aot_module): Check runtime version if needed.
66
67         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
68         the same version.
69
70         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
71         instead of the calling method to help AOT.
72
73         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
74
75 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
76
77         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
78         is defined.
79
80 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
81
82         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
83         
84         * aot-compiler.c (compile_method): Correct check for generic method definitions.
85         (encode_method_ref): No need to handle generic method definitions specially.
86
87         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
88
89         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
90         decode_klass_info.
91
92         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
93         encode_klass_info.
94         (compile_method): Enable generic sharing.
95
96 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
97
98         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
99         (mini_method_compile): Add preliminary support for AOTing shared generic code.
100
101         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
102         generic code.
103
104         * mini-trampolines.c: Fix a warning.
105
106         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
107         NEW_PCONST.
108         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
109         (generic_class_is_reference_type): Remove unused function.
110
111         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
112         in the generic vtable trampoline case.
113
114         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
115         
116         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
117         return an AOT method based on a vtable slot.
118
119         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
120
121         * mini.c (mini_get_vtable_trampoline): Export this.
122
123 2007-11-22  Martin Baulig  <martin@ximian.com>
124
125         * debug-debugger.h
126         (MonoDebuggerInfo): Move `debugger_version' up.
127
128 2007-11-22  Martin Baulig  <martin@ximian.com>
129
130         * mini-amd64.c
131         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
132
133         * mini-trampolines.c
134         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
135         after compiling the method.
136
137 2007-11-20  Martin Baulig  <martin@ximian.com>
138
139         * debug-mini.c
140         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
141         (mono_debugger_remove_breakpoint): Likewise.
142         (mono_debugger_check_breakpoints): Likewise.
143
144         * debug-debugger.c: Implement the new breakpoint interface here.
145
146 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
147
148         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
149         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
150
151         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
152
153 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
154
155         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
156
157         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
158         mini.c.
159
160         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
161         mini.c.
162
163         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
164         returning a vtype in a register.
165
166         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
167         here from the arch specific code.
168
169         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
170         mini.c.
171
172         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
173         (mono_arch_emit_prolog): Increment maximum prolog size.
174
175         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
176         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
177
178         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
179         MonoGenericSharingContext.
180
181         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
182         MonoGenericSharingContext. Allocate memory from the cfg mempool.
183
184 2007-11-15  Mark Probst  <mark.probst@gmail.com>
185
186         * mini.c, mini.h, generic-sharing.c: Functions for producing code
187         which extract fields out of the runtime generic context.  Full
188         sharing of the NEWARR opcode.
189
190 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
191
192         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
193         --enable-minimal=ssa.
194
195 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
196
197         * mini-trampolines.c (mono_delegate_trampoline): Update after 
198         mono_marshal_get_delegate_invoke () signature change.
199
200 2007-11-13  Mark Probst  <mark.probst@gmail.com>
201
202         * mini.c: Removed the shared context in favor of the generic
203         sharing context.  Allocate the MonoJitInfo structure with room for
204         the generic sharing context if it's needed.
205
206         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
207         domain-internals.h now.
208
209         * mini-x86.c: Pass the generic sharing context to get_call_info ().
210
211         * generic-sharing.c: Several changes for working without a shared
212         context and instead operating on open types instead.
213
214 2007-11-12  David S. Miller  <davem@davemloft.net>
215
216        * inssel-sparc.brg: Fix double instruction emit.
217
218 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
219
220         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
221         Get/Set/Address methods.
222         
223         * mini.c debug-debugger.c mini-trampolines.c: Update after 
224         mono_marshal_get_delegate_invoke signature change.
225
226 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
227
228         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
229         This can happens with dynamic methods. Fixes the other bug in #322722.
230
231 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
232
233         * tramp-arm.c (mono_arch_patch_callsite): Support patching
234         BX call sequence.
235
236         * mini-arm.c (arm_patch): Implement patching of BX call
237         sequence. Fixes one of the bugs in #322722.
238
239 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
240
241        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
242        under Linux.  We only need to flush every 32-byte cache line.    
243
244 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
245
246         * mini.c:
247         move_basic_block_to_end: Add branches when needed, eventually creating
248         a new BB.
249         optimize_branches: added a parameter that tells if it's ok to create
250         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
251         and avoid calling move_basic_block_to_end when it's not ok.
252         Fixes bug 318677.
253
254 2007-11-07  Mark Probst  <mark.probst@gmail.com>
255
256         * mini.c: Abort inlining call to InitializeArray if something
257         looks wrong.  Let the icall handle it, which now has proper safety
258         checks.
259
260 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
261
262         * mini.c (mono_spill_call): add support for soft-float.
263
264         * mini.c (mono_method_to_ir): add support for soft-float
265         to inlined functions that return float.
266
267         * mini.c (mono_method_to_ir): add support for soft-float
268         to cee_stsfld opcode on float fields.
269
270 2007-11-05  Geoff Norton  <gnorton@novell.com>
271
272         * mini-x86.h: Fix the structure access for X86 Leopard.
273
274
275 2007-11-05  Martin Baulig  <martin@ximian.com>
276
277         * mini-trampolines.c
278         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
279         after compiling the method to notify the debugger.
280
281 2007-11-05  Martin Baulig  <martin@ximian.com>
282
283         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
284
285 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
286
287         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
288         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
289
290 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
291
292         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
293         native-to-managed wrappers.
294         
295 2007-11-01  Geoff Norton  <gnorton@novell.com>
296
297         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
298         members.
299
300 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
301
302         * mini.c, mini-x86.c: when getting back from unmanaged code
303         to managed via a marshaled delegate we also need to set the
304         right domain.
305
306 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
307
308         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
309         for amd64.
310
311 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
312
313         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
314         let the debugger or other external agents to tell the JIT when
315         a sw breakpoint has been inserted in the code that the JIT needs
316         to be able to inspect.
317
318 2007-10-31  Martin Baulig  <martin@ximian.com>
319
320         * debug-debugger.h
321         (MonoDebuggerInfo): Remove `runtime_class_init'.
322
323 2007-10-30  Martin Baulig  <martin@ximian.com>
324
325         * debug-mini.h
326         (mono_debugger_thread_created): Added `MonoThread *' argument.
327         (mono_debugger_extended_notification): New public method.
328         (mono_debugger_trampoline_compiled): New public method.
329
330         * debug-mini.c
331         (MonoDebuggerThreadInfo): Added `thread' and
332         `extended_notifications' fields.
333
334         * debug-debugger.c
335         (debugger_executable_code_buffer): New static variable.
336
337         * debug-debugger.h
338         (MonoDebuggerInfo): Added `executable_code_buffer',
339         `executable_code_buffer_size', `breakpoint_info_area',
340         `breakpoint_table' and `breakpoint_table_size'.
341
342 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
343
344         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
345         that IP  either is an unused value or the vtable pointer. IMT 
346         calls use vtable + offset now. Reduced by almost half the size
347         of IMT entries.
348
349 2007-10-26  Jonathan Chambers <joncham@gmail.com>
350
351         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
352         defines to access param registers. Replace long usage with
353         gsize as sizeof(long) != sizeof(void*) on Win64.
354
355         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
356         on Win64. Fix intrinsic, use _AddressOfReturnAddress
357         instead of non-existant _GetAddressOfReturnAddress.
358
359         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
360         param registers. Save/restore %rdi and %rsi in MonoLMF.
361
362         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
363         param registers. Modify (throw_exception) signature to take 
364         %rdi and %rsi on Win64. 
365
366         Code is contributed under MIT/X11 license.
367
368 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
369
370         * helpers.c: unlink debugging output files.
371
372 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
373
374         * mini.c: Move mono_create_ftnptr () to object.c.
375
376 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
377
378         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
379         optional. This function can now be used to disassemble code generated
380         outside the JIT such as trampolines and IMT thunks.
381
382         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
383
384         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
385         vtable pointer from a ldr instruction.
386
387         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
388         new IMT call sequence.
389
390         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
391         call sequence for interface invocations.
392
393         * mini-arm.c (mono_arch_emit_imt_argument): added, required
394         for imt support. This function is empty since IMT on ARM requires no
395         special handling on the IR side.
396
397         * mini-arm.c (mono_arch_find_imt_method): added, required for
398         imt support.
399
400         * mini-arm.c (mono_arch_find_this_argument): added, required
401         for imt support.
402
403         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
404         a ldr instruction to load a value stored in the code stream.
405
406         * mini-arm.c (mono_arch_build_imt_thunk):added, required
407         for imt support.
408
409
410 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
411
412         * mini.c (mini_init): Install the jump trampoline callback.
413
414 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
415
416         * mini-trampolines.c: handle synchronized methods with the common
417         vtable trampoline (bug #335601).
418
419 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
420
421         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
422
423         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
424         64 bit platforms.
425
426         * mini-ia64.h mini-ia64.c: Add support for IMT.
427
428         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
429         prolog. Fixes #331958.
430
431 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
432
433         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
434
435 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
436
437         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
438         trampoline.
439
440 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
441
442         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
443         trampoline.
444
445 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
446
447         * mini-x86.c, mini-x86.h: x86 support for the common vtable
448         trampoline.
449
450 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
451
452         * mini-trampolines.c: changed the magic rampoline to understand
453         the common vtable trampoline method: the method to invoke is
454         determined by the vtable displacement of the call.
455
456 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
457
458         * mini.c, mini.h: register the common vtable trampoline if the
459         architecture supports it.
460
461 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
462
463         * cpu-amd64.md: use the correct max length for tls_get.
464
465 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
466
467         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
468         CEE_STELEM_ANY. Fixes #333696.
469
470 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
471
472         * exceptions-x86.c: provide more graceful handling of the case where
473         we followed a bogus function pointer from managed code (bug #332866).
474
475 2007-10-11  Mark Probst  <mark.probst@gmail.com>
476
477         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
478         replaces the generic_shared flag and will carry more information
479         in the future.
480
481         * generic-sharing.c: Added mini_type_stack_size() which allows
482         allows open types if given a generic sharing context.
483         mini_get_basic_type_from_generic() takes a
484         MonoGenericSharingContext* instead of a MonoCompile* now.
485
486         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
487         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
488         mini-sparc.c, mini-x86.c: Trivial changes required by the two
489         changes above.  Just passing arguments through to the right
490         places.
491
492 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
493
494         * mini-arm.c: unify the call emission to emit_code_seq().
495
496 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
497
498         * tramp-arm.c: reduced the trampoline size.
499
500 2007-10-10  Mark Probst  <mark.probst@gmail.com>
501
502         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
503         variable handling out of arch-specific code.
504
505 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
506
507         * mini-arm.c: implemented fast delegate dispatch.
508
509 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
510
511         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
512         that fp elimination is turned off if the space required by locals is too
513         big. Fixes #331958.
514
515 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
516
517         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
518         ARM to the new style trampoline.
519
520 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
521
522         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
523
524         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
525
526 2007-10-09  Martin Baulig  <martin@ximian.com>
527
528         * debug-debugger.h
529         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
530         `field_info_offset_offset'.     
531
532 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
533
534         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
535         removed more internal usage of the r11 register and made it available
536         to the register allocator.
537
538 2007-10-08  Mark Probst  <mark.probst@gmail.com>
539
540         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
541         when sharing generics and treat type variables as references.
542
543 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
544
545         * mini-ppc.c: started removing the internal uses of register r11
546         to eventually allow the register allocator to manage it as an
547         additional available register.
548
549 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
550
551         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
552
553 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
554
555         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
556         specific trampolines as they are not performance critical as a jump
557         target (maybe align as before only for AOT code?). This saves about
558         200 KB of native code on x86 for monodevelop startup.
559
560 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
561
562         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
563         monodevelop startup.
564
565 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
566
567         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
568
569         * mini-sparc.h mini-sparc.c: Implement IMT support.
570
571         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
572         its smaller and doesn't clobber sparc_g1.
573
574         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
575
576 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
577
578         * mini-ppc.c: optimized the size of the IMT thunks a bit.
579
580 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
581
582         * mini-ppc.c: implemented fast delegate invocation.
583
584 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
585
586         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
587
588 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
589
590         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
591         code to the new style trampoline in preparation for IMT support.
592
593 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
594
595         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
596         systems already. This also reduces the specific trampiline sizes and
597         prepares for the use of r12 as the IMT identifier register.
598
599 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
600
601         * mini-mips.h: endianess fix (simplified from a patch by
602         Thomas Kunze <thommy@tabao.de>, bug #323737).
603
604 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
605
606         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
607         to access ucontext fields and enable netbsd support
608         (partially from Magnus Henoch <mange@freemail.hu>).
609
610 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
611
612         * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
613         use the preprocessor from the CPP env var if it is set.
614
615 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
616
617         * mini-trampolines.c: fixed an assertion and moved it earlier in the
618         code, before interface_offset gets used.
619
620 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
621
622         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
623         mono_class_setup_vtable () before accessing klass->vtable.
624
625 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
626
627         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
628         hackish.
629
630 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
631
632         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
633         IMT slots (this saves hundreds of KB of memory in programs like
634         IronPython and Monodevelop).
635
636 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
637
638         * mini.c: print the delegate counter.
639
640 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
641
642         * mini-x86.c: make it easier to enable the debugging code for IMT
643         slots.
644
645 2007-09-28  Martin Baulig  <martin@ximian.com>
646
647         * debug-debugger.h
648         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
649         `mono_method_klass_offset' and `mono_method_token_offset'.
650
651 2007-09-20  Mark Probst  <mark.probst@gmail.com>
652
653         * mini.c: First generics sharing implementation.  Can only share
654         in very simple cases.  If sharing doesn't work it falls back to
655         dedicated compilation.
656
657         * mini.h: Flag in MonoCompile to specify whether generic
658         compilation is shared.  Flags enum for marking which generic inst
659         of a context is used.  Prototypes for helper functions.
660
661         * generic-sharing.c: Helper functions for generic method sharing.
662
663         * optflags-def.h: Optimization flag (gshared) for enabling generic
664         method sharing added.
665
666         * Makefile.am: generic-sharing.c added.
667
668 2007-09-19 Daniel Nauck <dna@mono-project.de>
669
670         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
671
672 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
673         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
674         fixes bug 325507.
675
676 2007-09-19  Martin Baulig  <martin@ximian.com>
677
678         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
679         mono_debug_cleanup() is now part of mono_cleanup().
680
681 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
682
683         * driver.c (mono_main): Fix a warning.
684
685 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
686
687         * aot-compiler.c: Optimize various parts when processing large assemblies.
688         Fixes ##325568.
689
690         * mini.c (mono_patch_info_hash): Improve hash function.
691
692 2007-09-14  Jonathan Chambers <joncham@gmail.com>
693
694         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
695         
696         Code is contributed under MIT/X11 license.
697
698 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
699
700         * mini.c (mini_init): Fix a leak.
701
702         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
703
704 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
705
706         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
707
708 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
709
710         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
711
712 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
713
714         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
715         variance tests.
716
717         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
718
719         * mini.c (handle_alloc): Enable managed allocators in AOT code.
720
721         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
722
723         * aot-runtime.c (decode_patch_info): Ditto.
724
725 2007-09-12  Jonathan Chambers <joncham@gmail.com>
726
727         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
728         static case. Cache delegates in architecture specific code, 
729         based on number of parameters.
730         
731         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
732         in architecture specific code, based on number of parameters.
733         
734         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
735         caching happen in architecture specific code now.
736         
737         Code is contributed under MIT/X11 license.
738
739 2007-09-12  Jonathan Chambers <joncham@gmail.com>
740
741         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
742         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
743         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
744
745         Code is contributed under MIT/X11 license.
746
747 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
748         * mini.c: (mono_thread_abort) Fixed bug #82416.
749
750 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
751
752         * mini.: hook the new managed GC allocation feature into the JIT.
753
754 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
755
756         * mini.c: implementation for the new runtime tls opcode.
757
758 2007-09-11  Martin Baulig  <martin@ximian.com>
759
760         * debug-debugger.h
761         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
762         `mono_method_inflated_offset'.
763
764 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
765
766         * driver.c mini.h mini.c: Add a new devel command line option for injecting
767         async exceptions into a method.
768
769         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
770         purpose of testing whenever the unwinder works at every instruction.
771
772 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
773
774         * mini.c: check accessibility of method used in ldftn (fixes
775         bug #82635).
776
777 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
778
779         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
780
781         * inssel.brg: Fix a warning.
782
783 2007-09-03  Martin Baulig  <martin@ximian.com>
784
785         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
786         now takes the `main_method' as argument.
787
788 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
789
790         * cpu-sparc.md (endfilter): Add missing src1:i argument.
791
792 2007-08-30  Jonathan Chambers <joncham@gmail.com>
793
794         * driver.c: include the cil-coff.h header on Windows.
795         
796         Code is contributed under MIT/X11 license.
797
798 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
799
800         * mini.c, driver.c: don't include the cil-coff.h header.
801
802 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
803
804         * mini.c: flag places that needs fixes fo soft-float support.
805
806 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
807
808         * mini.h, inssel-float.brg: fix soft-float constant loads on big
809         endian systems (partially from Dean Jenkins, bug #81924).
810
811 2007-08-28  Mark Probst  <mark.probst@gmail.com>
812
813         * mini.c (check_linkdemand): Remove embedded reference object in
814         call to LinkDemandSecurityException.
815         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
816         with an IntPtr instead of a reference object.
817
818 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
819
820         * mini.c (handle_initobj): Handle alignment properly.
821
822         * inssel.brg (mini_emit_memset): Ditto. 
823
824         * inssel.brg (mini_emit_memcpy): Ditto. 
825
826         * inssel-sparc.brg: Ditto.              
827
828         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
829
830 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
831
832         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
833         exceptions raised in unmanaged code. Fixes part of #82594.
834
835 2007-08-24  Mark Probst  <mark.probst@gmail.com>
836
837         * mini.c (mono_method_to_ir), declsec.c
838         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
839
840 2007-08-22  Martin Baulig  <martin@ximian.com>
841
842         * debug-mini.h
843         (MonoDebuggerThreadInfo): New typedef.
844         (mono_debugger_thread_table): New global variable.
845         (mono_debugger_thread_created): New public function.
846         (mono_debugger_thread_cleanup): New public function.
847
848         * debug-debugger.h
849         (MonoDebuggerInfo):
850         - removed `get_current_thread' and `lookup_assembly'.
851         - removed `data_table'.
852         - added `thread_table'.
853
854         * mini.c
855         (mono_thread_start_cb): Call mono_debugger_thread_created().
856         (mono_thread_attach_cb): Likewise.
857         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
858         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
859         initial domain.
860
861         * driver.c (mono_main): Move mono_debug_init() up, before calling
862         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
863
864 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
865
866         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
867         together when passing several arguments of type double (gives a small
868         speedup and saves a few bytes of generated code).
869
870 2007-08-20  Jb Evain  <jbevain@novell.com>
871
872         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
873
874 2007-08-20  Jb Evain  <jbevain@novell.com>
875
876         * mini.c (mono_method_to_ir): throw MethodAccessException
877         and FieldAccessException instead of InvalidProgramException.
878
879 2007-08-20  Mark Probst  <mark.probst@gmail.com>
880
881         * mini.c: CoreCLR security checks.
882
883         * mini.h: Removed MonoSecurityMode (moved to
884         metadata/security-manager.h) and mono_security_mode global var
885         (replaced by set/get functions in security-manager.h).
886
887         * driver.c: Added "core-clr-test" security mode for testing.  Used
888         set-function for setting security mode.
889
890 2007-08-17  Mark Probst  <mark.probst@gmail.com>
891
892         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
893         the new jit_info_table.
894
895         * driver.c: Test code for the new jit_info_table (enabled by the
896         define MONO_JIT_INFO_TABLE_TEST).
897
898 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
899
900         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
901         detection of call <REG> instruction sequence. Fixes build on freebsd.
902
903 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
904
905         * mini-exceptions.c: Fix a warning.
906
907 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
908
909         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
910         stack overflow handling code on amd64 too.
911
912         * mini-exceptions.c (mono_setup_altstack): Make this use 
913         mono_thread_get_stack_bounds ().
914
915         * mini-x86.h: Disable sigaltstack on solaris x86.
916
917 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
918
919         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
920
921 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
922
923         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
924
925 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
926
927         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
928
929         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
930
931 2007-08-03  Neale Ferguson <neale@sinenomine.net>
932
933         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
934         due to alignment.
935
936 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
937
938         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
939         to be emitted (bug #82281).
940
941 2007-08-01  Martin Baulig  <martin@ximian.com>
942
943         Merged the `debugger-dublin' branch.
944
945         * debug-debugger.h (MonoDebuggerInfo):
946         Removed the `old_*' compatibility entries.
947         Added `debugger_version' and `data_table'.
948         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
949         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
950
951         * debug-mini.c
952         (MiniDebugMethodBreakpointInfo): Add `address_list'.
953         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
954         instead of a `gconstpointer'.
955         (mono_debugger_insert_method_breakpoint): Return a
956         `MonoDebugMethodAddressList *'.
957
958 2007-06-28  Martin Baulig  <martin@ximian.com>
959
960         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
961
962 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
963
964         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
965         __builtin_frame_address () since it is broken on older gcc versions.
966
967 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
968
969         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
970         on the stack overflow handling and made the managed stack overflows
971         catchable in most cases using soft guard pages.
972         * exceptions-x86.c: added code to restore the protection in the soft
973         guard pages at the end of exception handling.
974
975 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
976
977         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
978
979 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
980
981         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
982         exception handling.
983
984 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
985
986         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
987         signal handling support until it has been ported to the new mechanism.
988         * mini.c: fixed stack overflow detection and use the new
989         architecture code  to handle signals on the altstack.
990
991 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
992
993         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
994         stack overflows on the alt stack.
995
996 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
997
998         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
999         stack overflows on the alt stack.
1000
1001 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
1002
1003         * exceptions-ppc.c: cleanup preparing for altstack support.
1004
1005 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
1006
1007         * exceptions-arm.c: cleanup preparing for altstack support.
1008
1009 2007-07-27  Mark Probst  <mark.probst@gmail.com>
1010
1011         * mini.c (print_jit_stats): Output hazard pointer stats.
1012
1013 2007-07-26  Mark Probst  <mark.probst@gmail.com>
1014
1015         * driver.c, mini.c: Replaced security mode flags with a single
1016         enum variable.
1017
1018 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
1019
1020         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
1021
1022 2007-07-25  Mark Probst  <mark.probst@gmail.com>
1023
1024         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
1025         (which doesn't do anything yet) for activating Core CLR
1026         (Silverlight) security.
1027
1028 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
1029
1030         * mini-codegen.c: work around a possible gcc bug on arm.
1031
1032 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
1033
1034         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
1035         message for platforms that don't support AOT compilation.
1036
1037 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
1038
1039         * mini.h, mini.c, driver.c: temporary smcs hack.
1040
1041 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
1042
1043         * mini-arm.h, mini-arm.c: arm EABI fixes.
1044
1045 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
1046
1047         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
1048         case.
1049
1050         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
1051         trampolines taking a method argument.
1052
1053         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
1054
1055         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
1056         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
1057
1058         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
1059         JIT compilation throws an exception. Fixes #82050.
1060
1061 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1062
1063         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
1064         with the MONO_EXCEPTION_ defines.
1065
1066 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
1067
1068         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
1069         #82117.
1070         
1071         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
1072         the cause of an assertion.
1073
1074 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
1075
1076         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
1077         removed.
1078
1079 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
1080
1081         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
1082         assert. Should fix #82103.
1083
1084 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
1085
1086         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
1087         here too. Fixes #82095.
1088
1089         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
1090         addresses.
1091
1092         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
1093
1094         * mini-amd64.h: Enable IMT for amd64.
1095         
1096         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
1097
1098 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
1099
1100         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
1101
1102 2007-07-12  Mark Probst  <mark.probst@gmail.com>
1103
1104         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
1105         as soon as check_linkdemand sets an exception_type.
1106
1107 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1108
1109         * mini-x86.c: fixed offsets for IMT call sequence.
1110         * mini-x86.h: enable IMT again.
1111
1112 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1113
1114         * trace.c (mono_trace_enter_method): Decode MonoType too.
1115
1116         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
1117
1118         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
1119
1120         * mini-amd64.c: Add preliminary IMT implementation.
1121         
1122 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
1123
1124         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
1125         understand the new IMT-base interface invocation (thanks to
1126         Daniel Nauck for the report and the remote debugging session).
1127
1128 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
1129
1130         * mini-x86.c: size and speed optimizations for the IMT bsearch.
1131
1132 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1133
1134         * Makefile.am (aotcheck): Make this actually use the AOTed code.
1135
1136 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
1137
1138         * mini-trampolines.c: implement AOT IMT support.
1139         * mini-x86.h: enable IMT support for wider testing.
1140
1141 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1142
1143         * inssel.brg (emit_imt_argument): Add aot support here.
1144
1145         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
1146
1147 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
1148
1149         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
1150         of the IMT implementation, partially from massi, with my
1151         implementation of the bsearch sequence. Disabled by default until
1152         the AOT code is implemented.
1153
1154 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1155
1156         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
1157
1158         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
1159
1160 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
1161
1162         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
1163         arch-independent IMT JIT code from Massimiliano
1164         Mantione (massi@ximian.com) with small cleanups from me.
1165
1166 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
1167
1168         * Makefile.am: fix svn invocation to get the svn revision to be
1169         independent of the local language (build fix).
1170
1171 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1172
1173         * mini.c (inline_method): Reset cfg->exception_type if the
1174         inlining is aborted.  Fixes: 82049.
1175
1176 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
1177
1178         * mini.c: remove assert from exception handling code when exception_ptr
1179         is not set.
1180
1181 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1182
1183         * mini.c (mono_codegen): Add an assert.
1184
1185         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
1186         enter and leave code.
1187         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
1188
1189 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
1190
1191         * mini-ppc.c: fixed memory corruption for localloc(0)
1192         (bug #81852).
1193
1194 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1195         
1196         * mini.c: Fix warnings.
1197
1198 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
1199
1200         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
1201         to emit better double->int conversions.
1202
1203 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
1204
1205         * mini.c: the provided Min/Max optimizations are valid for unisgned
1206         ints.
1207
1208 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
1209
1210         * 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
1211
1212 2007-06-28  Miguel de Icaza  <miguel@novell.com>
1213
1214         * mini.c (mono_running_on_valgrind): Add support for reporting the
1215         method and  its boundaries to valgrind.
1216
1217 2007-06-28  Martin Baulig  <martin@ximian.com>
1218
1219         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
1220
1221 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
1222
1223         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
1224
1225         * generic.2.cs: Add new test case.
1226
1227 2007-06-25  Martin Baulig  <martin@ximian.com>
1228
1229         Merged the `debugger-dublin' branch.
1230
1231         * debug-mini.c
1232         (mono_debugger_insert_method_breakpoint): New public method.
1233         (mono_debugger_remove_method_breakpoint): Likewise.
1234         (mono_debugger_check_breakpoints): New static method.
1235         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
1236
1237         * debug-debugger.h (MonoDebuggerInfo):
1238         Renamed (to keep backward compatibility in the vtable):
1239         `insert_breakpoint' -> `old_insert_breakpoint'.
1240         `remove_breakpoint' -> `old_remove_breakpoint'.
1241         `create_string' -> `old_create_string'.
1242         `lookup_class' -> `old_lookup_class'.
1243         `lookup_type' -> removed; changed into a dummy field.
1244         `lookup_assembly' -> `old_lookup_assembly'.
1245         Added (same functionality, but different signature):
1246         `create_string', `lookup_class', `lookup_assembly'
1247         Added new:
1248         `get_method_addr_or_bpt', `remove_method_breakpoint',
1249         `runtime_class_init'.
1250
1251         * debug-debugger.c: Merged the `debugger-dublin' branch.
1252
1253 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
1254
1255         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
1256         well.
1257         (peephole_pass): Likewise.
1258
1259 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
1260
1261         * driver.c: hopefully make setaffinity work also for ancient
1262         versions of linux.
1263
1264 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
1265
1266         * driver.c : win32 build fix.
1267
1268 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
1269
1270         * driver.c: check for the MONO_NO_SMP env var and bind to a single
1271         processor if it is set.
1272
1273 2007-06-21  Martin Baulig  <martin@ximian.com>
1274
1275         * debug-mini.h: New file.
1276
1277         * debug-mini.c
1278         (mono_debugger_insert_breakpoint_full): Moved here from
1279         ../metadata/mono-debug-debugger.c.
1280         (mono_debugger_remove_breakpoint): Likewise.
1281         (mono_debugger_breakpoint_callback): Likewise.
1282
1283 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1284
1285         * jit-icalls.c (mono_helper_compile_generic_method): Update to
1286         changes in MonoGenericClass.
1287
1288 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
1289
1290         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
1291
1292 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1293
1294         * jit-icalls.c (mono_helper_compile_generic_method): Update to
1295         removal of MonoGenericMethod.
1296
1297 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
1298
1299         * mini-exceptions.c: hooks for the exception events profiling API.
1300
1301 2007-06-14  Randolph Chung  <tausq@debian.org>
1302
1303         * Makefile.ma: Add hppa target.
1304         * mini-arch.h: Include mini-hppa.h
1305         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
1306         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
1307         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1308
1309 2007-06-14  Randolph Chung  <tausq@debian.org>
1310
1311         * inssel.brg: Add rules for "chained" compare-branch operations so that
1312         a single compare op can affect multiple branches.  Adjust cost for
1313         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
1314         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
1315         cost for some rules so that they can more easily be overridden by
1316         per-arch rules (with fixes from lupus).
1317         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1318
1319 2007-06-13  Randolph Chung  <tausq@debian.org>
1320
1321         * mini-ops.h: Reorder branch ops so that they match the order of the
1322         corresponding CEE_* ops.  The code expects them this way.
1323         Add new ops for HPPA target.
1324         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1325
1326 2007-06-13  Randolph Chung  <tausq@debian.org>
1327
1328         * mini-exceptions.c: Handle cases where the stack grows towards
1329         larger addresses.
1330         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
1331
1332 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
1333
1334         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
1335         counter.
1336         * driver.c: explain where a non-matching corlib is found.
1337
1338 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1339
1340         * mini.c (print_jit_stats): Output dynamic code allocation stats.
1341
1342 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
1343
1344         * mini-exceptions.c: Generate a method profile leave event during
1345         an exception to ensure that the profiler gets notified.
1346
1347 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
1348
1349         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
1350         branch.
1351
1352         * cpu-amd64.md: Add long_and/or/xor opcodes.
1353
1354 2007-06-06  Wade Berrier  <wberrier@novell.com>
1355
1356         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
1357         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
1358         length of instruction shr_imm (expected 8, got 10)
1359
1360 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
1361
1362         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
1363
1364 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1365
1366         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
1367         MonoInternalHashTable again (fixed bug in the internal hash table
1368         code).
1369
1370 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1371
1372         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
1373         Have to figure out what makes it crash the SWF regression.
1374
1375 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
1376
1377         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
1378
1379 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
1380
1381         * mini.c: optimize out the type check when storing null in a
1382         reference array.
1383
1384 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1385
1386         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
1387         MonoInternalHashTable.
1388
1389 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
1390
1391         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
1392         signed integer methods.
1393
1394 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
1395
1396         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
1397         permanently since the current approach doesn't work.
1398
1399 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
1400
1401         * inssel.brg (stmt): Only call delegate->invoke_impl if 
1402         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
1403
1404 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
1405
1406         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
1407         the sreg2==rdx case.
1408         
1409         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
1410         account if it contains a rex prefix.
1411         (peephole_pass): Handle OP_FMOVE as well.
1412
1413 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
1414
1415         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
1416         as it causes regressions.
1417
1418 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1419
1420         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
1421         static case as well.
1422
1423         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
1424
1425         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
1426         (mono_arch_get_this_arg_from_call): Ditto.
1427
1428         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
1429
1430         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
1431         invoke_impl field.
1432
1433         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
1434         (mono_arch_get_this_arg_from_call): Ditto.
1435
1436         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
1437         
1438         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
1439         try to create optimized invoke code and use that for further invocations. 
1440         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
1441
1442         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
1443
1444 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
1445
1446         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
1447         sealed classes or methods.
1448         *devirtualization.cs: tests for the new optimization
1449
1450 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
1451
1452         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
1453         by the update_volatile () function.
1454
1455 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
1456
1457         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
1458         require it.
1459
1460         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
1461
1462 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1463
1464         * mini.c: Add configure checks for header files.
1465         * mini-x86.c: Add configure checks for header files.
1466         * trace.c: Add configure checks for header files.
1467         * aot-runtime.c: Add configure checks for header files.
1468         * aot-compiler.c: Add configure checks for header files.
1469         * driver.c: Add configure checks for header files.
1470         * mini-codegen.c: Add configure checks for header files.
1471         
1472         Code is contributed under MIT/X11 license.
1473
1474 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1475
1476         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
1477         icompare_imm -128 + op_iclt. Fixes #81703.
1478
1479 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
1480
1481         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
1482
1483 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1484
1485         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
1486         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
1487         so that all isinst checks now use "interface_bitmap".
1488
1489 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
1490
1491         * cpu-amd64.md (jmp): Fix a warning.
1492
1493         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
1494
1495         * basic.cs: Add new regression test.
1496
1497         * basic.cs: Remove test which is now in basic-long.cs.
1498
1499         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
1500
1501         * basic-long.cs: Add new test.
1502         
1503 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
1504
1505         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
1506
1507 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1508
1509         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
1510
1511         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
1512         places.
1513         
1514         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
1515         throwing code a bit.
1516
1517         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
1518         the exception throwing code a bit.
1519
1520         * mini-x86.c (get_call_info): Allocate result from a mempool.
1521
1522 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
1523
1524         * aot-compiler.c (find_typespec_for_class): Fix the assert.
1525
1526         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
1527
1528         * mini.h (MonoCompile): Add 'token_info_hash' field.
1529
1530         * mini.c: Save token->method associations during compilation so the AOT 
1531         compiler can use it.
1532         
1533         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
1534         which reference generic classes and methods.
1535
1536 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
1537
1538         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
1539
1540         * aot-compiler.c (compile_method): Fix a typo in a comment.
1541
1542         * aot-runtime.c (decode_cached_class_info): Skip generic types.
1543
1544         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
1545         everything generic.
1546
1547         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
1548
1549 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
1550
1551         * mini.h (MonoCompile): Add 'args' field.
1552
1553         * mini.c (mono_compile_create_vars): Store variables representing the arguments
1554         into cfg->args.
1555
1556         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
1557
1558 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
1559
1560         * mini.c (mono_compile_get_interface_var): Remove this unused function.
1561
1562         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
1563
1564         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
1565         opcodes for some opcodes.
1566
1567         * mini.h *.brg *.c: Use the new opcodes.
1568
1569 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1570
1571         * mini.h: Bumped aot revision.
1572
1573         * inssel.brg: modified code generation of type checks for interfaces
1574         to use the new "MonoClass.interface_bitmap" instead of the old
1575         "MonoClass.interface_offsets".
1576
1577 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1578
1579         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
1580
1581 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
1582
1583         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
1584         64 bit platforms.
1585
1586 2007-04-27  Neale Ferguson <neale@sinenomine.net>
1587
1588         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
1589
1590 2007-04-27  Wade Berrier  <wberrier@novell.com>
1591
1592         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
1593         mini.h) to fix build.
1594
1595 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1596
1597         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
1598         
1599         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
1600         causes the corlib unit tests to fail.
1601
1602 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1603
1604         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
1605
1606         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
1607
1608         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
1609         opcodes to the comparison relations.
1610
1611         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
1612         opcodes to their types.
1613         
1614         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
1615
1616         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
1617         it in cfg->arch.cinfo.
1618
1619         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
1620
1621         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
1622         cfg->cil_offset_to_bb.
1623
1624 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1625
1626         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
1627         created becase of initlocals.
1628
1629 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
1630
1631         * mini-alpha.c cpu-alpha.md: More alpha port work from 
1632         Sergey Tikhonov <tsv@solvo.ru>.
1633
1634 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
1635
1636         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
1637
1638 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
1639
1640         * cpu-s390.md (break): Correct the length of break instruction.
1641
1642 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
1643
1644         * mini.c: fix a couple of soft-float issues and comments.
1645
1646 2007-04-15  Miguel de Icaza  <miguel@novell.com>
1647
1648         * trace.c (is_filenamechar): - is also a filename char.
1649
1650 2007-04-15  Neale Ferguson <neale@sinenomine.net>
1651
1652         * mini-s390.c: Correct checking for enum type in return value processing.
1653
1654 2007-04-14  Raja R Harinath  <rharinath@novell.com>
1655
1656         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
1657         (version.h): Makefile is in the build directory.
1658
1659 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
1660
1661         * mini-amd64.h: fix for assertion failure on Solaris/amd64
1662
1663 2007-04-11  Martin Baulig  <martin@ximian.com>
1664
1665         * mini.c (can_access_member): Fix handling of generic classes;
1666         fixes #81259.
1667
1668 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
1669
1670         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
1671
1672 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
1673
1674         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
1675
1676 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1677
1678         * mini-codegen.c: make sure the right spill amount is
1679         used for fp or integer registers (fixes the float_sub_spill() on ppc).
1680
1681 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
1682
1683         * mini-ppc.c: fixes for the fp_branch_nan test.
1684
1685 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
1686
1687         * basic.cs: Comment out new test which still fails on ia64.
1688
1689 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1690
1691         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
1692
1693 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1694
1695         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
1696
1697 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
1698
1699         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
1700         on 64 bit machines. Fixes part of #80738.
1701
1702         * basic.cs: Add regression test.
1703
1704 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
1705
1706         * inssel.brg basic.cs: Revert previous change to fix build.
1707
1708         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
1709         platforms.
1710         
1711         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
1712
1713         * basic.cs: Add new regression test.
1714
1715 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
1716
1717         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
1718         many arguments.
1719
1720 2007-03-16  Neale Ferguson <neale@sinenomine.net>
1721
1722         * cpu-s390x.md: Correct length of break instruction.
1723
1724 2007-03-16  Neale Ferguson <neale@sinenomine.net>
1725
1726         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
1727         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
1728
1729 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
1730
1731         * *.c: Begin WIN64 port.
1732         * mini.c:  Use correct register in profiler.
1733         * mini-amd64.c: No inline assembly on Win64.
1734         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
1735         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
1736         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
1737         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
1738         mono_arch_ip_from_context for Win64.
1739         
1740         Contributed under MIT/X11 license.
1741
1742 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
1743
1744         * exceptions-amd64.c (seh_handler): Ditto.
1745
1746         * exceptions-x86.c (seh_handler): Fix a memory leak.
1747
1748 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
1749
1750         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
1751         mini-s390x.c: fixed peephole optimizations to deal
1752         correctly with 1 and 2 byte reload avoidance.
1753
1754 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1755
1756         * cpu-s390.md, cpu-s390x.md: update localloc length.
1757
1758 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1759
1760         * cpu-g4.md: added missing descriptions.
1761
1762 2007-03-14  Miguel de Icaza  <miguel@novell.com>
1763
1764         *  Makefile.am: Add support so the tail tests are not executed on
1765         PowerPC as that is a known limitation of the PowerPC port.
1766
1767 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1768
1769         * runmdesc.bat:  Move to msvc directory.
1770         
1771 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1772
1773         * runmdesc.bat:  Run executable that was produced by the current
1774         target and sent via an argument.
1775         
1776 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
1777
1778         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
1779         #81102.
1780
1781         * generics.2.cs: Add regression test.
1782
1783 2007-03-09  Wade berrier  <wberrier@novell.com>
1784
1785         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
1786
1787 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
1788
1789         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
1790         AOT code depends on this.
1791
1792 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
1793
1794         * mini.c: more precise tracking of types in the eval stack
1795         (part of fix for bug #81044).
1796
1797 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
1798
1799         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
1800
1801         * aot-compiler.c (encode_patch): Remove an obsolete comment.
1802
1803 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1804
1805         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
1806
1807         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
1808
1809 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
1810
1811         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
1812         a pointer on 64 bit systems. Fixes #80190.
1813
1814         * iltests.il: Add new regression test.
1815
1816 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1817
1818         * mini.c: inline a constant for Environment.IsRunningOnWindows.
1819
1820 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
1821
1822         * trace.c: Remove an erroneous alignemnt check when tracing.
1823           Fixes --trace on OSX86.
1824
1825 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
1826
1827         * mini-$(arch).h: initialize SP in context for all the archs.
1828
1829 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
1830
1831         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
1832         regressions in the thread tests.
1833
1834 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
1835
1836         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
1837         - fixed implementation of LOCALLOC opcode
1838         - implemented non-un compare for floats
1839         - code cleanup
1840         - implementation of FDIV and CKFINITE opcodes
1841         - fixes for latest mono updates
1842         - additional arch opcodes
1843
1844 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1845
1846         * Makefile.am: simplify and merge rules for cross-compilation.
1847
1848 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
1849
1850         * local-propagation.c: Actually *apply* the fix for bug 80591...
1851
1852 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1853
1854         * mini-exceptions.c: backuot part of the last change
1855         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
1856
1857 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
1858         * inssel.brg: Fix bug 59286.
1859
1860
1861 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
1862
1863         * mini-exceptions.c: patch from Zoltan to correctly check for
1864         stack boundaries (using the stack register, not the frame register),
1865         fixes bugs #80724, #79717.
1866
1867 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
1868
1869         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
1870         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
1871
1872         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
1873         presence of frame pointer elimination.
1874
1875 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
1876         
1877         * mini-x86.h: NetBSD UCONTEX_REG defines.
1878
1879 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
1880
1881         * inssel-amd64.brg: Fix amd64 build.
1882
1883 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
1884
1885         * mini.h: remove extern to workaround what looks likes gcc bug 26905
1886         on amd64.
1887
1888 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
1889
1890         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
1891         ends.
1892
1893         * mini-<ARCH>.c: Use mono_is_regsize_var ().
1894
1895 2007-01-30 Mark Mason <mason@broadcom.com>
1896
1897            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
1898            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
1899            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
1900            beginning support for CEE_JMP [not quite working yet]
1901            * tramp-mips.c: LMF handling now works
1902         
1903 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
1904
1905         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
1906
1907         * mini.h (NULLIFY_INS): New macro.
1908
1909 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
1910
1911         * mini.c: statistical profiler fix for windows, patch
1912         from Tor Lillqvist (tml@novell.com).
1913
1914 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
1915         * local-propagation.c: Fix bug 80591.
1916
1917 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
1918
1919         * Makefile.am: put back the --export-dynamic option as with
1920         the previous gmodule flags (thanks to Robert Jordan).
1921
1922 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
1923
1924         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
1925
1926         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
1927         simplify and speed up the local register allocator. Also rename some fields
1928         like iassign->vassign.
1929         
1930         * regalloc.c: Remove some functions which are no longer used since their
1931         inlined version is in mini-codegen.c.
1932         
1933         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
1934
1935         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
1936
1937 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
1938
1939         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
1940         narrowing. Fixes #80622.
1941
1942         * iltests.il: Add new regresssion test. 
1943
1944 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1945
1946         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
1947         debug-debugger.c, debug-debugger.h: warning fixes.
1948         * driver.c: updated copyright year and made it fit in one line.
1949
1950 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
1951
1952         * aot-runtime.c: updated to use mono-dl instead of gmodule.
1953
1954 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
1955
1956         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
1957
1958         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
1959
1960         * iltests.il: Add new test for bug #80507.
1961
1962 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1963
1964         * mini-arm.h: use soft-float also on vfp for now.
1965
1966 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1967
1968         * mini.c: fix some more soft-float issues.
1969
1970 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1971
1972         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
1973
1974 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
1975         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
1976         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
1977         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
1978
1979 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
1980
1981         * mini-arm.c: typo fix.
1982
1983 2007-01-23  Neale Ferguson <neale@sinenomine.net>
1984
1985         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
1986
1987 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
1988
1989         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
1990         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
1991
1992         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
1993
1994         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
1995
1996         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
1997         
1998         * inssel.brg: Fix a warning.
1999
2000         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
2001
2002         * abcremoval.c ssa.c ssapre.c: Update after this change.
2003         
2004         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
2005
2006         * dominators.c (df_set): Use mono_bitset_union_fast.    
2007
2008 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
2009
2010         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
2011         mini-codegen.c: reduce relocations and memory usage for the cpu
2012         description.
2013
2014 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
2015
2016         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
2017
2018         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
2019         to reduce their size.
2020
2021 2007-01-19 Mark Mason <mason@broadcom.com>
2022
2023         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
2024         * mini-mips.c: more configuration macros, support long conditional branches, additional
2025         asserts, fix epilog instrumentation.
2026         * mini-mips.h: use standard stack walk
2027         * cpu-mips.md: increase size of div, rem and conditional branches
2028         
2029 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
2030
2031         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
2032         to cpu spec data.
2033
2034 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
2035
2036         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
2037         (compile_method): Ditto.
2038
2039         * aot-runtime.c (decode_klass_info): Ditto.
2040
2041         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
2042         needed by the code generated by inssel.brg. Also fix a warning.
2043
2044 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
2045
2046         * mini.c: deal with enums that become genericinsts by
2047         being nested in a generic class (bug #79956).
2048
2049 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
2050
2051         * mini.c: match the generic definition to check for
2052         private access with generic types (bug #78431).
2053
2054 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
2055
2056         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
2057         to make life easier for people cross-compiling that insist on not
2058         using scratchbox.
2059
2060 2007-01-17 Mark Mason <mason@broadcom.com>
2061
2062         * inssel-long.brg: patch to deal with mips missing flags
2063         * inssel-long32-mips.brg: implement overflow checks
2064         * insset-mips.brg: implement overflow checks
2065         * mini-mips.h: implement conditional exception handling
2066         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
2067           Remove unused code, minor cleanups.
2068         * exceptions-mips.c: minor cleanups
2069         * mini-ops.h: add mips conditional exception ops
2070         * cpu-mips.md: add mips conditional exception ops
2071
2072         
2073 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
2074
2075         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
2076         to deal with mips missing of flags.
2077
2078 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
2079
2080         * exceptions-ppc.c: execute fault handlers.
2081
2082 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
2083
2084         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
2085
2086 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2087
2088         * mini.c: handle also floating point values in initialize_array.
2089
2090 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
2091
2092         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
2093         array initialization and make it conditional on the intrins option.
2094
2095 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
2096
2097         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
2098         relocations and put the patch info names close to the enum definition.
2099
2100 2007-01-15 Mark Mason <mason@broadcom.com>
2101
2102         * basic.cs, exceptions.cs: break up large tests to increase debugability.
2103
2104 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
2105
2106         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
2107
2108 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2109
2110         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
2111
2112 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
2113
2114         * Makefile.am: distribute the mips sources.
2115
2116 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
2117
2118         * mini-codegen.h: handle bug #80489 here, by excluding ecx
2119         directly.
2120
2121 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
2122
2123         * cpu-x86.md: back out for now as this triggers other regressions.
2124
2125 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2126
2127         * cpu-x86.md: force src1 and dest regpair for long shift instructions
2128         to eax:edx, so ecx can't get allocated to them (bug #80489).
2129
2130 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
2131
2132         * mini.c, mini-exceptions.c: enabled running fault handlers
2133         (bug #80469).
2134
2135 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2136
2137         * driver.c: If nothing fail, do not use the string "failed",
2138         because it makes it very annoying to view test result logs on the
2139         web. 
2140
2141 2006-12-30  Miguel de Icaza  <miguel@novell.com>
2142
2143         * debug-debugger.c (mono_debugger_main): Rename "main" to
2144         "main_method" to prevent a warning.
2145
2146         Remove a warning for unused field.
2147
2148 2006-12-28  Martin Baulig  <martin@ximian.com>
2149
2150         * debug-debugger.c
2151         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
2152
2153 2006-12-22  Martin Baulig  <martin@ximian.com>
2154
2155         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
2156         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
2157         seperate `.mdb_debug_info' section, so we can access it from the
2158         debugger even if the binary is stripped.
2159
2160         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
2161         from the `.mdb_debug_info' here to prevent the linker from
2162         removing that section.
2163
2164         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
2165         mdb-debug-info64.s.
2166
2167 2006-12-19  Robert Jordan  <robertj@gmx.net>
2168
2169         * mini-x86: enable the code to return small structures in
2170         registers for FreeBSD as well. Fixes bug #80278.
2171         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
2172
2173 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2174
2175         * mini-x86.c: align the stack when calling the profiler
2176         function instrumenting the prolog (on OSX).
2177
2178 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2179
2180         * mini.c: emit a break opcode where Debugger.Break () is called.
2181
2182 2006-12-13  Miguel de Icaza  <miguel@novell.com>
2183
2184         * mini.c (mono_method_to_ir): Provide useful information on this
2185         assert, to prevent others from debugging like I did.
2186
2187 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2188
2189         * mini.c: enable code which was incorrectly commented
2190         (bug #80235).
2191
2192 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
2193
2194         * mini-x86.c: enable on OSX, too, the code to return small
2195         structures in registers.
2196
2197 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
2198
2199         * mini-x86.c: remove the use of the dynamic code manager here, too.
2200
2201 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2202
2203         * mini.h, debug-debugger.c, tramp-*.c: fixed 
2204         mono_debugger_create_notification_function() to use
2205         mono_global_codeman_reserve () instead of a dynamic code manager.
2206
2207 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2208
2209         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
2210         ves_array_element_address() jit icall and use a generated
2211         managed method instead (which is about 4 times faster for a rank 3
2212         array access).
2213
2214 2006-11-29  Mark Mason  <mason@broadcom.com>
2215
2216         * basic-calls.cs: additional tests for passing
2217         structures as function arguments.
2218
2219 2006-11-29  Mark Mason  <mason@broadcom.com>
2220
2221         * mini-mips.h: disable custom exception handling
2222         * mini-mips.c: throw/rethrow should use jalr to call
2223         exception stubs.  Fixed bug with passing structures
2224         by value. More support for tracing floating point
2225         functions.
2226
2227 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2228
2229         * mini.c: fixed typo in the soft-float ldind.r4 handling
2230         (bug #80086).
2231
2232 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2233
2234         * mini.c, mini.h, driver.c: added --runtime command line
2235         option to select a different runtime than the autodetected one.
2236         * jit.h: added API for embedders to initialize with a specific
2237         runtime version.
2238
2239 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
2240
2241         * mini.c: handle also boxing of r4 values (bug #80024).
2242
2243 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2244
2245         * mini-ppc.c: force indirect calls until we reserve
2246         enough address space for all the generated code.
2247
2248 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
2249
2250         * exceptions-arm.c: workaround bugs in the libc definition
2251         of struct ucontext.
2252
2253 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2254
2255         * inssel.brg: fixes from me and Mark Mason.
2256
2257 2006-11-23  Dick Porter  <dick@ximian.com>
2258
2259         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
2260         semaphore display now we've fixed the initial value
2261
2262 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2263
2264         * inssel.brg: partially revert the last change to fix the build.
2265
2266 2006-11-21  Mark Mason  <mason@broadcom.com>
2267
2268         * inssel.brg: Add and use compare-and-branch macros to support
2269         architectures that do not have condition code registers (ie. MIPS).
2270         * *-mips.{c,brg,md}: Fix copyright statements
2271
2272 2006-11-20  Mark Mason  <mason@broadcom.com>
2273
2274         * Makefile.am: remove mini-codegen.c from list of MIPS sources
2275         * mini.c: Allow GET_CONTEXT to be specified by the arch port
2276         * mini.h: Added declaration for mono_print_ins()
2277         * mini-codegen.c: added ins_spec initializer for MIPS
2278         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
2279         vreg to be virtual and hreg to be non-virtual.
2280         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
2281         is not yet working/implemented correctly.
2282         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
2283         non-static, fixup calls to print_ins() from other parts in the file.
2284
2285 2006-11-20  Mark Mason  <mason@broadcom.com>
2286
2287         * basic-calls.cs: added tests for passing structures as arguments
2288         to calls.
2289
2290 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2291
2292         * inssel-long32.brg: optimize signed division by power of two.
2293
2294 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2295
2296         * mini-arm.c: added support for interworking with thumb code
2297         (mono must be still be built using the ARM instruction encoding).
2298
2299 2006-11-19  Miguel de Icaza  <miguel@novell.com>
2300
2301         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
2302         verifier has different rules for it.   Fixes a few verifier issues
2303         in the test suite.
2304
2305         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
2306         at the end, so people know what happened.
2307
2308 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2309
2310         * brach-opts.c: in optimize_exception_target() make sure we
2311         are in a catch clause (fixes bug #79871).
2312
2313 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2314
2315         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
2316         more soft-float support fixes.
2317
2318 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
2319
2320         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
2321         that are passed half on the stack and half in registers.
2322
2323 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2324
2325         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
2326         more mips integration work from Mark E Mason 
2327         <mark.e.mason@broadcom.com>.
2328
2329 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2330
2331         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
2332         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
2333         tramp-mips.c: added sources for the mips port, not
2334         integrated in the build yet. Contributed by
2335         Mark E Mason <mark.e.mason@broadcom.com>.
2336
2337 2006-11-14  Neale Ferguson <neale@sinenomine.net>
2338
2339         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
2340
2341 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2342
2343         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
2344         put the soft-float rules in its own file since it seems to
2345         break s390 compilation.
2346
2347 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2348
2349         * mini-arm.c: fixed wrnings.
2350
2351 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
2352
2353         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
2354         inssel-arm.brg: ARM support for soft-float.
2355
2356 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
2357
2358         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
2359         loads and stores of 32 bit fp values.
2360
2361 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
2362
2363         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
2364
2365         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
2366         works. Fixes #79852 and #79463.
2367
2368 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2369
2370         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
2371         more soft-float support WIP and fixes.
2372
2373 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
2374
2375         * mini-arm.c: some VFP updates.
2376
2377 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2378
2379         * mini-exceptions.c: 0 is a valid local var offset in some
2380         architectures, don't assert (bug #78508).
2381
2382 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
2383
2384         * exceptions-arm.c: fixed off by one error in stack walk code.
2385
2386 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2387
2388         * mini.h, mini.c: more precise tracking of type load exceptions.
2389
2390 2006-11-03  Robert Jordan  <robertj@gmx.net>
2391
2392         * Makefile.am: [WIN32] Add monow.exe target.
2393         * driver.c: [WIN32] Don't detach the console when debugging.
2394         Fixes bug #79797.
2395         
2396 2006-10-30  Miguel de Icaza  <miguel@novell.com>
2397
2398         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
2399
2400 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2401
2402         * aot-compiler.c (emit_method_info): Add a case missed earlier.
2403
2404         * driver.c (mini_regression): Fix --regression with AOT.
2405
2406         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
2407
2408 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
2409
2410         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
2411
2412         * mini-sparc.h: Don't use sigaction on sparc/linux.
2413
2414         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
2415
2416         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
2417
2418         * mini-exceptions.c: Add proper include files for getpid ().
2419
2420 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
2421
2422         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
2423         address instead of a MonoJitInfo* to avoid decoding the exception info for the
2424         method.
2425
2426         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
2427         name cache to reduce its size.
2428
2429         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
2430
2431 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2432
2433         * mini-x86.c: Save/restore the current LMF structure more efficiently using
2434         the mono_lmf TLS variable.
2435
2436         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
2437         trampoline lmf frames.  
2438
2439         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
2440
2441 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
2442
2443         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
2444         the mono_lmf TLS variable.
2445
2446         * mini-exceptions.c: Access the LMF structure through accessors.
2447
2448         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
2449         variable instead of in jit_tls->lmf.
2450
2451         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
2452         
2453         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
2454         trampoline lmf frames.
2455
2456         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
2457
2458 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2459
2460        * mini.c trace.c mini-x86.c: Revert these too.
2461         
2462        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
2463        signature change.
2464
2465 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
2466
2467         * genmdesc.c: removed now dead code.
2468
2469 2006-10-09  Robert Jordan <robertj@gmx.net>
2470
2471         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
2472
2473 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2474
2475         * mini.h: do not leave gaps in the opcode values.
2476
2477 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
2478
2479         * jit-icalls.h: flag functions as internal here, too.
2480
2481 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
2482
2483         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
2484         functions with the internal attribute.
2485
2486 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
2487
2488         * aot-compiler.c: fclose the file descriptor in the profile read loop.
2489
2490 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2491
2492         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
2493         for soft-float.
2494
2495 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2496
2497         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
2498         tail calls as on other platforms.
2499
2500         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
2501
2502         * iltests.il: Add a few tailcall tests.
2503
2504 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2505
2506         * driver.c: fix loop for old compilers (bug #79521).
2507
2508 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2509
2510         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
2511
2512         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
2513
2514         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
2515         metadata without any code.
2516
2517         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
2518         more precise debugging information using gdb.
2519
2520 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2521
2522         * inssel-ia64.brg: Make the helper methods static.
2523
2524 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
2525
2526         * inssel-x86.brg: make the helper methods static.
2527
2528 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
2529
2530         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
2531
2532 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
2533
2534         * mini.c: updates for monoburg changes.
2535         * inssel.brg: make a few helper functions static as they should.
2536
2537 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2538
2539         * Makefile.am: Move mini-codegen.c to common_sources.
2540
2541 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2542
2543         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
2544         instructions.
2545         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
2546         mini-ppc.h: port to use the common local register allocator.
2547
2548 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2549
2550         * mini.h: Remove the comment too then.
2551
2552 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
2553
2554         * mini.h: put back backend.data which is to be used shortly and
2555         doesn't increase the size of MonoInst. If any 64 bit arch aligned
2556         pointers on 4 byte boundaries it'd have much bigger issues running
2557         and you can ifdef it out anyway.
2558
2559 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2560
2561         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
2562         MonoInst size by 4 bytes on 64 bit machines.
2563
2564 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2565
2566         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
2567         replacement with more meaningful field names. Arch maintainers, please
2568         check the assigned names are good enough for your arch.
2569
2570 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2571
2572         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
2573         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
2574
2575 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2576
2577         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
2578         relocations and memory requirements, put the optimization flags
2579         definitions in their own file.
2580
2581 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
2582
2583         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
2584
2585         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
2586
2587 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
2588
2589         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
2590
2591 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
2592
2593         * inssel.brg: use the correct function to get the size of an item
2594         in an array, given an element class.
2595         * aot-compiler.c: do not access class->class_size directly.
2596
2597 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2598
2599         * mini.h, debug-mini.c: added a debugging function to print
2600         info about local variables and arguments in a jitted method.
2601
2602 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
2603
2604         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
2605
2606         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
2607
2608 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
2609
2610         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
2611         inner and outer loops when passing vtypes.
2612
2613 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
2614
2615         * mini-ppc.c: take into account the cpu errata for cache flushing
2616         which caused some random errors (bug #79381).
2617
2618 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
2619
2620         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
2621         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
2622
2623 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2624
2625         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
2626         loaded.
2627
2628         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
2629         freebsd ports tree.
2630
2631         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
2632         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
2633
2634         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
2635         displacement.
2636
2637 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
2638
2639         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
2640
2641 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
2642
2643         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
2644         macro does not have to be changed during debugging.
2645
2646         * 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>.
2647
2648         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
2649
2650         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
2651         
2652         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
2653         MONO_ARCH_NO_EMULATE_MUL is defined.
2654
2655         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
2656
2657         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
2658
2659         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
2660
2661         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
2662         
2663 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2664
2665         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
2666         stuff to mini-exceptions.c where it is used.
2667
2668         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
2669         setup code, the real one is in mini-exceptions.c.
2670
2671         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
2672         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
2673         some changes from the freebsd ports tree.
2674
2675         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
2676         constants.
2677         
2678         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
2679
2680 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
2681
2682         * mini.c: on Linux, check for /proc to be mounted
2683         (bug# 79351, novell bug#201204).
2684
2685 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2686
2687         * mini.c: handle cases where pthread_attr_getstack() behaves
2688         incorrectly (bug #78096).
2689
2690 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
2691
2692         * mini-arm.c: support larger stack frames (bug #79272).
2693
2694 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2695
2696         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
2697
2698         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
2699         tokens.
2700
2701         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
2702         mono_class_from_name () to find a class from its name.
2703
2704         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
2705
2706 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
2707
2708         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
2709
2710 2006-09-05  Kornél Pál  <kornelpal@gmail.com>
2711
2712         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
2713
2714 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2715
2716         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
2717         callinfo->trampoline.
2718
2719         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
2720         fixes #79271.
2721         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
2722         future.
2723
2724 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2725
2726         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
2727
2728 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
2729
2730         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
2731         stats.method_trampolines, it is already done by the generic trampoline code.
2732
2733         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
2734         
2735 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2736
2737         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
2738
2739         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
2740
2741         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
2742
2743         * mini.c (print_jit_stats): Print mscorlib mempool size too.
2744         
2745         * mini.c (print_jit_stats): Print new stats.
2746
2747         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
2748
2749 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2750
2751         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
2752         Address on two dimensional arrays. Fixes #78729.
2753
2754         * mini.h (MonoCompile): Add a 'skip_visibility' field.
2755
2756         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
2757         a method.
2758
2759         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
2760
2761         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
2762         #79130.
2763         
2764         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
2765         a race condition.
2766         (mini_get_ldelema_ins): Ditto.
2767
2768 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
2769
2770         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
2771         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
2772         Fixes #79213.
2773
2774 2006-08-29 Neale Ferguson <neale@sinenomine.net>
2775
2776         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
2777         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
2778
2779         * exceptions-s390x.c: Cosmetic change.
2780
2781         * tramp-s390.c: Fix warning.
2782
2783         * cpu-s390.md: Correct length of mul_imm.
2784
2785 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2786
2787         * aot-compiler.c: added binary writer with ELF backend
2788         implementation (only on Linux/x86 for now).
2789
2790 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
2791
2792         * Makefile.am: Don't run net 2.0 AOT tests.
2793
2794         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
2795         (mono_compile_assembly): Skip net 2.0 assemblies as well.
2796
2797         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
2798
2799 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2800
2801         * aot-compiler.c: simplified and refactored the asm-writing code
2802         to allow different backends.
2803
2804 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
2805
2806         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
2807
2808         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
2809         little. Share patches of type TYPE_FROM_HANDLE as well.
2810
2811         * mini.c (mono_patch_info_equal): New helper function.
2812         (mono_patch_info_hash): Ditto.
2813
2814         * aot-compiler.c (emit_method_code): Fix s390 build.
2815
2816         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
2817         is not handled because it is stored as a flag and not as a type ctor. Fixes
2818         #79016.
2819
2820 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2821
2822         * aot-compiler.c: Fix computation of GOT slot statistics.
2823         
2824         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
2825         Also remove support for not PIC AOT.
2826
2827         * mini.h: Bump AOT file format version.
2828
2829         * objects.cs: Add a test for #78990.
2830
2831         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
2832         (peter.dettman@iinet.net.au). Fixes #79087.
2833
2834         * basic-long.cs: Add a test for the above.
2835
2836 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
2837
2838         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
2839         
2840         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
2841         code somewhat.
2842
2843 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
2844
2845         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
2846         exceptions.
2847
2848 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2849
2850         * mini.c: Don't verify COM proxy invoke calls
2851         
2852
2853 2006-08-10  Dick Porter  <dick@ximian.com>
2854
2855         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
2856         which process is holding semaphores locked.
2857
2858 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * mini-ia64.c mini-amd64.c: Fix #79027.
2861
2862         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
2863
2864         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
2865
2866         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
2867         implicit arguments in a vararg call. Fixes #79027.
2868
2869 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
2870
2871         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
2872         (mono_get_array_new_va_signature): Ditto.
2873
2874 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
2875
2876         * aot-runtime.c: Call init_plt lazily.
2877
2878         * inssel-long.brg: Fix unsigned long->int conversion.
2879
2880         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
2881
2882         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
2883         that most data is now in the .rss/.data section.
2884
2885 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
2886
2887         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
2888
2889         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
2890
2891         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
2892
2893         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
2894
2895         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
2896         virtual call. Fixes #79010.
2897
2898         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
2899         and use the result as the this argument in the real call.
2900
2901         * generics.2.cs: Add a new test for #79010.
2902         
2903 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * mini-x86.c: Fix a warning.
2906
2907         * aot-compiler.c: Add a bunch of statistics.
2908
2909         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
2910
2911 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
2912
2913         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
2914
2915 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2916
2917         * 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>.
2918
2919 2006-07-13  Miguel de Icaza  <miguel@novell.com>
2920
2921         * mini.c (mono_method_to_ir): Obtain the original method in the
2922         CIL stream and use this to perform validation.
2923
2924         Fixed: #78816
2925
2926 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
2927
2928         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
2929         (mono_arch_call_opcode): Ditto.
2930
2931         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
2932         #78826.
2933
2934         * mini.c (mono_patch_info_dup_mp): New helper function.
2935         
2936         * aot-compiler.c (compile_method): Fix some of the memory allocated during
2937         compilation. Fixes #78827.
2938
2939 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2940
2941         * declsec.c: Use original security informations for
2942           MONO_WRAPPER_MANAGED_TO_MANAGED.
2943
2944 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2945
2946         * mini.c: Allow Com Interop methods/classes and
2947         don't verify COM wrapper calls
2948         
2949
2950 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
2951
2952         * inssel-long32.brg: Fix long->i4 checked conversion.
2953
2954         * exceptions.cs: Add a test for the above.
2955
2956 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2957
2958         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
2959
2960         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
2961         leaks.
2962
2963         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
2964         #78775.
2965
2966 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
2967
2968         * mini.c: Fix solaris/x86 exception handling.
2969
2970         * Makefile.am: Get rid of $(ICU_LIBS).
2971
2972 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
2975         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
2976         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
2977
2978         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
2979
2980         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
2981         this function causes a SIGSEGV.
2982
2983 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
2984
2985         * mini.c: Remove unused solaris/x86 includes.
2986
2987 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2988
2989         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
2990
2991 2006-06-20  Jb Evain  <jbevain@gmail.com>
2992
2993         * cpu-g4.md: fix max length of start_handler instruction.
2994
2995 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
2996         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
2997
2998 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
2999         * ssa.c: Fixed bug 78653 for SSA based deadce.
3000         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
3001         MonoInst.flags, used in SSA based deadce.
3002         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
3003         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
3004
3005 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3006
3007         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
3008         it can end up using non executable memory on ppc64 systems
3009         running ppc32 userspace (fix from Johannes Berg).
3010
3011 2006-06-14  Dick Porter  <dick@ximian.com>
3012
3013         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
3014         4.1.1
3015
3016 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
3017         * mini.c: Made so that inline is locally disabled if it would
3018         trigger a .cctor, because too many apps depend on this behavior
3019         (which seems to be also the one of the MS CLR).
3020
3021 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
3022
3023         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
3024         No idea why this worked before.
3025
3026         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
3027         which branch to outer exception clauses since they could skip the
3028         inner finally clauses. Fixes #78633.
3029
3030         * exceptions.cs: Add a test for the above.
3031
3032         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
3033         Fixes #78629.
3034
3035         * iltests.il: Add a test for the above.
3036
3037 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
3038
3039         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
3040         after the end of a try bblock, to prevent asserts in mini_method_compile ().
3041
3042         * iltests.il: Add a test for the above.
3043
3044 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
3047         
3048         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
3049         methods as instrinsics.
3050
3051 2006-06-09  Wade Berrier <wberrier@novell.com>
3052
3053         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
3054         (simple-cee-ops.h ssapre-mini-ops.h)
3055
3056 2006-06-09  Neale Ferguson <neale@sinenomine.net>
3057
3058         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
3059         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
3060         instruction).
3061         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
3062         * cpu-s390x.md: Fix max. length values for a couple of instructions.
3063
3064 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3065
3066         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
3067
3068 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
3069
3070         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
3071         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
3072         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
3073         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
3074         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
3075         of opcodes, so that bug 78549 should not happen again.
3076         * ssapre.c: Updated to use the renamed files.
3077
3078 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3079
3080         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
3081         in OP_ATOMIC_EXCHANGE_I4.
3082
3083 2006-06-07  Wade Berrier <wberrier@novell.com>
3084
3085         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
3086         in mono_debugger_create_notification_function)
3087
3088 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
3089
3090         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
3091         
3092         * mini.c (type_from_stack_type): Disable some changes which do not
3093         seem to work.
3094
3095         * driver.c: Reenable opts.
3096
3097         * mini.h (MonoStackSlot): New structure to keep track of the verification state
3098         of the evaluation stack.
3099         
3100         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
3101         evaluation stack trace at entry to the bblock.
3102
3103         * mini.c (merge_stacks): New function to perform verification of stack merges.
3104         Turned off by default.
3105
3106         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
3107         STACK_MP.
3108         
3109 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
3110
3111         * local-propagation.c: Fixed bug 78549.
3112
3113 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
3114
3115         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
3116
3117 2006-06-02  Miguel de Icaza  <miguel@novell.com>
3118
3119         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
3120         tramp-arm.c, tramp-ia64.c
3121         (mono_debugger_create_notification_function): Update signature to
3122         new signature and use new protocol for creating the notification
3123         function.  
3124
3125         Should fix the build.
3126
3127 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
3128
3129         * exceptions-ppc.c (mono_jit_walk_stack)
3130         (ves_icall_get_frame_info): Fix the build
3131
3132 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3133
3134         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
3135
3136 2006-05-31  Raja R Harinath  <rharinath@novell.com>
3137
3138         * il2tests.2.il: New file for generics CIL tests.  Add test for
3139         #78019.
3140         * Makefile.am: Update.
3141
3142         Fix #78019
3143         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
3144         to nullable types.
3145
3146 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
3147
3148         * aliasing.c: Fixed bug 78311.
3149
3150 2006-05-29  Martin Baulig  <martin@ximian.com>
3151
3152         * mini-exceptions.c (mono_find_jit_info): When computing the
3153         native offset, check whether we're actually inside the method's
3154         code; call mono_debug_print_stack_frame() to format the frame.
3155         (ves_icall_System_Exception_get_trace): Call
3156         mono_debug_print_stack_frame() to format the stack frame.
3157         (ves_icall_get_trace): Update to the new debugging API.
3158         (mono_jit_walk_stack_from_ctx): Likewise.
3159         (ves_icall_get_frame_info): Likewise.
3160
3161         * mini.c (get_method_from_ip): Use the new debugging API.
3162         (mono_print_method_from_ip): Likewise.
3163
3164         * exceptions-ppc.c
3165         (mono_jit_walk_stack): Use the new debugging API.
3166         (ves_icall_get_frame_info): Likewise.   
3167
3168 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3169
3170         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
3171
3172 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
3173
3174         * mini.c: Added "limitator" to inline for debugging.
3175
3176 2006-05-24  Martin Baulig  <martin@ximian.com>
3177
3178         * debug-debugger.c (mono_debugger_init): Create a private,
3179         malloc()-based code manager for the notification function and
3180         intentionally leak it on exit.  This fixes the crash-on-exit race
3181         condition.
3182
3183         * tramp-amd64.c
3184         (mono_debugger_create_notification_function): Added
3185         `MonoCodeManager *' argument.
3186
3187         * tramp-x86.c
3188         (mono_debugger_create_notification_function): Added
3189         `MonoCodeManager *' argument.
3190
3191 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
3192
3193         * aliasing.c: Fixed 64 bit issue.
3194         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
3195         default since all known bugs are fixed (one more time!).
3196
3197 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3198
3199         * mini.c: write barrier support.
3200
3201 2006-05-23  Martin Baulig  <martin@ximian.com>
3202
3203         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
3204         check at the top of the file.
3205
3206 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3207
3208         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
3209         reverting changes without reason and without changelog entries.
3210
3211 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3212
3213         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
3214         to a few opcodes. Fixes #78439.
3215
3216         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
3217         consistency with other archs.
3218
3219         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
3220
3221 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3222
3223         * debug-debugger.c: fix the build.
3224
3225 2006-05-17  Martin Baulig  <martin@ximian.com>
3226
3227         * debug-debugger.c
3228         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
3229         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
3230         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
3231         (debugger_attach): Call GC_mono_debugger_add_all_threads().
3232
3233 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3234
3235         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
3236
3237 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3238
3239         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
3240         MONO_TYPE_GENERICINST.
3241         
3242         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
3243         MONO_TYPE_GENERICINST.
3244
3245 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3246
3247         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
3248         #78325.
3249
3250 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
3251
3252         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
3253         mempool.
3254         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
3255
3256 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3257
3258         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
3259         mono_trace_cleanup ().
3260
3261         * iltests.il: Fix problem with the newly added test.
3262
3263         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
3264         due to register constraints, free up the previous hreg. Fixes #78314.
3265
3266         * iltests.il: Add new test for #78314.  
3267
3268         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
3269         Interlocked.Add. Fixes #78312.
3270
3271         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
3272         
3273 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3274
3275         * inssel.brg (mini_emit_virtual_call): Fix a warning.
3276
3277 2006-05-05  Martin Baulig  <martin@ximian.com>
3278
3279         * debug-mini.c (mono_debug_open_block): New method.
3280
3281         * mini-amd64.c
3282         (mono_arch_output_basic_block): Call mono_debug_open_block() at
3283         the beginning of each basic block.
3284
3285         * mini-x86.c
3286         (mono_arch_output_basic_block): Call mono_debug_open_block() at
3287         the beginning of each basic block.
3288
3289 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
3290
3291         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
3292         default until I understand why they break the build on amd64.
3293
3294 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3295
3296         * mini.c (mini_cleanup): Call mono_cleanup ().
3297
3298         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
3299         errors.
3300
3301 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
3302
3303         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
3304         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
3305         default since all known bugs are fixed, and I cannot reproduce bug
3306         77944... I'm asking Matt Hargett to test again after this commit.
3307
3308 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
3309
3310         * mini-codegen.c: Fixed typo that thrashed inline.
3311
3312 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
3313
3314         * dominators.c (compute_dominators): Avoid using a worklist since
3315         it is not correct in some cases. Instead, iterate over all bblocks as
3316         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
3317
3318 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3319
3320         * mini.c (mono_jit_compile_method_inner): Use
3321         mono_prepare_exception_from_error that resets the value
3322         internally.
3323
3324 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3325
3326         * mini.c: Move the mini_loader_error_to_exception to metadata. 
3327         
3328 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
3329
3330         * aliasing.c: Fixed bug 78210.
3331
3332 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
3333
3334         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
3335         default until all their problems (or the ones they trigger) are fixed.
3336
3337 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
3338
3339         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
3340         
3341         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
3342         as loaded only after resolving patches since that could invoke the same method.
3343
3344         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
3345
3346         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
3347         functions.
3348
3349         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
3350         AOT loader.
3351
3352         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
3353         stack.
3354
3355         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
3356         made from AOT code through the PLT table.
3357
3358         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
3359         holding the plt offset when a call is made to the aot plt trampoline.
3360         
3361 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
3362
3363         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
3364         amd64 AOT support.
3365
3366         * Makefile.am (common_sources): Fix build breakage.
3367
3368         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
3369         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
3370         intra-assembly calls if possible.
3371         
3372         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
3373
3374         * mini-trampolines.c: Handle PLT entries.
3375
3376         * mini.c: Avoid creating a GOT var for calls.
3377
3378         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
3379         from mscorlib code.
3380
3381         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
3382         from mscorlib code.
3383
3384         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
3385         AOT code.       
3386
3387         * mini.h: Bump AOT file format version.
3388         
3389         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
3390         covers more cases.
3391
3392 2006-04-25  Martin Baulig  <martin@ximian.com>
3393
3394         * driver.c: Disable copyprop, consprop and inline when running
3395         inside the debugger.
3396
3397 2006-04-25  Martin Baulig  <martin@ximian.com>
3398
3399         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
3400         with `get_current_thread' and added `detach'.
3401         (MonoDebuggerMetadataInfo): Added `thread_size',
3402         `thread_tid_offset', `thread_stack_ptr_offset' and
3403         `thread_end_stack_offset'.
3404
3405 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
3406
3407         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
3408         aot-runtime.c.
3409
3410         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
3411         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
3412
3413         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
3414
3415         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
3416
3417         * aot.c: Add support for ADJUSTED_IID.  
3418
3419 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3420
3421         * aot.c (emit_method_order): Don't align method_order_end.
3422
3423         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
3424         the interface ID changes.
3425
3426 2006-04-21  Dick Porter  <dick@ximian.com>
3427
3428         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
3429         cleaning up a thread.  Fixes the new part of bug 77470.
3430
3431 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
3432
3433         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
3434         to managed wrapper.
3435                      
3436 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3437
3438         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
3439         
3440         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
3441         SIGSEGV. Fixes #78072.
3442
3443         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
3444         unregister our SIGABRT handler.
3445
3446 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
3447
3448         * mini.c: Disabled inline where it can alter the call stack in a
3449         way visible from managed code.
3450         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
3451         default.
3452
3453 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
3454
3455         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
3456         on other platforms. Fixes #78089.
3457
3458 2006-04-13  Martin Baulig  <martin@ximian.com>
3459
3460         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
3461         determine whether we're inside the debugger.
3462
3463         * debug-debugger.h
3464         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
3465
3466 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
3469         handler clauses. Fixes #78024.
3470
3471         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
3472         in the CALL_MEMBASE opcodes. Fixes #78088.
3473         (mono_arch_get_vcall_slot_addr): Ditto.
3474
3475 2006-04-10  Martin Baulig  <martin@ximian.com>
3476
3477         * debug-debugger.c: The thread handling code has now been moved
3478         into ../metadata/threads.c.
3479
3480 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3481
3482         * driver.c (mono_main): Fix --with-gc=none build.
3483
3484         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
3485         (mono_spillvar_offset_float): Ditto.
3486         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
3487         hreg, not when its !global, since on ia64, there is a third category: stacked
3488         registers.      
3489
3490 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
3491
3492         * mini.c: set MonoInst->klass for load field address and a few other
3493         places.
3494
3495 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3496
3497         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
3498
3499 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3500
3501         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
3502         the branch opt changes.
3503
3504 2006-04-06  Dick Porter  <dick@ximian.com>
3505
3506         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
3507         
3508         * wapihandles.c (mini_wapi_seminfo): 
3509         * driver.c (mono_main): Add semaphore info option
3510
3511 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3512
3513         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
3514         branch optimization changes. Fixes #78009.
3515
3516 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3517
3518         * mini.c: ignore accessibility of methods in managed->native wrappers.
3519
3520 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3521
3522         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
3523         
3524         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
3525
3526 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3527
3528         * mini.c: Modify the branch optimizations to preserve the invariant that
3529         the entries inside the in_bb and out_bb arrays are unique.
3530         (mono_unlink_bblock): Avoid creation of new arrays.
3531
3532 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
3533
3534         * mini.c (mono_unlink_bblock): Fix regression caused by previous
3535         change (#77992).
3536
3537 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
3538
3539         * mini.c (optimize_branches): Remove the "optimizations" in
3540         the cbranch1/cbranch2 -> branch cases which were causing several
3541         problems in the past. Fixes #77986.
3542
3543 2006-03-31  Chris Toshok  <toshok@ximian.com>
3544
3545         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
3546         default optimizations :(
3547
3548 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3549
3550         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
3551         branch.
3552
3553 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
3554
3555         * local-propagation.c: Added comments to structs and removed
3556         "Mono" prefixes from local tree mover types.
3557
3558 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
3559
3560         * Makefile.am (arch_sources): Define this for each architecture so 
3561         libmono_la_SOURCES is defined in one place.
3562
3563 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3564
3565         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
3566         from handles/.
3567
3568 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
3569
3570         * driver.c: print the GC name supplied by configure.
3571
3572 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
3573
3574         * local-propagation.c: Added tree mover, and moved here all the
3575         local propagation code from mini.c
3576         * mini.c: Added support for treeprop, and moved all the local
3577         propagation code to local-propagation.c
3578         * mini.h: Added support for treeprop
3579         * driver.c: Added support for treeprop, enabled consprop, copyprop,
3580         treeprop, inline and deadce by default
3581         * Makefile.am: Added local-propagation.c
3582
3583 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
3584
3585         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
3586
3587 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
3588
3589         * debug-debugger.c: make it compile without the Boehm GC.
3590
3591 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3592
3593         * mini.c: fixed issue with mismatch when an icall is registered
3594         with multiple names but same address.
3595
3596 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
3597
3598         * declsec.c, mini-exceptions.c: use write barrier to set reference
3599         fields of managed objects.
3600
3601 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
3602
3603         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
3604         (can_access_internals): Fix a warning.
3605
3606         * mini.c (print_method_from_ip): Rename this to 
3607         mono_print_method_from_ip so it gets exported.
3608
3609         * trace.c: Deal with strings inside StringBuilder's containing garbage
3610         and fix memory leaks. Fixes #77848.
3611
3612 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
3613
3614         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
3615         fixes #77787.
3616
3617 2006-03-16 Neale Ferguson <neale@sinenomine.net>
3618         
3619         * mini-s390.c: Remove OP_X86_TEST_NULL.
3620
3621 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
3622
3623         * mini.c: use the correct GetHashCode() for the moving collector.
3624
3625 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
3626
3627         * liveness.c: Regalloc spill cost tuning.
3628
3629 2006-03-15 Neale Ferguson <neale@sinenomine.net>
3630         
3631         * mini-s390x.h: Correct S390_LONG macro.
3632
3633         * mini-s390x.c: Cleanup unused code.
3634
3635 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3636
3637         * jit-icalls.h: New file.
3638
3639         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
3640         icalls and include that instead of including jit-icalls.c.
3641
3642         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
3643         OP_X86 opcodes.
3644
3645 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
3646
3647         * mini.c: when checking for member accessibility, also check for
3648         friend assemblies and for explicit interface implementations.
3649
3650 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3651
3652         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
3653
3654         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
3655
3656         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
3657         common cases are done first.    
3658
3659         * mini-ops.h: Only define platform specific opcodes on the given platform.
3660
3661         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
3662         branch.
3663         
3664 2006-03-14  Martin Baulig  <martin@ximian.com>
3665
3666         Revert Paolo's change from r57348:
3667
3668         * mini.h: don't use gboolean for bitfields.
3669         * mini.c: verifier changes for fields and methods accessibility.
3670
3671 2006-03-13  Neale Ferguson <neale@sinenomine.net>
3672
3673         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
3674
3675         * mini-s390x.c: Fix conv_r_un.
3676
3677         * cpu-s390, cpu-s390x.md: Fix lengths.
3678
3679 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
3680
3681         * mini.c: nested types have access to all the nesting
3682         levels, not just the enclosing types.
3683
3684 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3685
3686         * mini.c: added a few more verification checks.
3687
3688 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
3689
3690         * liveness.c: Merge optimizations from the linear-il branch.
3691
3692 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3693
3694         * mini-ia64.c (emit_call): Add a comment.
3695
3696         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
3697
3698         * tramp-ia64.c: Fix some warnings.
3699
3700 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
3701
3702         * mini.h: don't use gboolean for bitfields.
3703         * mini.c: verifier changes for fields and methods accessibility.
3704
3705 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3706
3707         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
3708         lazy icall wrapper changes.
3709
3710         * dominators.c: Replace all the dominator algorithms with faster
3711         ones from the linear-il branch.
3712
3713         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
3714         the mempool.
3715
3716         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
3717         common cases are done first.
3718
3719         * mini-amd64.c: Fix some warnings.
3720
3721         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
3722         from the mempool.
3723
3724         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
3725         added code.
3726
3727         * mini.h: Add a missing prototype.
3728
3729 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3730
3731         * mini.c: Compile icall wrappers lazily.
3732
3733         * mini-codegen.c: Use printf instead of g_print since its much faster.
3734
3735         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
3736         function.
3737
3738         * mini.c (optimize_branches): Cache the negative result from 
3739         remove_block_if_useless ().
3740
3741         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
3742         Also fix some bblock linking issues.
3743
3744         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
3745         assembly files.
3746
3747         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
3748
3749         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
3750         accessed fields first, for better cache behavior.
3751         
3752 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3753
3754         * mini.c: speedup IList<T> array accesses.
3755
3756 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3757
3758         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
3759         inline_costs counter. Fixes #77190.
3760
3761 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
3762
3763         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
3764         trace messages. Fixes #77706.
3765
3766 2006-03-04  Martin Baulig  <martin@ximian.com>
3767
3768         * tramp-amd64.c, tramp-x86.c
3769         (mono_debugger_create_notification_function): Use
3770         mono_global_codeman_reserve() to allocate a buffer at runtime and
3771         return it.
3772
3773         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
3774
3775         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
3776         notification function at runtime and then call `initialize' in the
3777         `MONO_DEBUGGER__debugger_info' vtable.
3778
3779 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3780
3781         * iltests.il: Fix a visibility problem.
3782
3783 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3784
3785         * driver.c, mini.c: add hooks for the counters API.
3786
3787 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
3788
3789         * driver.c: show disabled options.
3790
3791 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
3792
3793         * linear-scan.c: always use cost-driven selection.
3794
3795 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3796
3797         * jit-icalls.c (helper_compile_generic_method): Revert change from
3798         2006-02-24.
3799
3800 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
3801
3802         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
3803
3804 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3805
3806         * inssel.brg: style fixes, mostly to force the updated monoburg
3807         to run for people using svn.
3808
3809 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
3810
3811         * mini.c: match monoburg changes.
3812
3813 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
3814
3815         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
3816         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
3817         declaration in the header file.
3818
3819 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3820
3821         * helpers.c: reduce relocations and mem usage.
3822
3823 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3824
3825         * mini.h, mini-codegen.c: disable logging features if
3826         requested by configure.
3827
3828 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
3829
3830         * mini.c: tiny verifier changes.
3831
3832 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
3833
3834         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
3835         cpu-pentium.md: stack alignment changes for osx/x86,
3836         partially from Geoff Norton <gnorton@customerdna.com>.
3837
3838 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3839
3840         * jit-icalls.c (helper_compile_generic_method): Update to changes
3841         in metadata/class.c.
3842
3843 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3844         
3845         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
3846         
3847         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
3848         interface calls with large offsets.
3849
3850 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3851
3852         * jit-icalls.c (helper_compile_generic_method): Document the
3853         special-case we depend on so that we can inflate the method twice
3854         with the same context with no bad side-effects.
3855
3856 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
3857
3858         * mini-x86.c, mini-amd64.c: fix for case when xen support
3859         is disabled.
3860
3861 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
3862
3863         * mini-x86.c, mini-amd64.c: generate code to access tls items
3864         in a faster way for Xen systems.
3865
3866 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3867
3868         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
3869         updates and compilation fixes for the OSX/x86 port, mostly from
3870         Geoff Norton <gnorton@customerdna.com>.
3871
3872 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
3873
3874         * inssel.brg: faster interface call implementation
3875         to sync with the interface_offsets MonoVTable changes.
3876
3877 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
3878
3879         * mini.c: more verification checks.
3880
3881 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
3882
3883         * mini.c: added a few more verification checks.
3884
3885 2006-02-17      Neale Ferguson <neale@sinenomine.net>
3886
3887         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
3888         facility on the processor and use it if available.
3889
3890 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
3891
3892         * driver.c, aot.c, mini.c: throw exception if the IL code is
3893         invalid or unverifiable.
3894
3895 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3896
3897         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
3898         m.StructField.
3899
3900 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
3901
3902         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
3903
3904 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3905
3906         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
3907         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
3908         handling of instantiated generic valuetypes.
3909
3910 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3911
3912         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
3913         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
3914         instead.
3915
3916         * generics.2.cs: Revert the nullable reftypes tests.
3917
3918 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
3919
3920         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
3921         using __builtin_frame_address (1) as it doesn't work in the presence
3922         of optimizations. Hopefully fixes #77273.
3923
3924         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
3925         -> generics.cs change as it doesn't work with some automake versions.
3926
3927 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3928
3929         * mini.c: handle systems that sue a different way to
3930         retrieve the stack address of the current thread.
3931
3932 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3933
3934         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
3935         it specially in the makefile.
3936
3937         * generics.2.cs: Add tests for nullable reference types.
3938
3939 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3940
3941         * mini.c: always handle the case when mono_jit_init()
3942         is called in a thread different from the main thread,
3943         confusing libgc (bug #77309).
3944
3945 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
3946
3947         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
3948
3949 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3950
3951         * mini.c: change optimize_branches () to use a single loop
3952         and introduce a new optimization to simplify some range checks.
3953
3954 2006-02-03  Martin Baulig  <martin@ximian.com>
3955
3956         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
3957         and merged with debugger_thread_manager_add_thread().
3958         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
3959         inform the debugger about the main thread.
3960
3961 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
3962
3963         * basic.cs: Add test for div.un/rem.un constant folding.
3964
3965 2006-02-03  Neale Ferguson <neale@sinenomine.net>
3966
3967         * cpu-s390x.md: correct int_xor_imm length
3968
3969 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
3970
3971         * generics.2.cs: New test for #77442.
3972
3973         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
3974         #77442.
3975
3976 2006-02-02  Martin Baulig  <martin@ximian.com>
3977
3978         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
3979         <mono/metadata/mono-debug-debugger.h>   
3980
3981         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
3982
3983 2006-02-02  Martin Baulig  <martin@ximian.com>
3984
3985         * debug-debugger.h: New header file for debug-debugger.c.
3986
3987         * debug-debugger.c: Big API cleanup; don't run the managed Main()
3988         function is a separate thread anymore; add support for attaching.
3989
3990 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3991
3992         * tramp-x86.c: Fix a warning.
3993
3994 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3995
3996         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
3997         on very large methods.
3998
3999         * aot.c (load_patch_info): Fix a warning.
4000
4001 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
4002
4003         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
4004         mini-ops.h: alu membase optimizations.
4005
4006 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
4007
4008         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
4009         to speedup StringBuilder.
4010
4011 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
4012
4013         * dominators.c (mono_compute_natural_loops): Fix detection of
4014         loop body start blocks.
4015
4016         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
4017
4018 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
4019
4020         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
4021         #75145.
4022
4023 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
4024
4025         * aliasing.c: Fixed aliasing issue on 64 bit archs.
4026
4027 2006-01-25  Martin Baulig  <martin@ximian.com>
4028
4029         * debug-debugger.c: Moved the `MonoDebuggerManager' and
4030         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
4031         started to cleanup this file a little bit.
4032
4033 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
4034
4035         * mini.c: optimize a codepath frequently happening in generics code.
4036
4037 2006-01-23  Martin Baulig  <martin@ximian.com>
4038
4039         * Makefile.am: Only compile debug-debugger.c on supported platforms.
4040
4041         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
4042         functions directly.
4043
4044         * driver.c: debug-debugger.c is only available if
4045         `MONO_DEBUGGER_SUPPORTED' is defined.   
4046
4047 2006-01-23  Martin Baulig  <martin@ximian.com>
4048
4049         * debug-debugger.c: Only enable this on platforms where the Mono
4050         Debugger is working (x86 and x86_64).
4051
4052 2006-01-21  Martin Baulig  <martin@ximian.com>
4053
4054         The Mono Debugger is now using the normal `mono' instead of the
4055         `mono-debugger-mini-wrapper' when executing managed code.
4056
4057         * debug-debugger.c: New file; previously known as
4058         debugger/wrapper/wrapper.c.
4059
4060         * debug-mini.c (mono_init_debugger): Removed.
4061
4062         * driver.c (mono_main): Added new `--inside-mdb' command line
4063         argument which is used when running inside the debugger.
4064
4065 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
4066
4067         * liveness.c (mono_analyze_liveness): Remove some unused data
4068         structures.
4069
4070 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4071
4072         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
4073
4074 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
4075
4076         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
4077         depends on implementation details of monobitset.
4078
4079         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
4080         Fixes #77271.
4081
4082 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
4083
4084         * liveness.c: Update after monobitset changes.
4085
4086 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
4087
4088         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
4089
4090 2006-01-11 Neale Ferguson <neale@sinenomine.net>
4091
4092         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
4093
4094         * mini-s390x.c: Remove warning messages.
4095
4096 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4097
4098         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
4099
4100 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
4101
4102         * generics.2.cs: Add ldelem/stelem_any test.
4103
4104 2006-01-10 Neale Ferguson <neale@sinenomine.net>
4105
4106         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
4107
4108 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
4109
4110         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
4111         
4112 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
4113
4114         * generics.2.cs: Reenable vtype tests.
4115
4116         * inssel-x86.brg: Remove an icorrect valuetype rule.
4117
4118 2006-01-06 Neale Ferguson <neale@sinenomine.net>
4119
4120         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
4121         initial support for OP_ABS.
4122
4123 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4124
4125         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
4126
4127 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4128
4129         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
4130         conversion and implement LADD/LSUB.
4131
4132         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
4133         architectures.
4134
4135 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4136
4137         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
4138
4139         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
4140         architectures.
4141
4142 2006-01-05 Neale Ferguson <neale@sinenomine.net>
4143
4144         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
4145         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
4146         (stack walk problem).
4147
4148 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
4149
4150         * aot.c (mono_aot_load_method): Fix a warning.
4151
4152 2006-01-03  Neale Ferguson <neale@sinenomine.net>
4153
4154         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
4155
4156 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4157
4158         * iltests.il: Add test for #77148.
4159
4160         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
4161         #77148.
4162
4163 2006-01-03  Neale Ferguson <neale@sinenomine.net>
4164
4165         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
4166
4167 2006-01-03  Neale Ferguson <neale@sinenomine.net>
4168
4169         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
4170         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
4171
4172         * basic-long.cs: Add lconv-to-r4/r8 tests.
4173
4174 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4175
4176         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
4177
4178         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
4179         here as on other archs.
4180
4181 2005-12-29 Neale Ferguson <neale@sinenomine.net>
4182
4183         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
4184
4185 2005-12-29 Neale Ferguson <neale@sinenomine.net>
4186
4187         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
4188         
4189         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
4190
4191         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
4192         instrument_prolog; Add memory_barrier instruction.
4193
4194 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
4195
4196         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
4197
4198 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
4199
4200         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
4201
4202         * aliasing.c inssel.brg: Fix warnings.
4203
4204         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
4205         could skip initialization of some parts of memory.
4206
4207         * mini.c mini-ia64.c: Fix warnings.
4208
4209         * inssel-sparc.brg: Add an implementation of lneg which actually works.
4210
4211 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4212
4213         * aliasing.c (mono_build_aliasing_information): Add a workaround for
4214         a crash seen on sparc.
4215
4216         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
4217         
4218         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
4219
4220 2005-12-21 Neale Ferguson <neale@sinenomine.net>
4221
4222         * mini-ops.h: Add s390_backchain instruction
4223
4224         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
4225
4226         * cpu-s390.md: Add s390_backchain instruction
4227
4228         * mini-s390.c: Significant ABI changes
4229
4230         * mini-s390.h: Cater for zero length structures
4231
4232 2005-12-20 Neale Ferguson <neale@sinenomine.net>
4233
4234         * mini-s390.c: ABI fixes
4235
4236         * inssel-s390.brg: Remove debug statements
4237
4238         * cpu-s390.md: Fix length of ATOMIC_xx operations
4239
4240 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
4241
4242         * basic-float.cs: Add float<->long conversion tests.
4243
4244 2005-12-16 Neale Ferguson <neale@sinenomine.net>
4245
4246         * mini-s390.c: Fix LOCALLOC processing.
4247
4248         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
4249
4250 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4251
4252         * iltests.il: Add tests for some opcodes not covered by the other
4253         tests.
4254
4255 2005-12-15 Neale Ferguson <neale@sinenomine.net>
4256
4257         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
4258         register loading for Tail processing; Correct trace output.
4259
4260         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
4261
4262         * cpu-s390.md: Correct size of jmp instruction. 
4263
4264 2005-12-13 Neale Ferguson <neale@sinenomine.net>
4265
4266         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
4267
4268 2005-12-13 Neale Ferguson <neale@sinenomine.net>
4269
4270         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
4271           Bring s390 up to current level.
4272
4273 2005-12-12  Zltan Varga  <vargaz@gmail.com>
4274
4275         * generics.2.cs: Disable the newly added tests as they do not work yet.
4276         
4277         * generics.2.cs: Add valuetype tests.
4278
4279 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
4280
4281         * basic-long.cs: Add i4->u8 test.
4282
4283         * objects.cs: Add tests for JIT intrinsic.
4284
4285         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
4286         optimizations lost by a mistake.
4287
4288 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4289
4290         * basic-long.cs: Remove a test moved to objects.cs.
4291
4292         * arrays.cs: Add more array tests.
4293
4294 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4295
4296         * arrays.cs: Add new tests for multi-dimensional arrays.
4297
4298 2005-12-06  Raja R Harinath  <rharinath@novell.com>
4299
4300         * Makefile.am (test_sources2): Add generics.2.cs.
4301         (EXTRA_DIST): Add test_sources2.
4302
4303 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4304
4305         Support for boxing and unboxing nullable types as well as the
4306         isinst operation on nullables, per the CLI ammendment.
4307
4308         * inssel.brg (CEE_ISINST): Special case for nullable
4309
4310         * mini.c (handle_unbox_nullable): new method
4311         (handle_box): Special case for nullable types
4312         (mono_method_to_ir): Call handle_unbox_nullable in correct
4313         places.
4314
4315         * generics.2.cs: New test suite
4316
4317         * Makefile.am: Support for regression tests with generics.
4318
4319 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
4320
4321         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
4322         allocated to registers. Fixes #76800.
4323
4324 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
4325
4326         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
4327
4328 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
4329
4330         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
4331         of platforms.
4332
4333 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
4334
4335         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
4336         objects.cs.
4337
4338         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
4339         
4340         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
4341 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
4342
4343         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
4344         single precision before storing to a single precision location.
4345
4346 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4347
4348         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
4349
4350 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
4351
4352         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
4353         correct files.
4354
4355         * basic.cs: Remove test_0_byte_compares test which was moved to
4356         objects.cs a long time ago.
4357
4358 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
4359
4360         * aliasing.c: Fixed aliasing issue on 64 bit archs.
4361
4362 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
4363
4364         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
4365         handlers are called.
4366
4367         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
4368         throwing code.
4369
4370          * mini-ia64.c: Add support for the throw->branch exception 
4371         optimization.   
4372
4373         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
4374
4375 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
4376
4377         * mini.c: Enabled "fastpath" deadce :-)
4378         
4379 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
4380
4381         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
4382         alias analysis pass to support it.
4383         * mini.h: Likewise.
4384         * ssa.c: Likewise.
4385         * liveness.c: Likewise (liveness computation can use aliasing
4386         information to be more accurate).
4387         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
4388         moreover made so that "--compile-all" uses the given optimization
4389         flags and not the default ones.
4390         * aliasing.c: Alias analysis (new file).
4391         * aliasing.h: Likewise.
4392         * Makefile.am: added "aliasing.c" and "aliasing.h".
4393         
4394 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4395
4396         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
4397         OP_L opcodes.
4398
4399 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
4400
4401         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
4402         fp >= end_of_stack exit condition, as it is not needed, and it might
4403         become true for fp eliminated frames.
4404
4405 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4406
4407         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
4408         coded offsets.
4409
4410 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
4411
4412         * mini-arm.c: fixed alignment of doubles/longs to match
4413         the C ABI (bug #76635).
4414
4415 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
4416
4417         * aot.c: fix compilation with --enable-minimal=aot.
4418
4419 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
4420
4421         * mini-arm.c: fixed compatibility with the new
4422         floating point emulator package for compares.
4423
4424 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
4425
4426         * mini.c : reverted sig->pinvoke changes (r51396-51397).
4427
4428 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
4429
4430         * mini-exceptions.c (print_stack_frame): Output to stderr.
4431         (mono_handle_native_sigsegv): Ditto.
4432
4433 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4434
4435         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
4436         OP_LCONV_TO_OVF_I implementation.
4437
4438         * mini-amd64.c: Add support for the throw->branch exception 
4439         optimization.
4440
4441         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
4442         when the catch clause catches a more general exception, i.e. Object.
4443
4444 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
4445
4446         * cpu-ia64.md: Remove unused opcodes.
4447
4448         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
4449         specific defines for architectures defining USE_SIGACTION.
4450
4451         * mini-ia64.c: Fix some warnings.
4452
4453         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
4454         version seemed to skip a frame.
4455
4456 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4457
4458         * mini.c: Clean up the usage of sig->pinvoke flag. Now
4459         only calls which are made to native code use this flag.
4460
4461 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4462
4463         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
4464         varargs methods as well.
4465         
4466         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
4467         which have save_lmf set. Reorganize methods prologs a bit.
4468
4469         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
4470         debugger to the proper place.
4471
4472 2005-10-29  Martin Baulig  <martin@ximian.com>
4473
4474         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
4475         when running inside the debugger until the debugger has support
4476         for it.
4477
4478 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4479
4480         * mini.h: Fix a warning.
4481
4482 2005-10-24  Miguel de Icaza  <miguel@novell.com>
4483
4484         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
4485         we expose publicly, this returns the string.
4486
4487 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
4488
4489         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
4490         with fp elimination.
4491
4492 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4493
4494         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
4495         native stacktrace using the glibc 'backtrace' function if available.
4496
4497 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
4498
4499         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
4500
4501         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
4502         handle SIGSEGVs received while in native code.
4503
4504         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
4505         code, call mono_handle_native_sigsegv which will abort the runtime
4506         after printing some diagnostics, instead of converting it into a
4507         confusing NullReferenceException.
4508
4509 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4510
4511         * cpu-pentium.md: Remove unused opcodes.
4512
4513 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
4514
4515         * mini-amd64.h (MonoLMF): Add rsp field.
4516
4517         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
4518         the lmf too.
4519
4520 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
4521
4522         * mini-codegen.c (get_register_spilling): Fix some warnings.
4523
4524 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
4525
4526         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
4527         elimination during exception handling. Enable fp elimination by
4528         default.
4529
4530         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
4531         elimination.
4532
4533 2005-10-16  Martin Baulig  <martin@ximian.com>
4534
4535         * mini-exceptions.c
4536         (mono_debugger_run_finally): New public method for the debugger.
4537
4538 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4539
4540         * debug-mini.c (mono_debug_init_method): Fix warning.
4541
4542         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
4543         the 'exname' parameter const to fix some warnings.
4544
4545 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
4546
4547         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
4548         introduced by the previous patch.
4549
4550 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
4551
4552         * basic-float.cs: Add test for precision of float arithmetic.
4553
4554         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
4555         when loading/storing single values from/to memory.
4556
4557         * mini.c (mono_jit_compile_method_with_opt): Create the function
4558         pointers in the correct domain.
4559
4560 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4561
4562         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
4563         introduced by previous patch.
4564         
4565         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
4566         when out_filter_idx is NULL.
4567
4568         * mini-exceptions.c: Don't run filter clauses twice during exception
4569         handling. Fixes #75755.
4570
4571 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4572
4573         * aot.c: Add support for ldflda wrappers.
4574
4575         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
4576         #75902.
4577
4578 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
4579
4580         * mini.c, mini.h: do not consider exception handlers blocks when
4581         setting up interface variables.
4582
4583 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
4584
4585         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
4586
4587 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
4588
4589         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
4590         causes a regression.
4591
4592         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
4593
4594 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
4595
4596         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
4597         of the OP_P definitions.
4598
4599         * TODO: Add a proposal for dealing with the CEE/OP mess.
4600
4601         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
4602         optimizations from the x86 port.
4603
4604         * cpu-amd64.md: Ditto.
4605
4606         * basic.cs basic-long.cs: Add tests.
4607
4608 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
4609
4610         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
4611         Patrik Torstensson's implementation of my exception-handling
4612         optimization idea, when the exception object is not used
4613         (bug #62150).
4614
4615 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
4616
4617         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
4618         of the mul_imm optimizations from the old jit.
4619
4620 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
4621
4622         * mini.c, liveness.c: patch by Patrik Torstensson and
4623         Zoltan Varga to improve performance in methods with
4624         exception clauses.
4625
4626 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4627
4628         * driver.c: Remove 'Globalization' entry from --version.
4629
4630 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
4631
4632         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
4633         there is a profiler interested in JIT events.
4634
4635         * aot.c: Load profile files produced by the AOT profiling module, and
4636         reorder methods based on the profiling info. Add a 'method_order' table
4637         to the AOT file to make mono_aot_find_jit_info work with the reordered
4638         methods.
4639
4640         * mini.h: Bump AOT file version info.
4641
4642 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
4643
4644         * mini-arm.h: work around what looks like a gcc bug when optimizations
4645         are enabled.
4646
4647 2005-09-28  Raja R Harinath  <rharinath@novell.com>
4648
4649         * Makefile.am (AM_CFLAGS): Don't use += to append inside
4650         conditionals.  Use ...
4651         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
4652
4653 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
4654
4655         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
4656         to determine the amount of memory to copy when passing valuetypes.
4657
4658         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
4659         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
4660
4661 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
4662
4663         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
4664         information about aot.
4665
4666 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4667
4668         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4669         macros. This will allow a deadlock debugger to easily be plugged
4670         in.
4671
4672 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
4673
4674         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
4675
4676 2005-09-27  Raja R Harinath  <rharinath@novell.com>
4677
4678         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
4679         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
4680         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
4681         ($(arch_built)) [CROSS_COMPILING]: Error out.
4682
4683 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4684
4685         * aot.c: Add support for the no_special_static flag for classes.
4686
4687 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4688
4689         * Reapply reverted patches.
4690
4691         * *: Revert r50174 as well.
4692
4693         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
4694
4695 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4696
4697         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
4698
4699 2005-09-23  Miguel de Icaza  <miguel@novell.com>
4700
4701         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
4702         part of the SIG_HANDLER_SIGNATURE.  
4703
4704 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4705
4706         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
4707         statistics.
4708
4709         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
4710         introduced by previous patch.
4711
4712 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
4713
4714         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
4715         saved registers too.
4716
4717         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
4718         upon the information returned by get_call_info ().
4719         
4720         * mini-x86.c (add_float): Fix stack size calculation.
4721         (mono_arch_call_opcode): Rewrite this so it works based up the
4722         information returned by get_call_info ().
4723         (mono_arch_get_this_vret_args): Ditto.
4724
4725 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
4726
4727         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
4728         in cinfo to determine the registers which need to be used.
4729
4730 2005-09-20  Miguel de Icaza  <miguel@novell.com>
4731
4732         * driver.c (mono_main): Add --server and --desktop flags. 
4733
4734 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
4735
4736         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
4737         registers as global registers.
4738
4739         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
4740         longer needed with the new register allocator.
4741
4742         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
4743
4744         * cpu-ia64.md: Remove unused opcodes.
4745         
4746         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
4747         
4748 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
4749
4750         * cpu-amd64.md: Remove unused opcodes.
4751
4752         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
4753         needed with the new register allocator.
4754
4755         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
4756         reg-reg moves.
4757
4758 2005-09-16  Raja R Harinath  <rharinath@novell.com>
4759
4760         * Makefile.am (check-local): Don't invoke semdel-wrapper.
4761
4762 2005-09-16  Martin Baulig  <martin@ximian.com>
4763
4764         * exceptions-amd64.c
4765         (throw_exception): Don't call mono_debugger_throw_exception() if
4766         we're a rethrow - see the FIXME in the code.
4767
4768 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
4769
4770         * mini.c (mono_init_exceptions): This only works on some architectures.
4771         
4772 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
4773
4774         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
4775         on ia64.
4776
4777         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
4778
4779         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
4780         now in mini-exceptions.c.
4781
4782 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
4783
4784         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
4785         now in mini-exceptions.c.
4786
4787 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
4788
4789         * exceptions-x86.c: Applied patch from Patrik Torstensson 
4790         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
4791
4792         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
4793         code into mini-exceptions.c. Add some assertions to it.
4794
4795 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4796
4797         * aot.c (emit_section_change): Applied patch from "The Software Team" 
4798         (<software@solmersa.com>). Fix as errors on windows.
4799
4800 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
4801
4802         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
4803         method info into the LMF.
4804
4805 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4806         
4807         * mini-ia64.c: Add proper unwind info for method epilogs.
4808
4809         * exceptions-ia64.c: Add some code to help debugging.
4810         
4811         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
4812
4813         * mini-exceptions.c: Fix warning.
4814
4815 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
4816
4817         * mini.c: Really fix build.
4818
4819         * mini-x86.c mini-amd64.c: Fix build.
4820
4821 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4822
4823         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
4824
4825         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
4826         some Interlocked methods as intrinsics.
4827
4828         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
4829         for Thread methods as well.
4830
4831         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
4832
4833         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
4834
4835         * mini-ia64.c mini-x86.c mini-amd64.c 
4836         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
4837         OP_MEMORY_BARRIER.
4838         
4839         * mini.c (mono_init_exceptions): Fix build breakage.
4840
4841 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
4842
4843         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
4844         of instructions. Use the new ia64_unw_op macros for emitting unwind
4845         info.
4846
4847         * mini.c (mono_init_exceptions): Initialize exception handling
4848         related trampolines at startup.
4849
4850 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
4851
4852         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
4853
4854 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4855
4856         * mini.c: Handle type loading errors gracefully during compilation and
4857         throw the appropriate exception.
4858
4859 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
4860
4861         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
4862         for the mono binary.
4863
4864 2005-09-09  Martin Baulig  <martin@ximian.com>
4865
4866         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
4867         the release.
4868
4869 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
4870
4871         * mini-arm.h: use emulation for conv.r.un for the release.
4872
4873 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
4874
4875         * mini-arm.c, objects.cs: more fixes and tests for them.
4876
4877 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
4878
4879         * mini-arm.c: align structures to at least 4 bytes to be able
4880         to keep our current optimized memcpy.
4881
4882 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
4883
4884         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
4885
4886 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4887
4888         * mini.c: ignore SIGPIPE.
4889
4890 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
4891
4892         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
4893
4894         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
4895
4896 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
4897
4898         * mini.h: Add prototype for mono_allocate_stack_slots_full.
4899
4900 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
4901
4902         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
4903         exception handling support.
4904         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
4905         patch by Brian Koropoff <briank@marakicorp.com>).
4906
4907 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
4908
4909         * mini.c: revert another 'optimization' which breaks when
4910         items on the eval stack need to be saved at a basic block end
4911         (bug #75940).
4912
4913 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
4914
4915         * jit-icalls.c: for arrays, ensure we always provide
4916         lower bounds.
4917
4918 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
4919
4920         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
4921         
4922         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
4923
4924 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4925
4926         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
4927         arguments in their original register.
4928
4929 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
4930
4931         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
4932         memset/memcpy.
4933
4934         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
4935         when ssapre is enabled.
4936
4937         * inssel-long.brg: Fix bug in previous patch.
4938
4939         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
4940         multiplication by a constant.
4941
4942 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
4943
4944         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
4945         icc.
4946
4947         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
4948         saving registers.
4949
4950 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
4951
4952         * inssel-arm.brg: apply changes tested by Brian Koropoff
4953         <briank@marakicorp.com>.
4954
4955 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4956
4957         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
4958         
4959 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
4960
4961         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
4962         to the same register if dreg is just a base register.
4963         (print_ins): Improve printing of membase opcodes.
4964
4965         * inssel-x86.brg: Add optimized ldind(reg) rules.
4966
4967         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
4968
4969 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
4970
4971         * mini.c: when running under valgrind, set the stack bottom for
4972         the GC at the actual approximate stack for the app (fixes running
4973         mono with valgrind).
4974
4975 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
4976
4977         * mini.c: do no break at the first valuetype to init found
4978         (fixes bug #75791).
4979
4980 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
4981
4982         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
4983
4984 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
4985
4986         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
4987
4988 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
4989
4990         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
4991
4992 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4993
4994         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
4995
4996         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
4997         code.
4998
4999         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
5000         code.
5001
5002         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
5003         methods.
5004
5005 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
5006
5007         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
5008
5009 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5010
5011         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
5012         in the tail recursion optimization.
5013
5014         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
5015         debug info into the assembly file.
5016
5017         * iltests.il: Add test for filter regions.
5018
5019         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
5020         initial stack of filter regions. Fixes #75755.
5021
5022 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
5023
5024         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
5025         stack requirements.
5026
5027 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5028
5029         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
5030         the check for an already compiled method on non-ia64 platforms.
5031         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
5032         proper domain.
5033
5034         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
5035
5036         * inssel-x86.brg: Add some optimized call rules.
5037
5038 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5039
5040         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
5041         method here.
5042
5043         * mini.h mini-trampolines.c: Pass the trampoline argument to 
5044         mono_arch_patch_delegate_trampoline.
5045
5046         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
5047
5048         * mini-trampolines.c: Fix build.
5049
5050         * mini-amd64.h: Add delegate trampolines.
5051
5052         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
5053
5054         * inssel-amd64.brg: Add optimized call rules.
5055         
5056         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
5057
5058         * inssel-ia64.brg: Add optimized ldind(reg) rules.
5059
5060 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5061
5062         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
5063         change.
5064
5065         * mini-ia64.c: Remove LMF fixmes.
5066
5067         * mini-ia64.h: Remove most fields from LMF.
5068
5069         * inssel-ia64.brg (stmt): Fix unaligned access errors.
5070
5071         * mini-trampolines.c: Add support for IA64 function descriptors.
5072
5073         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
5074         for IA64 function descriptors.
5075
5076 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
5077
5078         * tramp-arm.c: patch the vtable for virtual calls. Added
5079         support code to register/unregister the LMF.
5080         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
5081         more LMF work.
5082
5083 2005-08-19  Dick Porter  <dick@ximian.com>
5084
5085         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
5086         bit value if needed.
5087
5088 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5089
5090         * mini.c (mini_get_method): Move handling of wrapper data here.
5091
5092         * mini.c (mono_method_to_ir): Add support for dynamic methods.
5093
5094         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
5095         virtual.
5096
5097         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
5098         bblock->code does not remain empty.
5099
5100 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
5101
5102         * arrays.cs: Add regression test for #75832.
5103
5104         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
5105         rules. Fixes #75832.
5106
5107         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
5108         instruction scheduling.
5109
5110 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
5111
5112         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
5113
5114 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5115
5116         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
5117
5118         * mini-codegen.c: Fix VC build.
5119
5120         * cpu-pentium.md: Increase length of atomic_exhange_i4.
5121
5122 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5123
5124         * mini.h: fix signature for mono_register_opcode_emulation.
5125
5126 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
5127
5128         * mini.c: Get rid of most of the helper_sig_... constants using
5129         mono_create_icall_signature ().
5130
5131 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5132
5133         * jit-icalls.c (helper_ldstr): New helper function.
5134
5135         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
5136
5137         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
5138         throw, load the string using a helper call instead of creating a string object.
5139
5140         * aot.c: Update after LDSTR changes.
5141
5142         * mini.h: Bump AOT file version.
5143         
5144         * aot.c: Save class size info into the AOT file. Print more statistics during
5145         compilation.
5146
5147         * mini.h: Bump AOT file version.
5148
5149         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
5150         ordering of disasm cases. Fixes #74957.
5151
5152 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
5153
5154         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
5155         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
5156         the generic code needed for the ARM port.
5157
5158 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
5159
5160         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
5161         inssel-arm.brg: more ARM features and fixes.
5162
5163 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
5164
5165         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
5166         ARM port work in progress.
5167
5168 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5169
5170         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
5171
5172         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
5173
5174         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
5175
5176         * inssel.brg (mini_emit_memset): Add support for unaligned access.
5177
5178         * *-ia64.*: Ongoing IA64 work.
5179         
5180         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
5181
5182 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5183
5184         * TODO: Remove out-of-data todo stuff.
5185
5186         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
5187         dead code.
5188
5189         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
5190
5191         * mini.h: Bump corlib version.
5192
5193 2005-07-27  Martin Baulig  <martin@ximian.com>
5194
5195         * mini-codegen.c
5196         (create_copy_ins): Added `const unsigned char *ip' argument; set
5197         `copy->cil_code' from it.
5198
5199 2005-07-27  Martin Baulig  <martin@ximian.com>
5200
5201         * mini-exceptions.c (mono_handle_exception): Don't call
5202         mono_debugger_handle_exception() for filters.
5203
5204 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
5205
5206         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
5207         as well.
5208
5209 2005-07-26  Martin Baulig  <martin@ximian.com>
5210
5211         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
5212
5213         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
5214         helper_compile_generic_method() if the method is actually virtual
5215         and non-final.
5216
5217 2005-07-26  Martin Baulig  <martin@ximian.com>
5218
5219         * mini.c
5220         (trampoline_code): Renamed to `mono_trampoline_code' and made it
5221         public; this is now accessed directly by the debugger.
5222         (mono_generic_trampoline_code): Removed.
5223
5224         * debug-mini.c
5225         (mono_debug_init_method): Also add interncalls and wrappers.
5226
5227 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
5228
5229         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
5230
5231 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5232
5233         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
5234
5235 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5236
5237         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
5238
5239 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5240
5241         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
5242         getting TLS offsets on AMD64 too.
5243
5244 2005-07-20  Kornél Pál <kornelpal@hotmail.com>
5245
5246         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
5247
5248 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
5249
5250         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
5251         inssel-arm.brg, mini-arm.h: ARM port work in progress.
5252
5253 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5254
5255         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
5256
5257         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
5258         to mini.c.
5259
5260         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
5261         mono_sparc_is_virtual_call ().
5262         
5263         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
5264
5265         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
5266         trampoline parameters.
5267
5268         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
5269         
5270         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
5271         to mono_arch_get_vcall_slot_addr.
5272
5273         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
5274         trampoline code.
5275
5276         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
5277
5278 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
5279
5280         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
5281
5282 2005-07-19  Martin Baulig  <martin@ximian.com>
5283
5284         * exceptions-amd64.c (throw_exception): Call
5285         mono_debugger_throw_exception() here like we're doing it on i386.
5286
5287 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
5288
5289         * mini-ia64.c: Add optimized TLS access support.
5290
5291 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
5292
5293         * mini-exceptions.c: Ongoing IA64 work.
5294
5295         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
5296
5297         * mini.c: Use the default optimization set when embedding. Fixes
5298         #75194.
5299
5300 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
5301
5302         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
5303         of trampolines to a separate file.
5304
5305         * mini-trampolines.c: New file.
5306
5307         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
5308         separate file.
5309         
5310         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
5311         amd64/ia64 code.
5312
5313         * mini-codegen.c: Fix cygwin build.
5314
5315 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
5316
5317         * mini.c: Add some minor changes needed by the IA64 port.
5318
5319         * *-ia64.*: Ongoing IA64 work.
5320
5321 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
5322
5323         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
5324         trampolines into arch-independent and arch-dependent parts.
5325
5326         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
5327
5328 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
5329
5330         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
5331
5332         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
5333         the xp-regalloc-branch for amd64.
5334
5335         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
5336         xp-regalloc-branch for x86.
5337
5338 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5339
5340         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
5341
5342 2005-07-06  Martin Baulig  <martin@ximian.com>
5343
5344         * mini.c
5345         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
5346         (mono_jit_runtime_invoke): Likewise.
5347
5348 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5349
5350         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
5351         on x86 too.
5352         
5353         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
5354         without loading their metadata. Reorganize the file format so exception handling+
5355         debug info is kept separate from normal method info. Create MonoJitInfo 
5356         structures for methods lazily.
5357
5358         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
5359         loading metadata.
5360         (x86_class_init_trampoline): Patch AOT class init trampolines too.
5361
5362         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
5363
5364         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
5365         in AOT code.
5366
5367         * mini.h: Bump AOT file version.
5368
5369 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
5370
5371         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
5372
5373 2005-07-01  Raja R Harinath  <rharinath@novell.com>
5374
5375         * Makefile.am (check-local): Call semdel-wrapper.
5376
5377 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
5378
5379         * mini-x86.c: Revert the last change as it seems to break the build..
5380
5381 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5382
5383         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
5384         
5385         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
5386
5387 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
5388
5389         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
5390         outside of the macro, so strange stuff doesn't happen with gcc4
5391         (NEW_AOTCONST_TOKEN): Likewise.
5392
5393 2005-06-28  Martin Baulig  <martin@ximian.com>
5394
5395         * mini.c (mini_class_is_system_array): New static method; use this
5396         instead of `klass->parent == mono_defaults.array_class' everywhere
5397         since this also works for the new generic array class.
5398
5399 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5400
5401         * inssel.brg: Remove warnings.
5402
5403 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
5404
5405         * mini-ia64.c: Ongoing IA64 work.
5406
5407         * basic-float.cs: Add float->i1 conversion test.
5408
5409         * iltests.il: Add conv.u4 test.
5410
5411 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
5412
5413         * inssel-long.brg: Fix bug caused by last change.
5414
5415 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
5416
5417         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
5418         BSDs.  Allows the x86 JIT to work on OSX86
5419
5420 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
5421
5422         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
5423         u4->i8 conversion.
5424
5425         * mini-ia64.c: Ongoing IA64 work.
5426
5427 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5428
5429         * mini-ia64.c: Ongoing IA64 work.
5430
5431         * driver.c: Clean up jit_code_hash as well when using --regression.
5432
5433         * inssel-long.brg: Fix long->i4/u4 conversion rules.
5434
5435         * basic-long.cs: Add tests for long->u4 conversion.
5436
5437 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
5438
5439         * mini.c: Take mono_get_domainvar out of macros. This makes sure
5440         that we do not depend on undefined C behavior: the order stuff
5441         gets evaluated within an expression. Fixes mono when compiled on
5442         GCC 4.
5443
5444 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
5445
5446         * *-ia64.*: Ongoing IA64 work.
5447
5448         * aot.c: Lower memory usage while loading AOT methods.
5449
5450         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
5451
5452         * mini.h: Bump AOT file format version.
5453
5454 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5455
5456         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
5457
5458 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
5459
5460         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
5461         not on callee assembly). Fixed some comments.
5462
5463 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
5464
5465         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
5466         it gets proper disassembly.
5467         (emit_method_info): Remove some dead code.
5468
5469         * mini.c (mini_method_compile): Allways allocate the GOT var in
5470         mono_method_to_ir for emulating opcodes.
5471
5472 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
5473
5474         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
5475         before freeing the code memory. Fixes #74990.
5476
5477         * objects.cs: Add regression test for #74992.
5478
5479         * liveness.c: Extend live ranges of arguments to the beginning of the
5480         method. Fixes #74992.
5481
5482         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
5483         so it points into the faulting instruction.
5484
5485 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
5486
5487         * jit-icalls.c (mono_imul_ovf): Add exception handling.
5488
5489         * *-ia64.*: Ongoing IA64 work.
5490
5491         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
5492
5493 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
5494
5495         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
5496
5497         * *-ia64.*: Ongoing IA64 work.
5498
5499 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
5500
5501         * basic-long.cs: Add tests for add/sub.ovf.
5502
5503         * basic.cs: Add tests for sub.ovf.
5504
5505         * *-ia64.*: Ongoing IA64 work.
5506
5507 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
5508
5509         * *-ia64.*: Ongoing IA64 work.
5510
5511         * basic.cs: Add conv.ovf.i4.un test.
5512
5513 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
5514
5515         * mini.c: (remove_block_if_useless) Fixed bug 75061.
5516         
5517 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5518
5519         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
5520
5521 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5522
5523         * *-ia64.*: Ongoing IA64 work.
5524
5525 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5526
5527         * trace.[ch]:
5528         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
5529
5530 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
5531
5532         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
5533
5534 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
5535
5536         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
5537
5538         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
5539         of a call is callable by a near call.
5540
5541 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
5542
5543         * mini-ia64.c: Ongoing IA64 work.
5544
5545 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
5546
5547         * genmdesc.c: Make the generated array non-static.
5548
5549         * inssel-long.brg: Fix LSHR_IMM rule.
5550
5551         * *-ia64.*: Ongoing IA64 work.
5552
5553         * *-ia64.*: Ongoing IA64 work.
5554
5555 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
5556
5557         * *-ia64.*: Ongoing IA64 work.
5558
5559         * *-ia64.*: Ongoing IA64 work.
5560         
5561         * mini-ia64.c: Ongoing IA64 work.
5562
5563         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
5564
5565 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
5566
5567         * objects.cs basic-calls.cs: Move some tests to objects.cs.
5568         
5569         * objects.cs basic-long.cs: Move some tests to objects.cs.
5570
5571 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
5572
5573         * *-ia64.*: Ongoing IA64 work.
5574
5575         * iltests.il: Add a new test.
5576
5577         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
5578         newobj. Fixes #75042.
5579
5580 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
5581
5582         * *-ia64.*: Ongoing IA64 work.
5583         
5584         * *-ia64.*: Ongoing IA64 work.
5585         
5586         * *-ia64.*: Ongoing IA64 work.
5587
5588         * basic.cs objects.cs: Move tests accessing static variables as well.
5589
5590         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
5591
5592 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
5593
5594         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
5595
5596         * driver.c: Always print failed tests.
5597
5598         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
5599         frame pointer.
5600
5601         * *ia64*: Ongoing IA64 work.
5602
5603 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5604
5605         * basic.cs: Add tests for add.ovf. Fix warnings.
5606
5607 2005-05-18  Miguel de Icaza  <miguel@novell.com>
5608
5609         * driver.c (mono_main): Avoid crash if no argument is passed to
5610         --break;  Do not use g_error, but f_printf.   And fix all other
5611         ocurrences of the same crash.
5612
5613 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
5614
5615         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
5616         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
5617         Fixes #74742.
5618
5619 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
5620
5621         * *-ia64.*: Add beginnings of IA64 backend.
5622
5623         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
5624
5625 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
5626
5627         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
5628         Fixes #74925.
5629
5630         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
5631
5632         * mini-amd64.c: Fix a warning.
5633
5634 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
5635
5636         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
5637         in float_neg. Fixes #74897.
5638
5639         * mini-amd64.c (emit_call): Fix another near call bug.
5640
5641 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
5642
5643         * declsec.c: Keep the appdomain information in the structure. Added a 
5644         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
5645         value gets overwritten).
5646         * declsec.h: Set the default MonoArray for the the stack to 6. Added
5647         an MonoAppDomain member to MonoSecurityFrame.
5648         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
5649         used in the stack walk. Now use a MonoArray which grow (double) when
5650         it gets full.
5651
5652 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5653
5654         * mini.c: Re-enabled runtime cleanup, since running threads should
5655         now properly stop when exiting.
5656
5657 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5658
5659         * mini-codegen.c: New file contaning the arch-independent local
5660         register allocator. Not used by any architectures yet.
5661
5662         * mini.h linear-scan.c: Merge some changes from the 
5663         mini-xp-local-regalloc branch.
5664
5665 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5666
5667         * mini-amd64.c (emit_call): Fix calls to native functions when the
5668         runtime is compiled as a shared library. Fixes #74756.
5669
5670         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
5671         on a literal field. Fixes #74751.
5672
5673 2005-04-25  Raja R Harinath  <rharinath@novell.com>
5674
5675         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
5676
5677 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5678
5679         * objects.cs: Add missing null casting test.
5680
5681 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5682
5683         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
5684         in wrapper methods. Also rename 'address' variable to 'offset'.
5685
5686 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5687
5688         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
5689         warnings.
5690         
5691         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
5692
5693         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
5694         work on windows.
5695
5696 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
5697
5698         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
5699
5700 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
5701
5702         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
5703         just the last bytes.
5704
5705 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
5706
5707         * aot.c (mono_compile_assembly): Fix warning.
5708
5709         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
5710         by the _MSC_VER stuff.
5711
5712 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5713
5714         * inssel-long.brg: Fix #74588.
5715
5716         * cpu-amd64.md: Fix #74591.
5717
5718         * iltests.il: Add new regression tests.
5719
5720 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5721
5722         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
5723         valuetype.
5724
5725 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
5726
5727         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
5728
5729         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
5730         from Bill Middleton <flashdict@gmail.com>.
5731
5732 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5733
5734         * arrays.cs: Add new regression test. Fix warnings.
5735
5736 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
5737
5738         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
5739         and leakage in CKFINITE.
5740
5741         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
5742         this to a null op since it is called on amd64 too.
5743
5744         * exceptions-amd64.c (get_throw_trampoline): Align stack.
5745
5746         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
5747         body since this is not used on amd64.
5748         
5749         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
5750
5751         * mini-amd64.c: Remove obsolete fixmes.
5752
5753         * mini.c (print_method_from_ip): Fix debugging support.
5754
5755 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
5756
5757         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
5758         so that expressions that don't give much gain are not reduced.
5759         * ssapre.h: Likewise.
5760
5761 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5762
5763         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
5764
5765         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
5766
5767         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
5768
5769 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
5770
5771         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
5772
5773         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
5774
5775 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
5776
5777         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
5778         stack touching.
5779
5780         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
5781
5782         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
5783
5784         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
5785
5786         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
5787         MONO_ARCH_USE_SIGACTION. Fixes #74252.
5788
5789         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
5790
5791         * mini-x86.c: Fix up stack overflow handling.   
5792
5793         * exceptions.cs: Add new regression test.
5794
5795 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
5796
5797         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
5798         mono_jit_thread_attach.
5799
5800         * mini.c (mono_method_to_ir): Verify called method is not abstract.
5801
5802 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5803
5804         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
5805         avoid calling constructors using callvirt.
5806
5807         * inssel.brg: Fix #74073.
5808
5809 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5810
5811         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
5812         compilation with non-GCC compilers.
5813         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
5814         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
5815
5816 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5817
5818         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
5819         klass->interface_offsets (will likely fix bug#74073).
5820
5821 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5822
5823         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
5824
5825 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
5826
5827         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
5828         to amd64_div_reg_size ().
5829         
5830         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
5831
5832 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
5833
5834         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
5835
5836 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5837
5838         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
5839
5840 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5841
5842         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
5843         
5844         * mini.c (mono_precompile_assembly): Load and precompile referenced
5845         assemblies as well. Fixes #74015.
5846
5847 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5848
5849         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
5850
5851 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
5852
5853         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
5854         a lot of checks and (anyway) permissions cannot work until corlib is 
5855         loaded.
5856
5857 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
5858
5859         * mini-ppc.c: fixed ABI issue on sysv/ppc.
5860
5861 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
5862
5863         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
5864         calls (fixes bug#72824).
5865
5866 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
5867
5868         * mini.c: fix tail recursion elimination (see test in bug#73936).
5869
5870 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
5871
5872         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
5873         some fp functions in sse2 mode.
5874
5875 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
5876
5877         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
5878
5879 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
5880
5881         * mini.h mini.c: Add mono_get_jit_tls_key ().
5882
5883         * mini-x86.c: Enable fast TLS support on windows.
5884
5885 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5886
5887         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
5888         * mini.c: Check for p/invoke method when generating code. If a
5889         p/invoke method, or it's class, isn't decorated with [Suppress
5890         UnmanagedCodeSecurity] then generate code to call System.Security.
5891         UnmanagedDemand (only if the security manager is active).
5892
5893 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
5894
5895         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
5896         last change as it seems to cause strange crashes.
5897         
5898 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
5899
5900         * *.c: handle unsafe function pointers where needed.
5901
5902 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
5903
5904         * mini.c (mono_jit_free_method): Remove the fixme too.
5905
5906 2005-03-15  Miguel de Icaza  <miguel@novell.com>
5907
5908         * mini.c: As discussed, make the code actually free the delegate
5909         thunk now, to enable the debugging of delegate problems, use
5910         MONO_DEBUG=1 when running Mono. 
5911
5912         This takes also care of parts of the leaks as seen by Joe.
5913
5914 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
5915
5916         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
5917         thread_tls_offset calculation.
5918
5919 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
5920
5921         * declsec.c: Reworked linkdemand checks for icall. The previous code
5922         was using the declaration code (untrusted) and didn't work as expected
5923         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
5924         specific case.
5925
5926 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
5927
5928         * iltests.il: Add new localloc test.
5929
5930         * mini-amd64.c: Handle large stack allocations the same way as on
5931         windows if stack overflow handling is working.
5932         
5933         * mini-amd64.c: Allocate the signal stack using mmap.
5934
5935         * mini.c (sigsegv_signal_handler): Fix reading of context.
5936
5937         * mini-exceptions.c: Fix up stack overflow handling.
5938
5939         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
5940
5941         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
5942
5943         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
5944
5945         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
5946
5947         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
5948         tramp_init functions as they are no longer needed.
5949
5950 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
5951
5952         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
5953         
5954         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
5955
5956         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
5957         
5958         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
5959         support that now.
5960
5961         * mini-ops.h: Add OP_LMUL_IMM.
5962
5963         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
5964         long mul/div opcodes as intrinsic.
5965
5966         * mini-amd64.c (emit_call): Handle the case when the callee might be
5967         an AOT method.
5968
5969 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
5970
5971         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
5972         extra safe.
5973         
5974         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
5975
5976         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
5977
5978 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
5979
5980         * mini.c (mono_codegen): Don't leak here, to help people running
5981         monogrind.
5982
5983 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
5984
5985         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
5986         conversions in sse2 mode.
5987
5988         * basic-float.cs: Add regression test.
5989         
5990         * mini-amd64.c: Reenable sse2.
5991
5992 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
5993
5994         * mini-amd64.c: Disable sse2 until some regressions are fixed.
5995
5996 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
5997
5998         * driver.c: Copyright text should include 2005.
5999         
6000 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
6001
6002         * cpu-amd64.md (load_membase): Fix more max lengths.
6003
6004 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
6005
6006         * cpu-amd64.md (load_membase): Fix max length.
6007
6008         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
6009
6010         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
6011
6012         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
6013         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
6014
6015         * basic-float.cs: Add rounding regression test.
6016
6017         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
6018
6019 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
6020
6021         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
6022         structures in registers for pinvoke wrappers.
6023
6024 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6025
6026         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
6027
6028 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6029
6030         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
6031         wrapper to mono_jit_thread_attach.
6032
6033         * mini.c (mini_jit_thread_attach): New jit icall.
6034
6035         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
6036         native->managed wrappers.
6037
6038         * exceptions.cs: Add new regression test.
6039
6040         * mini.c (optimize_branches): Check regions in the cbranch to throw
6041         block case as well. Fixes #73242.
6042
6043 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6044
6045         * mini.c: thread safety fixes.
6046
6047 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
6048
6049         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
6050         patching stuff, since delegates use jump trampolines so there is
6051         no caller.
6052
6053         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
6054         jump trampolines.
6055         
6056         * tramp-amd64.c: Fix build.
6057
6058         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
6059         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
6060
6061         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
6062         Rename this to mono_arch....
6063         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
6064
6065         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
6066
6067         * mini-amd64.c (emit_call): If both the caller and the callee is
6068         guaranteed to have 32 bit addresses, emit a normal call.
6069
6070         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
6071
6072         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
6073         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
6074         method_ptr inside delegates.
6075
6076 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
6077
6078         * mini.c (mono_jit_free_method): Free the method info even if the native code is
6079         invalidated. Fixes #73001.
6080
6081         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
6082
6083         * mini-x86.c: Only use stdcall for pinvokes on windows.
6084
6085 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
6086
6087         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
6088         * mini-x86.c: remove unreliable __thread var offset detection,
6089         use the correct accessors and enable by default.
6090
6091 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6092
6093         * mini.c (mono_jit_free_method): Fix memory leak.
6094
6095 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
6096
6097         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
6098
6099 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
6100
6101         * cpu-amd64.md: Fix lengths of atomic opcodes.
6102
6103 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6104
6105         * driver.c: try to not imply using ICU is any good.
6106
6107 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6108
6109         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
6110         functions as inline ops.
6111
6112         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
6113         some Interlocked functions as inline ops.
6114
6115         * mini.c (move_basic_block_to_end): Fix bug in last patch.
6116
6117         * mini.h (MonoBasicBlock): Reorganize fields a bit.
6118
6119         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
6120
6121         * mini.c: Add support for OP_NOT_TAKEN.
6122
6123         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
6124         structures in registers for pinvoke wrappers.
6125
6126         * mini-amd64.c: Fix warnings.
6127
6128 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
6129
6130         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
6131
6132         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
6133
6134         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
6135         address instead of loading the address from it.
6136
6137         * mini-x86.c: Add support for returning small structs in registers
6138         on Win32. Fixes part of #70864.
6139         
6140 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
6141
6142         * trace.c (get_token): Improve error checking.
6143
6144 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6145
6146         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
6147
6148 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
6149  
6150         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
6151         it can be reused for MonoClass.
6152         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
6153         _LINKDEMAND.
6154
6155 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
6156
6157         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
6158         instead of a MonoReflectionMethod. The method information wasn't used
6159         when displaying SecurityException details (but will be now).
6160
6161 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
6162
6163         * Makefile.am : windows build fix.
6164
6165 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6166
6167         * iltests.il: Add new regression test.
6168
6169         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
6170         #72522.
6171
6172 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
6173  
6174         * mini.c: Moved linkdemand check into helper function check_linkdemand
6175         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
6176         LDFTN, LDVIRTFTN).
6177
6178 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
6179
6180         * declsec.c: Added statistics counter for different kinds of 
6181         LinkDemands.
6182         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
6183         (and commented) declaration.
6184         * mini.c: Added statistics counter for security Demand code 
6185         generation. Added display of security statistics.
6186
6187 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6188
6189         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
6190         Fix compilation errors under gcc-2.95.
6191
6192 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6193
6194         * mini.c, driver.c: Use the new jit trampoline hashtable
6195
6196 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
6197
6198         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
6199
6200 2005-02-11  Martin Baulig  <martin@ximian.com>
6201
6202         * debug-mini.c (mono_debug_close_method): Free the line number array.
6203
6204 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
6205
6206         * aot.c: Break up large methods into smaller ones. Share GOT slots for
6207         icalls.
6208
6209         * mini.h: Bump AOT file format version. 
6210
6211 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6212
6213         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
6214         APTC and P/Invoke.
6215         * declsec.h: Added macros to get/set lazyly initialized security 
6216         informations about assemblies. Added new enum for different type of
6217         possible LinkDemand violation. Added function to check LinkDemands.
6218         * mini.h: Added a field to MonoCompile to hold any security violation
6219         detected when JITting a method (so it can be thrown later).
6220         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
6221         and CEE_CALLVIRT. Added code to throw exception at the end of
6222         mini_method_compile (note: the exception is unhandled right now).
6223
6224 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6225
6226         * mini.c, jit-icalls.c: use the managed implementation of
6227         memset for initobj and memset, to avoid managed <-> unmanaged
6228         transitions.
6229
6230 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
6231
6232         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
6233         optimization if it would need a GOT var.
6234
6235         * basic.cs: Add tests for constant propagation and switch statements.
6236
6237         * ssa.c: Fix out-of-range constant propagation and switch statements.
6238
6239 2005-02-09    <vargaz@freemail.hu>
6240
6241         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
6242
6243 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
6244
6245         * cpu-amd64.md (load_membase): Fix max length of load_membase.
6246
6247 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
6248
6249         * mini.c: update to new signature of mono_class_get_allocation_ftn().
6250
6251 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
6252
6253         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
6254         arithmetic operations.
6255
6256 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
6257
6258         * mini-ppc.c: add a workaround for broken user code that
6259         DllImports vararg functions with non-vararg signatures.
6260
6261 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6262
6263         * mini.c (mono_jit_compile_method_inner): Add detection and a 
6264         meaningfull error message for assemblies written in Managed C++.
6265
6266         * tramp-amd64.c mini-amd64.h: Add support for 
6267         create_trampoline_from_token ().
6268
6269         * aot.c mini-x86.c abcremoval.c: Applied patch from
6270         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6271
6272 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6273
6274         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
6275         which takes a MonoImage/token as parameter instead of a MonoMethod.
6276
6277         * aot.c: Use the new trampoline for initializing vtables.
6278
6279         * aot.c: Add support for ldfld/stfld_remote wrappers.
6280
6281         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
6282         rules for compare <MEM>, IMM.
6283
6284         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
6285
6286         * aot.c: Handle inherited finalizers correctly.
6287
6288 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6289
6290         * inssel.brg (stmt): Add a missing _setup_... ().
6291
6292         * aot.c: Save some parts of the class state to the AOT file and use it
6293         to recompute that state when a class is initialized.
6294
6295         * mini.c: Install AOT hooks into the runtime.
6296
6297         * mini.h: Bump AOT file format version.
6298         
6299         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
6300         Fixes #72148.
6301
6302         * iltests.il: Add new test.
6303
6304 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6305
6306         * mini.c: fix typo.
6307
6308 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
6309
6310         * mini.c: setup the statistical profiler in the thread attach
6311         callback to cope with the new single thread code.
6312
6313 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6314
6315         * mini-ppc.c: ensure we have enough room for the profiler
6316         calls (fixed bug#72084).
6317
6318 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6319
6320         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
6321         it.
6322
6323 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
6324
6325         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
6326
6327 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
6328
6329         * ssapre.c: Fixed an issue with down safety (this allows IronPython
6330         to succesfully execute parrotbench).
6331         * ssapre.h: Likewise.
6332
6333 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
6334
6335         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
6336         variable for stores to method arguments (fixes a SSAPRE issue).
6337
6338 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6339
6340         * mini.c: handle value types in dup, fixes gen-112.cs.
6341
6342 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
6343
6344         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
6345         sequence for calls in dynamic methods to avoid thunks.
6346
6347 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6348
6349         * mini.c: correctly remove dynamic methods from the hashtable.
6350
6351 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6352
6353         * driver.c: Disabled SSAPRE until fix the bug that appears
6354         in IronPython's parrotbench.
6355
6356 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6357
6358         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
6359
6360         * mini.c (mono_method_to_ir): Revert the previous change.
6361         
6362         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
6363         when AOT compiling.
6364
6365         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
6366         mono_jit_info_table_find () etc. when running under valgrind.
6367
6368         * inssel.brg: Fix warnings.
6369
6370         * mini-exceptions.c: Fix warnings.
6371
6372 2005-01-31  Martin Baulig  <martin@ximian.com>
6373
6374         * driver.c (compile_all_methods_thread_main): Don't try to compile
6375         generic methods or anything which has type parameters.
6376
6377 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6378
6379         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
6380
6381         * TestDriver.cs: Add --verbose flags.
6382
6383         * graph.c ssa.c: Fix 64 bit warnings.
6384         
6385         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
6386         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
6387         Fix 64 bit warnings.
6388
6389         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
6390         variable not spotted by gcc.
6391         
6392         * mini-amd64.c inssel-amd64.brg: Applied patch from  
6393         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
6394         X86_COMPARE_MEMBASE opcodes.
6395
6396         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
6397
6398 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6399
6400         * *: MonoMethod->signature might be NULL now. You *MUST* use
6401         mono_method_signature.
6402
6403 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6404
6405         * driver.c (compile_all_methods_thread_main): Compile the methods
6406         without invoking cctors.
6407
6408 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6409
6410         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
6411         * basic-calls.cs: test for the above.
6412
6413 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6414
6415         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
6416         MonoJitInfo changes.
6417
6418 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
6419
6420         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
6421         eagerly if it contains dynamic methods.
6422         
6423         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
6424
6425         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
6426         trace, it is now computed by an icall from trace_ips.
6427         
6428         * mini-exceptions.c: Fix a warning.
6429
6430 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6431
6432         * mini-exceptions.c: don't bother getting stack trace info if
6433         it's not going to be used.
6434
6435 2005-01-27  Raja R Harinath  <rharinath@novell.com>
6436
6437         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
6438         ssapre-mini-ops.h.
6439
6440 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
6441
6442         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
6443
6444         * aot.c: Avoid calling mono_method_get_header () if not needed.
6445
6446         * mini.h: Bump AOT file format version.
6447         
6448         * mini.c (mono_emit_native_call): Allocate a GOT var here.
6449
6450         * mini.c (mono_print_tree): Print more info for calls.
6451
6452 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
6453
6454         * declsec.h: Remove warning by adding missing include for marshal.h
6455
6456 2005-01-26  Martin Baulig  <martin@ximian.com>
6457
6458         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
6459         `ip' twice.
6460
6461 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
6462
6463         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
6464         flags.
6465
6466         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
6467
6468         * aot.c (mono_compile_assembly): Fix a warning.
6469
6470 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
6471
6472         * declsec.c: Look for security attributes on the original MonoMethod 
6473         (and not the wrapped one). This fix permissions on icalls.
6474
6475 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
6476
6477         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
6478
6479         * mini.c (mono_allocate_stack_slots): Add a fixme.
6480
6481         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
6482
6483 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6484
6485         * inssel.brg: optimize casts of sealed types (more
6486         optimizations waiting for fixes in remoting).
6487
6488 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
6489
6490         * inssel.brg (stmt): Add another dummy rule.
6491
6492         * driver.c: Fix warnings.
6493
6494         * driver.c (mono_main): If running under valgrind, instruct glib to use
6495         the system allocation functions so valgrind can track the memory
6496         allocated by the g_... functions.
6497
6498         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
6499
6500         * mini-ops.h: Add OP_DUMMY_STORE opcode.
6501
6502         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
6503
6504         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
6505         variables in try regions.
6506
6507         * mini.c (mini_method_compile): Don't disable optimizations on large
6508         methods when AOT compiling.
6509
6510         * mini.c (mono_allocate_stack_slots): New arch independent method to 
6511         allocate stack slots. Not yet used.
6512
6513 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
6514
6515         * debug-mini.c (mono_debug_close_method): Plug some leaks.
6516
6517 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
6518
6519         * mini-ppc.c: make the branch info relative as the code
6520         buffer can be reallocated.
6521
6522 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
6523
6524         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
6525         * driver.c: Removed the AOT/security restriction. Now initialize the
6526         security manager (in metadata) if --security is used.
6527         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
6528         rather than the pointer to declarative security, when AOT is used.
6529
6530 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
6531
6532         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
6533         basic blocks, reduced intrinsic exception throwing code size.
6534
6535 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
6536
6537         * driver.c (mini_usage): Reorder the usage screen.
6538
6539 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
6540
6541         * mini.c (mono_resolve_patch_target): Fix warning.
6542
6543 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
6544
6545         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
6546         previous patch.
6547
6548         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
6549
6550         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
6551         breaks the amd64 build.
6552
6553         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
6554         register allocation. Fixes #71454.
6555
6556         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
6557
6558         * arrays.cs: Add new regression test.   
6559
6560 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6561
6562         * ssapre.c: Turned usage of snprintf to GString.
6563         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
6564         (I left it on by mistake in my previous commit).
6565
6566 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
6567
6568         * mini.c, cfold.c, basic-calls.cs: preserve side effects
6569         on cond branch optimization (fixes bug# 71515).
6570
6571 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6572
6573         * abcremoval.c: Fixed bug 71062.
6574         * abcremoval.h: Likewise.
6575
6576 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
6577
6578         * mini.c: Added a new functionality to optimize_branches, the removal
6579         of useless basic blocks, and fixed some problem in the removal of
6580         critical edges; some utility functions added for both purposes.
6581         * ssapre.c: Added complex expression support, and fixed bug 70637.
6582         * ssapre.h: Likewise.
6583         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
6584         enabled in SSAPRE.
6585         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
6586         * driver.c: Re-enabled SSAPRE.
6587
6588 2005-01-19  Martin Baulig  <martin@ximian.com>
6589
6590         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
6591         the result of mono_get_method_constrained().
6592
6593 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
6594
6595         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
6596         manager.
6597
6598 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
6599
6600         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
6601         be detected.  Fixes #59296.
6602
6603 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
6604
6605         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
6606         which can happen. Fixes #71361.
6607
6608 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
6609
6610         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
6611         manager.
6612
6613 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
6614
6615         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
6616         appdomain-unload.exe to fail.
6617         
6618         * mini.c: Fix some memory leaks.
6619
6620 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
6621
6622         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
6623         Fixed bug and sped up some codepaths.
6624
6625 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
6626
6627         * mini.c: Fix some memory leaks.
6628
6629         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
6630         conversion.
6631
6632         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
6633
6634         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
6635         #71320.
6636
6637         * iltests.il: Add regression test for #71320.
6638
6639 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
6640
6641         * mini.c (mono_codegen): Fix installation of profiler hooks.
6642
6643         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
6644
6645 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6646
6647         * mini.h, mini.c, cfold.c: optimize access to enum
6648         readonly fields, too. Eval conditional branches if possible
6649         to perform unreachable code removal in more cases.
6650
6651 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
6652
6653         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
6654
6655         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
6656         code manager.
6657
6658         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
6659         WinXP DEP. Fixes #71244.
6660
6661 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
6662
6663         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
6664
6665 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
6666
6667         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
6668
6669 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
6670
6671         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
6672         changes.
6673
6674         * mini.h: Bump AOT version.
6675
6676         * mini.h (MonoCompile): Change exvar to a hash table.
6677
6678         * mini.c: Allocate a separate exvar for each handler block.
6679
6680         * mini.c: Get rid of the computation of filter_lengths, its not needed.
6681
6682         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
6683         ex var with the pending exception and only throw if the two are equal.
6684         Fixes #68552.
6685         
6686         * exceptions.cs: Add tests for rethrow and nested catch clauses.
6687
6688         * mini-x86.c: Fix warnings.
6689
6690         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
6691         used by all the ports now.
6692
6693         * aot.c: Add write-symbols and save-temps options.
6694
6695 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
6696
6697         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
6698
6699 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
6700
6701         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
6702         operations.
6703
6704         * tramp-s390.c: Check vtable slot belongs to the domain.
6705
6706         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
6707         as per other platforms.
6708
6709         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
6710
6711 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6712
6713         * driver.c: we don't run the Main() code in a subthread anymore.
6714
6715 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
6716
6717         * mini.c: added experimental rtc support in the statistical
6718         profiler: if the user has the permission, more accurate statistics
6719         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
6720         The MONO_RTC value must be restricted to what the linux rtc allows:
6721         power of two from 64 to 8192 Hz.
6722
6723 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
6724
6725         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
6726
6727 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
6728
6729         * mini-ppc.c: better icache flush for smp.
6730
6731 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
6732
6733         * mini-amd64.c (emit_move_return_value): Fix memory leak.
6734
6735         * mini-x86.c (get_call_info): Add the get_call_info () code from the
6736         amd64 port, not yet used.
6737
6738 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
6739
6740         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
6741         a struct type.
6742
6743 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
6744
6745         * driver.c: Added --security option to activate the security manager.
6746         Right now this will allow code generation for declarative demands and
6747         is disabled when AOT is specified.
6748         * mini.c: Add code generation for declarative security demands.
6749         * mini.h: Add mono_use_security_manager as an extern gboolean.
6750
6751 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
6752
6753         * aot.c (mono_compile_assembly): Speed up compilation a bit by
6754         emitting more dense assembly code.
6755
6756         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
6757         exception throwing stuff.
6758
6759 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
6760
6761         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
6762         dead code.
6763
6764         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
6765         left in by mistake.
6766
6767         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
6768         fixed.
6769
6770         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
6771
6772         * tramp-*.c: Only patch vtable slots if the object is in the current
6773         domain. Fixes appdomain-unload.exe.
6774
6775         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
6776         
6777         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
6778         x86 branch.
6779
6780 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
6781
6782         * mini.c (reverse_branch_op): New helper function.
6783
6784         * mini.c (optimize_branches): Run the new optimization only on 
6785         platforms which support it. Also reverse all kinds of branches.
6786
6787         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
6788
6789         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
6790         a throw statement.
6791
6792         * mini.c (optimize_branches): Reverse not-equals branches if the false
6793         bblock is a throw. This happens a lot of time with argument checking in
6794         corlib.
6795
6796         * mini.c (mono_codegen): Add support for placing basic blocks after
6797         the function epilogue.
6798
6799         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
6800         function epilogue.
6801         
6802 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
6803
6804         * mini.c (setup_stat_profiler): Only set this up if the platform
6805         supports ITIMER_PROF.
6806
6807 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
6808
6809         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
6810         previous patch.
6811
6812         * inssel.brg: Fix a warning.
6813
6814 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
6815
6816         * mini.c: added support for statistical profiler 
6817         (run with: --profile=default:stat).
6818
6819 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
6820
6821         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
6822
6823         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
6824
6825         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
6826         related to global registers from the amd64 port.
6827
6828 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
6829
6830         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
6831
6832         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
6833         with global registers.
6834         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
6835
6836         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
6837
6838 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
6839
6840         * debug-mini.c (encode_value): Fix off-by-one.
6841
6842         * aot.c (encode_value): Likewise.
6843
6844         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
6845
6846 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
6847
6848         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
6849         AOT.
6850
6851         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
6852         
6853         * aot.c (emit_method_info): Increase size of temp buffer.
6854
6855         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
6856         the AOT case.
6857
6858 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
6859
6860         * aot.c (emit_method_info): Fix build.
6861         
6862         * aot.c: Further rework of the AOT file format to reduce the size of
6863         the method info data.
6864
6865         * mini.h: Bump AOT file format version.
6866
6867 2004-12-27  Martin Baulig  <martin@ximian.com>
6868
6869         * mini.c (mini_get_method): New static method; call
6870         mono_get_method_full() and mono_get_inflated_method().
6871         (mono_method_to_ir): Use mini_get_method() instead of
6872         mono_get_method_full(). 
6873
6874 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
6875
6876         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
6877
6878 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
6879
6880         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
6881
6882         * inssel-amd64.brg: Add some optimization rules.
6883
6884 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
6885
6886         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
6887         standard not GC'd stuff is fine.
6888
6889 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
6890
6891         * aot.c: Rework the AOT file format to get rid of most of the global
6892         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
6893
6894         * mini.h: Bump AOT file format version.
6895         
6896 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
6897
6898         * mini.h: Bump AOT file format version.
6899
6900         * aot.c (mono_aot_is_got_entry): New function to determine if an 
6901         address is inside a GOT.
6902
6903         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
6904
6905         * cpu-pentium.md: Increase the maximum size of some instructions which
6906         might involve a got access.
6907         
6908         * mini.c (get_method_from_ip): Another debug helper function.
6909
6910         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
6911         when got var accesses are created during the decompose phase.
6912
6913         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
6914
6915         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
6916         argument mini_compile_method and to MonoCompile, and use this to
6917         determine whenever a given method is compiled for AOT. This allows the
6918         other methods compiled during AOT compilation to be free of AOT stuff,
6919         so the backends does not need to add special support for them by
6920         creating a fake GOT etc.
6921
6922         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
6923         longer needed.
6924
6925 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
6926
6927         * mini.c (mono_method_to_ir): It turns out that some of the
6928         x-appdomain wrappers are lax with types, so just ignore this for
6929         all wrappers.
6930
6931         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
6932         at the vtable->klass. If it is non-shared code we can just use the
6933         vtable.
6934
6935 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
6936
6937         * mini-ppc.c: access MonoDomain from tls, too.
6938
6939 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
6940
6941         * declsec.c: Removed unused variable (and related warning ;-)
6942
6943 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
6944
6945         * iltests.il: New test for LDELEMA on an array of ref types.
6946
6947         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
6948         all ldelema's on reftypes.
6949         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
6950         it was the wrong place to put it.
6951
6952         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
6953         register to pop to make this cleaner, at the request of Paolo.
6954
6955 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
6956
6957         * mini-ops.h (OP_GETHASHCODE): New op.
6958
6959         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
6960
6961         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
6962         operation.
6963
6964         For a microbenchmark, this reduces the cost of Hashtable.get_Item
6965         by 25%.
6966         
6967         * mini-x86.c (mono_arch_output_basic_block): Rather than
6968
6969         add ebp, 4
6970
6971         Emit
6972
6973         pop edx
6974
6975         The first is 3 bytes while the second is 1. This saves 36 kb on
6976         mscorlib, quite a big saving. When bootstraping mcs, I was able to
6977         see a small boost because of icache locality.
6978
6979         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
6980
6981 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
6982
6983         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
6984         started code sharing with the generic code.
6985
6986 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
6987
6988         * mini-ppc.c, cpu-g4.md: added code for direct access to
6989         tls data slots.
6990
6991 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
6992
6993         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
6994          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
6995         to OP_TLS_GET.
6996
6997 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
6998
6999         * declsec.c|h: Added functions to cache the declarative stack modifiers
7000         in MonoJitInfo and to create a security frame from a MonoJitInfo 
7001         structure.
7002         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
7003         created. Register internal calls for System.Security.SecurityFrame::
7004         _GetSecurityFrame and _GetSecurityStack.
7005         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
7006         the definitions for the new stack walk/callback mechanism.
7007         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
7008         first security frame for LinkDemands and InheritanceDemands) and
7009         GetSecurityStack for Demands. Both use the new mono_walk_stack code
7010         from lupus.
7011         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
7012         walk initialization (lupus).
7013
7014 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7015
7016         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
7017         idiom.
7018         (handle_loaded_temps): Do not create a temporary variable for
7019         things that we know are temps. They will never be modified.
7020         (mono_spill_call): Set MONO_INST_IS_TEMP
7021         (mono_emulate_opcode): ditto
7022         (emit_tree): ditto
7023         (mono_method_to_ir.CEE_DUP): ditto
7024
7025 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
7026
7027         * mini.c (type_to_eval_stack_type): Make this handle the void type
7028         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
7029         (emit_tree): use ip_in_bb to special case some common idioms
7030         Update all callers to pass in the IP.
7031         (mono_method_to_ir): Make CEE_CALL* do the above as well.
7032
7033         This gives us a nice 2% speedup in mcs bootstrap.
7034
7035         * mini-x86.c (peephole_pass): Peephole pass to make
7036         mov  [foo], eax
7037         push [foo]
7038
7039         into
7040
7041         mov [foo], eax
7042         push eax
7043
7044         * mini.c (ip_in_bb): new method.
7045         (mono_method_to_ir): use this method rather than doing the hash
7046         lookup ourselves.
7047
7048         * linear-scan.c (mono_linear_scan): When expiring actives, you
7049         don't need to keep around variables that expire on this
7050         instruction. This makes it so that:
7051              a = b + 1
7052         will turn into:
7053              store (ebx add (ebx, 1))
7054         which will become
7055              add ebx, 1
7056
7057 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
7058
7059         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
7060         combination to avoid doing two copies. Fix up problems with previous
7061         patch.
7062
7063         * mini.c: Fix 64 bit warnings.
7064
7065         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
7066
7067 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
7068
7069         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
7070         changes from the x86 code.
7071
7072         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
7073
7074 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7075
7076         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
7077         throwing code to reduce its size, unify the AOT and non-aot code and 
7078         get rid of relocations in the AOT case.
7079
7080         * mini-x86.h mini.c exceptions-x86.c 
7081         (mono_arch_get_throw_corlib_exception): New arch specific function to 
7082         raise corlib exceptions which doesn't require relocations in the 
7083         caller.
7084
7085         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
7086
7087 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7088
7089         * mini.c (mono_emit_method_call): Only allocate the got var when it is
7090         needed.
7091
7092         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
7093         in the AOT case.
7094
7095 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
7096
7097         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
7098         with add function when used from Inc/dec atomic 
7099         functions. Re-enabled optimization on x86.
7100         * mini-ops.h: renamed atomic_add functions to
7101         allow _add to match the Interlocked::Add and
7102         _add_next to match Interlocked::Inc/Dec.
7103
7104 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
7105
7106         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
7107         linking of BBs to the end BB, and enabled SSAPRE also with
7108         consprop and copyprop (which was prevented by that bug).
7109
7110 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
7111
7112         * mini-x86.c: disabling the Interlocked optimizing code. 
7113
7114 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7115
7116         * aot.c (load_aot_module): Move reading of got_addr after the AOT
7117         file version check.
7118         
7119 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
7120
7121         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
7122         interlocked optimization due lack of support on x86, rewrote 
7123         exchange to take into account that base may be in eax.
7124         
7125         xsp works again; activated Interlocked optimizing code.
7126         
7127 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7128
7129         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
7130
7131 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
7132
7133         * mini-ops.h: Add new opcodes.
7134
7135         * mini.h: Add new patch types. Add got_var to MonoCompile.
7136
7137         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
7138         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
7139         make it work with all kinds of patchable code.
7140
7141         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
7142         address of the GOT, and referencing entries in the GOT.
7143
7144         * mini.c: Add code to load the GOT address if needed by an opcode.
7145
7146         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
7147         independent AOT code on the x86 using an elf-style Global Offset Table.
7148
7149 2004-12-14  Raja R Harinath  <rharinath@novell.com>
7150
7151         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
7152
7153 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7154
7155         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
7156         when running xsp.
7157
7158 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
7159
7160         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
7161         of Interlocked:Increment/Decrement/Add as inline ops.
7162         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
7163
7164 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
7165
7166         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
7167         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
7168
7169 2004-12-12  Duncan Mak  <duncan@ximian.com>
7170
7171         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
7172         again. `patch_info->table_size' is no longer valid after Zoltan's
7173         commit #37636.
7174
7175 2004-12-12  Martin Baulig  <martin@ximian.com>
7176
7177         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
7178         if we are the "real" method, ie. not an inlined method inside it.
7179
7180 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
7181
7182         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
7183         before we look in the special fields table. This fixes
7184         ../tests/thread-static-init.cs.
7185
7186 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7187
7188         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
7189         for Array get_Rank and get_Length. Fixes bug #70465.
7190
7191 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
7192
7193         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
7194         separate structure to reduce the size of MonoJumpInfo.
7195
7196 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7197
7198         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
7199
7200 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
7201
7202         * mini.c (mini_get_inst_for_method): Changed to allow ports
7203         to return a MonoInst instead of opcode 
7204         (renamed mini_get_opcode_for_method to better reflect the new functionality)
7205         
7206         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
7207         Allow ports to return a created MonoInst instead of op-code, will enable
7208         new optimizations.
7209         (renamed mini_get_opcode_for_method to better reflected the functionality)
7210
7211 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
7212
7213         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
7214
7215 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7216
7217         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
7218         Fixes #69985.
7219
7220 2004-12-08  Martin Baulig  <martin@ximian.com>
7221
7222         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
7223         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
7224
7225 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7226
7227         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
7228         correctly.
7229
7230         * exceptions.cs: Disable some tests which depend on properties of x86 fp
7231         arithmetic.
7232
7233 2004-12-08  Raja R Harinath  <rharinath@novell.com>
7234
7235         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
7236
7237 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7238
7239         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
7240         bug introduced by the previous patch.
7241
7242 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
7243
7244         * mini-ppc.c, objectc.cs: handle large structs passed by value
7245         (fixes bug #69972).
7246
7247 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7248
7249         * mini-ppc.c: OP_ARGLIST implementation from
7250         Geoff Norton  <gnorton@customerdna.com>.
7251
7252 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
7253
7254         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
7255         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
7256
7257 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
7258
7259         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
7260
7261 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7262
7263         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
7264         support.
7265
7266 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7267
7268         * mini-sparc.c: Zero out localled-ed memory.
7269
7270         * iltests.il: Add tests for zeroing out localloc-ed memory.
7271
7272 2004-12-04  Martin Baulig  <martin@ximian.com>
7273
7274         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
7275         mono_method_get_signature_full().       
7276
7277 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
7278
7279         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
7280         and some utility functions (always for SSAPRE), integrated SSAPRE.
7281         * mini.h: Likewise.
7282         * driver.c: Added ssapre option.
7283         * ssa.c: Small fix on OP_ARG handling.
7284         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
7285         * Makefile.am: Likewise.
7286
7287 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7288
7289         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
7290         now in the xp code.
7291
7292         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
7293         icall.
7294
7295 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7296
7297         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
7298         
7299         * cpu-s390.md : Increase instruction length of oparglist.
7300
7301         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
7302
7303 2004-11-30  Martin Baulig  <martin@ximian.com>
7304
7305         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
7306         virtual generic methods.  We call a special helper_compile_generic_method()
7307         icall to retrieve the method from the vtable, inflate and compile
7308         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
7309
7310         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
7311
7312 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
7313
7314         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
7315
7316 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
7317
7318         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
7319         Fixes #69929.
7320
7321 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
7322
7323         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
7324         platforms with PIC aot.
7325
7326 2004-11-28  Martin Baulig  <martin@ximian.com>
7327
7328         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
7329         Fixes gen-112.cs.
7330
7331 2004-11-28  Martin Baulig  <martin@ximian.com>
7332
7333         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
7334         the result of mono_type_get_underlying_type() to check whether
7335         we're byref.
7336
7337 2004-11-26  Martin Baulig  <martin@ximian.com>
7338
7339         * mini.c
7340         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
7341         in the g_assert().
7342
7343 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
7344
7345         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
7346         the same way as the other arguments so they won't get clobbered.
7347
7348         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
7349         calls through R11 since it is clobbered by the trampoline code.
7350
7351 2004-11-26  Raja R Harinath  <rharinath@novell.com>
7352
7353         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
7354         pick up in-tree mscorlib.dll.
7355
7356 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7357
7358         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
7359
7360         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
7361         runtime data/code are now stored in a table similar to the GOT in ELF. 
7362         This allows the code itself to be position independent.
7363
7364         * aot.c: Fix loading of referenced assemblies after the lazy assembly
7365         loading changes.
7366
7367         * aot.c: Attach ELF type (object/function) directives to all global
7368         symbols.
7369
7370         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
7371
7372         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
7373
7374         * mini-amd64.h: Turn on PIC AOT code.
7375
7376         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
7377         returning the offset within an OP_AOTCONST instruction where the GOT
7378         offset needs to be added.
7379
7380         * mini.h: Bump AOT file format version.
7381
7382 2004-11-25  Martin Baulig  <martin@ximian.com>
7383
7384         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
7385         uninflated generic methods.
7386
7387 2004-11-25  Martin Baulig  <martin@ximian.com>
7388
7389         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
7390
7391 2004-11-24  Martin Baulig  <martin@ximian.com>
7392
7393         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
7394         original klass (this only applies for generic instances).
7395
7396 2004-11-24  Martin Baulig  <martin@ximian.com>
7397
7398         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
7399         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
7400         that array).
7401
7402 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7403
7404         * mini.c (mono_method_to_ir): Disable inlining for methods containing
7405         localloc. Fixes #69678.
7406
7407         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
7408         
7409 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
7410
7411         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
7412         used SSE registers on pinvoke calls. Fixes #69774.
7413
7414 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
7415
7416         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
7417         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
7418
7419 2004-11-23  Raja R Harinath  <rharinath@novell.com>
7420
7421         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
7422         Refer directly to the mcs/ tree.
7423
7424 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7425
7426         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
7427         Check if a trampoline for a synchronized method is required. 
7428
7429 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
7430
7431         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
7432         with localloc if needed. Throe arithmetric exception in
7433         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
7434         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
7435
7436 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
7437
7438         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
7439         types before switching on type.  Fixes #69622.
7440
7441 2004-11-19  Raja R Harinath  <rharinath@novell.com>
7442
7443         * Makefile.am (check-local): New.  Integrate into 'make check'.
7444         (MCS,RUNTIME): Define using in-tree mono and mcs.
7445         (ILASM): New.
7446         (%.exe): Use $(ILASM).
7447
7448 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
7449
7450         * mini-ppc.c: adjust initial prolog size (bug #69691).
7451
7452 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
7453
7454         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
7455         #69664.
7456
7457 2004-11-17  Raja R Harinath  <rharinath@novell.com>
7458
7459         * Makefile.am (clean-local): Rename from 'clean'.
7460
7461 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7462
7463         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
7464         to mono_arch_is_int_overflow. 
7465         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
7466         SIGFPE events.
7467
7468 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
7469
7470         * declsec.c|h: New files to support declarative security attributes.
7471         Added function to check if a method has (applicable) security.
7472         * mini.c|h: Add check for declarative security attributes in
7473         mono_method_check_inlining.
7474         * Makefile.am: Added declsec.c and declsec.h to the build.
7475
7476 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7477
7478         * mini.c, mini.h: update to keep dynamic code info per-domain.
7479
7480 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
7481
7482         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
7483         (mini_init): Get rid of it from here too.
7484
7485 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
7486
7487         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
7488         implemented OP_RETHROW (patch by Geoff Norton
7489         <gnorton@customerdna.com>).
7490
7491 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
7492
7493         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
7494         between appdomains.  Fixes appdomain-unload on PPC.
7495
7496 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
7497
7498         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
7499         mini-exceptions.c: handle the new wrapper types.
7500         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
7501         token value as a MonoClass* when compiling a wrapper.
7502         mono_jit_create_remoting_trampoline now takes an additional
7503         MonoRemotingTarget parameter.
7504         
7505 2004-11-10  Martin Baulig  <martin@localhost>
7506
7507         * mini.c (mono_method_to_ir): Use `generic_container->context'
7508         rather than creating a new one.
7509
7510 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7511
7512         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
7513
7514         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
7515
7516 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
7517
7518         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
7519         the experimental aot cache stuff.
7520
7521 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
7522
7523         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
7524         mini-exceptions.c: update to exception clause structure changes.
7525
7526 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
7527
7528         * exceptions-x86.c (throw_exception): Fix warnings.
7529
7530         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
7531         for OP_RETHROW.
7532
7533 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
7534
7535         * exceptions-sparc.c (get_throw_exception): Really fix this.
7536
7537 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
7538
7539         * tramp-*.c: we no longer support icalls without wrappers, so
7540         a bit of code can be removed here
7541
7542 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
7543
7544         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
7545         patch.
7546
7547         * cpu-sparc.md: Add op_rethrow.
7548
7549         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
7550
7551         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
7552
7553         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
7554         * mini-ops.h: Add OP_RETHROW.
7555
7556         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
7557
7558         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
7559
7560 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
7561         
7562         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
7563         Makes the output much easier to read
7564
7565 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
7566
7567         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
7568         prevents another huge leak when compiling with ssa. Secondly, the
7569         performance of doing this rather than freeing the lists is much
7570         better. GList does a lock every time you allocate a list link,
7571         so that it can use a memory pool. So, it is better to just use
7572         a memory pool of our own.
7573         
7574         * ssa.c, linear-scan.c: replace g_list_remove_link with
7575         g_list_delete.  The remove one does not free the GList, so we were
7576         leaking memory. On -O=all --compile-all with corlib, this cut down
7577         3 MB of allocations.
7578
7579 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
7580
7581         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
7582
7583         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
7584
7585         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
7586         into a new function mono_create_jit_trampoline ().
7587
7588 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
7589
7590         * trace.c (get_spec): Allow tracing of classes without a namespace.
7591
7592 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
7593
7594         * mini.c: Fix pointer overwrite in mini_method_compile.
7595
7596 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
7597
7598         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
7599         The darwin ABI needs some special handling for 1 and 2 byte structs
7600         Lets use lbz/lhz instead of lwz everywhere.
7601         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
7602         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
7603         Use stb/sth for the former, and put the latter always on stack instead of in
7604         argument registers.
7605
7606 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
7607
7608         * trace.c (is_filenamechar): Add '_'.
7609
7610 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
7611
7612         * mini-s390.c: Fix prolog length to allow for large trace requirements.
7613
7614         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
7615
7616 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
7617
7618         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
7619         depends on libmonogc. Fixes #68805.
7620
7621 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
7622
7623         * mini.c (mono_jit_free_method): Provide extra information for
7624         this error.  Currently this leaks, but will be turned into a
7625         developer option in the future.
7626
7627 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
7628
7629         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
7630
7631 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
7632
7633         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
7634         boundary. Fixes reading of PATCH_INFO_R4 and R8.
7635         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
7636
7637 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
7638
7639         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
7640         trampolines for AOT code.
7641
7642 2004-10-22    <vargaz@freemail.hu>
7643
7644         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
7645         constructed types. Fixes #68136.
7646
7647 2004-10-21  Martin Baulig  <martin@ximian.com>
7648
7649         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
7650         if it returns true, unwind the stack to the call instruction.
7651
7652 2004-10-21    <vargaz@freemail.hu>
7653
7654         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
7655
7656         * mini.h: Bump AOT version number.
7657
7658         * objects.cs: Add another test for unbox trampolines.
7659
7660         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
7661         valuetype methods.
7662
7663 2004-10-20    <vargaz@freemail.hu>
7664
7665         * driver.c: Add SHARED to the set of optimizations tested.
7666
7667         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
7668
7669         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
7670         used by CEE_NEWARR.
7671
7672         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
7673
7674 2004-10-20  Martin Baulig  <martin@ximian.com>
7675
7676         * mini-exceptions.c (mono_handle_exception): Call
7677         mono_debugger_handle_exception() to tell the debugger about
7678         catch/finally clauses.
7679
7680 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
7681
7682         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
7683
7684         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
7685         #68447.
7686
7687 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
7688
7689         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
7690         methods as their native size, fixed bug #57543, #57545.
7691         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
7692         This saves a temporary register and mullw call down into 1 (minor perf
7693         increase for cases like sum = sum * 5;  This use to translate into:
7694             li r11,5
7695             mullw r28,r28,r11
7696         It now translates to
7697             mulli r28,r28,5
7698
7699 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
7700
7701         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
7702         #68388.
7703
7704 2004-10-11  Martin Baulig  <martin@ximian.com>
7705
7706         * mini.c (mono_method_to_ir): If we're a generic method, get the
7707         MonoGenericContainer from our MonoMethodNormal and create a
7708         MonoGenericContext from it.
7709
7710 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
7711
7712         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
7713
7714         * basic-long.cs: Add test for checked i8->i2 cast.
7715
7716 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
7717
7718         * inssel-ppc.brg: added a couple of speedup rules.
7719
7720 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
7721
7722         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
7723         to speed up rebuilds.
7724
7725 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7726
7727         * mini-s390.c: Minor fix to OP_OR_IMM.
7728
7729 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
7730
7731         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
7732         better. Fixes appdomain-unload.exe on sparc.
7733
7734 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
7735
7736         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
7737         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
7738         see bug 67324.
7739
7740 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
7741
7742         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
7743
7744 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
7745
7746         * mini.c: Always generate a field read/write wrapper for members
7747         of the class MarshalByRefObject since the actual instance could
7748         be a CBO.
7749
7750 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
7751
7752         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
7753
7754 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
7755
7756         * driver.c mini.h trace.c: Move the setting of the main assembly into
7757         a separate function called mono_trace_set_assembly () and call it after
7758         actually loading the main assembly. Fixes #66872.
7759
7760 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
7761
7762         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
7763         using the code manager.
7764
7765 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
7766
7767         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
7768
7769 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
7770
7771         * cpu-amd64.md: Fix bug in previous patch.
7772         
7773         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
7774         #66650.
7775
7776 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
7777
7778         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
7779         mini-exceptions.c: updates for changed stack walk interface.
7780
7781 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7782
7783         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
7784
7785 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
7786
7787         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
7788
7789 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
7790
7791         * driver.c (mini_regression_list): Do not call mono_assembly_close 
7792         since assemblies can't be unloaded.
7793         
7794 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
7795
7796         * cpu-amd64.md: Fix more instruction lengths.
7797
7798         * cpu-amd64.md: Fix lengths of some instructions.
7799
7800 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
7801
7802         * inssel.brg: Make the array ldelema check aot friendly.
7803
7804 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
7805
7806         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
7807
7808         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
7809
7810 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
7811
7812         * mini-x86.c: Fix build.
7813
7814         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
7815         mono_type_get_underlying_type () helper function to simplify code.
7816         
7817 2004-09-09  Martin Baulig  <martin@ximian.com>
7818
7819         * mini-amd64.c: Don't access `type->data.klass' directly, call
7820         mono_class_from_mono_type() instead since the type may be a
7821         generic instance.
7822
7823 2004-09-09  Martin Baulig  <martin@ximian.com>
7824
7825         * mini-amd64.c (get_call_info): Fix support for generic instances.
7826         (add_valuetype): Use mono_class_from_mono_type() to get the class
7827         since we can be a generic instance.
7828
7829 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
7830
7831         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
7832
7833 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
7834
7835         * liveness.c: reset spill costs on each scan: bug 62107
7836
7837 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
7838
7839         * exceptions-sparc.c (mono_arch_find_jit_info): remove
7840         unnecessary line that doesn't compile
7841
7842 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7843
7844         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
7845         trampolines, make them call an error function so people can fix their
7846         code.
7847
7848 2004-09-06  Martin Baulig  <martin@ximian.com>
7849
7850         * mini.c (mono_method_to_ir): When initializing locals, handle a
7851         generic instances like a valuetype if it's a valuetype and like a
7852         class if it's a class.
7853
7854 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7855
7856         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
7857         stack. Fixes #64674.
7858
7859         * exceptions.cs: Add test for unwinding of call arguments.
7860
7861 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
7862
7863         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
7864         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
7865         set the carry/borrow flag). The sparc and s390 implementations
7866         can now use optimized versions (and simplify the code). ppc bugfixes.
7867
7868 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7869
7870         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
7871
7872 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
7873
7874         * inssel-amd64.brg: Remove leftover 32 bit rule.
7875
7876         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
7877
7878 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
7879
7880         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
7881         mono_arch_find_jit_info functions into a new function. Fix a memory
7882         leak.
7883
7884         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
7885         refactored code.
7886         
7887 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7888
7889         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
7890         as well.
7891         
7892         * exceptions.cs: Add array size tests.
7893
7894         * mini.c: Allocate a separate icall wrapper for each arity of 
7895         mono_array_new_va. Fixes #59509.
7896
7897         * exceptions.cs: Add testcase for 64578.
7898
7899         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
7900
7901         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
7902         
7903 2004-09-02  Martin Baulig  <martin@ximian.com>
7904
7905         * mini.c (mono_method_to_ir): When initializing the locals, call
7906         handle_initobj() on the generic instance itself, not its
7907         underlying type.
7908
7909 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7910
7911         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
7912         MonoJitInfo for dynamic methods.
7913
7914         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
7915
7916         * mini.c: Add support for freeing JIT data for dynamic methods.
7917         
7918 2004-09-01  Martin Baulig  <martin@ximian.com>
7919
7920         * mini-x86.c (is_regsize_var): Added support for generic
7921         instances.
7922         (mono_arch_emit_prolog): Make this compile again, use
7923         `x86_push_imm_template (code)'.
7924
7925 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
7926
7927         * mini-x86.c: make all push_imm instructions that get
7928         patched always emit the long form
7929
7930 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
7931
7932         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
7933         in a per-domain hash.
7934
7935         * mini-amd64.c (merge_argument_class_from_type): Handle generic
7936         types.
7937
7938 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
7939
7940         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
7941         work.
7942         
7943         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
7944         work.
7945
7946         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
7947         Beginnings of SSE2 support.
7948
7949         * exceptions.cs: Add more tests for checked int<->uint casts.
7950
7951 2004-08-28  Martin Baulig  <martin@ximian.com>
7952
7953         * mini-x86.c (mono_arch_instrument_epilog): Added support for
7954         generic instances.
7955
7956         * mini.c
7957         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
7958         Handle generic instances recursively.
7959
7960 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
7961
7962         * iltests.il: test for conv.u8 on a constant
7963
7964 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
7965
7966         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
7967         LCONV_x4 (shrun_32 (membase)).
7968
7969 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
7970
7971         * inssel-x86.brg: c&p rules for push/setret of long
7972
7973 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
7974
7975         * inssel-x86.brg: c&p rules for compare (base, regvar) and
7976         compare (regvar, base)
7977
7978         * inssel-x86.brg: more burg love
7979
7980         * inssel.brg: more cleanup
7981
7982         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
7983
7984 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
7985
7986         * basic-long.cs, basic-calls.cs: new tests for optimization.
7987
7988 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
7989
7990         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
7991         patch.
7992
7993 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
7994
7995         * mini-amd64.c (read_tls_offset_from_method): Add another case.
7996         
7997 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
7998
7999         * inssel.brg (mini_emit_memcpy): use 
8000         NO_UNALIGNED_ACCESS to disable memcpy optimization
8001
8002 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
8003
8004         * mini-amd64.c: Handle generic types in various places.
8005
8006         * mini.c (mono_method_to_ir): Handle generic types in init locals.
8007
8008 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
8009
8010         * mini.c (handle_box): Fix warning.
8011
8012         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
8013
8014         * mini-amd64.h: Enable the emit_state optimization.
8015
8016         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
8017
8018         * mini-amd64.c: Add some new 64 bit peephole opts.
8019
8020         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
8021
8022         * cpu-amd64.md: sreg1 of div instructions must be %rax.
8023
8024         * mini-amd64.c: Register allocator fixes.
8025
8026         * mini.c: Add an optimization to emit_state to avoid allocation of new
8027         registers on some platforms.
8028
8029 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
8030
8031         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
8032
8033         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
8034         allocation. Fixes #63085.
8035
8036         * basic-long.cs: Add new regression test.
8037
8038         * mini-amd64.c: Register allocator improvements.
8039
8040 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
8041
8042         * mini-amd64.c (read_tls_offset_from_method): Add another code
8043         sequence.
8044
8045         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
8046         instruction sequence for nullifying class init trampolines.
8047
8048         * objects.cs: Add new regalloc test.
8049
8050         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
8051
8052 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
8053
8054         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
8055         
8056         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
8057         arguments.
8058
8059         * driver.c: Fix profiling after TLS changes.
8060         
8061         * driver.c (mono_main): Set mono_stats.enabled if needed.
8062
8063         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
8064         CEE_BOX.
8065
8066 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
8067
8068         * mini-x86.c: use a 1 op rather than a 2 op tls access
8069         instruction -> faster.
8070
8071 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
8072
8073         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
8074         x86 backend.
8075
8076 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
8077
8078         * exceptions-sparc.c (throw_exception): fix typo
8079
8080 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
8081
8082         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
8083         set tree->dreg correctly with tls. Allow any
8084         register to be used.
8085
8086         * mini-x86.c (read_tls_offset_from_method): add new code
8087         generation pattern seen with GCC.
8088
8089
8090 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
8091
8092         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
8093         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
8094         exceptions-sparc.c: fix some performance issues in exception
8095         handling and setting of the stack trace for exceptions that were
8096         already thrown.
8097
8098 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
8099
8100         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
8101         x86 backend.
8102         
8103         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
8104         registers.
8105
8106 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
8107
8108         This patch inlines tls access, when possible.
8109         
8110         * mini.h: new arch functions for TLS intrinsics.
8111         All platforms updated with a stub.
8112
8113         * mini.c: use the new intrinsics
8114
8115         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
8116         arch specific intrinsic for tls variables
8117
8118 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
8119
8120         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
8121         under windows.
8122
8123 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
8124
8125         * mini.c: thread local allocation
8126
8127 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
8128
8129         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
8130
8131         * Makefile.am: Link against the static version of libmonogc.
8132         
8133         * Makefile.am: Link the static versions of the convenience libraries
8134         into the mono executable.
8135
8136         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
8137
8138 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
8139
8140         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
8141         on integer overflow.
8142
8143         * mini-amd64.c: Reorganize function call code.
8144
8145         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
8146
8147 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
8148
8149         * inssel-x86.brg: use xor eax,eax.
8150         
8151         * basic.cs: new tests
8152
8153 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
8154
8155         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
8156         in exception throwing code.
8157         
8158 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
8159
8160         * inssel-x86.brg: use xor esi,esi.
8161
8162 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
8163
8164         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
8165         can trace methods compiled during mini_init () too.
8166
8167         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
8168         CEE_CONV_U4.
8169
8170 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
8171
8172         * Makefile.am: static link on x86 (r=zoltan)
8173
8174 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
8175
8176         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
8177         code since it causes some programs to fail.
8178
8179 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
8180
8181         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
8182
8183 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
8184
8185         * mini.c: ovfops_op_map - add STACK_OBJ case for
8186         CONV_I 
8187         * basic.cs: add test_0_pin_string as test
8188         case for above.
8189
8190 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
8191
8192         * Makefile.am: build C# if srcdir != builddir
8193
8194 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
8195
8196         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
8197         fall-through blocks.
8198
8199 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
8200
8201         * driver.c: enable loop by default again and include abcrem in -O=all.
8202
8203 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
8204
8205         * iltests.il: Add some localloc tests.
8206
8207         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
8208
8209         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
8210         Fixes #62574.
8211
8212         * inssel-amd64.brg: Add some optimizations.
8213
8214         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
8215         for gcc-3.4.
8216
8217         * Makefile.am: Statically link mono against libmono on AMD64.
8218         
8219         * mini-amd64.c inssel-amd64.brg: Optimizations.
8220
8221 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
8222
8223         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
8224
8225         * tramp-amd64.c: Patch calling code in trampolines.
8226
8227 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
8228
8229         * mini-amd64.c: pinvoke struct passing fixes.
8230
8231 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
8232
8233         * mini-sparc.c: redo change, make mono_arch_cpu_init call
8234         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
8235
8236 2004-08-05  Duncan Mak  <duncan@ximian.com>
8237
8238         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
8239         CEE_LDELEM_ANY.
8240
8241 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
8242
8243         * mini-amd64.c (emit_move_return_value): Move return value for normal
8244         calls too.
8245
8246 2004-08-05  Martin Baulig  <martin@ximian.com>
8247
8248         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
8249         `type->type'; just modify `type' itself when dealing with enums
8250         and generic instances.
8251         (check_call_signature): Make `simple_type' a `MonoType *'.
8252
8253 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
8254
8255         * mini.c: Use OP_PADD to add offsets to addresses.
8256
8257         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
8258
8259 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
8260
8261         * mini-sparc.c (mono_arch_emit_epilog): fix check
8262         for folding last op into restore instruction
8263
8264 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
8265
8266         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
8267         helper methods using the code manager.
8268         
8269         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
8270
8271         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
8272
8273 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8274         
8275         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
8276           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
8277
8278         * mini-s390.c: fix tail processing
8279
8280 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
8281
8282         * mini-ppc.c: mul.ovf.un exception name fix.
8283
8284 2004-08-03  Martin Baulig  <martin@ximian.com>
8285
8286         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
8287         instances; before jumping to `handle_enum', also modify `ptype'.
8288
8289 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
8290
8291         * cpu-sparc.md: fcall maximal length too small.
8292
8293 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
8294
8295         * mini-amd64.c mini.h: Add initial support for passing/returning 
8296         structures to/from pinvoked methods.
8297
8298 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
8299
8300         * mini-ppc.c: reg allocator fix.
8301
8302 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
8303
8304         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
8305
8306         * inssel.brg: Optimize memset on 64 bit machines.
8307
8308         * mini-amd64.c: Fix some vararg cases.
8309
8310 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8311
8312         * mini-s390.c: Corrected macro in emit_float_to_int
8313
8314         * s390-abi.cs: Tests to exercise the s390 ABI
8315
8316 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8317
8318         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
8319         caller saved regs.
8320
8321         * basic.cs: Add a test for add.ovf.un.
8322
8323 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
8324
8325         * mini-sparc.c: add case for OP_IDIV_UN
8326
8327 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8328
8329         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
8330         
8331         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
8332
8333 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
8334
8335         * basic.cs: regression tests.
8336
8337         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
8338         regressions.
8339
8340 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8341
8342         * basic.cs: Add a new test.
8343
8344         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
8345         and AOT. Various fixes and optimizations.
8346
8347         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
8348
8349 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8350
8351         * mini-ppc.c: make sure temp regs are not used for global reg
8352         allocation.
8353
8354 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
8355
8356         * cpu-sparc.md: conv_i8 fix for 64bits
8357
8358         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
8359
8360 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
8361         
8362         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
8363         add opcode for cmp BYTE PTR [eax], imm.
8364
8365         * inssel.brg: Make memcpy and memset takes bases.
8366
8367 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
8368
8369         * *-amd64.*: More AMD64 work.
8370         
8371 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
8372
8373         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
8374         add a compare-not-equal opcode.
8375         
8376 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
8377
8378         * mini.c: Use mono_init_from_assembly instead of mono_init.
8379         
8380 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
8381
8382         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
8383
8384         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
8385
8386         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
8387
8388         * inssel.brg: 64 bit fixes.
8389
8390         * mini.h (MonoCallInst): Add some AMD64 specific data.
8391
8392         * mini.h: Add some OP_P opcodes.
8393
8394 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
8395
8396         * basic.cs: tests for 61797 and 61740
8397
8398 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
8399
8400         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
8401         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
8402
8403 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
8404
8405         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
8406
8407         * *-amd64*.*: Ongoing AMD64 work.
8408
8409 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
8410
8411         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
8412
8413         * *-amd64*: Ongoing AMD64 work.
8414
8415         * mini-arch.h: Add AMD64 support.
8416
8417         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
8418
8419         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
8420
8421         * mini-ops.h: Add new opcodes.
8422
8423         * Makefile.am: Add AMD64 support.
8424
8425         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
8426         rules into the inssel-long*.brg files.
8427
8428         * *-amd64.*: Add beginnings of AMD64 backend.
8429
8430 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
8431
8432         * mini.c (print_dfn): commenting out the code that prints
8433         the cil. With -O=deadce, this makes -v -v crash.
8434         
8435         * cpu-pentium.md: make checkthis have a length of 2
8436
8437 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
8438
8439         * mini-sparc.h: fix implementations of __builtin
8440         functions for Sun compiler for V9.
8441
8442 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
8443
8444         * mini.c: use the new stelem.ref wrapper
8445         * exceptions.cs, arrays.cs: new stelem.ref tests
8446
8447 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
8448
8449         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
8450         new XSP should work with these changes).
8451
8452 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
8453         
8454         * inssel-{long32,x86,}.brg: trivial optimizations.
8455         
8456 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
8457
8458         * mini.c: load value when emitting box operation in
8459         constrained calls.
8460
8461 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
8462
8463         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
8464         is one byte shorter than cmp DWORD PTR [eax], 0.
8465
8466 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
8467
8468         * inssel-ppc.brg: arguments on the stack are always
8469         relative to the stack pointer (spotted by Neale Ferguson).
8470
8471 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8472
8473         * exceptions-x86.c: delay appending the method name to the trace until
8474         after mono_jit_info_table_find is called, as this gets the real
8475         MonoMethod.
8476
8477 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
8478
8479         * aot.c: register roots
8480
8481 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
8482
8483         * aot.c : I could just use PLATFORM_WIN32 flag.
8484
8485 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
8486
8487         * aot.c : Reverting the previous fix. This time it broke linux build.
8488
8489 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
8490
8491         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
8492
8493 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
8494
8495         * mini.c (handle_stack_args): Remove some more debugging code.
8496         
8497         * mini.c (handle_stack_args): Remove debug output left in by mistake.
8498
8499         * driver.c mini.h aot.c: Allow additional options to be specified with
8500         --aot and pass them to mono_compile_assembly.
8501
8502         * aot.c: Add experimental code to AOT compile all loaded assemblies
8503         on demand and save the code into a cache in the filesystem.
8504
8505         * aot.c: Add support for more wrapper methods.
8506         
8507         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
8508         58863.
8509
8510         * cpu-*.md: Remove removed opcodes.
8511
8512         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
8513         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
8514         related icalls to marshal.c.
8515
8516 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
8517
8518         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
8519
8520         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
8521
8522         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
8523
8524 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
8525         * liveness.c: If liveness is recomputated we need to reset the information
8526         for each variable. This way, if the liveness range has been narrowed
8527         by optimizations that happened after the last computation, we can return
8528         a smaller range.
8529         
8530         For example, if you have
8531         
8532         {
8533                 int i = 0;
8534                 
8535                 // Tons of code that does not affect i
8536                 
8537                 i = foo ();
8538                 ...
8539         }
8540         
8541         i = 0 is dead code and will be removed by SSA. However, when
8542         linear scan gets to the code, i will still appear to be live
8543         throughout the entire block. This prevents good register allocation.
8544
8545 2004-07-06  Martin Baulig  <martin@ximian.com>
8546
8547         * debug-mini.c (mono_debug_init_method): Allow
8548         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
8549         (mono_debug_add_icall_wrapper): New method.
8550
8551         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
8552
8553 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
8554
8555         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
8556         optimization.
8557
8558 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
8559
8560         * aot.c (mono_aot_load_method): Fix loading of debug info.
8561
8562 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
8563
8564         * aot.c: Add logging support.
8565
8566 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
8567
8568         * mini.h: Add prototype for mono_print_method_from_ip.
8569
8570         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
8571
8572         * inssel.brg: 64 bit fixes.
8573
8574         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
8575         inssel-long32.brg.
8576
8577         * Makefile.am: Add SPARC64 support.
8578
8579 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
8580
8581         * aot.c: Fix alignment problems on 32 bit platforms.
8582
8583 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
8584
8585         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
8586         SPARC64.
8587
8588         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
8589         problems.
8590
8591         * mini.h: Bump AOT file version. Some 64 bit fixes.
8592
8593 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
8594
8595         * inssel-sparc.brg: Add new rule to avoid register moves.
8596
8597         * inssel.brg: Add ldind_to_load_membase helper function.
8598
8599 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
8600
8601         * mini.c: OffsetToStringData intrinsic.
8602         
8603 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
8604
8605         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
8606
8607         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
8608         regression tests.
8609
8610         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
8611 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
8612
8613         * mini.c: reinstated mono_compile_get_interface_var()
8614         on x86, too, since the change breaks the Gtk# build there as well.
8615
8616 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
8617
8618         * driver.c: remove loop from the default optimizations: it seems to
8619         interact badly with some of the other options (see bug #60613).
8620
8621 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
8622
8623         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
8624         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
8625
8626 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
8627
8628         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
8629         vararg-using methods.
8630
8631 2004-06-21  Martin Baulig  <martin@ximian.com>
8632
8633         * mini/mini-exceptions.c
8634         (mono_handle_exception): Added `gpointer original_ip' argument.
8635         After calling mono_unhandled_exception(), call
8636         mono_debugger_unhandled_exception() and if that returns true,
8637         restore the context and return.
8638
8639 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
8640
8641         * mini-ppc.c: prefer the use of relative branches so
8642         they won't need to be patched in aot code (patch from Patrick Beard).
8643
8644 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
8645
8646         * aot.c: patch from Patrick Beard to make the output assembly
8647         more correct for the MacOSX assembler. Small tweak to
8648         generate sane images on Linux/PPC, too.
8649
8650 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
8651
8652         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
8653         case until bug #59509 is fixed (shows up in #60332).
8654
8655 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
8656
8657         * mini.c: make sure the needed wrappers are compiled, too, with
8658         precomp.
8659
8660 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
8661
8662         * driver.c: remove NPTL reference in --version output.
8663
8664 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
8665
8666         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
8667         generate valid assembly for the Mach-O assembler.
8668
8669 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
8670
8671         * driver.c: don't include abcrem in the all optimization specifier
8672         since it slows down jit compilation too much for now.
8673
8674 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
8675
8676         * mini.c: use BIGMUL only if both operands have the same signage.
8677         * iltests.il: Test for bug 60056. (errors related to signage in
8678         BIGMUL).
8679
8680         r=lupus.
8681
8682 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
8683
8684         * mini.c, aot.c: memory leak fixes.
8685
8686 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
8687
8688         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
8689
8690 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
8691
8692         * Makefile.am: remove the -static hack completely, it links in
8693         statically glib as well.
8694
8695 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
8696
8697         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
8698         * exceptions.cs: make it compile with new mcs/csc.
8699
8700 2004-06-03 Massimiliano Mantione <massi@ximian.com>
8701         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
8702         and added relevant test case.
8703
8704 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
8705
8706         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
8707         regressions in gtk-sharp.
8708
8709 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
8710
8711         * exceptions.cs: New regression tests.
8712
8713         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
8714
8715 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
8716
8717         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
8718
8719 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
8720
8721         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
8722
8723         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
8724
8725 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
8726
8727         * mini.c (mono_jit_runtime_invoke): Init class in this
8728         method instead of trusting mono_jit_compile_method to
8729         do the work (because wrappers can be in object class)
8730
8731 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
8732
8733         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
8734
8735         * basic-long.cs: New regression test.
8736
8737 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
8738
8739         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
8740         and div/rem checks.
8741
8742 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
8743
8744         * Makefile.am: fix miguel's change to build mono statically against
8745         libmono (track build dependencies).
8746
8747 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8748
8749         * cfold.c: Some glib versions do not have G_MININT32.
8750
8751 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
8752
8753         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
8754         with precision of tan, atan, sin and cos, and implemented related
8755         regressions tests (fixes bug 54467, but one new problem appeared and
8756         is not fixed yet).
8757
8758 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8759
8760         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
8761
8762         * exceptions.cs: Add test for constant folding && division by zero.
8763
8764         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
8765         since driver.c is in libmono too, so the optimization was useless.
8766
8767         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
8768         variable to driver.c so the compiler can emit more efficient code to
8769         access them.
8770
8771 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8772
8773         * Makefile.am: don't distribute generated inssel.[ch] files.
8774
8775 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
8776
8777         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
8778         into the default appdomain. Fixes #58707.
8779
8780         * jit-icalls.c: Remove the broken approximation for truncl, doing
8781         no conversion is better.
8782
8783         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
8784         Fixes #58863.
8785
8786 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
8787
8788         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
8789         of the mcrxr instruction which is not available on some processors
8790         even if it's documented to be. Implement add and sub overflow correctly
8791         (still not complete for long unsigned). Speed up icalls a bit.
8792
8793 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
8794
8795         * mini.c (mono_jit_compile_method_with_opt): Make sure that
8796         we run .cctor in the current domain instead of target_domain.
8797         
8798         Fixes bug #58558, .cctor not being called in -O=shared.
8799
8800 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
8801
8802         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
8803
8804 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
8805
8806         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
8807         which can be done with an imm8, do it that way.
8808         (mono_arch_output_basic_block): ditto for a jmp
8809         (mono_arch_emit_prolog): Computate maximum offset of a label.
8810
8811 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
8812
8813         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
8814         now tries to allocate prefered physical reg's for virtual
8815         regs. This reduces the number of emited spills/loads with
8816         20-30% on our core assemblies.
8817
8818 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
8819
8820         * jit-icalls.c: truncl() is not needed and trunc() is
8821         the correct thing to do anyway (bug #58287).
8822
8823 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
8824
8825         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
8826         if available.
8827
8828 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
8829
8830         * driver.c: enable loop optimizations by default.
8831
8832 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
8833
8834         * mini-x86.c: fix calc of max loop size when aligning loops start.
8835
8836 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
8837
8838         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
8839         the stack.
8840
8841 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
8842
8843         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
8844         should set carry.
8845
8846         * basic-long.cs: Add tests for add/subtract of immediates with carry.
8847
8848         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
8849         
8850         * mini.c (inline_method): Allways inline some wrappers even if the cost
8851         is too large. Fixes #58785.
8852
8853         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
8854         
8855 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
8856
8857         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
8858         (crichton@gimp.org). Beginning of support for sparc/linux.
8859
8860         * mini-sparc.c: Optimize retrieval of LMF address.
8861
8862 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
8863
8864         * exceptions-ppc.c:  handle alloca in methods with clauses.
8865
8866 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
8867
8868         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
8869
8870 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
8871
8872         * mini.c: Delegate most of the abort signal work to 
8873           mono_thread_request_interruption, which also handles Stop and Suspend
8874           states.
8875
8876 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
8877
8878         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
8879         supports the save/restore lmf opcodes.
8880
8881 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
8882
8883         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
8884         by gcc-3.4 as well.
8885
8886         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
8887
8888 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
8889
8890         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
8891         methods which contain array accesses.
8892
8893         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
8894         boundaries. Fixes #58537.
8895
8896         * iltests.il: Add regression test for #58537.
8897
8898 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
8899
8900         * mini-x86.c (mono_arch_local_regalloc): Last part of
8901         fix for bug #58633 (releasing register to early).
8902
8903 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
8904
8905         * basic-long.cs: Add new regression test.
8906
8907 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
8908
8909         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
8910         register too early on the chain.
8911
8912 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
8913
8914         * mini.c (create_helper_signature): Use a helper function to reduce
8915         the code which needs to be written. Also set the calling convention of
8916         icalls on windows. Fixes #57840.
8917
8918 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
8919
8920         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
8921         exceptions-ppc.c: added helper function to get the instruction address
8922         from a signal handler context.
8923
8924 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
8925
8926         * helpers.c: use g_get_tmp_dir. Invokes happyness 
8927         from gonzalo.
8928
8929 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
8930
8931         * helpers.c: Add new env variable to pass args to objdump.
8932         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
8933
8934 2004-05-17  Radek Doulik  <rodo@ximian.com>
8935
8936         * Makefile.am (common_sources): added abcremoval.h so it get
8937         disted and daily mono packages on go-mono.com will build again
8938
8939 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
8940
8941         * abcremoval.c: Fixed coding style, added copyright header.
8942
8943         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
8944
8945         * mini.h: Added prototype for abc removal main function.
8946
8947         * build_relations_propagation_table.pl: Added copyright header.
8948
8949 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
8950
8951         * basic-long.cs: reg test for complex ceq_long bug.
8952
8953 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
8954
8955         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
8956         reg in long and clob case (bug #58343). Fixed/added comments.
8957
8958 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
8959
8960         * mini.c (mono_jit_runtime_invoke): Follow new convention
8961         of calling the invoke method with an function pointer.
8962
8963 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
8964
8965         * ChangeLog: Fix author of memory leak patch.
8966
8967 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
8968
8969         * Makefile.am: fix make dist as well...
8970
8971
8972 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
8973
8974         * cfold.c: Made so that conversions from pointer to int4 are no-ops
8975         on archs where pointers are 4 bytes long.
8976
8977         * Makefile.am: Added abcremoval.c source file.
8978
8979         * abcremoval.c: Added abcremoval.c.
8980
8981         * abcremoval.h: Added abcremoval.h.
8982
8983         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
8984
8985         * inssel.brg: Enabled bounds check removal.
8986
8987         * mini.c: Added support for abcrem optimization.
8988
8989         * mini.h: Added abcrem optimization label.
8990
8991         * driver.c: Added support for abcrem optimization.
8992
8993         * propagated_relations_table.def: Added propagated_relations_table.def.
8994
8995 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
8996
8997         * mini.c, cfold.c: fix style.
8998
8999 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9000
9001         * mini.c: handle issue with the low-level implementation of
9002         some long opcodes (bug #54209).
9003
9004 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
9005
9006         * basic.cs: test for my new cmov stuff.
9007
9008 2004-05-13      Patrik Torstensson
9009
9010         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
9011         opt and added peephole documentation.
9012
9013 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
9014
9015         * tramp-ppc.c: rewrote the generic trampoline code.
9016
9017 2004-05-11      Patrik Torstensson
9018
9019         * mini-x86.c: optimize long shl/shr asm code (one less branch)
9020
9021 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
9022
9023         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
9024
9025         * mini.h mini.c dominators.c: Applied patch from Derek Woo
9026         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
9027
9028         * mini.c: Add new icalls for AsAny marshalling.
9029
9030 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
9031
9032         * tramp-ppc.c, mini-ppc.c: more cleanups.
9033
9034 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9035
9036         * mini.c: no warnings.
9037
9038 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
9039
9040         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
9041
9042 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
9043
9044         * mini.c: In the thread abort signal handler, if the thread is in the
9045         process of being stoped, don't throw the Abort exception, just stop the
9046         thread.
9047
9048 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
9049
9050         * tramp-ppc.c: removed old code.
9051
9052 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
9053
9054         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
9055         do some simple speed optimizations on ppc.
9056
9057 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
9058
9059         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
9060         and large offsets in load/store.
9061
9062 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
9063
9064         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
9065         it causes regressions.
9066
9067 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
9068
9069         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
9070         support.
9071
9072 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9073
9074         * jit-icalls.c: remove warnings.
9075         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
9076         speedups for unsafe code.
9077
9078 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
9079
9080         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
9081
9082 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
9083
9084         * basic-calls.cs: Add new regression test.
9085
9086         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
9087         more portable.
9088
9089         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
9090
9091         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
9092         is no longer used.
9093
9094 2004-05-06      Patrik Torstensson
9095
9096         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
9097         long reg allocation in any reg (not only eax:edx) and implemented 
9098         long shl/shr ops in asm instead of helpers.
9099
9100 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
9101
9102         * mini-sparc.h: Fix warnings.
9103
9104         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
9105         stack.
9106
9107         * mini-exceptions.c (mono_handle_exception): Call the filter in a
9108         separate statement for clarity.
9109
9110         * mini-sparc.c: Update status.
9111
9112 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
9113
9114         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
9115         here.
9116
9117 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
9118
9119         * inssel-ppc.brg: another small pre-release workaround:
9120         we don't do overflow detection for long_sub_un.
9121
9122 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9123
9124         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
9125         (also works around a weird ppc bug: 57957).
9126
9127 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
9128
9129         * tramp-ppc.c: trampoline fixes.
9130
9131 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
9132
9133         * mini-ppc.c: fixed typos.
9134
9135 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9136
9137         * mini-ppc.c, exceptions-ppc.c: more code saves registers
9138         at the top of the stack. Fixed typos. Use a frame registers
9139         for all the methods with exception clauses.
9140
9141 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
9142
9143         * exceptions-ppc.c: restore fp registers.
9144
9145 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
9146
9147         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
9148         order from the stack top (moved the stack room to save the
9149         return value for trace after the param area). Fixed corruption
9150         in restoring registers on unwind.
9151
9152 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9153
9154         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
9155
9156 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
9157
9158         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
9159         and prolog/epilog for methods that use it. Allow
9160         enough param area room for varargs methods. Fix miguel's
9161         breakage in exception handling.
9162
9163 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
9164
9165         * Makefile.am: run genmdesc only on current arch.
9166
9167 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9168
9169         * exceptions-x86.c:
9170         * mini-x86.h: fix the build on windows.
9171
9172 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
9173
9174         * 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.
9175
9176         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
9177
9178         * mini-exceptions.c: New file.
9179         
9180         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
9181         Move some parts of the x86 exception handling code to an 
9182         arch-independent file so it can be shared with other ports.
9183
9184 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9185
9186         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
9187
9188 2004-04-26  David Waite  <mass@akuma.org>
9189
9190         * driver.c: remove comma from end of enumeration declaration
9191
9192 2004-04-26  Jackson Harper  <jackson@ximian.com>
9193
9194         * driver.c: parse config file before loading first assembly. This
9195         allows the user gac to be enabled/disabled. 
9196         
9197 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
9198
9199         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
9200         simpler mechanism: we do not care what is encoded initially
9201         (branch absolute or relative), we care about the code and its
9202         target.  I kept the old code for reference for now.
9203
9204         The new code tries first to determine if the jump is anywhere in
9205         the -/+32 absolute meg range, if it succeeds, it encodes using the
9206         absolute branch;  If not, it tried to find something in the
9207         relative range, if not, it uses the handle_thunk code. 
9208
9209 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
9210
9211         * exceptions-ppc.c: use the correct ip register on macosx.
9212
9213 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
9214
9215         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
9216
9217 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
9218
9219         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
9220         Raise exception on integer divide by zero by hand since the hw
9221         doesn't support it. Handle NaNs in FP compares.
9222
9223 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9224
9225         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
9226         code reducing duplication between the platforms and enabled
9227         signal exception handling (on linux for now).
9228
9229 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
9230
9231         * exceptions-ppc.c: more macosx support.
9232
9233 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
9234
9235         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
9236
9237 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9238
9239         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
9240
9241 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
9242
9243         * iltests.il: more tests.
9244
9245 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
9246
9247         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
9248         vars as well.
9249
9250 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9251
9252         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
9253
9254 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
9255
9256         * liveness.c: Mark variables as volatile in all basic blocks reachable
9257         from exception clauses.
9258
9259 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
9260
9261         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
9262         inlining.
9263
9264 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9265
9266         * iltests.il, basic.cs: more tests for regalloc.
9267
9268 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9269
9270         * iltests.il: Some tests for register allocation modifications
9271         I have locally.
9272
9273 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
9274
9275         * exceptions.cs: Add regression test for bug #56782.
9276
9277         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
9278         original stack trace if an exception is rethrown. Fixes #56782. Oh,
9279         the beauty of fixing the same thing in 5 different files...
9280
9281 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
9282
9283         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
9284         methods.
9285
9286 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
9287
9288         * mini.c: Add support for STRWLPARRAY marshalling convention.
9289
9290 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9291
9292         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
9293         to init the context to setup the regs pointer).
9294
9295 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
9296
9297         * exceptions-ppc.c: more exceptions work.
9298
9299 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9300
9301         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
9302         not allowed.
9303
9304 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
9305
9306         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
9307         can use the memory directly.
9308
9309         * cpu-pentium.md: Update documentation from a post from Zoltan. 
9310
9311         add x86_add_membase, x86_sub_membase, x86_mul_membase
9312
9313 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
9314
9315         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
9316         GENERAL_REGS they were also hardcoded for all PPC ports.
9317
9318         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
9319
9320         Remove hard-coded limit for floating point registers, use
9321         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
9322
9323         Notice that in MacOS X calling conventions you can fit a lot more
9324         floating point values in registers, so I should update the PInvoke
9325         test to excercise the passing of floating point values on the
9326         stack (currently broken).
9327         
9328 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
9329
9330         * tramp-ppc.c (create_trampoline_code): Added
9331         JUMP_TRAMPOLINE_SIZE. 
9332         (ppc_magic_trampoline): Follow the pattern from
9333         x86_magic_trampoline: if code is set to zero, return. 
9334         (create_trampoline_code): Always pass MonoMethod to the jump
9335         trampoline, before it was passing a null.
9336         (mono_arch_create_jump_trampoline): Implement the jump stub, could
9337         share the code with mono_arch_create_jit_trampoline. 
9338
9339         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
9340         implemented.
9341         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
9342         implemented.  
9343
9344         * cpu-g4.md: Added length for jmp instruction, the worst case
9345         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
9346         for save_lmf).
9347
9348 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
9349
9350         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
9351
9352 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
9353
9354         * mini.c: Only set bblock->real_offset when adding a new bblock, and
9355         before each IL instruction.
9356
9357         * mini.c (CEE_BOX): Fix warnings.
9358
9359 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9360
9361         * mini.c: removed a few unused vars and extra whitespace.
9362
9363 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
9364
9365         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
9366         checks.
9367         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
9368         index.
9369         (OP_GETCHR): use the above
9370         (CEE_LDELEMA): use the above.
9371
9372         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
9373         version of the generic impl.
9374         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
9375         (CEE_LDELEMA): use the above.
9376
9377 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
9378
9379         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
9380         Fixes #56317.
9381
9382         * iltests.il: Added new regression test for #56317.
9383
9384 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
9385
9386         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
9387         under NetBSD. Fixes #56450.
9388
9389         * liveness.c (update_gen_kill_set): Fix previous patch.
9390
9391 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9392
9393         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
9394
9395 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
9396
9397         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
9398         ldsfld and ldsflda.
9399
9400         * inssel-sparc.brg: Add more optimizations.
9401
9402         * mini-sparc.c: Replace multiply/divide with shifts if possible.
9403
9404 2004-04-01  Martin Baulig  <martin@ximian.com>
9405
9406         * mini.c (handle_box): New static function; moved the
9407         implementation of CEE_BOX here.
9408         (mono_method_to_ir): Added `constrained_call' variable.
9409         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
9410         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
9411         mono_method_get_constrained() to get the method.
9412
9413 2004-04-01  Martin Baulig  <martin@ximian.com>
9414
9415         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
9416         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
9417         (mono_method_to_ir): We don't need these macros anymore since
9418         mono_class_get_full() already takes care of it. 
9419
9420 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9421
9422         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
9423         use @function (as doesn't accept #function here) and check the return
9424         value of system and stop if fails.
9425
9426 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9427
9428         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
9429
9430 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
9431
9432         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
9433
9434         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
9435
9436         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
9437         #56223.
9438
9439         * basic-long.cs: Add test for negation of Int64.MinValue.
9440
9441 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
9442
9443         * mini-sparc.c: Update status.
9444
9445         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
9446
9447         * exceptions-sparc.c: Fix return value in filters.
9448
9449         * inssel-sparc.brg: Fix register allocation in some rules.
9450
9451 2004-03-28  Martin Baulig  <martin@ximian.com>
9452
9453         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
9454         if neccessary.  
9455
9456 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
9457
9458         * mini-x86.c (mono_arch_patch_code): Fix warnings.
9459         
9460         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
9461         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
9462         remove unused conv_u4 opcode.
9463
9464         * mini-x86.c: Remove valgrind workaround since it slows down things
9465         even when mono is not run under valgrind.
9466
9467 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
9468
9469         * mini-sparc.c: Update status.
9470
9471         * inssel-sparc.brg: Add some optimizations.
9472
9473         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
9474         future delay slot filling. Add support for varargs, tail calls and JMP.
9475
9476         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
9477         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
9478
9479         * inssel.brg: Fix register allocation in OP_ARGLIST.
9480
9481         * inssel.brg: Fix warnings.
9482
9483 2004-03-25  Martin Baulig  <martin@ximian.com>
9484
9485         * mini.c (inflate_generic_field): Removed.
9486         (mini_get_method): Removed, use mono_get_method_full(),
9487         (mini_get_class): Removed, use mono_class_get_full().
9488         (mono_method_to_ir): Pass our generic context to
9489         mono_field_from_token().        
9490
9491 2004-03-25  Martin Baulig  <martin@ximian.com>
9492
9493         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
9494         of a `MonoMethod *'.
9495         (mini_get_method): Take a `MonoGenericContext *' instead
9496         of a `MonoMethod *'.
9497         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
9498         a new local variable called `generic_context' which holds the
9499         current `MonoGenericContext *'; use it to lookup things.
9500
9501 2004-03-24  Martin Baulig  <martin@ximian.com>
9502
9503         * mini.c (mini_get_class): New static method; if we're inside a
9504         generic instance, inflate the class if neccessary.
9505         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
9506
9507 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
9508
9509         * iltests.il: New regression test for #55976.
9510
9511         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
9512         #55976.
9513
9514 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
9515
9516         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
9517         output.
9518
9519 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
9520
9521         * liveness.c: Consider SSA stores as well as loads when making vars
9522         volatile.
9523
9524         * exceptions.cs: New regression tests for register allocation.
9525         
9526 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
9527
9528         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
9529         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
9530           domain lock only to protect puntual access to data structures.
9531           Added access lock for sighash, jit_icall_hash_name, 
9532           jit_icall_hash_addr and domain->code_mp.
9533
9534 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
9535
9536         * driver.c: Print SIGSEGV handling method.
9537
9538         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
9539
9540         * mini.c (setup_jit_tls_data): Handle case when this is called
9541         multiple times for a thread.
9542
9543         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
9544         is different from fbxx_un. Fixes #54303. Also use constants instead of
9545         magic numbers in a lot of places.
9546
9547 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
9548
9549         * exceptions.cs: Fix cctor test when --regression is used.
9550
9551 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
9552
9553         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
9554         for Linux/ppc.
9555
9556 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
9557
9558         * inssel-ppc.brg: fixed register assignments for some rules.
9559
9560 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
9561
9562         * exceptions.cs: Add test for exceptions in static constructors.
9563
9564         * mini.c (mono_jit_compile_method_with_out): Move the calling of
9565         static constructors outside the domain lock. Fixes #55720.
9566
9567 2004-03-17  Martin Baulig  <martin@ximian.com>
9568
9569         * mini.c (get_generic_field_inst): Removed, this'll never happen.
9570         (inflate_generic_field): Take the `MonoMethod *' instead of the
9571         `MonoClass *' and added support for generic method.
9572         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
9573         have a `field->parent->gen_params', only inflate the field if it's
9574         an open constructed type.
9575
9576 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
9577
9578         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
9579         exception object instead of the preconstructed ones.
9580
9581 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9582
9583         * mini.c: reverted changed to sigsegv_signal_handler commited
9584         accidentally in the previous patch.
9585
9586 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9587
9588         * mini.c:
9589         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
9590         running --aot with an old assembly.
9591
9592 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
9593
9594         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
9595         point values.
9596
9597         * mini-sparc.c: Add support for v9 branches with prediction.
9598
9599 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
9600
9601         * mini.c (mini_init): #warning is GNUC only
9602
9603         * mini-sparc.h: implement __builtin_frame_address
9604         and __builtin_return_address for Sun C compiler
9605
9606 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
9607
9608         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
9609
9610 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
9611
9612         * basic-calls.cs: Add test for unaligned byref long argument passing.
9613
9614         * mini-ops.h: Add sparcv9 compare and branch instructions.
9615
9616         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
9617         v9 instructions if we have a v9 cpu.
9618
9619         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
9620         registers for global allocation.
9621
9622         * exceptions-sparc.c: Fixes.
9623         
9624 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
9625
9626         * liveness.c (mono_analyze_liveness): Optimized version.
9627
9628         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
9629
9630         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
9631         sparc work.
9632
9633         * basic-float.cs basic-calls.cs: New regression tests.
9634
9635 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
9636
9637         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
9638         sigaltstack implementation.
9639
9640         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
9641         
9642         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
9643         stuff if SIGSEGV_ON_ALTSTACK is not defined.
9644
9645 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
9646
9647         * mini.c: Fix warnings.
9648         
9649         * mini.c (mono_resolve_patch_target): New function which contains the
9650         arch independent part of the patching process.
9651
9652         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
9653         patching code to a separate function.
9654
9655 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
9656
9657         * mini.c (add_signal_handler): ifdef out on Windows
9658
9659 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
9660
9661         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
9662         cpu-sparc.md: Add exception handling support + other fixes.
9663
9664         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
9665         typed GC detection in --version.
9666
9667         * basic.cs exceptions.cs: New regression tests.
9668
9669         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
9670         the arch specific code can store data during a compilation.
9671
9672         * mini-ops.h: Add OP_SETFRET.
9673
9674         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
9675         function, register a separate icall for each arity, so the icalls can
9676         get a wrapper.
9677         
9678         * mini.c (mono_print_tree): Print negative offsets in a more readable
9679         form.
9680         
9681         * mini.c: Make signal handling work on sparc.
9682         
9683         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
9684
9685         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
9686
9687         * jit-icalls.c: Emulate truncl by aintl on solaris.
9688
9689         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
9690
9691 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
9692
9693         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
9694
9695 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
9696
9697         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
9698         a MarshalByRef type, inline a method that performs the check, taking into
9699         account that the object can be a proxy. Also implemented tow new opcodes:
9700         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
9701         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
9702         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
9703
9704 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
9705
9706         * mini-ppc.c: if a relative branch displacement is too big
9707         but it points to and area reachable with an absolute branch, 
9708         avoid the thunks.
9709
9710 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
9711
9712         * mini.c: optimize small copies in cpblk.
9713
9714 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
9715
9716         * basic-calls.cs basic-float.cs: New regression tests.
9717
9718         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
9719         negative offsets from %fp. Implement localloc. Fix local register 
9720         allocation. Fix the case when the this argument needs to be saved to
9721         the stack. Implement some missing opcodes.
9722
9723 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
9724
9725         * mini.c (mini_method_compile): Reenable global regalloc in methods
9726         with exception handlers.
9727
9728         * linear-scan.c (mono_varlist_sort): Fix warning.
9729
9730         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
9731
9732         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
9733         regalloc costs.
9734
9735         * liveness.c: Make all variables uses in exception clauses volatile, to
9736         prevent them from being allocated to registers. Fixes #42136.
9737
9738 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
9739
9740         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
9741         causes regressions.
9742
9743         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
9744         argument to mono_arch_regalloc_cost.
9745
9746         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
9747         precisely.
9748
9749 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
9750
9751         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
9752         Make the cost of allocating a variable to a register arch dependent.
9753
9754         * basic-calls.cs: Fix compilation of tests.
9755         
9756         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
9757         helper function to cut back on the number of #ifdefs needed.
9758
9759         * mini-ppc.c: Fix compilation.
9760
9761         * basic-calls.cs: New regression tests.
9762
9763         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
9764
9765         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
9766         of l0 since that is callee saved.
9767
9768         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
9769         to virtual calls.
9770
9771         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
9772         of delay instruction.
9773
9774         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
9775
9776         * mini.h (MonoCallInst): Add 'virtual' flag.
9777
9778         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
9779
9780 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
9781
9782         * *.cs: New regression tests.
9783
9784         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
9785         work.
9786
9787         * mini.c (mono_runtime_install_handlers): Fix build.
9788
9789         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
9790         'signal_stack_size' members.
9791
9792         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
9793         alternate signal stack.
9794
9795         * exceptions-x86.c: Add stack overflow handling.
9796
9797         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
9798         functions to arch independent code.
9799
9800         * mini.c (mono_print_tree): Print more detailed info for load_membase
9801         opcodes.
9802         
9803 2004-02-23  Martin Baulig  <martin@ximian.com>
9804
9805         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
9806
9807 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
9808
9809         * mini-x86.c: fixed reg allocation for div/rem.
9810
9811 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
9812
9813         * driver.c (mono_main): Report some configuratio options on --version.
9814
9815 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
9816
9817         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
9818         low in the address space. Correctly flush memory in thunks where we
9819         output native code.
9820
9821 2004-02-20  Martin Baulig  <martin@ximian.com>
9822
9823         * mini.c (mini_get_method): New static method; inflate all generic
9824         methods and methods in open generic instances.
9825         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
9826         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
9827
9828 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
9829
9830         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
9831
9832         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
9833
9834 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
9835
9836         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
9837
9838         * mini-sparc.c (flushi mono_arch_output_basic_block): make
9839         it compile using Sun's compiler.
9840
9841 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
9842
9843         * 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.
9844
9845         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
9846
9847 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
9848
9849         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
9850         code.
9851         * mini-ppc.c: handle calls outside of the allowed range with thunks
9852         allocated using the code manager.
9853         * tramp-ppc.c: use the code manager to hold generated native code.
9854         Fixed the magic trampoline to just patch vtable entries.
9855
9856 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
9857
9858         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
9859         independent file.
9860
9861 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
9862
9863         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
9864         PPC.
9865
9866         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
9867         if we have a working __thread implementation.
9868
9869         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
9870         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
9871
9872 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
9873
9874         * mini-x86.c: Fix compilation under gcc 2.
9875         
9876 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
9877
9878         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
9879         contains a call to the wrapped function.
9880
9881         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
9882         OP_<CALL>_IMM opcodes, and use them under X86.
9883         
9884         * mini.c (mono_jit_find_compiled_method): Fix warning.
9885
9886         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
9887
9888         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
9889
9890         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
9891         functionality to mini.c.
9892
9893         * mini.c (mono_create_jump_trampoline): New function to create a jump
9894         trampoline. Return a compiled method instead of a trampoline if it
9895         exists. Add a cache for jump trampolines.
9896
9897         * mini.c (mono_jit_find_compiled_method): New function to return a
9898         compiled method if it exists.
9899
9900         * mini-x86.c: Call mono_create_jump_trampoline instead of 
9901         mono_arch_create_jit_trampoline.
9902
9903         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
9904         a jump trampoline. Fixes #52092.
9905         
9906 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
9907
9908         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
9909         which is not up-to-date. Add check_corlib_version () instead.
9910
9911         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
9912         have to call it.
9913         
9914         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
9915         since newer valgrind versions do not need it.
9916
9917         * mini.c (mono_jit_compile_method_with_opt): New helper function to
9918         compile a method with a given set of optimizations.
9919
9920         * mini.c: Compile icall wrappers on-demand instead of at startup.
9921
9922         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
9923         wrapper for an icall.
9924
9925 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
9926
9927         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
9928         #54063.
9929
9930         * iltests.il: Add test for non-empty stack before switch instruction.
9931
9932 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
9933
9934         * mini.c: Add support for new stringbuilder marshalling conventions.
9935
9936         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
9937
9938 2004-02-01  Martin Baulig  <martin@ximian.com>
9939
9940         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
9941         in `ginst->mtype_argv'.
9942
9943 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
9944
9945         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
9946         facilitate grepping.
9947
9948 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
9949
9950         * mini.c: fixed buglet in initobj generic implementation for references.
9951
9952 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
9953
9954         * Makefile.am: make the version script conditional.
9955         * jit-icalls.c: handle missing truncl().
9956
9957 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
9958
9959         * exceptions.cs: Add more tests for double->int conversion.
9960
9961         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
9962         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
9963
9964 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
9965
9966         * driver.c: make --verbose --version emit an error
9967         if the loaded corlib doesn't match the runtime version.
9968
9969 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9970
9971         * mini-ppc.h: export ppc_patch().
9972         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
9973         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
9974         on par or better than on MacOSX.
9975
9976 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
9977
9978         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
9979         mono_lookup_pinvoke_call.
9980
9981         * mini-x86.c: Under windows, the default pinvoke calling convention is
9982         stdcall. Fixes #52834.
9983
9984         * mini.c (optimize_branches): Add an upper bound to the number of
9985         iterations to prevent infinite loops on strange loops. Fixes #53003.
9986
9987 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
9988
9989         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
9990         and ISINST. Fixes #52093.
9991
9992         * objects.cs (test_0_vector_array_cast): New tests.
9993         
9994 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
9995
9996         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
9997         checking in Array.Set ().
9998
9999         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
10000         #52590.
10001
10002         * object.cs (test_0_multi_array_cast): New regression test.
10003
10004 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
10005
10006         * exceptions-ppc.c: fix build on Linux/PPC.
10007
10008 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
10009
10010         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
10011         running under valgrind.
10012         (x86_magic_trampoline): Fix build bustage.
10013
10014         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
10015         negative values as well. This is needed for the encoding of the line number
10016         info, since sometimes the line numbers are not in increasing order.
10017
10018 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
10019
10020         * cpu-pentium.md (localloc): Increase the size of the localloc 
10021         instruction since it is a loop under Win32.
10022
10023         * debug-mini.c (record_line_number): Get rid of unneccesary memory
10024         allocation.
10025
10026 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
10027
10028         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
10029         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
10030         Max Horn (max@quendi.de). Fix file names in comments.
10031
10032 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
10033
10034         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
10035         avoid stack overflow.
10036         (replace_usage): Avoid uninitialized variable warnings.
10037
10038         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
10039         and taking the address of valuetype variables.
10040
10041 2004-01-03  Patrik Torstensson
10042
10043         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
10044         for other purposes than FP later on.
10045
10046 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
10047
10048         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
10049         of tail calls.
10050
10051 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
10052
10053         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
10054
10055 2003-12-30  Patrik Torstensson <p@rxc.se>
10056
10057         * mini-x86.h: Decreased number of availiable fp regs.
10058         Solves corner cases with FP spilling.
10059
10060 2003-12-23  Patrik Torstensson <p@rxc.se>
10061
10062         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
10063         for floating point stack tracking / spilling on x86. 
10064         Fixes bug #49012.
10065         
10066         * basic-float.cs: added float mul overflow test.
10067
10068 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
10069
10070         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
10071
10072 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
10073
10074         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
10075         supports for cond branches that overflow the immediate
10076         overflow offset. mcs can compile simple programs.
10077
10078 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
10079
10080         * exceptions-ppc.c: exception handling support wip:
10081         finally handlers get run on exception.
10082
10083 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
10084
10085         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
10086         profiling.
10087
10088 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
10089
10090         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
10091         initial support for stack walking and unwinding.
10092
10093 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
10094
10095         * driver.c (mono_main): Make corlib-out-of-sync message more 
10096         descriptive. Also remove verify_corlib call.
10097
10098 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
10099
10100         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
10101         not overlap with other call's arguments, too.
10102
10103 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
10104
10105         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
10106         move to arch-specific code the choice of arch-specific
10107         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
10108         * mini.c: ensure emulation calls will not interleave
10109         with other calls.
10110
10111 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
10112
10113         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
10114         the magic trampoline stack frame is dropped before executing
10115         the new method.
10116
10117 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10118
10119         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
10120         and integer to fp conversions. Added support for overflowing
10121         arguments on the stack. Reserve a couple more registers as temps.
10122         Added support for aot compilation (as output still needs to be
10123         tweaked, though).
10124
10125 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
10126
10127         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
10128         Don't overwrite return register in some corner cases.
10129
10130 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
10131
10132         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
10133         static constructors when AOT compiling.
10134
10135         * driver.c (mono_main): Call mono_check_corlib_version.
10136
10137 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
10138
10139         * cpu-g4.md, basic.cs: fixed div target register.
10140
10141 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
10142
10143         * mini-ppc.c, basic.cs: shl_imm fix with test.
10144
10145 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
10146
10147         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
10148         structures by value. Misc fixes.
10149         * objects.cs: more tests.
10150
10151 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
10152
10153         * mini-ppc.c: lconv.ovf.i implemented.
10154
10155 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10156
10157         * mini.c:
10158         (mini_init): don't error out if someone already called g_thread_init.
10159
10160 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
10161
10162         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
10163         to be any type per the spec. Fix abnormal memory usage when
10164         the same object is repeatedly thrown.
10165
10166 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
10167
10168         * mini.c: check for overruns in IL code.
10169
10170 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
10171
10172         * TODO: Add/remove some todo entries.
10173
10174 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
10175
10176         * driver.c (mono_main): Call mono_verify_corlib.
10177
10178 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
10179
10180         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
10181         This has been moved to mini.c
10182         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
10183         type being casted is marshalbyref it could be a proxy, so instead of
10184         emitting the type check code, emit a call to a runtime method that will
10185         perform the check by calling CanCastTo if needed.
10186
10187 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
10188
10189         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
10190         methods with large stack frames under Win32.
10191
10192 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
10193
10194         * Makefile.am: Distribute regression tests.
10195
10196         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
10197         at the end instead of inserting each variable into the sorted list.
10198
10199         * linear-scan.c (mono_varlist_sort): New helper function.
10200         
10201 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
10202
10203         * mini.c: ensure arguments and locals are within bounds.
10204
10205 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
10206
10207         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
10208         related fixes.
10209
10210 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
10211
10212         * mini.c (mono_cprop_copy_values): Fix crash.
10213
10214         * aot.c: Set verbosity back to 0.
10215         
10216 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
10217
10218         * regalloc.c: complete memory leak fix by Laurent Morichetti
10219         (l_m@pacbell.net).
10220
10221 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
10222
10223         * driver.c (main_thread_handler): Revert the previous patch.
10224
10225         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
10226         under valgrind.
10227
10228         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
10229         memory from the memory pool.
10230
10231         * driver.c (main_thread_handler): Turn on all optimizations when
10232         --aot is used.
10233
10234         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
10235         an array for better performance.
10236
10237         * regalloc.c (mono_regstate_assign): Fix memory leak.
10238
10239         * debug-mini.c (mono_debug_serialize_debug_info): New function to
10240         serialize the debug info.
10241
10242         * debug-mini.c (mono_debug_add_aot_method): New function to load the
10243         debug info from the serialized representation.
10244
10245         * aot.c: Save debug info into the generated file and load it when 
10246         loading a method.
10247
10248         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
10249
10250 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
10251
10252         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
10253         More FP-related fixes.
10254
10255 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
10256
10257         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
10258         and register allocation buglet. Hello world now runs.
10259
10260 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
10261
10262         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
10263         * tramp-ppc.c: fixed class init trampoline.
10264         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
10265
10266 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
10267
10268         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
10269         mini.c: more ppc changes/fixes.
10270
10271 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
10272
10273         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
10274         Also optimize the case when the arguments are the same in the caller 
10275         and in the callee.
10276
10277         * iltests.il: Add tests for tail calls with valuetype arguments.
10278
10279 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
10280
10281         * mini-ppc.c: fixes for struct return type.
10282
10283 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
10284
10285         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
10286         mono_spillvar_offset() to arch-specific code.
10287
10288 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
10289
10290         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
10291
10292 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
10293
10294         * exceptions-x86.c: Fix stack space leaks.
10295         
10296         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
10297         registers from the lmf if the method has save_lmf set.
10298
10299 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
10300
10301         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
10302         of icall wrappers into InvokeInDomain, since these are now per-domain.
10303
10304 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
10305
10306         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
10307         make some opcode emulation and intrinsic ops enabled/disabled 
10308         according to the architecture. More fixes.
10309
10310 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
10311
10312         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
10313
10314 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
10315
10316         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
10317         arch-specific handling for 'this' and struct return type to
10318         arch-specific code.
10319
10320 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10321
10322         * aot.c: prevent divide by zero error when reporting (it happened with
10323         Accessibility.dll).
10324
10325 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
10326
10327         * mini.h (inst_switch): Remove unused macro.
10328
10329 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10330
10331         * aot.c:
10332         (load_aot_module): free 'info->methods' and 'info' properly. No more
10333         "free(): invalid pointer blah" messages when you have an old aot
10334         compiled assembly.
10335
10336 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
10337
10338         * jit-icalls.c, mini.c: Added support for context static fields.
10339
10340 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
10341
10342         * mini.c (mono_method_blittable): Methods which set LastError are not 
10343         blittable either. Fixes #51108.
10344         
10345 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
10346
10347         * mini.c: flush icache.
10348         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
10349
10350 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
10351
10352         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
10353
10354 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
10355
10356         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
10357         safe on IA32.
10358
10359         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
10360         vararg calls.
10361
10362         * inssel.brg (CEE_MKREFANY): Fix AOT case.
10363
10364 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
10365
10366         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
10367         instruction when the result is discarded.
10368
10369         * iltests.il (test_0_div_regalloc): New regression test.
10370
10371         * arrays.cs: Fix compilation error.
10372
10373 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
10374
10375         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
10376         float rules to inssel-x86.brg: sane architectures with FP registers
10377         don't need to implement these rules.
10378
10379 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
10380
10381         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
10382
10383 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
10384
10385         * mini.h, inssel-long32.brg: fixed endianess issues in int64
10386         implementation of 32 bit systems.
10387
10388 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
10389
10390         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
10391         (Jeroen Zwartepoorte).
10392
10393 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
10394
10395         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
10396         the caller and the callee matches.
10397         
10398         * mini.c (mono_method_to_ir): Add comment.
10399
10400         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
10401         signbit is missing on some platforms.
10402
10403 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
10404
10405         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
10406
10407         * mini.c (setup_jit_tls_data): Call the new function.
10408         
10409         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
10410
10411         * mini-x86.c: Add experimental support for fast access to the lmf
10412         structure under NPTL/Linux 2.6.x.
10413
10414 2003-11-06  Martin Baulig  <martin@ximian.com>
10415
10416         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
10417         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
10418         the debugger.
10419
10420 2003-11-02  Martin Baulig  <martin@ximian.com>
10421
10422         * mini.c (inflate_generic_field): New static method.
10423         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
10424         generic instance and the field is declared in a generic type, call
10425         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
10426
10427 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
10428
10429         * mini.h mini.c (mono_method_same_domain): New function to return
10430         whenever the caller and the callee are in the same domain.
10431
10432         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
10433
10434 2003-10-30  Martin Baulig  <martin@ximian.com>
10435
10436         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
10437         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
10438         method parameters.
10439         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
10440         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
10441
10442 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
10443
10444         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
10445         propagation.
10446
10447         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
10448         object here, so it is in the correct appdomain etc.
10449
10450 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
10451
10452         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
10453         already done.
10454         (mono_method_to_ir): Avoid freeing the type created returned from
10455         mono_type_create_from_typespec, since it is put into an internal cache
10456         by the function. Fixes pointer.exe.
10457
10458         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
10459         trampolines for icalls and pinvokes as well. Fixes #33569.
10460
10461 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
10462
10463         * mini.c: Update after appdomain changes.
10464
10465         * mini.c (mono_jit_compile_method_inner): Allways compile native
10466         method wrappers in the root domain, since there can only be one
10467         instance of them, whose address is stored in method->info.
10468
10469 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
10470
10471         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
10472         environment variable. Instead detect automatically whenever running
10473         under valgrind using the magic macro RUNNING_ON_VALGRIND from
10474         valgrind.h.
10475
10476 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
10477
10478         * trace.c, trace.h: New files that implement the new trace option
10479         parsing. 
10480
10481         * driver.c: Document new --trace options.
10482
10483         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
10484         mini-x86.c: Apply:
10485
10486         -       if (mono_jit_trace_calls)
10487         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
10488
10489         * mini.h: prototypes.
10490         
10491 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
10492
10493         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
10494
10495         * mini.c inssel.brg: Implement typedefbyref opcodes.
10496
10497         * mini.c (mono_jit_compile_method): Remove unused local variable.
10498
10499         * mini.c (mono_jit_compile_method_inner): Ditto.
10500         
10501 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
10502
10503         * tramp-x86.c (x86_class_init_trampoline): Fix build.
10504         
10505         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
10506
10507 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
10508
10509         * mini.c (mono_no_aot): Remove unused global variable.
10510
10511         * mini.c: Thread safety fixes.
10512
10513 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
10514
10515         * mini.c (mono_create_class_init_trampoline): Add a lock around
10516         class_init_hash_addr.
10517
10518         * arrays.cs (test_0_newarr_emulation): Add new regression test for
10519         #30073.
10520
10521         * mini.c: Decompose the NEWARR instruction before decomposing its
10522         arguments. Fixes #30073.
10523
10524 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
10525
10526         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
10527         convention.
10528
10529 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
10530
10531         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
10532
10533         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
10534
10535         * driver.c: Add support for compiling icall wrappers to --compile.
10536
10537 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
10538
10539         * inssel.brg: The empty value in class->interface_offsets is -1, not
10540         0. Fixes #49287.
10541
10542 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
10543
10544         * objects.cs: New test for 'is' operator on an array of interfaces.
10545
10546 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
10547
10548         * tramp-ppc.c: update trampoline code to support jumps
10549         and class initialization.
10550
10551 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
10552
10553         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
10554
10555         * inssel.brg (OP_UNBOXCAST): Fix #46027.
10556
10557         * inssel.brg (OP_UNBOX): Remove unused rule.
10558
10559         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
10560         region instead of one for each method. Fixes #47813.
10561
10562 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
10563
10564         * exceptions.cs (test_0_nested_finally): New regression test for
10565         nested exception handlers.
10566
10567         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
10568
10569         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
10570
10571         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
10572         inlining.
10573
10574         * mini.c (mono_method_check_inlining): Make the inlining limit 
10575         configurable by an environment variable.
10576         
10577         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
10578
10579         * mini.h: Bump AOT file version.
10580
10581         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
10582         token, store the image along with the token, since the token might not 
10583         refer to the same image as the method containing the relocation, 
10584         because of inlining.
10585
10586 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
10587
10588         * mini.c (mono_precompile_assemblies): New function to compile
10589         all methods in all loaded assemblies.
10590
10591         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
10592
10593         * regalloc.h regalloc.c (MonoRegState): Change the type of 
10594         iassign and fassign to int*, since they can contain large negative
10595         values if the register is spilled. Also added some comments. Fixes
10596         #45817.
10597
10598         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
10599         under Win32. Fixes #42964.
10600
10601 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
10602
10603         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
10604
10605         * aot.c: Added support for AOT compiling methods which contain calls
10606         to wrappers. Currently, only remoting-invoke-with-check wrappers are
10607         handled.
10608         
10609         * driver.c (compile_all_methods): Run the compilation in a thread
10610         managed by mono. Fixes #44023.
10611
10612         * mini.c (mono_codegen): Print full method name in verbose output.
10613
10614         * mini-x86.c (mono_arch_patch_code): Fix warning.
10615         
10616         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
10617         jumps, since the method we are jumping to might be domain-specific.
10618
10619         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
10620
10621 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
10622
10623         * inssel.brg: string chars are unsigned.
10624
10625 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
10626
10627         * TODO: New todo item.
10628
10629         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
10630         which calls mono_runtime_class_init and patches the call site to
10631         avoid further calls.
10632         (mono_arch_create_class_init_trampoline): New arch specific function 
10633         to create a class init trampoline.
10634         (create_trampoline_code): Generalized so it can create
10635         class init trampolines as well.
10636
10637         * mini.c (helper_sig_class_init_trampoline): New helper variable.
10638         (mono_create_class_init_trampoline): New function to create and cache
10639         class init trampolines.
10640         (mono_find_class_init_trampoline_by_addr): New function to lookup the
10641         vtable given the address of a class init trampoline. Used by the
10642         patching process.
10643         (mono_codegen): Generate a call to a trampoline instead of
10644         mono_runtime_class_init in LDSFLD[A].
10645         (mono_codegen): Add relocations for the new trampoline.
10646         
10647         * mini.h mini-x86.c aot.c: Added a new relocation type: 
10648         MONO_PATCH_INFO_CLASS_INIT.
10649
10650         * mini.h: Bump AOT version number.
10651
10652         * aot.c: Create a copy of the loaded code instead of using the original
10653         so methods which call each other will be close in memory, improving
10654         cache behaviour.
10655         
10656         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
10657         patch since it breaks the regression tests.
10658         
10659         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
10660         for the register saving instruction sequence since the 
10661         frame_state_for function in glibc 2.3.2 don't seem to detect it.
10662
10663 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
10664
10665         * TODO: Fix todo item && remove another.
10666
10667 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
10668
10669         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
10670         previous checkin.
10671
10672         * aot.c: Moved the check for MONO_LASTAOT into the initialization
10673         function of the module.
10674
10675         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
10676         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
10677         --no-aot command line option.
10678
10679 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
10680
10681         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
10682         by Bernie Solomon (bernard@ugsolutions.com).
10683
10684         * inssel.brg: Refactor the interface offset table related code into
10685         its separate functions and add support for the AOT case.
10686
10687 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
10688
10689         * aot.c (mono_aot_get_method_inner): Fix memory leak.
10690         
10691         * aot.c: Added mono_aot_verbose variable and made all debugging
10692         output depend on the value of this variable.
10693
10694         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
10695         method_label and info_label.
10696
10697         * mini.h mini-x86.c aot.c: Added a new relocation type 
10698         MONO_PATCH_INFO_IID for klass->interface_id.
10699
10700         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
10701         the MonoJitInfo structure.
10702
10703         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
10704         a non-root appdomain in shared mode.
10705
10706 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
10707
10708         * aot.c: make aot loader less verbose. Remove free of unused variable.
10709
10710 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
10711
10712         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
10713
10714         * .cvsignore: Added *.dll.
10715
10716         * mini.c (mono_print_tree_nl): New function callable while debugging.
10717
10718         * mini.c (mono_print_code): Export this.
10719
10720         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
10721         patched code.
10722
10723 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
10724
10725         * mini.h (MonoCompile): Added 'jit_info' field.
10726
10727         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
10728         the cfg structure, since it is needed by the AOT compiler.
10729
10730         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
10731
10732         * aot.c: A major rewrite. Changes include:
10733         - save exception tables for methods which have them.
10734         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
10735         to g_module_symbol.
10736         - reworked the file format so it is now much smaller and needs
10737         fewer relocation entries.
10738         
10739 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
10740
10741         * aot.c (load_aot_module): Fix build bustage on platforms without
10742         Boehm GC.
10743
10744 2003-09-04  Martin Baulig  <martin@ximian.com>
10745
10746         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
10747
10748 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
10749
10750         * TODO: Some new optimization ideas.
10751
10752         * aot.c: Move AOT module loading logic here from mono_assembly_open.
10753
10754         * aot.c: Save the optimization flags used to compile the code into
10755         the AOT module.
10756
10757         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
10758         support emitting domain specific code.
10759         
10760         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
10761         no longer domain neutral. It can be made domain neutral by compiling 
10762         with --optimize=shared.
10763
10764         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
10765         between appdomains.
10766
10767         * driver.c mini.h mini.c: New --no-aot debugging option which disables
10768         loading of AOT code.
10769
10770         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
10771         
10772         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
10773         if there is no domain neutrality information.
10774
10775 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
10776
10777         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
10778         format version into the generated library.
10779
10780         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
10781         callee method into the caller since one of them could be shared.
10782
10783         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
10784         system exceptions from AOT code now works.
10785
10786         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
10787         method if it is domain neutral and the callee is not.
10788
10789         * graph.c (cfg_emit_one_loop_level): Fix warning.
10790
10791 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
10792
10793         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
10794         last checkin.
10795
10796 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
10797
10798         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
10799         is needed  by code which is executed before mono_runtime_init ().
10800         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
10801         
10802         * mini.c (mono_thread_abort): Fix warning.
10803         (mono_jit_compile_method): Call static constructor in the AOT case too.
10804
10805         * aot.c (mono_compile_assembly): Fix warning.
10806
10807 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10808
10809         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
10810
10811 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
10812
10813         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
10814
10815         * cpu-pentium.md: Fix the length of call opcodes so they include the
10816         ESP restoring instruction. Fixes #47968.
10817
10818 2003-08-28  Martin Baulig  <martin@ximian.com>
10819
10820         * mini-x86.c (mono_arch_call_opcode): Added support for
10821         MONO_TYPE_GENERICINST.
10822
10823         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
10824
10825 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
10826
10827         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
10828         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
10829
10830         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
10831         metadata_section.
10832
10833 2003-08-26  Martin Baulig  <martin@ximian.com>
10834
10835         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
10836         when reporting an error, set this to the actual error location.
10837         (mono_method_to_ir): Report the correct error location if
10838         get_basic_blocks() returned an error.
10839
10840 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
10841
10842         * mini.c (mono_type_blittable): OBJECT is not blittable.
10843         (mono_method_blittable): Methods which have marshalling descriptors
10844         are not blittable either. Fixes #47842.
10845
10846 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
10847
10848         * driver.c mini.c: Use an environment variable instead of a global 
10849         variable. Also fix the build.
10850
10851         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
10852         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
10853         reporting this. 
10854
10855         * driver.c mini.c: Added --with-valgrind option to turn off some
10856         code which prevents mono from running under valgrind.
10857
10858         * mini.c (mono_emit_call_args): Fixed warning.
10859
10860         * mini.c (mono_emulate_opcode): Fixed warning.
10861
10862 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10863
10864         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
10865         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
10866         regalloc.c, regalloc.h: specify available registers in arch-specific
10867         code and support floats in the regallocator (patch by Laurent Morichetti 
10868         <l_m@pacbell.net>)
10869
10870 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
10871
10872         * mini.c: mono_thread_current() can be called only after
10873         mono_runtime_init(): rearrange code to not call it early on.
10874
10875 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
10876
10877         * mini.c: allocate jump tables in the code mempools.
10878
10879 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
10880
10881         * mini.c, mini.h: make sure per-thread data allocated by the jit is
10882         freed.
10883
10884 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
10885
10886         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
10887         12 to 16.  This fixes bug #47453.
10888
10889
10890 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
10891
10892         * mini-ppc.c: fixed indexed load and unsigned compares.
10893
10894 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
10895
10896         * mini.c: reenabled installation of handler for
10897           thread abort signal.
10898
10899 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10900
10901         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
10902         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
10903         until it's fixed and actually useful.
10904
10905 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
10906
10907         * inssel-long32.brg: couple more opcodes implemented.
10908
10909 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
10910         
10911         * mini-sparc.c: Even more opcodes implemeted.
10912
10913 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
10914
10915         * mini-sparc.c: More opcodes implemented.
10916
10917 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
10918
10919         * mini-sparc.c: More opcodes implemented.
10920
10921 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
10922
10923         * inssel-sparc.brg: Add some needed rules.  Direct
10924         copy from PPC.
10925         * Makefile.am: Use inssel-sparc.brg
10926         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
10927         an assert happy for now.
10928
10929 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
10930
10931         * mini-sparc.c: Fixed compile errors.
10932         * exceptions-sparc.c: Same.  We now produce a mono binary 
10933         on sparc-linux.  Yea.
10934
10935 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
10936
10937         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
10938         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
10939         They compile, but do not work.
10940
10941 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10942
10943         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
10944         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
10945         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
10946         (ct@gentoo.org).
10947
10948 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10949
10950         * mini.c: more opcodes implemented and better support for generics.
10951
10952 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
10953
10954         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
10955         * mini.c, mini.h: first cut at generics support: some new instructions 
10956         added and changed the behaviour of some of the existing ones.
10957
10958 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
10959
10960         * mini.c: Removed definition of metadata_shared mutex here.
10961
10962 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
10963
10964         * mini-x86.c: make vararg calls work for instance methods.
10965
10966 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10967
10968         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
10969         returns the arguments in a separte list, now.
10970
10971 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
10972
10973         * aot.c, mini.c: updates for array type representation changes.
10974
10975 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
10976
10977         * mini.c: register function to perform jit shutdown.
10978
10979 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10980
10981         * mini.c: use a faster allocator if possible.
10982
10983 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
10984
10985         * aot.c: some cleanups and portability changes.
10986
10987 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
10988
10989         * mini.c: use faster allocation for CEE_BOX if possible.
10990
10991 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
10992
10993         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
10994         Moved inlined mempcy code to its own function so that is can be
10995         reused. Added an inline memset function as well (optimized initobj).
10996         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
10997
10998 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
10999
11000         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
11001
11002 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
11003
11004         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
11005         arch code can setup the cpu for CLR execution, if needed.
11006         We use it on x86 to set the precision of FP operations.
11007
11008 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
11009
11010         * mini.c: disable some optimizations if we can guess they'll cost too
11011         much for a given method.
11012
11013 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
11014
11015         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
11016         
11017 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
11018         * mini.h mini.c mini-x86.c: Added instruction level coverage 
11019         info collection support.
11020
11021 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
11022
11023         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
11024         is now implemented in the profiling API. Get rid of a couple of
11025         unnecessary global variables.
11026
11027 2003-06-15  Nick Drochak <ndrochak@gol.com>
11028
11029         * basic-long.cs: tests for negative values for bigmul, and unsigned.
11030         * cpu-g4.md: add op_bigmul and op_bigmul_un
11031         * cpu_pentium.md: add op_bigmul_un
11032         * inssel-long32.brg: add rule for unsigned bigmul
11033         * mini-ops.h: define OP_BIGMUL_UN
11034         * mini-x86.c: THE BUG: handle (un)signed properly
11035         * mini.c: choose unsigned opcode if needed.
11036         This set of patches fixes bug #44291
11037
11038 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
11039
11040         * mini.c (optimize_branches): improved to handle all kinds of
11041         conditional branches.
11042
11043 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
11044
11045         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
11046         don't raise exceptions.
11047
11048 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
11049
11050         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
11051         to arch-specific files.
11052
11053 2003-06-09  Martin Baulig  <martin@ximian.com>
11054
11055         * Makefile.am (libs): Added $(LIBGC_LIBS).
11056
11057 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
11058
11059         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
11060         and OP_ATAN (fixes bug#44293).
11061
11062 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
11063
11064         * Makefile.am, mini-x86.c: rename cpu description array to
11065         pentium_desc, since some compilers define the 'pentium' preprocessor
11066         symbol.
11067
11068 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
11069
11070         * mini.c (mini_select_instructions): add explicit branch if the
11071         following block is not the false target of a conditional branch -
11072         we need this with any optimization that reorder or remove bblocks
11073
11074         * mini.c (optimize_branches): bug fixes
11075
11076 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
11077
11078         * mini.c (mono_method_to_ir): inline static readonly fields
11079
11080         * ssa.c (fold_tree): start cfold support for long (very simple
11081         cases only)
11082
11083         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
11084
11085 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
11086
11087         * inssel.brg: fixed memcpy (bug #44219).
11088
11089 2003-06-05  Dick Porter  <dick@ximian.com>
11090
11091         * driver.c: Set the glib log levels to not abort if g_message
11092         recurses.
11093
11094         g_set_prgname() has to happen before mini_init() so that the
11095         process handle gets the info.
11096         
11097 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
11098
11099         * driver.c: add intrins to the default optimizations to get wider
11100         exposure.
11101
11102 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
11103
11104         * mini.h: some large basic blocks will overflow a 16-bit
11105         integers for symbolic registers.
11106
11107 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
11108
11109         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
11110         (mono_arch_output_basic_block): fix bug 43499 
11111
11112 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
11113
11114         * mini.c: kill duplicated definition of mono_debug_format.
11115
11116 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
11117
11118         * mini-x86.c, arrays.cs: fixed register allocation bug.
11119
11120 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
11121
11122         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
11123
11124         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
11125
11126 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11127
11128         * mini.c:
11129         (print_method_from_ip): also print source location information if
11130         available.
11131
11132 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
11133
11134         * mini.c (mono_find_block_region): bug fix in region code
11135         (mini_method_compile): enable removing unreachable code again, but
11136         only in methods without exception clauses.
11137
11138 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
11139
11140         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
11141         Implemented arglist opcode and handling of TypedReference type.
11142         Fixed x86 call convention when a structure is returned.
11143         Minimal support for calling static vararg methods.
11144
11145 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
11146
11147         * mini.c (mini_method_compile):  always remove unreachable code,
11148         because the code in them may be inconsistent  (access to dead
11149         variables for example).
11150
11151 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
11152
11153         * driver.c, debug-mini.c: warning fixes.
11154
11155 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
11156
11157         * Makefile.am, jit.h, mini.h: install header for embedding mono.
11158
11159 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
11160
11161         * mini.c: thread-static fields are registered in mono_class_vtable(),
11162         so ensure the function is called before checking for them.
11163
11164 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
11165
11166         * mini.c (optimize_branches): fix for bug 43586
11167
11168         * jit-icalls.c (mono_llmult_ovf): added an additional check for
11169         overflow (fixes Bug #43639)
11170
11171 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11172
11173         * mini.c, objects.cs: allow the use of stobj for primitive types.
11174
11175 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11176
11177         * mini.c: be less strict about argument checking until we support
11178         running the verifier.
11179
11180 2003-05-27  Nick Drochak <ndrochak@gol.com>
11181
11182         * basic-long.cs: tests for (ulong)int * (ulong)int also
11183         * mini.c: use the same trick for (ulong)int * (ulong)int
11184
11185 2003-05-27  Nick Drochak <ndrochak@gol.com>
11186
11187         * basic-long.cs: add regression test for (long)int * (long)int
11188         * cpu-pentium.md: add op_bigmul specification
11189         * inssel-long32.brg: add OP_BIGMUL rule
11190         * mini-ops.h: add OP_BIGMUL
11191         * mini-x86.c: register allocator: handle case where src1 needs to be
11192         in EAX.
11193         * mini.c: substitute special BIGMUL opcode in the tree for 
11194         (long)int * (long)int
11195
11196 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
11197
11198         * jit-icalls.c: call the type ctor on field access if needed.
11199
11200 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
11201
11202         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
11203         to a method (including results of ldelema, bug#43207).
11204
11205 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
11206
11207         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
11208         colors to show exception handler blocks.
11209
11210         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
11211         (fix for pinvoke7.cs).
11212
11213 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11214
11215         * mini.h, mini.c: ensure correct initialization order for types that
11216         require it. Prepare for lazy compilation of jit icall wrappers.
11217         Provide a name for opcode emulation to reduce unneeded mallocing.
11218
11219 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
11220
11221         * mini-x86.c: better register restoring code and profiling
11222         support for tail calls.
11223
11224 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11225
11226         * mini.h, driver.c: prepare for leaf methods optimization.
11227
11228 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
11229
11230         * mini.c: get targets of branches before converting a method.
11231
11232 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
11233
11234         * mini.c (optimize_branches): added some experimental code (disbaled) 
11235
11236 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
11237
11238         * mini.c (optimize_branches): fix branch to branch optimization 
11239
11240         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
11241
11242         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
11243
11244         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
11245
11246         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
11247         if needed.
11248
11249 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
11250
11251         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
11252         enable use of interface variables again.
11253
11254         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
11255         I1 to registers because there is no simply way to sign extend 8bit
11256         quantities in caller saved registers on x86.
11257
11258         * inssel-float.brg: set costs of some rules to 2 so
11259         that monobure always select the arch. specific ones if supplied,
11260         regardless of the order we pass the files to monoburg.
11261
11262 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
11263
11264         * mini.c, mini-x86.c: since the magic trampoline for jumps
11265         can't patch the code directly, we do it as soon as the
11266         method gets compiled.
11267
11268 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
11269
11270         * mini-x86.c, mini.h: introduce a new patching method
11271         to support CEE_JMP and tail calls.
11272         * mini.c: obey tail.call. Don't precompile methods target
11273         of CEE_JMP.
11274         * tramp-x86.c: new trampoline code to handle methods
11275         reached through a jump.
11276
11277 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
11278
11279         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
11280         bit values to registers
11281
11282 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
11283
11284         * mini.c (mono_compile_get_interface_var): share interface
11285         variables if possible.
11286
11287 2003-05-16  Martin Baulig  <martin@ximian.com>
11288
11289         * debug-mini.c (mono_init_debugger): New function to initialize
11290         the debugger.  This is not in the debugger since it needs to
11291         access some of mini's internals.
11292
11293 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
11294
11295         * mini.c (mono_method_to_ir): inlining fixes/cleanups
11296
11297 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
11298
11299         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
11300         for value type handling.
11301
11302 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
11303
11304         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
11305         (mono_method_check_inlining): enable inlining of all kinds of wrappers
11306
11307 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
11308
11309         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
11310           the constructor through a proxy.
11311
11312 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
11313
11314         * jit-icalls.c, inssel.brg: fixes to array element address
11315         calculations.
11316
11317 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
11318
11319         * mini-x86.c (is_regsize_var): allocate pointer to registers
11320
11321 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
11322
11323         * driver.c: fixed typo, added intrins to the set of optimizations
11324         tested with regressions.
11325
11326 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
11327
11328         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
11329         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
11330         test case.
11331
11332 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
11333
11334         * inssel.brg: remove some common pop instructions without side effects
11335
11336 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
11337
11338         * inssel-x86.brg: fixed thinko in int to double conversions.
11339
11340 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
11341
11342         * mini.c, jit-icalls.c: added runtime thread-static variable support.
11343
11344 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
11345
11346         * inssel-long32.brg: two more missing instructions.
11347
11348 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
11349
11350         * mini.c (mono_emit_call_args): set the cil_code for all arguments
11351         if not already set.
11352
11353 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
11354
11355         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
11356         correctly.
11357
11358         * basic-float.cs: Added tests for negative zero.
11359
11360 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
11361
11362         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
11363         a couple of missing operations for long casts, with test cases.
11364
11365 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11366
11367         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
11368
11369 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
11370
11371         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
11372         code size estimation.
11373
11374 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
11375
11376         * mini.c (mono_jit_create_remoting_trampoline): make it work with
11377         abstract methods (fix bug 42542)
11378
11379         * aot.c: add ability to handle array types
11380         
11381 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
11382
11383         * mini.c: Call the _specific versions of the object allocation
11384         functions if possible.
11385
11386 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
11387
11388         * driver.c: call setlocale ().
11389
11390 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
11391
11392         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
11393         windows build.
11394
11395 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
11396
11397         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
11398
11399         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
11400         wrappers (fix bug 42122)
11401
11402 2003-05-04  Martin Baulig  <martin@ximian.com>
11403
11404         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
11405
11406         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
11407         s/mini_set_defaults/mono_set_defaults/g.
11408
11409 2003-05-04  Martin Baulig  <martin@ximian.com>
11410
11411         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
11412
11413 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
11414
11415         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
11416         (reported by Don Roberts).
11417
11418 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
11419
11420         * mini.c: temporarily work around two bugs for this release.
11421
11422 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
11423
11424         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
11425         that contains -export-dynamic and it makes using the ld script
11426         useless.
11427         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
11428
11429 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
11430
11431         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
11432         specific cpu.
11433
11434 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
11435
11436         * mini.c: make sure leave calls all the needed finally blocks,
11437         even when the target jumps out of multiple exception clauses.
11438
11439 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
11440
11441         * ldscript, Makefile.am: add linker script to reduce the number of
11442         exported symbols (should also fix the issues with libwine defining
11443         some of the same symbols in io-layer).
11444
11445 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
11446
11447         * driver.c (mini_main): Avoid assertion when no file name is given on 
11448         the command line.
11449
11450 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
11451
11452         * driver.c: added --version/-V command line option.
11453         Added the inline optimization in the regression tests.
11454
11455 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
11456
11457         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
11458         to the type in the method signature (fixes bug#42134).
11459
11460 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
11461
11462         * mini.c: when inlining, check this is not null only when needed (bug #42135).
11463
11464 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
11465
11466         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
11467
11468 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11469
11470         * driver.c: fixed bug #42100.
11471
11472 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
11473
11474         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
11475
11476 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
11477
11478         * mini.c: moved most of the code required to do inlining to its own
11479         function so it can be reused. Inline also ctors if appropriate.
11480
11481 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
11482
11483         * Makefile.am: Link with -export-dynamic so shared libs loaded by
11484         the runtime can call mono API functions.
11485
11486 2003-04-27  Martin Baulig  <martin@ximian.com>
11487
11488         * debug-mini.c (mono_debug_init_method): Added
11489         `guint32 breakpoint_id' argument; if the method has a breakpoint,
11490         send a notification to the debugger.
11491
11492         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
11493         running in the Mono Debugger, just pass the breakpoint number to
11494         mono_debug_init_method().
11495
11496         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
11497
11498 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
11499
11500         * mini.c: allow some more unsafe compares.
11501
11502 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
11503
11504         * mini-x86.c, Makefile.am: make distcheck works (partially from
11505         a patch by Richard Lee <r.h.lee@attbi.com>).
11506         * regset.c, regset.h: removed, they are unused.
11507
11508 2003-04-25  Dick Porter  <dick@ximian.com>
11509
11510         * driver.c: Usage reports the name as 'mono' not 'mini'
11511         * exceptions-x86.c: Build and run on freebsd
11512
11513 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
11514
11515         * Makefile.am: install the program with the 'mono' name and
11516         the library as libmono instead of mini and libmini.
11517
11518 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
11519
11520         * driver.c: provide the APIs for the embedding interface of the old jit.
11521
11522 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
11523
11524         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
11525
11526 2003-04-23  Martin Baulig  <martin@ximian.com>
11527
11528         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
11529
11530         * driver.c: Added `--debug' command line argument to enable
11531         debugging support.
11532
11533 2003-04-23  Martin Baulig  <martin@ximian.com>
11534
11535         * debug.[ch]: Removed.  The code is now in
11536         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
11537
11538         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
11539         last six months.
11540
11541 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
11542
11543         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
11544
11545 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11546
11547         * mini.c:
11548         (mini_cleanup): moved mono_runtime_cleanup call after the call to
11549         mono_domain_finalize.
11550         (mini_method_compile): use mono_method_profile* if the the option is
11551         enabled.
11552
11553 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
11554
11555         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
11556         methods with their wrapper.
11557
11558         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
11559         methods with their wrapper.
11560
11561         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
11562         their wrapper.
11563
11564         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
11565         wrapper.
11566
11567         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
11568         methods.
11569
11570 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
11571
11572         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
11573
11574 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
11575
11576         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
11577         of the mempool. This is slightly faster and uses less memory
11578
11579 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
11580
11581         * mini.c: avoid O(n) allocation for variables.
11582
11583 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
11584
11585         * mini.c: handle items on the stack after inlining methods.
11586
11587 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
11588
11589         * mini.c: make the method->opcode optimization dependent
11590         on MONO_OPT_INSTRINS and do it lazily.
11591
11592 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
11593
11594         * driver.c: print overall results at the end of regression run.
11595
11596 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
11597
11598         * inssel.brg: don't overwrite symbolic registers.
11599
11600 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
11601
11602         * inssel-x86.brg: fix conversion from long to float.
11603
11604 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
11605
11606         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
11607
11608 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
11609
11610         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
11611
11612         * driver.c: Added --print-vtable option as in the old JIT.
11613
11614 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
11615
11616         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
11617
11618 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
11619
11620         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
11621
11622 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
11623
11624         * mini.c regalloc.c regalloc.h: Fix memory leak.
11625
11626 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
11627
11628         * aot.c (mono_aot_get_method): register all used strings
11629
11630 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
11631
11632         * mini.c: always intern strings references with ldstr at compile time.
11633
11634 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
11635
11636         * Makefile.am: add BUILT_SOURCES.
11637
11638 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
11639
11640         * driver.c: give a better error message when the assembly to execute
11641         doesn't have an entry point.
11642
11643 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
11644
11645         * Makefile.am: added hack for automake
11646
11647         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
11648         correct sematics.
11649
11650         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
11651
11652 22003-04-07  Martin Baulig  <martin@ximian.com>
11653
11654         * Makefile.am: Added Makefile.am.
11655
11656         * debugger-main.c: Removed, this is now in the debugger where it
11657         belongs.
11658
11659         * mini.pc.in: Call this package `mini' for the moment.
11660
11661
11662
11663
11664
11665
11666
11667