SGen managed allocation with pthreads TLS.
[mono.git] / mono / mini / ChangeLog
1 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2
3         * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
4
5 2009-06-20  Martin Baulig  <martin@ximian.com>
6
7         * debug-mini.c
8         (MonoDebuggerThreadFlags): New enum typedef.
9         (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
10         (mono_debugger_thread_created): Added `gpointer func' argument;
11         initialize the new `thread_flags' field.
12
13 2009-06-18  Martin Baulig  <martin@ximian.com>
14
15         * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
16         (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
17
18         * debug-debugger.c
19         (mini_debugger_set_attach_ok): New function; sets the attach-ok
20         flag in `MONO_DEBUGGER__info.runtime_info'.
21
22         * driver.c
23         (mono_main): Call mini_debugger_set_attach_ok() if generics
24         sharing is disabled.
25
26 2009-06-22  Zoltan Varga  <vargaz@gmail.com>
27
28         * aot-compiler.c (add_wrappers): Fix a warning.
29
30         * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
31         the ppc load/store macro changes.
32
33 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
34
35         * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
36
37         * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
38         not just the got symbol.
39
40         * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
41         on ppc.
42
43         * aot-compiler.c unwind.c: Add infrastructure for unwind support on
44         ppc.
45         
46         * aot-compiler.c: Remove some fixmes.
47
48         * driver.c (mono_main): Print a helpful message when cross-compiling.
49
50         * mini.c (mini_init): Disable signal handlers when cross-compiling.
51
52         * method-to-ir.c (initialize_array_data): Do the optimization if the
53         target byte order is little endian, instead of the host byte order.
54
55         * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
56         wrappers into the mscorlib image, Emit a unique plt symbol for each
57         image, emit symbols for plt entries.
58
59         * image-writer.c (img_writer_emit_symbol_size): New function to emit
60         a .size directive.
61         
62 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
63
64         * aot-compiler.c (add_wrappers): Avoid calling 
65         mono_marshal_get_type_info () since it can assert for some types.
66
67         * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of 
68         ldtoken are used inside wrappers.
69
70         * helpers.c: Add support for prefixing tools with the arch name.
71
72         * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
73         quantities when using ilp32.
74
75         * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
76         spill slots. Use sizeof(mgreg_t) for the spill slot size.
77
78         * image-writer.c: Use .long on ilp32.
79
80         * aot-compiler.c: Use 32 bit loads on ilp32.
81         
82 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
83
84         * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
85
86         * mini-ops.h: Use TARGET_POWERPC define for consistency.
87
88         * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
89
90         * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the 
91         second got slot of every aot image.
92         
93         * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
94         aot on platforms with function pointers.
95
96         * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
97         support for aot/full aot on ppc/ppc64.
98         
99         * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
100         arguments which are needed on ppc.
101
102         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
103         argument.
104
105         * mini-trampolines.c aot-runtime.c: Update after the above changes.
106         
107         * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
108
109         * regalloc2.c (BITS_PER_CHUNK): Ditto.  
110
111         * aot-compiler.c (emit_got_info): Fix reading unused memory.
112
113         * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
114
115 2009-06-17  Geoff Norton  <gnorton@novell.com>
116
117         * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
118
119 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
120
121         * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
122         to control whenever the dwarf writer is in xdebug or aot mode.
123         (emit_class_dwarf_info): Use a separate abbrev for structures without
124         children.
125
126         * aot-compiler.c: Pass the appending parameter to 
127         mono_dwarf_writer_create ().
128
129         * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
130         falls through to its next bblock. Fixes #513931.
131
132         * iltests.il: Add a test.
133
134         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
135         infor even if emit_line is FALSE, as the apple linker seems to require it.
136
137         * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
138
139         * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
140         gcc does.
141         (emit_fde): Ditto.
142
143 2009-06-15  Zoltan Varga  <vargaz@gmail.com>
144
145         * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
146         mips build.
147
148 2009-06-13  Zoltan Varga  <vargaz@gmail.com>
149
150         * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and 
151         'has_call_handler' fields.
152
153         * method-to-ir.c (mono_method_to_ir): Set them if needed.
154
155         * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
156         first bblock if not needed. Fixes #512790.
157         
158 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
159
160         * aot-compiler.c (mono_compile_assembly): Fix a warning.
161         
162         * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
163         wrappers.
164
165         * aot-runtime.c (mono_aot_get_method): Use the original method's code for
166         remoting-invoke-with-check wrappers, which are not needed when running with
167         full-aot, since it doesn't support remoting.
168         
169 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
170
171         * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
172
173         * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
174         method info, it is not used anymore.
175
176         * mini.h: Bump AOT file format version.
177         
178         * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
179         word smaller.
180
181         * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
182         change above.
183         
184         * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
185
186         * mini.h: Bump AOT file format version.
187         
188 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
189
190         * image-writer.c (asm_writer_emit_symbol_diff): Disable the 
191         TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
192         iphone.
193
194         * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
195         of CKFINITE and FBGE for VFP.
196
197 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
198
199         * aot-compiler.c: Don't align code to 16 bytes on arm.
200         
201         * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
202         before the methods they belong to.
203
204         * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
205         the full-aot case if possible, since the trampoline will be called right 
206         away.
207
208         * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
209         trampolines to 1024 after the change above.
210
211         * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
212         trampoline to save 8 bytes per trampoline.
213
214         * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
215         change above.
216
217 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
218
219         * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
220
221 2009-06-08  Martin Baulig  <martin@ximian.com>
222
223         * debug-mini.c
224         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
225         (_mono_debugger_throw_exception): Don't make this static.
226         (_mono_debugger_unhandled_exception): Likewise.
227         (mono_debugger_handle_exception): Moved to mini-exceptions.c
228
229         * debug-mini.c
230         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
231         (_mono_debugger_throw_exception): Add function prototype.
232         (_mono_debugger_unhandled_exception): Likewise.
233
234         * mini-exceptions.c
235         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
236         arg; return the first exception handler if the exception is caught
237         and we're running inside the debugger.
238         (mono_debugger_handle_exception): Moved here from debug-mini.c;
239         improve exception handle inside runtime-invoke, check whether the
240         exception is actually caught in the method being invoked and not
241         by the runtime-invoke-wrapper.
242
243 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
244
245         * image-writer.c: Improve support for the osx assembler.
246
247         * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
248         support them.
249
250 2009-06-08  Martin Baulig  <martin@ximian.com>
251
252         * debug-mini.c
253         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
254         (_mono_debugger_throw_exception): Don't make this static.
255         (_mono_debugger_unhandled_exception): Likewise.
256         (mono_debugger_handle_exception): Moved to mini-exceptions.c
257
258         * debug-mini.c
259         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
260         (_mono_debugger_throw_exception): Add function prototype.
261         (_mono_debugger_unhandled_exception): Likewise.
262
263         * mini-exceptions.c
264         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
265         arg; return the first exception handler if the exception is caught
266         and we're running inside the debugger.
267         (mono_debugger_handle_exception): Moved here from debug-mini.c;
268         improve exception handle inside runtime-invoke, check whether the
269         exception is actually caught in the method being invoked and not
270         by the runtime-invoke-wrapper.
271
272 2009-06-07  Zoltan Varga  <vargaz@gmail.com>
273
274         * image-writer.c (append_subsection): Don't align subsections of the
275         debug_line section as a workaround.
276
277         * dwarfwriter.c: Emit line number info in the AOT case as well.
278
279 2009-06-06  Steven Munroe  <munroesj@us.ibm.com>
280
281         This patch is contributed under the terms of the MIT/X11 license
282
283        * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
284        code_len <= code_size
285
286 2009-06-06  Zoltan Varga  <vargaz@gmail.com>
287
288         * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
289
290 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
291
292         * aot-compiler.c aot-runtime.c: Delete references to static rgctx
293         invoke wrappers, we now use trampolines instead.
294
295 2009-06-04  Mark Probst  <mark.probst@gmail.com>
296
297         * mini-darwin.c: The exception thread must not be registered with
298         the GC.
299
300 2009-06-04  Mark Probst  <mark.probst@gmail.com>
301
302         * mini-gc.c: Disable the code because it makes SGen crash.
303
304 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
305
306         * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
307         instead of asserting.
308
309 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
310
311         * aot-compiler.c (mono_compile_assembly): Move the creation of the
312         output file after the code has been compiled.
313
314 2009-05-30  Zoltan Varga  <vargaz@gmail.com>
315
316         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
317
318 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
319
320         * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
321         entries distinction to simplify the code.
322
323         * mini.h: Bump AOT file format version.
324         
325 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
326
327         * objects.cs: Fix the signature of one of the tests.
328
329         * mini.c (mini_create_ftnptr): New helper function, moved here from
330         object.c.
331         (mini_get_addr_from_ftnptr): Ditto.
332         (mini_init): Install the new helpers.
333
334 2009-05-28  Martin Baulig  <martin@ximian.com>
335
336         Correctly initialize the debugger when embedding Mono.
337
338         * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
339         `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
340         see documentation in mini_debug_running_inside_mdb().
341
342         * debug-debugger.c
343         (mini_debug_running_inside_mdb): New function to check whether
344         we're running inside mdb.
345
346         * mini.c (mini_init): Call mini_debugger_init() if we're running
347         inside the debugger.
348
349         * driver.c (mono_main): Moved the call to mini_debugger_init()
350         into mini_init() to make this work when embedding Mono.
351
352         * debug-debugger.c (mini_debugger_init): Warn about duplicate
353         calls to mini_debugger_init().
354
355         * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
356         mono_debugger_main() -> mini_debugger_main() and put them inside a
357         `MONO_DEBUGGER_SUPPORTED' conditional.
358
359 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
360
361         * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
362         this is no longer in use.
363         * mini.h: Same.
364
365 2009-05-26  Zoltan Varga  <vargaz@gmail.com>
366
367         * mini-sparc.c (add_outarg_load): Fix the sparc build.
368
369         * aot-compiler.c (emit_method_code): Always write out C style symbols for
370         methods.
371
372 2009-05-27  Martin Baulig  <martin@ximian.com>
373
374 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
375
376         * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
377         long_conv_to_r_un to 64 bits.
378
379         * cpu-x86.md: Increase the instruction size due to the changes.
380
381         * iltests.il.in: Add regression test.
382
383         Fixes #467201.
384
385 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * objects.cs: Move the previous test from basic.cs to here.
388
389 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
390
391         * basic.cs: Add regression test for #506915.
392
393 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
394
395         * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
396         optimization we must check the bb of the first byte of stobj as
397         it's the only one set in cil_offset_to_bb.
398
399         Fixes #506915.  
400
401 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
402
403         * image-writer.c: Fix pointer directive on ppc64.
404
405 2009-05-24  Zoltan Varga  <vargaz@gmail.com>
406
407         * image-writer.c (asm_writer_emit_section_change): Avoid using
408         .bss subsections on ppc too.
409
410 2009-05-23  Zoltan Varga  <vargaz@gmail.com>
411
412         * image-writer.c: Fix the definition of TARGET_ASM_....
413         
414         * image-writer.c: Fix the emission of assembler directives in the last
415         change.
416
417         * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
418         exception throwing code to accomodate ppc64.
419
420         * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
421         size to work on ppc64 too.
422
423         * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
424         too.
425
426         * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
427         the assembler dialect instead of using platform specific defines.
428
429 2009-05-22  Geoff Norton  <gnorton@novell.com>
430
431         * mini-arm.c (get_call_info): If a structure is split between the stack
432         and argument registers, we should not advance the stack pointer by the entire
433         native size, but just by the amount that spilled.
434
435 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
436
437         * mini-arm.c (get_call_info): Handle structures with alignment requirements
438         correctly.
439
440 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
441
442         * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
443         wrappers normally.
444         
445         * aot-compiler.c (add_extra_method): Fix up the collection of extra
446         methods so wrapper don't get added twice.
447         (add_generic_instances): Don't add methods of arrays.
448
449         * generics.cs: Mark one test as !FULLAOT.
450
451 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
452
453         * mini-x86.c (emit_move_return_value): Remove unused vars.
454
455 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
456
457         * mini-x86.c (mono_arch_emit_call): The decompose code now supports
458         decomposing 8 bytes structs into a LCALL.
459
460         * mini-x86.c (emit_move_return_value): We no longer push the vtype
461         pointer for where to store the returned regs.
462
463         * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
464         state the concern.
465
466         Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
467
468 2009-05-20  Miguel de Icaza  <miguel@novell.com>
469
470         * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
471         without getenv.
472
473 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
474
475         * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
476
477         * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
478         generics.
479
480 2009-05-20 Rodrigo Kumpera  <rkumpera@novell.com>
481
482         * local-propagation.c (mono_local_cprop): Avoid local propagation
483         across paired add/sub if the first instruction dest reg is it's
484         source reg. For example:
485
486         int_add_imm R12 <- R12 [1] clobbers: 1
487         int_sub_imm R42 <- R12 [1] clobbers: 1
488
489         The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
490         maintain the math identify.
491
492         Fixes #505375.
493
494 2009-05-20  Andreia Gaita  <avidigal@novell.com>
495
496         * Makefile.am: avoid going on the network just to get the revision,
497         use git log instead
498
499 2009-05-19  Massimiliano Mantione  <massi@ximian.com>
500
501         Fixed estimate for short branches on amd64 (they were off mark, and
502         enabling call prolog-epilog instrumentations caused assertions).
503         * mini.h (struct MonoBasicBlock): added max_length field to hold the
504         estimate for the maximum length of this basic block.
505         * mini-amd64.c:
506         - mono_arch_emit_prolog: compute max_length for each basic block
507           (instead of max_offset), and inflate size estimate also for entry bb
508           in case of code instrumentation.
509         - mono_arch_output_basic_block: get rid of "cpos" (the current
510           estimated "position" in the code), and always use "offset" instead,
511           which is accurate; at the beginning of the function quickly recompute
512           max_offset for all the remaining blocks, starting from the current
513           cfg->code_len (which is correct, and not estimated) and using the
514           estimated block lengths computed previously.
515
516 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
517
518         * exceptions-ppc.c: Remove the caching from the trampoline creation 
519         functions, it is already done in the caller.
520
521         * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
522
523         * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add 
524         MONO_ARCH_GSHARED_SUPPORTED define.
525
526         * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
527
528         * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
529         function.
530
531 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
532
533         * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the 
534         call to mono_marshal_get_rgctx_invoke ().
535
536         * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
537         mono_marshal_get_static_rgctx_invoke (), all platforms which support
538         gshared use the static rgctx trampolines now.
539         
540         * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
541         platform supports it.
542
543 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
544
545         * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
546
547         * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
548
549 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
550
551         * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
552
553         * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
554         for ppc.
555
556 2009-05-15  Massimiliano Mantione  <massi@ximian.com>
557
558         Made it possible for mono_arch_instrument_epilog to preserve
559         argument registers, otherwise instrumenting the "epilogue" before
560         a tail call would clobber them.
561         * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
562         if like mono_arch_instrument_epilog but with an additional parameter
563         that states if argument registers must be preserved.
564         * mini.c: implemented mono_arch_instrument_epilog as a call to
565         mono_arch_instrument_epilog_full without asking to preserve argument
566         registers (this makes the existing code work as usual).
567         * mini-amd64.c:
568         - mono_arch_instrument_epilog: add parameter to transform it into
569         mono_arch_instrument_epilog_full, and preserve argument registers
570         when required.
571         - mono_arch_output_basic_block, OP_TAILCALL case: call
572         mono_arch_instrument_epilog_full.
573         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
574         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
575         only transformed mono_arch_instrument_epilog into
576         mono_arch_instrument_epilog_full.
577
578 2009-05-15  Geoff Norton  <gnorton@novell.com>
579
580         * mini-darwin.c: This works on arm now.
581
582 2009-05-14  Geoff Norton  <gnorton@novell.com>
583
584         * jit.h, driver.c: Allow full-aot to be decided programatically by the
585         embedding api.
586
587 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
588
589         * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
590         label names.
591
592         * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
593         wrappers during full aot mode correctly.
594
595         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
596         methods correctly.
597
598         * aot-compiler.c (mono_aot_method_hash): Use our internal version of
599         mono_metadata_type_hash ().
600
601 2009-05-14  Massimiliano Mantione  <massi@ximian.com>
602
603         * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
604         mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
605         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
606         Removed MONO_INST_BRLABEL from the instruction flags, and the
607         remaining code that used it, because we do not support branches inside
608         basic blocks (and branch target labels) anymore.
609         * Makefile.am: As part of the above cleanup, remove reference to
610         BURG files which don't exist anymore.
611
612 2009-05-14  Zoltan Varga  <vargaz@gmail.com>
613
614         * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
615         osx.
616
617         * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
618         to use mono_arch_throw_corlib_exception.
619
620         * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use 
621         mono_arch_throw_corlib_exception for throwing corlib exceptions.
622
623         * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
624         domain mempool.
625
626         * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
627
628         * aot-compiler.c: Emit a local symbol prefixed with the assembly name 
629         for the got to make debugging easier and to avoid confusing it with the
630         system got.
631         
632         * aot-compiler.c (emit_method_code): Emit a C style symbol for each
633         method so a breakpoint can be set when using gdb.
634
635 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
636
637         * aot-compiler.c (mono_aot_method_hash): Implement this properly based
638         on mono_method_get_imt_slot ().
639
640         * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
641         num_decodes variables.
642
643         * aot-compiler.c (mono_aot_method_hash): Revert part of the last
644         change as it doesn't seem to work.
645         
646         * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
647         wrappers.
648
649 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
650
651         * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill 
652         MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
653
654         * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
655         builder when using full aot.
656
657         * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
658         here, it is already handled.
659         
660         * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
661         correctly for IMT.
662
663         * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
664
665         * mini-arm.h: Enable IMT for full aot.
666         
667         * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
668         arch doesn't support it.
669
670         * mini.c (mini_init): Don't disable IMT for full aot if the
671         architecture supports it.
672
673         * mini.h (MonoAotTrampoline): New enum containing the different types
674         of 'numerous' trampolines.
675         (MONO_AOT_FILE_VERSION): Bump this.
676
677         * aot-compiler.c aot-runtime.c: Unify the handling of specific and
678         static rgctx trampolines. Add support for full-aot IMT thunks.
679
680         * mini-amd64.h: Enable IMT for full aot.
681
682         * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
683         to exclude tests belonging to a category.
684
685         * generics.cs: Mark some tests with a !FULLAOT category.
686
687         * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
688         generics tests.
689
690 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
691
692         * aot-compiler.c (emit_and_reloc_code): Move the implementation of
693         MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
694         (emit_plt): Fix a warning.
695
696 2009-05-10  Zoltan Varga  <vargaz@gmail.com>
697
698         * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
699         back into aot-compiler.c to a place where the other functions shared by
700         the runtime and aot compiler are.
701         
702         * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
703         as done previously, instead of in MonoAotFileInfo, since pointers might have
704         alignment requirements.
705
706         * mini.h: Bump AOT file format version.
707
708 2009-05-10  Miguel de Icaza  <miguel@novell.com>
709
710         * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
711         that is used at runtime from the aot-compiler.c, this makes it
712         work on setups that remove the AOT compiler from the output
713         image. 
714
715 2009-05-09  Zoltan Varga  <vargaz@gmail.com>
716
717         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
718         PPC.
719
720         * mini-ppc.h: Enable static rgctx trampolines for ppc.
721
722         * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
723
724         * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific 
725         stuff to mono_arch_decompose_long_opts ().
726         (mono_decompose_opcode): Remove some dead code.
727
728 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
729
730         * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
731         cmethod can be null for quite a some reasons.
732
733 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
734
735         * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
736
737 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
738
739         * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
740
741 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
742
743         * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
744         (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
745         whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
746         calls returning structures by addr on amd64.
747
748         * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
749
750         * iltests.il.in: Restructure the tail call tests a bit.
751         
752 2009-05-07  Zoltan Varga  <vargaz@gmail.com>
753
754         * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
755         for virtual methods too.
756
757 2009-05-06  Raja R Harinath  <harinath@hurrynot.org>
758
759         * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
760         due to regression in verifying System.dll.
761
762 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
763
764         * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
765         in dynamic methods.
766
767         * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
768         instances.
769
770         * aot-compiler.c aot-runtime.c: Use our own hash function instead of
771         g_str_hash () which can change.
772
773         * driver.c (mini_regression): Disable optimizations not supported by
774         the cpu. Fixes #500019.
775
776         * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
777         build.
778
779 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
780
781         * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
782         to the latest LLVM code.
783
784 2009-05-05  Zoltan Varga  <vargaz@gmail.com>
785
786         * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
787
788 2009-05-04  Zoltan Varga  <vargaz@gmail.com>
789
790         * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on 
791         x86/amd64.
792
793         * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
794         no longer saving offsets, so just save the patch types along with the other
795         info.
796         * aot-runtime.c (load_patch_info): Update after the changes to 
797         encode_patch_list ().
798         (decode_got_entry): Removed, merged into load_patch_info ().
799         (is_shared_got_patch): Removed, call the same function from
800         aot-compiler.c.
801
802         * mini.h: Bump aot file format version.
803         
804         * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
805         half-finished no-dlsym code.
806
807         * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
808         option.
809
810         * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the 
811         MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
812
813 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
814
815         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
816         buffer length to work with AOT code.
817
818         * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
819         ldfld/stfld opcodes.
820
821         * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
822         as it is not used.
823
824         * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
825
826         * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
827
828         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
829         LLVM API.
830
831         * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
832         if needed. Don't decompose long operations when using llvm.
833
834 2009-05-01  Zoltan Varga  <vargaz@gmail.com>
835
836         * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
837         PAGESIZE constant.
838
839         * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
840
841 2009-05-03  Martin Baulig  <martin@ximian.com>
842
843         * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
844         mono_debugger_insert_method_breakpoint() since the class init
845         handler we're inserting at the top of the method already gives us
846         a notification.
847
848 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
849
850         * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
851         to mono_arch_decompose_long_opts () for x86 and arm.
852
853 2009-04-29  Zoltan Varga  <vargaz@gmail.com>
854
855         * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
856         TARGET_AMD64 here.
857
858 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
859
860         * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
861         JIT code.
862
863 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
864
865         * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
866         number of trampolines used in full-aot mode.
867
868         * aot-compiler.c: Add an ntrampolines option to set the number of 
869         trampolines emitted in full-aot mode.
870
871 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
872
873         * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
874         a volatile load. Get rid of get_tempname (), llvm assigns names
875         automatically.
876
877         * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
878         builder function.
879
880         * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
881         a value.
882
883         * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
884         level 1.
885
886         * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
887         to the same register as a fixed sreg2. Fixes #497271.
888
889         * iltests.il.in: Add a new test.
890
891 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
892
893         * mini-amd64.c: Use moves instead of pushes for passing arguments on the
894         stack, since pushes complicate exception handling.
895
896         * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
897         the stack if they are passed using moves.
898
899         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
900
901         * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
902         when using llvm.
903
904         * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the 
905         icalls themselves. Convert arguments of FCOMPARE. Convert the destination
906         of FMOVE if it is an R4.
907
908 2009-04-25  Zoltan Varga  <vargaz@gmail.com>
909
910         * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
911
912         * mini.h (LLVMCallInfo): New structure to store calling convention 
913         information for the LLVM back end similar to the CallInfo structures in 
914         the back-ends.
915
916         * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
917         call information in a format usable by LLVM.
918         (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
919
920         * method-to-ir.c (mono_emit_call_args): Emit calls using 
921         mono_llvm_emit_call () when compiling using LLVM.
922
923         * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
924         comments to all functions. Fix memory leaks. Add a public init/cleanup
925         function.
926
927         * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
928
929         * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
930         mono_array_new_va () jit icall.
931         
932 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
933
934         * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
935         multiple machine description files to be specified.
936         * mini-ops.h: fixes for cross-compilation.
937
938 2009-04-22  Miguel de Icaza  <miguel@novell.com>
939
940         * aot-runtime.c (make_writable): Use mono_mprotect to simplify
941         some porting work.
942
943 2009-04-22  Zoltan Varga  <vargaz@gmail.com>
944
945         * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
946         to prevent asserts in various passes. Fixes #497220.
947
948 2009-04-21  Zoltan Varga  <vargaz@gmail.com>
949
950         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
951         a racy assert.
952
953         * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
954         table to avoid duplicates.
955
956         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
957         
958         * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
959         option is used.
960
961 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
962
963         * mini.c (mini_method_verify): Fail fulltrust code if the exception
964         is for method or field access.
965
966 2009-04-20  Zoltan Varga  <vargaz@gmail.com>
967
968         * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
969         a Value to stdout.
970
971         * mini-llvm.c (mono_llvm_emit_method): Use it.
972         
973         * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
974         (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
975         on volatile values.
976
977         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for 
978         synchronized methods.
979
980         * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
981
982         * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
983
984         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
985         OP_LOADI8_MEM.
986
987         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
988         allowing some options to be set dynamically.
989
990 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
991
992         * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
993         unconditional branch.
994
995         * mini.h (MonoTrampolineType): Add new trampoline type 
996         'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
997         compiled code.
998
999         * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline 
1000         function.
1001
1002         * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
1003         creation function.
1004
1005         * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
1006         is enabled. Instead, use the llvm vcall trampoline.
1007         
1008         * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
1009
1010         * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
1011         
1012         * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
1013         functions.
1014
1015         * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of 
1016         MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
1017
1018         * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
1019         OP_IA64_CSET opcode.
1020
1021         * mini.c: Fix a warning.
1022
1023         * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
1024         THROW to the appropriate llvm type.
1025
1026 2009-04-18  Zoltan Varga  <vargaz@gmail.com>
1027
1028         * mini.c (mini_method_compile): Add statistics for methods JITted
1029         with/without LLVM.
1030
1031 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
1032
1033         * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
1034         OP_IA64_CMP_<cond>_IMM opcodes.
1035
1036 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
1037
1038         * mini-llvm.c (emit_cond_system_exception): Implement throwing of
1039         corlib exceptions.
1040
1041         * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
1042         correctly.
1043
1044         * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
1045         GENERICINST.
1046
1047 2009-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1048
1049         * mini-exceptions.c : add thread id to EXCEPTION trace message.
1050
1051 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
1052
1053         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
1054         support.
1055
1056         * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
1057         rgctx invoke trampolines for x86.
1058
1059         * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
1060         indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
1061         (mono_arch_get_vcall_slot): Simplify this.
1062
1063 2009-04-16  Zoltan Varga  <vargaz@gmail.com>
1064
1065         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
1066         mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
1067
1068 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
1069
1070         * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx 
1071         trampolines for ARM. Add full-aot support for delegate invokes for ARM.
1072
1073         * mini-trampolines.c (mono_magic_trampoline): Fix the build.
1074
1075         * liveness.c (visit_bb): Remove a needless assert.
1076
1077 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
1078
1079         * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
1080         full aot support to the arch specific code.
1081
1082         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
1083
1084         * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
1085
1086         * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
1087         
1088         * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
1089         collect information about the delegate invoke impl trampolines.
1090
1091         * mini.h (MonoAotTrampInfo): New structure collecting the information needed
1092         to save trampolines during full-aot mode.
1093
1094         * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
1095         creation function which returns a trampoline which sets the rgctx
1096         argument.
1097         (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
1098         wrapper if possible.
1099         (mono_delegate_trampoline): Ditto.
1100
1101         * mini.c (mono_jit_runtime_invoke): Ditto.
1102
1103         * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
1104         
1105         * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
1106
1107         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
1108         
1109 2009-04-12  Zoltan Varga  <vargaz@gmail.com>
1110
1111         * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
1112         just setting the opcode to OP_NOP.
1113
1114 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
1115
1116         * mini.c (mini_method_compile): Put the last change inside an 
1117         #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
1118         
1119         * mini.c (mini_method_compile): Disable sharing of stack slots/registers
1120         and extend live ranges to cover the whole method when using xdb.
1121
1122         * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
1123         do it in the trampolines.
1124
1125         * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
1126         needed.
1127
1128         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
1129         
1130         * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
1131         call code in full-aot mode since IMT is disabled there.
1132         (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
1133         new JIT no longer has that restriction.
1134
1135         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
1136
1137         * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
1138         a more compact format.
1139         (mono_aot_wrapper_name): New function to return a unique name for a
1140         wrapper method, also used by the AOT runtime.
1141
1142         * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
1143         aot-compiler.c.
1144
1145         * aot-compiler.c (add_generic_class): Add the helper methods from T[]
1146         when a ICollection<T> etc is encountered.
1147         (add_generic_instances): Process method arguments/locals too.
1148         (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
1149         trampoline names.
1150
1151         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
1152         
1153 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
1154
1155         * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
1156
1157         * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
1158
1159         * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
1160         representing the result of the decomposition. Nullify instructions
1161         instead of setting them to OP_NOP since nops can't have registers
1162         set.
1163
1164 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
1165
1166         * aot-compiler.c (mono_compile_assembly): Split this huge function into
1167         smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
1168         info. Strip 'mapping symbols' on ARM.
1169
1170         * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
1171         
1172         * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
1173         this with the native genmdesc.
1174
1175 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
1176
1177         * aot-runtime.c:  Fixing the MSVC build.
1178
1179         Code is contributed under MIT/X11 license.
1180
1181 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
1182
1183         * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since 
1184         JITted code depends on it.
1185
1186 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
1187
1188         * aot-compiler.c: Use new MonoGenericParam accessors.
1189
1190 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
1191
1192         Reduce memory usage and improve correctness wrt MonoGenericParam
1193         * aot-runtime.c (decode_klass_ref): Simplify generic parameter
1194         handing.  Avoid allocating MonoGenericParams, but use the ones in
1195         the container itself.
1196
1197 2009-04-07  Miguel de Icaza  <miguel@novell.com>
1198
1199         * tasklets.c: Return exceptions in the out argument.
1200
1201 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
1202
1203         * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
1204         opcode. Use pointer types in more places instead of casting them to 
1205         integers.
1206
1207         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
1208         optimizations.
1209         (mono_llvm_optimize_method): New helper function to optimize a method.
1210
1211         * method-to-ir.c (mono_emit_widen_call_res): Extract the call result 
1212         widening code so it could be called from more places.
1213         (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
1214         code paths in the call opcodes.
1215
1216 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
1217
1218         * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
1219
1220 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
1221
1222         * dwarfwriter.c: Use _ to separate class name 
1223         components as gdb can't handle '.'. Represent reference variables
1224         as 'class <NAME>&'.
1225         
1226         * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
1227
1228         * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
1229         
1230         * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
1231
1232         * gc-test.cs: New file with GC stack marking tests.
1233         
1234         * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
1235         negative numbers for vfp.
1236
1237         * basic-float.cs: Add a test.
1238         
1239 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
1240
1241         * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
1242
1243 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
1244
1245         * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
1246         part of tasklet/continuation support.
1247
1248 2009-04-05  Zoltan Varga  <vargaz@gmail.com>
1249
1250         * mini-llvm.c (mono_llvm_emit_method): Move the handling of
1251         amd64 opcodes inside an ifdef.
1252
1253         * dwarfwriter.c: Emit inheritance information for classes, emit fields
1254         of complex types.
1255         
1256         * dwarfwriter.c (emit_type): Emit the class info for classes.
1257
1258 2009-04-04  Zoltan Varga  <vargaz@gmail.com>
1259
1260         * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
1261
1262         * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
1263
1264         * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
1265
1266         * ssa.c (mono_ssa_compute): Fix some memory leaks.
1267
1268 2009-04-03  Zoltan Varga  <vargaz@gmail.com>
1269
1270         * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
1271
1272         * mini-llvm.c: Update comments.
1273
1274         * mini.h (COMPILE_LLVM): New macro.
1275
1276         * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
1277
1278         * ssa.c (mono_ssa_compute): Ditto.
1279         
1280         * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
1281         the unwind ops from a DWARF FDE.
1282
1283         * mini-llvm.c: Implement generation of unwind info for LLVM compiled
1284         methods by extracting the dwarf unwind ops from the unwind info generated
1285         by LLVM.
1286         
1287         * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
1288         calls.
1289
1290         * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
1291         addressing modes.
1292
1293 2009-04-02  Zoltan Varga  <vargaz@gmail.com>
1294
1295         * Makefile.am (llvm_sources): Enable this.
1296
1297         * mini.c (mini_method_compile): Add support for compiling with LLVM, 
1298         failing back to the JIT if something cannot be handled.
1299
1300         * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
1301         compiling with LLVM.
1302
1303         * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
1304         compiling with LLVM.
1305
1306         * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when 
1307         compiling with LLVM.
1308
1309         * mini-ops.h: Add a few opcodes needed by LLVM.
1310
1311         * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
1312         has no unwind info.
1313
1314         * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
1315         backend.
1316
1317         * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
1318
1319         * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
1320
1321 2009-04-01  Mark Probst  <mark.probst@gmail.com>
1322
1323         * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
1324         ridiculously large methods.
1325
1326 2009-03-31  Martin Baulig  <martin@ximian.com>
1327
1328         * debug-debugger.c (debugger_remove_breakpoint): Call
1329         mono_debugger_remove_class_init_callback ().
1330
1331 2009-03-31  Zoltan Varga  <vargaz@gmail.com>
1332
1333         * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
1334         right before emitting code, not at the start.
1335
1336         * mini.c (mono_postprocess_patches): Extract this into a separate function
1337         from mono_codegen ().
1338
1339         * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
1340         byref types correctly.
1341
1342 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
1343
1344         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
1345         by the last change.
1346
1347 2009-03-29  Zoltan Varga  <vargaz@gmail.com>
1348
1349         * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before 
1350         indirect calls, this avoids problems where get_vcall_slot () would get
1351         confused by the native code for the instruction preceeding the call.
1352         (mono_arch_get_vcall_slot): Simplify this.
1353         (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
1354
1355         * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
1356         register allocator now seems to depend on them instead of the data in
1357         cpu-<ARCH>.md.
1358
1359         * mini.c (mini_method_compile): Throw the correct type of exception if
1360         mono_method_get_header () fails because of a loading error.
1361
1362 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
1363
1364         * mini.c (mini_method_compile): Clear the loader error if the method
1365         header cannot be decoded.
1366
1367         * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual 
1368         interface methods on proxies correctly.
1369
1370         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
1371         this argument for vtype methods. Add precise liveness info for arguments.
1372
1373         * mini-codegen.c (mono_print_ins_index): Print the vreg of the
1374         LIVERANGE_START/END opcodes.
1375
1376         * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
1377         for arguments and values in registers.
1378
1379 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
1380
1381         * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
1382         return a valuetype. Fixes #487518.
1383
1384         * iltests.il: Add a test.
1385         
1386         * aot-compiler.c: Use mono_thread_create () to create helper threads.
1387
1388         * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
1389         closed over a null reference correctly.
1390
1391 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
1392
1393         * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
1394
1395 2009-03-25  Mark Probst  <mark.probst@gmail.com>
1396
1397         * mini-codegen.c (mono_local_regalloc): Don't let sregs get
1398         allocated to the same registers as fixed sregs.
1399
1400 2009-03-24  Mark Probst  <mark.probst@gmail.com>
1401
1402         * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
1403         ATOMIC_CAS_IMM ops.
1404
1405         * method-to-ir.c: Handle more cases for
1406         Interlocked.CompareExchange.
1407
1408         * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
1409         mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
1410         ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
1411
1412 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
1413
1414         * aot-runtime.c (decode_method_ref): Fix a warning.
1415
1416         * unwind.c (mono_unwind_frame): Ditto.  
1417
1418 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
1419
1420         * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
1421         (mono_compile_assembly): Enable the binary writer for full-aot as well.
1422
1423         * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
1424         fix the handling of large values in the ALU_PC_G0_NC relocation.
1425
1426 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
1427
1428         * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
1429
1430 2009-03-22  Mark Probst  <mark.probst@gmail.com>
1431
1432         * method-to-ir.c (mono_spill_global_vars): Support for ternary
1433         ops.
1434
1435 2009-03-22  Mark Probst  <mark.probst@gmail.com>
1436
1437         * method-to-ir.c: MINI_OP3 needs a comma.
1438
1439         * method-to-ir.c, mini.h, mini.c: Remove
1440         mono_init_op_sreg_counts ().
1441
1442 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
1443
1444         * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
1445         OP_JMP.
1446         
1447         * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
1448         assertion.
1449
1450         * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
1451
1452         * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
1453         code somewhat.
1454
1455 2009-03-21  Mark Probst  <mark.probst@gmail.com>
1456
1457         * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
1458         liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
1459         mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
1460         operations.
1461
1462 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
1463
1464         * driver.c: Change location of gc_wrapper.h.
1465
1466         * method-to-ir.c (mono_find_block_region): Handle try clauses nested
1467         inside finally clauses correctly. Fixes #485721.
1468
1469         * mini.c (mono_find_spvar_for_region): This needs to handle try regions
1470         after the change above.
1471
1472         * exceptions.cs: Add a test.
1473         
1474 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
1475
1476         * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
1477
1478         * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
1479         into cfg->used_int_regs, it is not needed with the dwarf unwinder.
1480         (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
1481
1482         * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
1483         the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
1484
1485 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
1486
1487         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
1488         Simplify logic for ensure_method_is_allowed_to_call_method. 
1489         Handle wrappers on callers.
1490
1491 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
1492
1493         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
1494         them don't run yet.
1495
1496         * basic-simd.cs: Fix the names of some test methods.
1497
1498 2009-03-18  Geoff Norton  <gnorton@novell.com>
1499
1500         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
1501
1502 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
1503
1504         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
1505
1506 2009-03-17  Jb Evain  <jbevain@novell.com>
1507
1508         * driver.c: remove now uneeded call to mono_gc_base_init before
1509         mono_profiler_load.
1510
1511 2009-03-17  Jb Evain  <jbevain@novell.com>
1512
1513         * dwarfwriter.c (token_handler): handle more cases.
1514
1515 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
1516
1517         * method-to-ir.c: Remove more dead code (that was required only
1518         because of method_is_safe). Fix compiler warnings.
1519
1520 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
1521
1522         * method-to-ir.c: Remove unneeded/useless method_is_safe
1523         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
1524
1525 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1526
1527         * mini.c (mini_method_compile): Print the method been compiled with
1528         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
1529         for people not familiar with the runtime.
1530
1531 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
1532
1533         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
1534         a managed object which is later put into a GList. Return its class instead.
1535
1536         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
1537         stack slots when using sgen.
1538
1539 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
1540
1541         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
1542
1543 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
1544
1545         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
1546         > so it works on the first vreg as well.
1547
1548 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
1549
1550         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
1551         trigger randomly.
1552
1553         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
1554         
1555         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
1556         implement GArray.
1557
1558 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
1559
1560         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
1561         native->IL offset mapping.
1562
1563 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
1564
1565         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
1566
1567         * basic.cs: Add a test.
1568
1569 2009-03-11  Mark Probst  <mark.probst@gmail.com>
1570
1571         * mini-x86.c (mono_arch_output_basic_block): Use different
1572         registers in case the ones we want to overwrite are used by the
1573         other operand.  Fixes regression in #480807.
1574
1575 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
1576
1577         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
1578
1579         * dwarfwriter.c (emit_line_number_info): The line number info for
1580         IL code was off by one. Fix that.
1581
1582         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
1583         stack.
1584
1585 2009-03-09  Mark Probst  <mark.probst@gmail.com>
1586
1587         Contributed under the terms of the MIT/X11 license by Steven
1588         Munroe <munroesj@us.ibm.com>.
1589
1590         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
1591         Fixes #483462.
1592
1593 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
1596         as well.
1597
1598 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
1599
1600         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
1601         the delegate ctor handling code. Fixes #482638.
1602         
1603         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
1604         #481458.
1605
1606         * iltests.il.in: Add a test.
1607         
1608         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
1609         mini-posix.c.
1610
1611 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1612
1613         * mini-trampolines.c (mono_create_jump_trampoline): If the method
1614         is shared generic code, return the trampoline, even if the method
1615         has already been compiled.  Fixes #479763.
1616
1617         * mini.c, mini.h: New function
1618         mono_jit_find_compiled_method_with_jit_info() which is the same as
1619         mono_jit_find_compiled_method() but also returns the jit info.
1620
1621 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1622
1623         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
1624         for methods which actually have one.  For all other methods, make
1625         sure the this argument var is live the whole method.
1626
1627         * mini.c (mini_method_compile): Every shared method has a
1628         this/vtable/mrgctx info.  Fixes #480807.
1629
1630 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1631
1632         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
1633         generic/imt thunks where some entries branch through the vtable,
1634         while other entries branch directly.
1635
1636 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
1637
1638         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
1639
1640         * mini-windows.c: Ditto.
1641         
1642         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
1643         ctors.
1644
1645 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
1646
1647         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
1648         down an assert.
1649
1650 2009-03-04  Mark Probst  <mark.probst@gmail.com>
1651
1652         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
1653         #481403.
1654
1655 2009-03-04  Mark Probst  <mark.probst@gmail.com>
1656
1657         * exceptions-x86.c: Include debug-mini.h - fixes build.
1658
1659 2009-03-04  Martin Baulig  <martin@ximian.com>
1660
1661         * debug-mini.c: Clean up the exception API and add documentation.
1662         (mono_debugger_handle_exception): New public method; this is
1663         called when throwing an exception or encountering an unhandled one.
1664         (mono_debugger_call_exception_handler): Formerly known as
1665         mono_debugger_handle_exception(); this is used to tell the
1666         debugger that we're about to invoke an exception handler.
1667
1668 2009-03-04  Martin Baulig  <martin@ximian.com>
1669
1670         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
1671         ../metadata/mono-debug-debugger.c; save and reset exception state.
1672
1673 2009-03-02  Martin Baulig  <martin@ximian.com>
1674
1675         * debug-mini.c: Moved the debugger exception handling here from
1676         ../metadata/mono-debug-debugger.c.
1677
1678         * debug-mini.h
1679         (MonoDebuggerExceptionAction): New exception typedef.
1680
1681         * debug-mini.c
1682         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
1683
1684         * exceptions-amd64.c
1685         (mono_amd64_throw_exception): Use the new debugger exception
1686         handling code.
1687
1688         * mini-exceptions.c
1689         (mono_handle_exception_internal): Don't call
1690         mono_debugger_unhandled_exception() here.
1691
1692 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1693
1694         * mini.c aot-compiler.c: Update after the changes to 
1695         mono_marshal_get_runtime_invoke ().
1696
1697         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
1698         Virtual generic methods might not have method->slot set, work around
1699         that.
1700
1701         * generics.cs: Add a test.
1702
1703 2009-03-02  Geoff Norton  <gnorton@novell.com>
1704
1705         * mini.c:
1706         * driver.c: Allow signal chaining of SIGFPE as well.
1707
1708 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
1709
1710         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
1711         this since it now receives the method not its generic context in the
1712         IMT reg.
1713
1714         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
1715         generic/imt thunks where some entries branch through the vtable, while
1716         other entries branch directly.
1717
1718         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
1719
1720         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
1721         support for interface methods as well.
1722
1723         * mini-trampolines.c: Add support for virtual generic methods in interfaces
1724         using the normal IMT thunks.
1725
1726         generics.cs: Add new tests.
1727         
1728         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
1729         the generic inst to the generic imt thunks. This fixes AOT support, 
1730         improves consistency with the normal IMT thunks, and makes it easier to
1731         add support for interface generic virtual methods later.
1732
1733         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
1734         
1735 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
1736
1737         * driver.c (mono_set_signal_chaining): New public API function to enable
1738         signal chaining on POSIX platforms.
1739
1740         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
1741         (si@lindenlab.com) to implement signal chaining. The original patch was
1742         contributed under the MIT X/11 license:
1743         https://bugzilla.novell.com/show_bug.cgi?id=318894
1744
1745 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
1746
1747         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
1748         too until it can be made to run on amd64.
1749
1750 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
1751
1752         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
1753         to  get_generic_context_from_code () + get_call_info () if possible.
1754
1755 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
1756
1757         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
1758         suspend-on-sigsegv functionality.
1759
1760         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
1761         to suspend when a native SIGSEGV is received. This is useful for debugging
1762         crashes which don't happen under gdb, since a live process contains more
1763         information than a core file.
1764
1765         * mini-exceptions.c (mono_print_thread_dump): Use 
1766         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
1767
1768         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
1769
1770         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
1771         
1772         * basic-float.cs: Disable the tests which currently fail on amd64.
1773
1774         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
1775         value to mono_arch_patch_callsite () to fix crashes.
1776         
1777         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
1778
1779 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
1780
1781         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
1782         nop code by patching the call address to point to the nullified class init
1783         trampoline, as the former does not seem to be safe on SMP machines.
1784
1785 2009-02-23  Mark Probst  <mark.probst@gmail.com>
1786
1787         * mini-ops.h: Fix the argument types for a few x86 opcodes where
1788         they were wrong.
1789
1790 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
1791
1792         * basic-float.cs basic-calls.cs: Fix warnings.
1793
1794 2009-02-22  Mark Probst  <mark.probst@gmail.com>
1795
1796         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
1797         correct frame pointer in the LMF.  Should fix #478394.
1798
1799 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
1800
1801         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
1802
1803         * image-writer.c: Make the binary writer less verbose.
1804
1805 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
1806
1807         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
1808         are called from runtime invoke wrappers.
1809
1810 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
1811
1812         * cpu-ppc.md (store_memindex): Increase the size of this.
1813
1814 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
1815
1816         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
1817
1818         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
1819
1820         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
1821         OP_LCONV_TO_R_UN.
1822
1823         Last fix for of #467201.
1824
1825
1826 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
1827
1828         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
1829
1830         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
1831         and long_conv_to_r8_2:
1832
1833         Fixed part of #467201.
1834
1835 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
1836
1837         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
1838
1839         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
1840         conversion to 32 bits.
1841
1842         * cpu-x86.md: Increase the size of int_conv_to_r4.
1843
1844         * basic-float.cs: Add a test for this.
1845
1846         Fixed part of #467201.
1847
1848 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
1849
1850         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
1851
1852         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
1853         conversion to 64 bits.
1854
1855         * basic-float.cs: Add a test for this.
1856
1857         Fixed part of #467201.
1858
1859 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
1860
1861         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
1862
1863         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
1864         This behavior is compatible with MS.
1865
1866         * iltest.il.in: Add a test for this.
1867
1868         Fixed part of #467201.
1869
1870 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
1871
1872         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
1873
1874         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
1875         change the precision of the value.
1876
1877         * cpu-x86.md: Define len for float_conv_to_r4.
1878
1879         * basic-float.cs: Add a test for this.
1880
1881         Fixed part of #467201.
1882
1883 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1884
1885         * mini.c: Adjust locking order to the new semantics where the loader lock
1886         comes first.
1887
1888 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1889
1890         * aot-runtime.c:
1891         * mini-amd64.c:
1892         * mini-arm.c:
1893         * mini-ia64.c:
1894         * mini-mips.c:
1895         * mini-ppc.c:
1896         * mini-sparc.c:
1897         * mini-trampolines.c:
1898         * mini-x86.c:
1899         * mini.c:
1900         * tramp-alpha.c:
1901         * tramp-amd64.c:
1902         * tramp-arm.c:
1903         * tramp-hppa.c:
1904         * tramp-ia64.c:
1905         * tramp-mips.c:
1906         * tramp-ppc.c:
1907         * tramp-s390.c:
1908         * tramp-s390x.c:
1909         * tramp-sparc.c:
1910         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
1911
1912 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1913
1914         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
1915         as it is incorrect.
1916
1917 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1918
1919         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
1920         for cctors if needed.
1921
1922 2009-02-17  Mark Probst  <mark.probst@gmail.com>
1923
1924         * mini-ppc.c: Fix build on Darwin.
1925
1926 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1927
1928         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
1929         version instead of 3 as valgrind doesn't like version 3.
1930
1931         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
1932
1933         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
1934         usable for hashing methods.
1935         (emit_extra_methods): Use the new hash to avoid putting every method in the
1936         same hash bucket.
1937
1938         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
1939
1940         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
1941         whenever a method ref could match a method.
1942         
1943         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
1944         test to fail.
1945         
1946         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
1947         methods refs.
1948
1949         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
1950
1951         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
1952         the encoding buffer.
1953
1954         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
1955         mono_method_get_header () on inflated methods as an optimization.
1956
1957 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1958
1959         * ssa.c (fold_ins): Fix another crash if the instruction following the
1960         switch was optimized away.
1961
1962 2009-02-16  Mark Probst  <mark.probst@gmail.com>
1963
1964         Contributed under the terms of the MIT/X11 license by Steven
1965         Munroe <munroesj@us.ibm.com>.
1966
1967         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
1968
1969 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1970
1971         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
1972         around the mono_domain_alloc calls, it is now done by the functions
1973         themselves.
1974
1975         * aot-compiler.c (compile_method): Only add wrappers referenced by
1976         the method if compiling with full AOT.
1977         (mono_compile_assembly): Error out if --aot=full is specified on
1978         a platform where it is not supported.
1979
1980         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
1981         on ARM too.
1982
1983         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
1984         AOT support.
1985
1986         * aot-runtime.c (load_named_code): Handle 
1987         mono_arm_throw_exception_by_token.
1988
1989         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
1990
1991         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
1992         unaligned.
1993
1994         * Makefile.am (fullaotcheck): Exit if a test fails.
1995
1996         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
1997         on ARM.
1998         (mono_compile_assembly): Handle the assembler failing.
1999
2000         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
2001         accepting subsections of .bss.
2002
2003         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
2004         was optimized away.
2005
2006         * aot-compiler.c: Remove some unused includes.
2007         
2008         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
2009         now in MonoImageWriter.
2010
2011         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
2012         code sequence which matches a non-virtual call. Fixes #472654.
2013
2014 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
2015
2016         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
2017         xdebug code.
2018         
2019         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
2020         use the image/dwarf writers directly.
2021
2022         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
2023         field.
2024
2025         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
2026         MonoDwarfWriter.
2027
2028         * image-writer.h: Fix some typos.
2029
2030         * dwarfwriter.h dwarfwriter.c: New files.
2031         
2032         * aot-compiler.c: Extract the DWARF info writing functionality into a 
2033         separate module.
2034
2035         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
2036         argument to return unwind info.
2037
2038         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
2039
2040         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
2041         
2042         * aot-runtime.c (decode_method_ref): Add a case for 
2043         MONO_AOT_METHODREF_WRAPPER_NAME.
2044
2045         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
2046         for AOT.
2047
2048         * aot-compiler.c (encode_method_ref): Use the new constants.
2049
2050         * aot-runtime.c (decode_method_ref): Ditto.
2051
2052         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
2053         be compiled, not the icall itself.
2054
2055 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
2056
2057         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
2058         using decode_method_ref ().
2059
2060         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
2061         convert it to an in32. Fixes #475859.
2062
2063         * arrays.cs: Add a test.
2064
2065 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
2066
2067         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
2068         OP_LCONV_TO_U2.
2069
2070         * basic-long.cs: Add a test.
2071
2072 2009-02-12  Mark Probst  <mark.probst@gmail.com>
2073
2074         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
2075         remove the frame pointer in leaf methods which don't receive any
2076         arguments, don't throw exceptions and don't do dynamic stack
2077         allocations.
2078
2079 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
2080
2081         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
2082         the fail_tramp changes. Hopefully fixes #475132.
2083
2084 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
2085
2086         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
2087         instead of mono_metadata_signature_dup_full.
2088
2089 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
2090
2091         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
2092         for processing jump tables. Fixes #473787.
2093
2094 2009-02-11  Mark Probst  <mark.probst@gmail.com>
2095
2096         * mini-generic-sharing.c: mini_method_get_context() just calls
2097         mono_method_get_context_general() now.
2098
2099         * mini.c, mini.h: Moved get_object_generic_inst(),
2100         construct_object_context_for_method() and
2101         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
2102
2103 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
2104
2105         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
2106         basic block fell through to its successor bblock without a branch. Fixes
2107         #474718.
2108
2109         * iltests.il.in: Add a test.
2110         
2111         * aot-compiler.c (encode_method_ref): Encode methods of array types.
2112         (can_encode_patch): We can now handle arrays of generic parameters and
2113         array methods.
2114
2115         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
2116
2117         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
2118         the AOT file to avoid some #ifdefs in aot-runtime.c
2119
2120         * mini.h: Bump AOT file format version.
2121
2122 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
2123
2124         * Makefile.am (fullaotcheck): Make this run the tests.
2125
2126         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
2127
2128 2009-02-10  Mark Probst  <mark.probst@gmail.com>
2129
2130         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
2131         individually.  Fixes #473482.
2132
2133 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
2134
2135         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
2136
2137 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
2138
2139         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
2140         (mono_compile_assembly): Hush compile warnings about
2141         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
2142         code path.
2143
2144 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
2145
2146         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
2147
2148         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
2149
2150         * aot-compiler.c: Fix arm support.
2151
2152         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
2153         img_writer_emit_unset_mode () function.
2154
2155         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
2156         (mono_unwind_get_dwarf_pc_reg): Ditto.
2157
2158         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
2159         Move almost all platform specific code to a set of arch_ functions, 
2160         and document them to ease porting.
2161         
2162         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
2163
2164         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
2165
2166         * aot-compiler.c: Extract the image writing functionality into a separate
2167         module to reduce the size of this file.
2168
2169 2009-02-09  Geoff Norton  <gnorton@novell.com>
2170
2171         * mini-s390.c: Fix the signature of emit_sig_cookie.
2172
2173 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
2174
2175         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
2176
2177         * aot-runtime.c (is_shared_got_patch): Ditto.
2178
2179         * aot-runtime.c (load_named_code): Cope with the fact that 
2180         decode_got_entry () won't decode the patch fully if its corresponding got
2181         entry is already filled.
2182         
2183         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
2184         Initialize *ji.
2185         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
2186
2187         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
2188         as the moving pointer instead of 'buf' for consistency with the rest of the
2189         codebase.
2190         (mono_arch_create_monitor_exit_trampoline): Ditto.
2191
2192         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
2193         generic_class_init trampolines.
2194         (add_generic_class): Extract some code from add_generic_instances () into a
2195         separate function so it can be called from other places too.
2196         (compile_method): Call add_generic_class () for the classes of inflated methods
2197         referenced by the method.
2198         (can_encode_patch): Allow references to generic parameters.
2199
2200         * aot-runtime.c: Add support the patches required by the new trampolines.
2201         
2202         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
2203         support.
2204
2205         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
2206         full-aot support.
2207
2208         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
2209         this from get_throw_pending_exception, make the signature full aot compatible.
2210
2211         * Makefile.am (fullaotcheck): New target to run full-aot tests.
2212
2213         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
2214
2215         * exceptions.cs: Add a test.
2216
2217 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
2218
2219         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
2220         use the DWARF_DATA_ALIGN constant instead.
2221
2222         * exception-<ARCH>.c: Update after the above change.
2223
2224         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
2225         dwarf unwinder.
2226
2227         * mini-arm.c: Enable the dwarf unwinder.
2228
2229         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
2230         instead of mono_class_setup_vtable ().
2231
2232 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
2233
2234         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
2235         dwarf unwinder.
2236
2237         * mini-x86.h: Enable the dwarf unwinder.
2238
2239 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
2240
2241         Fix mcs/tests/test-7.cs
2242         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
2243         2009-02-03.
2244
2245 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
2246
2247         * mini.c (print_jit_stats): Remove some unused statistics.
2248
2249 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2250
2251         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
2252
2253 2009-02-05  Mark Probst  <mark.probst@gmail.com>
2254
2255         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
2256         the method we get from mono_object_get_virtual_method() because
2257         that function does it properly, now.
2258
2259 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2260
2261         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
2262         opcodes. Fixes #472775.
2263
2264 2009-02-05  Mark Probst  <mark.probst@gmail.com>
2265
2266         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
2267         fact that mono_find_jit_info() sometimes returns the context
2268         corresponding to the jit info in new_ctx.  Fixes #472600.
2269
2270 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2271
2272         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
2273         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
2274         klass->enum_basetype directly.
2275
2276         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
2277         enum subtypes.
2278
2279         * unwind.c: Avoid 0 sized arrays.
2280
2281 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
2282
2283         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
2284         size on systems with 64k pages. Fixes #471389.
2285
2286 2009-02-04  Mark Probst  <mark.probst@gmail.com>
2287
2288         Contributed under the terms of the MIT/X11 license by Steven
2289         Munroe <munroesj@us.ibm.com>.
2290
2291         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
2292         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
2293         necessary.
2294
2295 2009-02-04  Mark Probst  <mark.probst@gmail.com>
2296
2297         Contributed under the terms of the MIT/X11 license by Steven
2298         Munroe <munroesj@us.ibm.com>.
2299
2300         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
2301         comparison fix.
2302
2303         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
2304         The trampoline can be longer on PPC64.
2305
2306 2009-02-04  Mark Probst  <mark.probst@gmail.com>
2307
2308         Contributed under the terms of the MIT/X11 license by Steven
2309         Munroe <munroesj@us.ibm.com>.
2310
2311         * mini-ppc.c: Compiler warning fixes and trivial code
2312         simplifications.
2313
2314 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
2315
2316         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
2317         ins->dreg which could be a hardware register, not a vreg.
2318
2319         * aot-compiler.c (emit_method_dwarf_info): Ditto.
2320         
2321         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
2322         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
2323
2324         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
2325         
2326         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
2327         ->dreg, that is not the vreg we are looking for.
2328
2329         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
2330
2331         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
2332         LIVERANGE_END.
2333
2334         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
2335         strange crashes.
2336
2337 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
2338
2339         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
2340
2341         * aot-compiler.c (emit_line_number_info): Fix line number emission when
2342         the line diff is 0.
2343
2344         * aot-compiler.c: Add xdebug support on x86.
2345
2346         * unwind.c: Add x86 support.
2347         
2348         * aot-compiler.c (emit_exception_debug_info): Control the emission of
2349         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
2350
2351         * mini.c (mini_method_compile): Ditto.
2352         
2353         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
2354         the variable index.
2355
2356         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
2357         which mimic .push_section/.pop_section in GAS.
2358         
2359         * aot-compiler.c: Emit precise live range information for variables.
2360
2361         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
2362
2363         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
2364         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
2365         them.
2366
2367         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
2368         the live ranges of variables.
2369
2370         * mini.h (struct MonoMethodVar): Add two fields containing the live range
2371         of the variable in terms of native offsets.
2372
2373 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
2374
2375         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
2376         
2377 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2378
2379         Contributed under the terms of the MIT/X11 license by Steven
2380         Munroe <munroesj@us.ibm.com>.
2381
2382         * exceptions-ppc.c (restore_regs_from_context): Correct operand
2383         order (offset then base reg) for ppc_load_multiple_regs.
2384         (emit_save_saved_regs) Correct operand order for
2385         ppc_store_multiple_regs.
2386         (mono_arch_get_call_filter): Correct operand order for
2387         ppc_load_multiple_regs.
2388
2389         * mini-ppc.c (emit_memcpy): Fix operand order for
2390         ppc_load_reg_update and ppc_store_reg_update.
2391         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
2392         (mono_arch_emit_epilog): Correct operand order for
2393         ppc_load_multiple_regs.
2394
2395         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
2396         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
2397
2398 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2399
2400         * cpu-ppc64.md: Fixed storer4_memindex length.
2401
2402 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2403
2404         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
2405         line number info.
2406         
2407         * aot-compiler.c (emit_line_number_info): Optimize this.
2408
2409 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
2410
2411         * aot-compiler.c: Disassemble tokens in the IL disassembly.
2412         
2413         * aot-compiler.c: Add debug info for methods without debug info by
2414         emitting an IL file and having the line number info referencing that file.
2415
2416         * aot-compiler.c: Optimize the size of the generated line number info.
2417
2418         * aot-compiler.c: Emit line number info in xdebug mode.
2419
2420         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
2421         million arguments.
2422
2423 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
2424
2425         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
2426
2427         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
2428         is used.
2429
2430 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
2431
2432         * basic-calls.cs: Test for the weird crash found on arm.
2433         
2434 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
2435
2436         * cpu-arm.md: Increase the size of storer8_membase_reg and
2437         loadr8_membase_reg to 24 bytes to accomodate the extra add.
2438
2439         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
2440         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
2441         reg to LR otherwise we'll be loading/storing from just the offset.
2442
2443 2009-01-30  Miguel de Icaza  <miguel@novell.com>
2444
2445         Question: if we are storing gint32's inside the "*native_offset",
2446         should we change the signature to "gint32 *native_offset" to
2447         ensure that we do not have type definition problems?
2448         
2449         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
2450         an int * as this is what the other function expects, causes
2451         problems with Freescale's compiler that defined int32_t to be a
2452         long and makes int incompatible 
2453
2454 2009-01-30  Miguel de Icaza  <miguel@novell.com>
2455
2456         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
2457         filename conflict with bjam.
2458
2459 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
2460
2461         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
2462         as it might use decomposed ops.
2463
2464 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
2465
2466         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
2467
2468         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
2469         is defined.
2470
2471         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
2472
2473         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
2474         offsets.
2475
2476         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
2477         way registers are stored in MonoContext on arm.
2478
2479         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
2480         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
2481
2482         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
2483
2484         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
2485
2486         * mini.c (mini_init): Register mono_isfinite.
2487
2488         * jit-icalls.c (mono_isfinite): New jit icall.
2489
2490         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
2491         
2492         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
2493         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
2494         the parent frame.
2495
2496 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
2497
2498         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
2499         separate frame and stack pointers, so we must use FP to find the register
2500         spill area.
2501         The FP reg is retrieved from the MonoContext::regs array.
2502
2503 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
2504
2505         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
2506         as FPA requires it.
2507
2508 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
2509
2510         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
2511         return R4 and R8 when not running under softfloat.
2512
2513         Fixes basic-calls.exe
2514
2515 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
2516
2517         * mini-arm.c: Implement some overflow opcodes.
2518
2519 2009-01-29  Miguel de Icaza  <miguel@novell.com>
2520
2521         * ssa.c: handle another alloca.h
2522
2523         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
2524         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
2525         MONO_ARCH_USE_SIGACTION. 
2526
2527         * aot-runtime.c, mini-exceptions.c: Replace platform define with
2528         capability defines.
2529
2530         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
2531
2532         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
2533         PPC targets as sigaction does not exist on all platforms, define
2534         this on a per-platform basis.
2535
2536         Instead of erroring out if the platform is not defined, include
2537         mini-ppc-os.h, and expect that the OS specific setting provides
2538         the required information.   
2539
2540 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
2541
2542         * aot-compiler.c: Fix --enable-minimal=aot.
2543
2544 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
2545
2546         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
2547         previous change.
2548
2549 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
2550
2551         * exceptions-arm.c: Fix warnings.
2552
2553         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
2554         ARM.
2555
2556         * mini-x86.c: Fix --enable-minimal=jit build.
2557
2558         * mini.c: Really fix --enable-minimal=jit build.
2559         
2560         * mini.c (construct_object_context_for_method): Move this outside
2561         the DISABLE_JIT block to fix the --enable-minimal=jit build.
2562
2563         "Backported" of r124984 from 2.0 branch.
2564         
2565         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
2566
2567         "Backport" of r124977 + r124978 from 2.0 branch.
2568         
2569         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
2570         to avoid calling mono_exception_from_token () from the throw trampoline.
2571         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
2572         for throwing corlib exceptions, this fixes full-aot support for corlib
2573         exceptions.
2574
2575         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
2576
2577 2009-01-29  Miguel de Icaza  <miguel@novell.com>
2578
2579         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
2580         part of the changes to split the code in mini into operating
2581         system specific files.
2582
2583         This patch was done by copying mini.c to the respective files to
2584         preserve SVN history.
2585
2586 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
2587
2588         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
2589
2590 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
2591
2592         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
2593         remoting-invoke-with-check wrappers of shared methods.
2594
2595         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
2596
2597 2009-01-27  Mark Probst  <mark.probst@gmail.com>
2598
2599         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
2600         optimization if the top of stack is the last instruction in the
2601         bblock.  Otherwise it might have been used after its definition.
2602         Fixes #469742.
2603
2604 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
2605
2606         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
2607         method as well when get_vcall_slot () fails to match a code sequence.
2608
2609         * mini-arm.c: Fix the android build, which doesn't have
2610         __aeabi_read_tp.
2611
2612 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2613
2614         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
2615         the s390x build.
2616
2617 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
2618
2619         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
2620
2621 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2622
2623         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
2624         and put its id into jinfo->used_regs. This is only used on amd64,
2625         which is currently the only platform generating unwind info.
2626
2627         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
2628         the dwarf unwinder. This is required to correctly handle async exceptions
2629         like thread abort and stack overflows, which can happen while a method
2630         is in the middle of its prolog or epilog.
2631         
2632         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
2633         the unwind info belonging to an AOTed method.
2634
2635         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
2636         into cfg->unwind_ops.
2637         
2638         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
2639
2640         * mini.c (mini_init): Call mono_unwind_init ().
2641         (mini_cleanup): Call mono_unwind_cleanup ().
2642
2643         * unwind.c: Add functions for managing a set of unwind info entries, allowing
2644         unwind info to be shared between methods.
2645
2646         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
2647         saved in the LMF.
2648
2649         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
2650         get_throw_pending_exception () to avoid initialization races.
2651
2652         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
2653         mono_arch_exceptions_init () function.
2654
2655         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
2656
2657 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
2658
2659         * mini.c (mono_get_domain_intrinsic): New helper function.
2660         (mono_get_thread_intrinsic): Ditto.
2661
2662         * mini-arm.c mini-ia64.c: Use the new helper functions.
2663         
2664         * method-to-ir.c (mono_method_to_ir): Fix the comment for
2665         the last constrained_call change, since it is needed in the non-AOT
2666         case as well.
2667
2668         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
2669         
2670         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
2671         mono_get_lmf_addr () on arm eabi linux.
2672
2673 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
2674
2675         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
2676         code sequence which matches a non-virtual call.
2677
2678 2009-01-23  Mark Probst  <mark.probst@gmail.com>
2679
2680         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
2681         stack pointer (r1).
2682
2683 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
2684
2685         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
2686         runtime-invoke wrappers, since they are also shared based on signature.
2687
2688 2009-01-22  Mark Probst  <mark.probst@gmail.com>
2689
2690         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
2691         info from the (correct) context.
2692
2693 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
2694
2695         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
2696         
2697         * unwind.c (mono_unwind_frame): New function to unwind through a frame
2698         using dwarf unwinding info. Not yet used.
2699
2700         * mini.c (mini_init): When using xdebug, disable freeing of domains.
2701
2702 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2703
2704         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
2705         descriptors.
2706
2707         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
2708         special case and handle mono_arch_delegate_invoke_impl() returning
2709         function descriptors.
2710
2711         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
2712         trampolines return function descriptors, too.
2713
2714 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
2715
2716         * method-to-ir.c (handle_alloc): Avoid generic instances in the
2717         out_of_line optimization.
2718
2719 2009-01-21  Martin Baulig  <martin@ximian.com>
2720
2721         * mini.h
2722         (MonoCompile): Added `disable_deadce_vars' to disable removing
2723         unused variables.
2724
2725         * mini.c
2726         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
2727         inside the debugger.
2728
2729         * liveness.c (mono_analyze_liveness): Don't remove any unused
2730         variables if `cfg->disable_deadce_vars' is set.
2731
2732 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2733
2734         * method-to-ir.c: Only apply exception constructor optimization if
2735         the the method actually belongs to an exception class.  Fixes
2736         #467456.
2737
2738 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
2739
2740         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
2741         change inside a #ifdef __mono_ppc64__.
2742
2743         * aot-compiler.c (compile_method): Remove the previous limitation.
2744
2745         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
2746         on type variables in AOTed code.
2747         
2748         * aot-compiler.c (compile_method): Skip generic methods having type 
2749         constraints on their generic parameters.
2750
2751         * aot-compiler.c (compile_method): Check for methods which cannot be
2752         encoded inside RGCTX_FETCH patches as well.
2753
2754         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
2755         build.
2756
2757 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2758
2759         * method-to-ir.c: Force the vtable variable in shared generic code
2760         for the case that they might show up on a stack trace where they
2761         are needed.
2762
2763         * mini-exceptions.c: Save and use generic sharing info as well as
2764         IP in stack traces to resolve shared generic instantiations.
2765
2766 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
2767
2768         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
2769         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
2770
2771 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2772
2773         * method-to-ir.c: Do generic sharing for array constructors.
2774
2775 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
2776
2777         * mini-exceptions.c (mono_print_thread_dump): Add information
2778         about the thread state using wapi_current_thread_desc.
2779
2780 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2781
2782         * basic-simd.cs: Tests for the new constructors. 
2783
2784 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2785
2786         * mini-ops.h: Added OP_EXPAND_*
2787
2788         * cpu-x86.md: Same.
2789
2790         * mini-x86.c (mono_arch_output_basic_block): Same.
2791         
2792         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
2793
2794 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2795
2796         * iltests.il.in: Add a test for #467385.
2797
2798 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2799
2800         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
2801         thread been cleaned up is not the same currently in execution.
2802
2803         Fixes appdomain-unload crashes on windows, osx and linux variants
2804         without the __thread keyword.
2805
2806 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2807
2808         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
2809         (koush@koushikdutta.com). Implement this for android.
2810
2811         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
2812         begins with a digit.
2813
2814         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
2815         mono_marshal_get_write_barrier ().
2816
2817 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
2818
2819         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
2820         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
2821         that pass them on a register pair.
2822
2823         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
2824         test was crashing due to that.
2825
2826 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
2827
2828         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
2829         trampoline code. Include ucontext.h only if available.
2830
2831 2009-01-15  Mark Probst  <mark.probst@gmail.com>
2832
2833         * mini.c: mono_domain_lookup_shared_generic() takes an open method
2834         and doesn't check whether it's sharable, like it was before
2835         removing the shared generics hash.  This brings IronPython
2836         performance back to what it was before that change.
2837
2838 2009-01-14  Mark Probst  <mark.probst@gmail.com>
2839
2840         * method-to-ir.c: Handle delegate invocation optimization earlier,
2841         otherwise it would be handled (much more slowly) by the
2842         final/sealed optimization.
2843
2844 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2845
2846         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
2847         domain is not set. Fixes #465864.
2848
2849 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2850
2851         * method-to-ir.c: Don't stop sharing of generic methods with catch
2852         clauses - we already handle those.
2853
2854 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2855
2856         * mini.c, mini.h: lookup_generic_method() is now
2857         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
2858         making the shared_generics_hash obsolete.
2859
2860 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2861
2862         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
2863         use the red zone.  Make room on the stack first and then use it,
2864         not the other way around.
2865
2866 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
2867
2868         * mini.c (mini_init): Call mono_xdebug_init ().
2869
2870         * aot-compiler.c (mono_xdebug_init): Make this non-static.
2871
2872 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
2873
2874         * TestDriver.cs: Add an --iter argument to run tests multiple times.
2875
2876         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
2877         trampolines.
2878
2879         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
2880         debug+unwind info for trampolines.
2881
2882         * mini.c (mono_create_unwind_op): New helper function.
2883
2884         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
2885
2886 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
2887
2888         * aot-compiler.c: Fix the build.
2889
2890 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2891
2892         * Makefile.am: Update dtrace-prelink.sh location.
2893
2894 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
2895
2896         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
2897         optimization. Fixes #464520.
2898
2899 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
2900
2901         * mini-amd64.c : Adding code to save/restore non-volatile registers
2902            on Winx64.
2903
2904         * exceptions-amd64.c : Adding code to save/restore non-volatile 
2905           registers on Winx64.
2906
2907         Contributed under MIT/X11 license.
2908
2909 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
2910
2911         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
2912         __GNUC_MINOR__ which can break when the major version changes.
2913
2914 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2915
2916         * basic-simd.cs: Add tests for usage of the sizeof opcode.
2917
2918 2009-01-07  Geoff Norton  <gnorton@novell.com>
2919
2920         * helpers.c:  Allow mono -v -v -v to work on darwin.
2921
2922 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
2923
2924         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
2925           pattern. 
2926
2927         Contributed under MIT/X11 license.
2928
2929 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
2930
2931         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
2932         instead of directly accessing type->data.klass. Fixes #462016.
2933         (mono_allocate_stack_slots_full): Ditto.
2934
2935         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
2936         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
2937
2938         * aot-compiler.c (emit_plt): Fix ARM build.
2939
2940 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
2941
2942         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
2943         
2944         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
2945         change.
2946
2947         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
2948         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
2949         #463357.
2950
2951         * iltests.il.in: Add a regression test.
2952
2953 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2954
2955         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
2956
2957 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2958
2959         * basic-simd.cs: Add a regression test for #462457.
2960
2961 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2962
2963         * mini-ops.h: Add a definition of XPHI.
2964
2965         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
2966
2967         * ssa.c (op_phi_to_move): Handle XPHI.
2968
2969         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
2970
2971         Fixes #462457
2972
2973 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2974
2975         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
2976
2977 2008-12-31  Geoff Norton  <gnorton@novell.com>
2978
2979         * mini-ppc.c: The prolog size allocated can be too small for darwin
2980         ppc32 under certain circumstances.  Also fix a small logic bug.
2981
2982 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
2983
2984         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
2985         while loading AOT methods.
2986
2987         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
2988         since only the former is nulled out after a successful cast. This prevents
2989         crashes with rethrown exceptions when using --debug=casts.
2990
2991 2008-12-24  Mark Probst  <mark.probst@gmail.com>
2992
2993         * mini.h: New macro for checking whether a method is final,
2994         i.e. whether the method or its class is marked final.
2995
2996         * method-to-ir.c: Use the new macro for all final-checks
2997         consistently.  Fixes the crash in the System.ServiceModel tests.
2998
2999 2008-12-23  Mark Probst  <mark.probst@gmail.com>
3000
3001         * mini-exceptions.c (get_exception_catch_class): Corrected another
3002         overly strict assertion.
3003
3004 2008-12-23  Mark Probst  <mark.probst@gmail.com>
3005
3006         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
3007         Clobbering it is not allowed because the caller might use it as
3008         the vtable register in the interface call.
3009
3010 2008-12-19  Mark Probst  <mark.probst@gmail.com>
3011
3012         * mini-exceptions.c (get_exception_catch_class): Corrected an
3013         overly strict assertion.
3014
3015 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
3016         
3017         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
3018
3019         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
3020
3021         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
3022
3023         * cpu-mips.md: correct lengths for certain long_ opcodes.
3024
3025         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
3026
3027         * mini-mips.c: Add support for more long operations. Fix issues with stack frame layout for n32 (still not perfect yet). Add mips_emit_load_const().
3028         
3029 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
3030
3031         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
3032         
3033 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
3034         
3035         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
3036         
3037 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
3038
3039         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
3040         next basic block.
3041         
3042 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
3043
3044         * mini.h: Allow MonoInst 'p' field to alias with the low-order bits of the 'const_val' fields correctly on big-endian systems when SIZEOF_VOID_P < SIZEOF_REGISTER
3045
3046         * ir-emit.h: Change SIZEOF_VOID_P to SIZEOF_REGISTER, init instruction through inst_c* fields instead of inst_p* fields in case sizeof(inst_p) < sizeof(inst_c)
3047         
3048 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
3049         
3050         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
3051         
3052 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
3053
3054         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
3055         gshared code. Fixes #458947.
3056
3057         * generics.cs: Add a test.
3058
3059 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
3060         
3061         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3062         
3063         * mini-mips.c: first pass n32 code generation.
3064
3065         * mini-mips.h: datatypes and defines for n32 support.
3066
3067         * exceptions-mips.c: first pass n32 code generation.
3068         
3069         * tramp-mips.c: first pass n32 code generation.
3070         
3071         * cpu-mips.md: add long_ opcodes.
3072         
3073 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
3074
3075         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3076
3077         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3078         
3079         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3080         
3081         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3082
3083         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3084
3085         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3086
3087         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3088
3089         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
3090
3091         * helpers.c: for mips/n32, don't pass -mips32 to objdump
3092
3093 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
3094
3095         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
3096
3097 2008-12-12  Andres G. Aragoneses  <aaragoneses@novell.com>
3098
3099         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
3100
3101 2008-12-12  Mark Probst  <mark.probst@gmail.com>
3102
3103         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
3104         descriptors for helper functions directly in front of the code.
3105
3106 2008-12-11  Mark Probst  <mark.probst@gmail.com>
3107
3108         * method-to-ir.c: Removed an unnecessary assertion.
3109
3110 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
3111
3112         * method-to-ir.c: Merge SGEN changes from the old JIT.
3113
3114 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
3115
3116         * driver.c (compile_all_methods_thread_main): Handle failure of
3117         mono_get_method ().
3118
3119 2008-12-10  Mark Probst  <mark.probst@gmail.com>
3120
3121         * mini-ppc.c: Merged with mini-ppc64.c.
3122
3123         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
3124
3125         * Makefile.am: Use the same sources for PPC and PPC64.
3126
3127         * mini-ppc64.c: Removed.
3128
3129 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3130
3131         * branch-opts.c (remove_block_if_useless): Extract fall through detection
3132         code to mono_bb_is_fall_through.
3133         
3134         * branch-opts.c (mono_remove_critical_edges): Same.
3135
3136 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3137
3138         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
3139         expect that an OP_BR_REG will be there.
3140
3141 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3142
3143         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
3144         for the many branch ops. The original check miss OP_BR_REG.
3145
3146         Fixes #457574.
3147         
3148 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
3149
3150         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
3151
3152 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
3153
3154         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
3155         while holding the aot lock.
3156
3157 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
3158
3159         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
3160         
3161 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
3162
3163         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
3164           to release all runtime callable wrappers held by the runtime.
3165
3166         Contributed under MIT/X11 license.
3167
3168 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
3169
3170         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
3171           for Winx64.
3172
3173         Contributed under MIT/X11 license.
3174
3175 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
3176
3177         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
3178         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
3179
3180 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
3181
3182         * cpu-mips.md: fix ckfinite length
3183
3184         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
3185         (mono_arch_lowering_pass): cleanup, rearrange for clarity
3186         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
3187         
3188 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
3189
3190         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
3191         
3192 2008-12-08  Geoff Norton  <gnorton@novell.com>
3193
3194         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
3195         size by 8 bytes as well.
3196
3197 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3198
3199         * basic-simd.cs: Fix method names for Vector16b.
3200         
3201 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3202
3203         * basic-simd.cs: Fix method names for Vector16sb.
3204
3205 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3206
3207         * basic-simd.cs: Fix method names for Vector8us.
3208         
3209 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3210
3211         * basic-simd.cs: Fix method names for Vector8s.
3212         
3213 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3214
3215         * basic-simd.cs: Fix method names for Vector4ui.
3216
3217 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3218
3219         * basic-simd.cs: Fix method names for Vector2l.
3220
3221 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3222
3223         * basic-simd.cs: Fix method names for Vector2d.
3224
3225 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3226
3227         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
3228         that are extension methods.
3229
3230 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3231
3232         * basic-simd.cs: Fix method names for Vector4f.
3233
3234 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
3235
3236         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
3237         as such. Fixes #456669.
3238
3239 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
3240
3241         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
3242         
3243 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
3244
3245         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
3246         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
3247         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
3248         (mips_adjust_stackframe): handle FP spills
3249                 
3250         * mini-ops.h: add mips_mtc1_s2
3251         
3252         * cpu-mips.md: add mips_mtc1_s2
3253         
3254 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
3255
3256         * unwind.c: New file, move the unwind info encoding functions here from
3257         aot-compiler.c, so they could be used at runtime too.
3258
3259 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
3260
3261         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
3262         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
3263         
3264 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
3265
3266         * mini-mips.c: cleanup warnings
3267         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
3268         (mips_adjust_stackframe): handle case of taking the address of stack locals
3269         
3270 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
3271
3272         * aot-compiler.c: Implement a few functions missing from the asm writer.
3273         (emit_method_code): Only write symbols for methods when using the bin
3274         writer, since the assembler can't deal with the characters in our method
3275         names.
3276
3277         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
3278
3279         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
3280         call.
3281
3282         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
3283         a bit to also restore %rax.
3284
3285 2008-12-05  Mark Probst  <mark.probst@gmail.com>
3286
3287         * mini-ppc.c: Some simple merges from mini-ppc64.c.
3288
3289 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
3290
3291         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
3292         arguments.
3293
3294 2008-12-05  Mark Probst  <mark.probst@gmail.com>
3295
3296         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
3297
3298         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
3299         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
3300
3301         * exceptions-ppc64.c: Removed.
3302
3303         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
3304
3305 2008-12-05  Mark Probst  <mark.probst@gmail.com>
3306
3307         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
3308         tramp-ppc64.c.
3309
3310         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
3311
3312         * tramp-ppc64.c: Removed.
3313
3314 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
3315
3316         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
3317         the TYPESPEC table.
3318
3319 2008-12-05  Mark Probst  <mark.probst@gmail.com>
3320
3321         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
3322
3323         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
3324         mini-ppc.h instead of mini-ppc64.h.
3325
3326         * mini-ppc64.h: Removed.
3327
3328 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
3329
3330         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
3331         
3332         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
3333         
3334 2008-12-05  Mark Probst  <mark.probst@gmail.com>
3335
3336         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
3337         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
3338         code easier.
3339
3340 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
3341
3342         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
3343
3344 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
3345
3346         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
3347
3348 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
3349
3350         * basic-simd.cs: Tests for operator == and != on Vector4f.
3351
3352 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
3353
3354         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
3355
3356         * simd-intrinsics.c: Kill useless enum.
3357
3358 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
3359
3360         * cpu-mips.md: add long_conv_to_ovf_i4_2
3361         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
3362
3363 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
3364
3365         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
3366         
3367         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
3368
3369 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
3370
3371         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
3372         
3373 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3374
3375         * basic-simd.cs: Add tests for new methods.
3376
3377 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3378
3379         * simd-intrinsics.c: Add support for operator == and !=
3380         on Vector4(u)i.
3381
3382         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
3383
3384 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3385
3386         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
3387
3388 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
3389
3390         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
3391
3392         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
3393         MONO_PATCH_INFO_ICALL_ADDR.
3394
3395         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
3396
3397         * aot-compiler.c: Resurrect full-aot support.
3398
3399 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
3400
3401         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
3402         
3403 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
3404
3405         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
3406         
3407 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
3408
3409         * basic-simd.cs: Fix tests to work under ppc.
3410         Remove tests for methods that will be removed.
3411
3412 2008-12-03  Mark Probst  <mark.probst@gmail.com>
3413
3414         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
3415         generic type (via a typedef or typeref) correctly.
3416
3417 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
3418
3419         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
3420         diagnose an assertion failure.
3421
3422 2008-12-02  Mark Probst  <mark.probst@gmail.com>
3423
3424         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
3425         Fix trampoline size.
3426
3427         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
3428         conversion opcodes are implemented natively instead via emulation.
3429
3430 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
3431
3432         * cpu-mips.md: remove mips_xori
3433
3434         * mini-ops.h:  remove mips_xori
3435
3436         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
3437
3438         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
3439         
3440         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
3441         
3442 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
3443
3444         * cpu-mips.md: fix instruction lengths.
3445
3446         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
3447
3448         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
3449
3450         * mini-ops.h: fix slti / sltiu op profiles.
3451         
3452 2008-12-02  Martin Baulig  <martin@ximian.com>
3453
3454         * method-to-ir.c (mono_method_to_ir): Disable debugging
3455         information for the init locals block to make the debugger stop
3456         after all locals have been initalized.
3457
3458 2008-12-02  Martin Baulig  <martin@ximian.com>
3459
3460         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
3461         running inside the debugger.
3462
3463 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
3464
3465         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
3466         is enabled.
3467
3468         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
3469         alu->alu imm optimization which only shows if deadce is disabled.
3470
3471         * aot-compiler.c: Rename the function names for the binary and asm writers
3472         so they can coexist in the same process. Rework the xdebug code to use the
3473         asm writer. This avoids the need to call into the runtime to dump the
3474         debugging info. Add more debugging info for types.
3475
3476         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
3477
3478         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
3479         cpu description tables, they can't occur in cpu-<ARCH>.md.
3480
3481         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
3482         the stack in CEE_LDFLDA. Fixes #450542.
3483
3484         * generics.cs: Add a new test.
3485
3486 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
3487
3488         * mini-ops.h: updated MIPS opcodes
3489         * mini-mips.c: decompose long opts
3490         * mini-mips.h: decompose long opts
3491         
3492 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
3493
3494         * cpu-mips.md: fix length on int_rem_un
3495         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
3496         
3497 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
3498
3499         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
3500
3501         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
3502
3503 2008-11-29  Martin Baulig  <martin@ximian.com>
3504
3505         * mini-exceptions.c (mono_handle_native_sigsegv): Check
3506         mono_debug_using_mono_debugger() in addition to the
3507         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
3508
3509 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
3510
3511         * mini-ops.h: updated more MIPS opcodes
3512         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
3513         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
3514         
3515 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3516
3517         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
3518
3519 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
3520
3521         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
3522         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
3523         * mini-ops.h: correct selected mips opcode entries
3524         
3525 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3526
3527         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
3528         make them work.
3529
3530 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3531
3532         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
3533
3534 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
3535
3536         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
3537         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
3538         * mini-mips.h: disable IMT
3539         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
3540         
3541 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3542
3543         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
3544
3545 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3546
3547         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
3548
3549 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
3550
3551         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
3552         consistency.
3553
3554 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3555
3556         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
3557         for Set/GetVector aligned versions.
3558
3559 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3560
3561         * basic-simd.cs: Add tests for Get/SetVector.
3562
3563 2008-11-27  Mark Probst  <mark.probst@gmail.com>
3564
3565         * mini.c: Removed g_slist_append_mempool().  Now in
3566         metadata/mempool.c.
3567
3568 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3569
3570         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
3571         size properly and make the bounds check optional.
3572
3573         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
3574         for SetVector and IsAligned.
3575
3576 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
3577
3578         * mini.c: Remove unused mono_normalize_opcodes () function.
3579
3580 2008-11-26  Mark Probst  <mark.probst@gmail.com>
3581
3582         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
3583         using the new atomic add ops now.
3584
3585         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
3586         add.
3587
3588 2008-11-26  Mark Probst  <mark.probst@gmail.com>
3589
3590         * mini-ppc64.c: Several fixes.
3591
3592 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
3593
3594         * cpu-mips.md: added jump_table
3595         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
3596
3597 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
3598
3599         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
3600
3601 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
3602
3603         * mini-ops.h: corrected a handful of MIPS opcodes.
3604
3605 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
3606
3607         * aot-compiler.c: MIPS to use ELF writer
3608
3609 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
3610
3611         * mini-codegen.c: remove MIPS specific assert.
3612
3613 2008-11-25  Mark Probst  <mark.probst@gmail.com>
3614
3615         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
3616         fixes.  PPC64 now passes most of the runtime regressions.
3617
3618 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
3619
3620         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
3621         volatile intervals a bit.
3622
3623 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3624
3625         * basic-long.cs: New test case.
3626
3627 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
3628
3629         * mini.c (mini_method_compile): Disable globalra for large methods for 
3630         now.
3631
3632         * regalloc2.c (order_moves): Add fp support.
3633
3634         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
3635         source bblock ends with an OP_BR_REG.
3636
3637         * ratests.cs: Add a new test.
3638
3639 2008-11-23  Mark Probst  <mark.probst@gmail.com>
3640
3641         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
3642         sharing.  PPC64 now passes generics.exe.
3643
3644 2008-11-23  Mark Probst  <mark.probst@gmail.com>
3645
3646         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
3647
3648 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
3649
3650         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
3651         memory when mono_jit_info_table_find () can't find the method in the
3652         LMF case.
3653
3654         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
3655         AOTed code too.
3656         
3657         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
3658         writer too.
3659
3660 2008-11-23  Mark Probst  <mark.probst@gmail.com>
3661
3662         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
3663         Several fixes.  PPC64 now runs exceptions.exe and
3664         devirtualization.exe.
3665
3666 2008-11-22  Mark Probst  <mark.probst@gmail.com>
3667
3668         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
3669         arrays.exe and basic-math.exe.
3670
3671 2008-11-22  Mark Probst  <mark.probst@gmail.com>
3672
3673         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
3674         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
3675
3676 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
3677
3678         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
3679
3680 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
3681
3682         * method-to-ir.c: Move bounds checking macros to ir-emit.h
3683
3684         * ir-emit.h: Move macros from method-to-ir.c to here.
3685
3686 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
3687
3688         * mini-ops.h: Correct the long simd ops to use LREG.
3689
3690 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
3691
3692         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
3693         
3694         * mini-ops.h: Correct the dreg type of a few long opcodes.
3695
3696         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
3697         Add netbsd support.
3698
3699 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
3700
3701         * mini-ppc.c: remove negative stack references in epilog
3702         for platforms that don't support the red zone.
3703
3704 2008-11-21  Mark Probst  <mark.probst@gmail.com>
3705
3706         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
3707         point regs.  Now PPC64 passes basic-calls.exe.
3708
3709 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3710
3711         * basic-simd.cs: Add tests for accessors of Vector2l.
3712
3713 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3714
3715         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
3716
3717         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
3718         
3719         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
3720
3721 2008-11-21  Mark Probst  <mark.probst@gmail.com>
3722
3723         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
3724         PPC64 passes basic-long.exe.
3725
3726 2008-11-20  Mark Probst  <mark.probst@gmail.com>
3727
3728         * decompose.c: Decompose carry and overflow add on PPC64 like on
3729         other 64 bit archs.  Don't decompose sub at all on PPC64.
3730
3731         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
3732         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
3733         basic-long.exe.
3734
3735 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * basic-simd.cs: Add tests for accessors of Vector2d.
3738
3739 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3740
3741         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
3742
3743         * cpu-x86.md: Same.
3744
3745         * mini-x86.c (mono_arch_output_basic_block): Same.
3746         
3747         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
3748
3749 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3750
3751         * basic-simd.cs: Add tests for accessors of Vector4f.
3752
3753 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3754
3755         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
3756
3757         * cpu-x86.md: Same.
3758
3759         * mini-x86.c (mono_arch_output_basic_block): Same.
3760         
3761         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
3762
3763 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3764
3765         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
3766
3767 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3768
3769         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
3770
3771         * cpu-x86.md: Same.
3772
3773         * mini-x86.c (mono_arch_output_basic_block): Same.
3774         
3775         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
3776
3777 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3778
3779         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
3780
3781 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3782
3783         * simd-intrinsics.c: Enable setters for Vector16sb.
3784
3785 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
3786
3787         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
3788
3789         * cpu-x86.md: Same.
3790
3791         * mini-x86.c (mono_arch_output_basic_block): Same.
3792         
3793         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
3794
3795 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
3796
3797         * simd-intrinsics.c: Implement setter for Vector8us.
3798
3799 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
3800
3801         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
3802         for dead variables.
3803
3804 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3805
3806         * mini-ppc.c: remove references to the red zone in the prolog
3807         (for systems that don't support it).
3808
3809 2008-11-19  Mark Probst  <mark.probst@gmail.com>
3810
3811         * cpu-ppc64.md: Fixed a few instruction lengths.
3812
3813         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
3814         now.
3815
3816 2008-11-19  Mark Probst  <mark.probst@gmail.com>
3817
3818         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
3819         basic.exe now.
3820
3821 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
3822
3823         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
3824
3825 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
3826
3827         * mini-ops.h: Added OP_INSERT_I2.
3828
3829         * cpu-x86.md: Same.
3830
3831         * mini-x86.c (mono_arch_output_basic_block): Same.
3832         
3833         * simd-intrinsics.c: Implement setter for Vector8s.
3834
3835         * simd-methods.h: Add the names of get setters of Vector8s.
3836
3837 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
3838
3839         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
3840         
3841         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
3842         parameters.
3843
3844         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
3845
3846 2008-11-18  Mark Probst  <mark.probst@gmail.com>
3847
3848         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
3849         for PPC64.  An empty program runs now.
3850
3851 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
3852
3853         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
3854
3855         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
3856         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
3857         info for JITted code is emitted into a shared library, loadable into gdb.
3858
3859 2008-11-18  Mark Probst  <mark.probst@gmail.com>
3860
3861         * Makefile.am: Changes to build PPC64.
3862
3863         * mini-arch.h: Include mini-ppc64.h on PPC64.
3864
3865 2008-11-18  Mark Probst  <mark.probst@gmail.com>
3866
3867         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
3868         in PPC code up to r119147.
3869
3870 2008-11-18  Mark Probst  <mark.probst@gmail.com>
3871
3872         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
3873         cpu-ppc64.md: Changes for PPC64.
3874
3875         Based on code submitted by andreas.faerber@web.de at
3876         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
3877         X11/MIT license.
3878
3879 2008-11-18  Mark Probst  <mark.probst@gmail.com>
3880
3881         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
3882         cpu-ppc64.md: Copied from the corresponding PPC files from
3883         r118846.
3884
3885 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
3886
3887         * mini-ops.h: Added OP_ROUND.
3888
3889         * cpu-x86.md: Added round.
3890
3891         * mini-x86.c: Added support for intrinsicing Math.Round (double).
3892
3893         * basic-math.cs: Added test_0_round to test rounding.
3894
3895         Contributed under MIT/X11 license.
3896
3897 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
3898
3899         * aot-compiler.c : Fix the Winx64 build.
3900
3901         Contributed under MIT/X11 license.
3902
3903 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
3904
3905         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
3906         in OP_EXTRACT_R8 to avoid possible stack corruption.
3907
3908 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
3909
3910         * mini-ops.h: Added OP_EXTRACT_R8/I8.
3911
3912         * cpu-x86.md: Added extract_r8.
3913
3914         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
3915         
3916         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
3917         a couple of OP_EXTRACT_I4.
3918
3919         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
3920
3921         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
3922
3923 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
3924
3925         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
3926         and not 4.1. 
3927
3928 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
3929
3930         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
3931         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
3932
3933         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
3934         are not needed any more.
3935
3936         * mini.h: Remove the unused INS_LIST macros.
3937
3938         * mini.c (mini_method_compile): Remove a disable globalra case which is no
3939         longer needed.
3940
3941         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
3942         ir-emit.h.
3943
3944         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
3945         mono_alloc_ireg () instead.
3946
3947         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
3948         macros.
3949
3950         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
3951         on amd64.
3952
3953         * aot-runtime.c (load_aot_module): Disable AOT when running under
3954         CAS.
3955
3956         * mini-amd64.h: Change the monitor fastpath defines to check for
3957         !PLATFORM_WIN32 so they work on *bsd too.
3958
3959         * mini.h mini.c mini-hhpa.c: Remove more unused code.
3960
3961         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
3962
3963         * mini.h (MonoCompile): Remove new_ir flag.
3964
3965         * regalloc.h regalloc.c: Remove unused code.
3966
3967         * cpu-*.md: Remove more unused opcodes.
3968
3969         * simple-cee-ops.h simple-mini-ops.h: Removed.
3970
3971         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
3972         
3973 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
3974
3975         * aliasing.h: Removed.
3976
3977         * *.c: Remove references to aliasing.h and inssel.h.
3978
3979         * mini.c: Remove additional unused functions.
3980
3981         * mini-ops.h cpu-*.md: Remove unused opcodes.
3982
3983 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
3984
3985         Remove the old JIT code.
3986
3987         * inssel*.brg: Removed.
3988
3989         * ssa.c abcremoval.c aliasing.c: Removed.
3990
3991         * ssa2.c: Renamed to ssa.c.
3992
3993         * abcremoval2.c: Renamed to abcremoval.c.
3994
3995         * *.c: Removed all !cfg->new_ir code.
3996
3997         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
3998         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
3999
4000         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
4001         
4002 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
4003
4004         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
4005         to simplify the code and cut back on the number of global symbols in the AOT
4006         file.
4007         
4008         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
4009
4010 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
4011
4012         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
4013         with the got/got_info tables.
4014
4015         * mini.h: Bump AOT file format version.
4016         
4017         * unwind.h: New file, contains definitions for stack unwinding.
4018
4019         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
4020         to cfg->unwind_ops.
4021         
4022         * aot-compiler.c: Generalize the emitting of unwind information to use the
4023         information in cfg->unwind_ops.
4024
4025         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
4026
4027         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
4028         AOT method frames. Enable writing symbols for methods by default.
4029
4030 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
4031
4032         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
4033         and make it work with vectors of element sizes 1, 2 and 4.
4034
4035         * simd-intrinsics.c: Enable getter for all vectors with element size
4036         1, 2 or 4.
4037
4038         * simd-methods.h: Add the names of other getters.
4039
4040         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
4041
4042         * cpu-x86.md: Same.
4043
4044         * mini-x86.c: Same.
4045
4046 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
4047
4048         * mini-ppc.h: portability fix.
4049
4050 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
4051
4052         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
4053         buggy and will overwrite it.
4054
4055 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
4056
4057         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
4058         Use it to emit local symbols for all methods so AOTed methods show up with
4059         their full name in gdb/valgrind output.
4060
4061 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
4062
4063         * mini-ppc.c: portability fixes.
4064
4065 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
4066
4067         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
4068         entries out of the if (!generic_shared...) code so it is always done.
4069         (mono_class_init_trampoline): Do the patching when running under valgrind
4070         too, newer versions of valgrind have no problems with it.
4071
4072 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
4073
4074         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
4075         further sections.
4076
4077 2008-11-13  Mark Probst  <mark.probst@gmail.com>
4078
4079         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
4080         filters.
4081
4082 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
4083
4084         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
4085
4086 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
4087
4088         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
4089
4090         * cpu-x86.md: Same.
4091
4092         * mini-x86.c: Same.
4093
4094         * simd-intrinsics.c: Same.
4095
4096 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
4097
4098         * simd-intrinsics.c: Enable constructor intrinsics for all types.
4099
4100 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
4101
4102         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
4103         to work with more Vector types.
4104
4105 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
4106
4107         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
4108         store the elemens directly instead of using and intermediate.
4109
4110 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
4111
4112         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
4113
4114         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
4115         to preserve %eax for aot plt trampolines.
4116
4117         * aot-compiler.c (compile_method): Don't skip synchronized methods.
4118         (encode_method_ref): Flag synchronized methods so they won't go through
4119         the AOT trampoline.
4120
4121         * aot-compiler.c: Additional work to support AOTing synchronized methods/
4122         wrappers.
4123
4124         * cpu-ia64.md (jmp): Increase max length.
4125
4126 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
4127
4128         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
4129         open generic classes.
4130
4131         * aot-compiler.c: Enable the ELF writer on ELF platforms.
4132
4133         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
4134         box+brtrue optimization since it causes test failures on x86.
4135
4136 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
4137
4138         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
4139
4140         * cpu-x86.md: Same.
4141
4142         * mini-x86.c: Same.
4143
4144         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
4145         for simd ctor values. 
4146
4147         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
4148         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
4149
4150 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
4151
4152         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
4153         LogicalRightShift.
4154
4155         * simd-instrincs.c: Same.
4156
4157         * basic-simd.cs: Same.
4158
4159 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
4160
4161         * ratests.cs: Add more tests.
4162
4163         * regalloc2.c (add_spill_code): Handle more corner cases.
4164
4165 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
4166
4167         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
4168         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
4169         both the source an destination of an instruction.
4170
4171 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
4172
4173         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
4174         wapihandles.c: more portability changes.
4175
4176 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
4177
4178         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
4179         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
4180         safe to execute in a signal handler and the kernel provides better
4181         the info in /proc/self/smaps. Avoid the assert on sigaction during
4182         cleanup.
4183
4184 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
4185
4186         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
4187         do the bblock linking hack if it is actually needed.
4188
4189         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
4190         up linking.
4191
4192         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
4193         crash problem is fixed.
4194
4195         * branch-opts.c (mono_remove_critical_edges): Link up newly added
4196         bblocks.
4197
4198         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
4199         for catch clauses.
4200         (mini_method_compile): Set the starting value of next_vreg to 
4201         MAX_IREGS + MAX_FREGS when using globalra.
4202
4203         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
4204         filter clauses with BB_EXCEPTION_HANDLER.
4205
4206         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
4207
4208 2008-11-10  Mark Probst  <mark.probst@gmail.com>
4209
4210         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
4211         space for stdcall.  Fixes regressions on Win32.
4212
4213 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
4214
4215         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
4216         bblocks.
4217         (linear_scan): Remove an assert which doesn't seem to be needed.
4218
4219         * local-propagation.c (mono_local_deadce): Avoid a call to
4220         MONO_DELETE_INS which would screw up the instruction linking.
4221
4222         * mini.c (mono_decompose_op_imm): Make this work with globalra.
4223
4224         * regalloc2.c: Upgrade to work the current JIT code.
4225
4226 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
4227
4228         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
4229         case.
4230
4231         * aot-runtime.c: Remove some dead code.
4232
4233         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
4234         consistency.
4235         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
4236
4237         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
4238         trampolines using sscanf since atoi doesn't work on large unsigned values.
4239
4240         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
4241         Initialize code_size.
4242
4243 2008-11-08  Mark Probst  <mark.probst@gmail.com>
4244
4245         * method-to-ir.c (mini_emit_inst_for_method): Make
4246         Interlocked.CompareExchange work for Int arguments on 32 bit
4247         archs, as well.
4248
4249 2008-11-07  Mark Probst  <mark.probst@gmail.com>
4250
4251         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
4252
4253 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
4254
4255         * main.c Fix MSVC build.
4256
4257         Contributed under MIT/X11 license.
4258
4259 2008-11-06  Mark Probst  <mark.probst@gmail.com>
4260
4261         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
4262         alignment larger than 8 bytes are aligned correctly, too.
4263
4264         * mini.c: Honor the min_align field of MonoClass when laying out
4265         the stack.
4266
4267 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
4268
4269         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
4270
4271         * aot-compiler.c (emit_plt): Fix a warning.
4272         
4273         * aot-compiler.c: Implement ARM support in the binary writer.
4274
4275 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
4276
4277         * basic-simd.cs: Add test for getter with byref arg.
4278         Fix the naming of a few tests.
4279         Add missing checks to a test.
4280
4281 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
4282
4283         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
4284
4285         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
4286         most of the full-aot support for monitor enter/exit trampolines.
4287
4288         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
4289         enter/exit trampoline creation functions.
4290
4291         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
4292         make dist.
4293
4294 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
4295
4296         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
4297         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
4298         implement the needed functionality without adding crap to the runtime.
4299
4300 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
4301
4302         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
4303         non-x86 builds.
4304
4305         * mini.c (mono_build_date): New global version holding the build date in
4306         string format.
4307         
4308         * Makefile.am (buildver.c): Generate a file containing the build date.
4309
4310         * main.c: Set the build date from the generated file.
4311
4312         * mini.c (mono_get_runtime_build_info): New helper function returning build
4313         information in a string format.
4314         
4315         * driver.c (mono_main): Print the build date in --version.
4316
4317         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
4318         file when the bind-to-runtime-version option is used.
4319
4320 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
4321
4322         * simd-intrinsics.c: Fix bug when using getters and byref args. 
4323
4324 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
4325
4326         * simd-methods.h: Rename prefetch methods.
4327
4328         * simd-intrinsics.c: Same.      
4329
4330 2008-11-05  Mark Probst  <mark.probst@gmail.com>
4331
4332         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
4333         sizes.
4334
4335 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
4336
4337         * aot-compiler.c: Use the bundled elf header files instead of depending on
4338         the system one.
4339         
4340         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
4341         mempool.
4342
4343         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
4344         on every call.
4345
4346 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
4347
4348         * cpu-x86.md: Add store nta ops.
4349
4350         * mini-ops.h: Same.
4351
4352         * mini-x86.c: Same.
4353
4354         * mini.h: Add an enum for simd prefetch modes.
4355
4356         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
4357         of store. Use the changed code to support store nta.
4358
4359         * simd-intrinsics.c: Add prefetch ops for all vector types.
4360
4361 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
4362
4363         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
4364         threads.
4365         
4366         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
4367         names.
4368
4369         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
4370         trampolines.
4371
4372 2008-11-04  Mark Probst  <mark.probst@gmail.com>
4373
4374         * mini-x86.c: Fixed commit.
4375
4376 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
4377
4378         * aot-compiler.c (emit_plt): Align the plt section only on x86.
4379
4380 2008-11-04  Mark Probst  <mark.probst@gmail.com>
4381
4382         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
4383         and MONITOR_EXIT, for the ASM fastpaths.
4384
4385         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
4386         available.
4387
4388         * mini.c, patch-info.h: Signature and patch infos for
4389         Monitor.Enter/Exit trampolines.
4390
4391         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
4392
4393         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
4394         Monitor.Enter/Exit ASM fastpath for Linux.
4395
4396 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
4397
4398         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
4399
4400         * objects.cs: Add a new test.
4401         
4402         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
4403
4404         * aot-runtime.c (load_method): Run class initialization in the PLT case even
4405         if MONO_LOG_LEVEL is set.
4406
4407         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
4408
4409         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
4410
4411         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
4412         
4413         * aot-compiler.c: Change the relocation code to use virtual addresses instead
4414         of file offsets. Align the sections belonging to the data segment to 
4415         PAGESIZE.
4416
4417 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
4418
4419         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
4420         elf.h. Port it to amd64.
4421
4422 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
4423
4424         * driver.c: Enable SIMD by default.
4425
4426 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
4427
4428         * cpu-x86.md: Add prefetch op.
4429
4430         * mini-ops.h: Same.
4431
4432         * mini-x86.c: Same.
4433
4434         * mini.h: Add an enum for simd prefetch modes.
4435
4436         * simd-methods.h: Add prefetch function names.
4437
4438         * simd-intrinsics.c: Add prefetch ops for all vector types.
4439
4440 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
4441
4442         * aot-compiler.c (emit_bytes): Speed this up a little.
4443
4444 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
4445
4446         * aot-compiler.c: Add JIT time etc. statistics.
4447         
4448         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
4449
4450         * mini.h (MonoCompile): Add 'got_offset' field.
4451
4452         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
4453         method_got_offsets array.
4454
4455         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
4456         wrappers.
4457
4458         * aot-compiler.c (compile_method): Add generic method instances referenced
4459         by the method to the list of methods to be compiled, this is required so if
4460         A<T> references B<T>, and another assembly references A<int>, then it will
4461         also get a copy of B<int>.
4462
4463         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
4464         when checking for monitor enter/exit.
4465
4466 2008-10-30  Mark Probst  <mark.probst@gmail.com>
4467
4468         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
4469         for Monitor.Enter and Monitor.Exit if enabled.
4470
4471         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
4472         Solaris.
4473
4474 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
4475
4476         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
4477         of an OP_MOVE. Fixes #440046.
4478
4479         * basic-long.cs: Add a new test.
4480
4481 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
4482
4483         * mini.h: Add synchronization note for the managed counter-part.
4484
4485         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
4486         returns the simd caps of the current cpu.
4487
4488 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
4489
4490         * basic-simd.cs: Remove Console.WriteLine.
4491
4492 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
4493
4494         * basic-simd.cs: New tests for Vector2ul.
4495
4496 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
4497
4498         * simd-intrinsics.c: Add new vector type Vector2ul.
4499
4500 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
4501
4502         * basic-simd.cs: New tests for Vector2l.
4503
4504 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
4505
4506         * cpu-x86.md: Add long version of most packed int ops.
4507
4508         * mini-ops.h: Same.
4509
4510         * mini-x86.h: Same.
4511
4512         * simd-intrinsics.c: Add new vector type Vector2l.
4513
4514 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
4515
4516         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
4517
4518         * simd-methods.h: Remove SN_op_BitwiseXor.
4519
4520 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
4521
4522         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
4523         alignment.
4524
4525 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
4526
4527         * basic-simd.cs: Test for Vector2d.
4528
4529         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
4530         value.
4531
4532 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
4533
4534         * cpu-x86.md: Add double version of all packed float ops.
4535
4536         * mini-ops.h: Same.
4537
4538         * mini-x86.h: Same.
4539
4540         * simd-intrinsics.c: Add new vector type Vector2d.
4541
4542         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
4543
4544         * simd-methods.h: Add Duplicate.
4545
4546 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
4547
4548         * basic-simd.cs: Test for packing with signed saturation.
4549
4550 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
4551
4552         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
4553         found in the TYPESPEC table.
4554
4555 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
4556
4557         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
4558         too.
4559
4560         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
4561
4562         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
4563         instead of the RVA, since the RVA can be changed by tools like the cil 
4564         stripper.
4565
4566         * method-to-ir.c (mono_method_to_ir2): Ditto.
4567
4568         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
4569         (deserialize_variable): Ditto.
4570
4571 2008-10-25  Martin Baulig  <martin@ximian.com>
4572
4573         * debug-mini.c (write_variable): Use
4574         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
4575
4576 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
4577
4578         * cpu-x86.md: Add unsigned variants of packd and packw.
4579
4580         * mini-ops.h: Same.
4581
4582         * mini-x86.h: Emit the right instruction for packd and packw.
4583         Add unsigned variants of packd and packw.
4584
4585         * simd-intrinsics.c: Packd and packw were used in place of their
4586         unsigned variants. Change that.
4587         Add intrinsics for (Signed)PackWithSignedSaturation.
4588
4589         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
4590
4591 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
4592
4593         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
4594
4595 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
4596
4597         * mini-ops.h: Remove dword packed add/sub with saturation ops.
4598
4599         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
4600
4601         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
4602         sse instructions.
4603
4604         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
4605
4606 2008-10-24  Mark Probst  <mark.probst@gmail.com>
4607
4608         * method-to-ir.c, mini.c: Special casing for the synchronized
4609         wrapper for the ldtoken+GetTypeFromHandle case.
4610
4611 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
4612
4613         * mini.c (mono_replace_ins): Move this to branch-opts.c.
4614
4615         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
4616         created/split bblocks.
4617
4618 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
4619
4620         * mini-ops.h: Add packed signed mul high.
4621         
4622         * cpu-x86.md: Same.
4623
4624         * mini-x86.c (mono_arch_output_basic_block): Same.
4625
4626         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
4627
4628         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
4629
4630 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
4631
4632         * basic-simd.cs: Tests for Vector16sb.
4633
4634 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
4635
4636         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
4637
4638 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
4639
4640         * mini-ops.h: Add packed signed min, max and compare greater.
4641         
4642         * cpu-x86.md: Same.
4643
4644         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
4645         saturation.
4646
4647         * simd-methods.h: Add CompareGreaterThan.
4648
4649         * simd-methods.h: Remove CompareEquals.
4650
4651         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
4652
4653         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
4654
4655         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
4656         CompareEqual.
4657
4658 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
4659
4660         * basic-simd.cs: Fix tests due to change in the API.
4661
4662 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
4663
4664         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
4665
4666 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
4667
4668         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
4669
4670         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
4671         inst_offset as this has invalid values for LDADDR.
4672
4673 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
4674
4675         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
4676
4677         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
4678
4679 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
4680
4681         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
4682         for accessing field->data.
4683
4684 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
4685
4686         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
4687
4688 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
4689
4690         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
4691
4692         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
4693
4694 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
4695
4696         * dominators.c (mono_compute_natural_loops): Allocate GList enties
4697         from the cfg mempool.
4698
4699 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
4700
4701         * basic-simd.cs: Tests for new methods in Vector8us.
4702
4703 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
4704
4705         * mini-ops.h: Add multiply and store high.
4706         
4707         * cpu-x86.md: Same.
4708
4709         * mini-x86.c (mono_arch_output_basic_block): Same.
4710
4711         * simd-methods.h: Same.
4712
4713         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
4714         and CompareEqual.
4715
4716 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
4717
4718         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
4719         mono_class_setup_vtable ().
4720
4721         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
4722         mono_class_get_vtable_entry () for accessing klass->vtable.
4723
4724         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
4725
4726         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
4727         found.
4728
4729         * method-to-ir.c (mono_save_token_info): Don't save references made from
4730         wrappers.
4731
4732         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
4733         of generic instances.
4734
4735         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
4736
4737 2008-10-19  Mark Probst  <mark.probst@gmail.com>
4738
4739         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
4740         OP_JMP depends on the method signature.  Calculate it properly.
4741
4742 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
4743         
4744         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
4745         called directly.
4746
4747         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
4748         instances.
4749         (emit_extra_methods): Add another table mapping method indexes to 
4750         offsets in the extra_method_info table.
4751
4752         * mini.h: Bump AOT file format version.
4753         
4754         * aot-runtime.c: Merge most of the code from mono_aot_get_method
4755         and mono_aot_get_method_from_token () into one function.
4756
4757 2008-10-19  Mark Probst  <mark.probst@gmail.com>
4758
4759         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
4760         separate counter.
4761
4762 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
4763
4764         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
4765         methods.
4766
4767         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
4768         disable_aot.
4769
4770         * mini.c (mono_patch_info_equal): Compare the generic context as well.
4771
4772         * mini.h: Bump aot file format version.
4773
4774         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
4775         AOT file can contain native code for methods which are not in the METHOD
4776         table. Generate code for non-sharable generic instances of generic methods
4777         found in the METHODSPEC table.
4778         
4779         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
4780         encoding generic type handles.
4781
4782         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
4783         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
4784
4785         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
4786         macros + MONO_ADD_INS.
4787
4788         * mini.c (mono_jump_info_token_new2): New function which takes a generic
4789         context as well.
4790
4791         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
4792
4793         * mini.h: Bump aot file format version.
4794
4795         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
4796
4797 2008-10-17  Mark Probst  <mark.probst@gmail.com>
4798
4799         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
4800         platforms, with definable stack alignment value.  Set to 16 now
4801         for all platforms.
4802
4803         * mini.c, mini.h, driver.c: Command line option for disabling
4804         stack alignment.
4805
4806 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
4807
4808         * basic-simd.cs: Tests for new methods in Vector4ui.
4809
4810 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
4811
4812         * mini-ops.h: Add packed int shuffle.
4813         
4814         * cpu-x86.md: Same.
4815
4816         * mini-x86.c (mono_arch_output_basic_block): Same.
4817
4818         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
4819         extract mask, max, min, shuffle.
4820
4821         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
4822
4823 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
4824
4825         * basic-simd.cs: Tests for new methods in Vector8us.
4826
4827 2008-10-17  Mark Probst  <mark.probst@gmail.com>
4828
4829         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
4830         RuntimeTypeHandle, not a TypedReference.
4831
4832 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
4833
4834         * simd-intrinsics.c: remove relocations.
4835
4836 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
4837
4838         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
4839         optimizations from the x86 backend.
4840
4841 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
4842
4843         * simd-methods.h, simd-intrinsics.c: debloat method names and
4844         prepare for no relocations.
4845
4846 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
4847
4848         * mini-ops.h: Add packed min/equal and sum of absolute differences.
4849         
4850         * cpu-x86.md: Same.
4851
4852         * mini-x86.c (mono_arch_output_basic_block): Same.
4853
4854         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
4855         extract mask, max, min and sum of absolute differences.
4856
4857         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
4858         method name.
4859
4860 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
4861
4862         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
4863         Renamed one test for consistency.
4864
4865 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
4866
4867         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
4868         fix to the code that deal with other blocks.
4869
4870 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
4871
4872         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
4873
4874 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
4875
4876         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
4877         that deals with vreg interference. Explicitly check for OP_LDADDR to be
4878         able to process the source reg.
4879
4880 2008-10-16  Martin Baulig  <martin@ximian.com>
4881
4882         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
4883
4884         * inssel.brg: Add `OP_HARD_NOP'.
4885
4886         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
4887
4888         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
4889         `OP_HARD_NOP' instruction when running inside the debugger.
4890
4891         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
4892         `OP_HARD_NOP' instruction when running inside the debugger.
4893
4894 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
4895
4896         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
4897         now works. The issue with the regalloc tripping up no longer
4898         happens.
4899
4900         * simd-intrinsics.c (load_simd_vreg): Same.
4901
4902 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
4903         
4904         * basic-simd.cs: Tests for new Vector8ui methods.
4905
4906 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
4907
4908         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
4909         only for type. This fixes crashes where MonoInst::klass is checked
4910         for ops of type != VTYPE or OBJ.
4911
4912         * simd-intrinsics.c (load_simd_vreg): Same.
4913
4914 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
4915
4916         * mini-ops.h: Add ops for packed shuffle/max/avg and
4917         extract mask.
4918         
4919         * cpu-x86.md: Same.
4920
4921         * mini-x86.c (mono_arch_output_basic_block): Same.
4922
4923         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
4924         extract mask.
4925
4926         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
4927         to emit extract mask op.
4928
4929         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
4930         to emit word shuffles.
4931
4932 2008-10-15  Mark Probst  <mark.probst@gmail.com>
4933
4934         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
4935         the largest alignment needed by a variable, but at least
4936         sizeof(gpointer).
4937
4938 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
4939
4940         * basic-simd.cs: Tests for the fixes in the last commit.
4941
4942 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
4943
4944         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
4945         no longer handles STACK_PTR input.
4946
4947         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
4948
4949         * simd-intrinsics.c (load_simd_vreg): New function that works like 
4950         get_simd_vreg   but handles STACK_PTR input.
4951
4952         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
4953         as the input can be an arbitrary pointer.
4954
4955         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
4956         LDADDR local optimization directly otherwise use a store op.
4957
4958 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
4959
4960         * basic-simd.cs: Tests for dup low and dup high.
4961
4962 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
4963
4964         * mini-ops.h: Add dup low and dup high ops.
4965         
4966         * cpu-x86.md: Same.
4967
4968         * mini-x86.c (mono_arch_output_basic_block): Same.
4969
4970         * simd-intrinsics.c (vector4f_intrinsics): Same.
4971
4972 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
4973
4974         * basic-simd.cs: Tests for recently added functionality.
4975
4976 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
4977
4978         * mini-ops.h: Add remaining sse1 fp ops.
4979         
4980         * cpu-x86.md: Add remaining sse1 fp ops.
4981
4982         * mini-x86.c (mono_arch_output_basic_block): Same.
4983
4984         * mini.h: Add enum for simd FP compare conditions.
4985
4986         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
4987
4988         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
4989         so the backed can generate the appropriate op.
4990
4991 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
4992         This patch squeese one more byte from the SimdIntrinsc struct.
4993
4994         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
4995         a a shift amount intead of simply or'ing it.
4996
4997         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
4998
4999         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
5000         byte so we can have an aditional flags field without increasing struct size.
5001
5002         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
5003         against the simd_supported_versions bitmask.
5004
5005         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
5006
5007 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
5008
5009         * mini.c: remove rawbuffer code (the only use here is unsafe because
5010         it takes locks during signal handling and the kernel now provides much
5011         better info in proc/pid/smaps these days).
5012
5013 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
5014
5015         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
5016         OP_X86_PUSH_OBJ. Fixes #434620.
5017
5018         * objects.cs: Add a test.
5019         
5020 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
5021
5022         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
5023         that the packuswb/packusdw don't work with unsigned numbers for what
5024         would be negative numbers in signed format.
5025
5026         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
5027         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
5028
5029         * mini-ops.h: Add doubleword forms of many ops and packing ones.
5030
5031         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
5032
5033         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
5034
5035         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
5036
5037         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
5038         add more ops.
5039
5040         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
5041         version as the enum in mini.h.
5042
5043         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
5044         for sse3 ops, check the simd_version field if present. This way the code
5045         works with all versions of sse.
5046
5047 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5048
5049         * simd-intrinsics.c: Fixed intrinsic name typo.
5050
5051         * mini.h: Added missing simd exported function.
5052
5053         * basic-simd.cs: Added tests for Vector4ui.
5054         Fixed broken test for Vector16b.
5055
5056 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
5057
5058         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
5059         the max length to 64.
5060
5061 2008-10-10  Mark Probst  <mark.probst@gmail.com>
5062
5063         * method-to-ir.c: Only do the fast virtual generic method call for
5064         non-wrapper methods.
5065
5066         * mini.h, mini-trampolines.c: The new generic virtual remoting
5067         trampoline handles virtual method calls via the vtable (as done by
5068         the fast virtual generic method calls) to remoting proxies.
5069
5070         * mini.c (mono_jit_create_remoting_trampoline): For generic
5071         methods reate a generic virtual remoting trampoline.
5072
5073         * mini-amd64.h: Enable fast virtual generic method calls again.
5074
5075 2008-10-10  Mark Probst  <mark.probst@gmail.com>
5076
5077         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
5078         restore registers when doing tail calls.
5079
5080 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5081
5082         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
5083         Vector4ui.
5084
5085 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5086
5087         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
5088
5089 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5090
5091         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
5092
5093 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5094
5095         * basic-simd.cs: Retrofit for API changes.
5096
5097 2008-10-10  Mark Probst  <mark.probst@gmail.com>
5098
5099         * mini-ppc.c: Handle integer stack arguments for tail calls.
5100
5101 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5102
5103         * optflags-def.h: Removed sse3 optimization.
5104
5105         * driver.c: Same.
5106
5107         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
5108         sse3.
5109
5110         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
5111
5112         * mini.h: Added enumeration with simd versions.
5113
5114         * simd-intrinsics.c (emit_intrinsics): Use the new static var
5115         for detecting SSE3.
5116
5117         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
5118
5119         * mini.c (mini_init): Call mono_simd_intrinsics_init.
5120
5121 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5122
5123         * basic-simd.cs: Added tests for Vector8u and Vector16u.
5124
5125         * basic-simd.cs: Fixed test naming.
5126
5127 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5128
5129         * mini-ops.h: Added ops for packed and saturated math, shifts
5130         and packing/unpacking.
5131
5132         * cpu-x86.md: Added descriptors for the above ops.
5133
5134         * mini-x86.c: Added code to emmit the above ops.
5135
5136         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
5137
5138 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
5139
5140         * aot-compiler.c (compile_method): Enable AOT for generic code.
5141
5142         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
5143
5144 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
5145
5146         * mini.c: add a workaround for a common screwup that ends up blamed
5147         to mono (other processes blocking signal delivery).
5148
5149 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
5150
5151         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
5152         in the LDFLD/STFLD opcodes. Fixes #432673.
5153
5154         * iltests.il.in: Add a new test.
5155
5156 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
5157
5158         * mini-arm.c: attach the thread in unmanaged->managed transitions
5159         using delegates (bug #433148).
5160
5161 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
5162
5163        * basic-simd.cs: Use new ShuffleSel constants.
5164
5165 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
5166
5167         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
5168
5169         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
5170         only disable simd intrinsics if no sse2 is detected.
5171
5172         * optflags-def.h: Added sse3.
5173
5174         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
5175         is disabled.
5176
5177 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
5178
5179         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
5180         when adding delegate-invoke wrappers.
5181
5182 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
5183
5184         * Makefile.am: Reenable the simd tests.
5185
5186 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
5187
5188         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
5189           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
5190           other vreg is allocated to that hreg.
5191
5192         Contributed under MIT/X11 license.
5193
5194 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
5195
5196         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
5197         yet checked in.
5198
5199 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
5200
5201         * basic-simd.cs: New test suite for SIMD intrinsics.
5202
5203         * Makefile.am: Added new tests.
5204
5205 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
5206
5207         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
5208
5209         * mini-ops.h: Same.
5210
5211         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
5212
5213         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
5214         using SSE2 aware opcodes.
5215
5216         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
5217         is enabled, this code path is only reachable if conversion ops are emmited after
5218         mono_method_to_ir.
5219
5220         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
5221
5222         This optimization saves 6 bytes per conversion against the old version.
5223
5224 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
5225
5226         * aot-compiler.c (compile_method): Don't skip methods referencing 
5227         generic methods without a corresponding entry in token_info_hash, since
5228         encode_method_ref () can handle all generic methods now.
5229
5230         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
5231         generic context is set.
5232         
5233         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
5234         generic sharing of LDTOKEN.
5235
5236 2008-10-06  Mark Probst  <mark.probst@gmail.com>
5237
5238         * mini-amd64.h: Temporarily disabled fast virtual generic method
5239         calls because it breaks the System.Runtime.Remoting tests.
5240
5241 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
5242
5243         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
5244
5245         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
5246         so inlining actually works.
5247         (check_inline_caller_method_name_limit): Ditto.
5248
5249 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
5250
5251         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
5252         64 bit safety (from Olaf Hering and Andreas Farber).
5253
5254 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
5255         
5256         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
5257         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
5258         unused virtual call support code.
5259
5260         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
5261         
5262         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
5263         which can't use aot trampolines.
5264         (decode_patch): Don't create aot trampolines for methods which can't use
5265         them.
5266
5267         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
5268         use aot trampolines.
5269
5270         * mini.h: Bump AOT image format version.
5271         
5272 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
5273
5274         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
5275         to save_token_info () since cmethod is inflated for constrained calls.
5276
5277         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
5278
5279 2008-10-04  Andreas Farber  <andreas.faerber@web.de>
5280
5281         * Makefile.am: Add build rules for ppc64.
5282         This avoids the build failing at pedump with unresolved symbols
5283         due to lack of arch_sources. Instead it will now fail earlier
5284         due to lack of cpu-ppc64.md.
5285
5286         Contributed under MIT/X11 license.
5287
5288 2008-10-04  Mark Probst  <mark.probst@gmail.com>
5289
5290         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
5291         tail calls.
5292
5293         * iltests.il.in: Add test case for tail call with many arguments.
5294
5295 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
5296
5297         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
5298         to the fast virtual generic method code until the aot case is fixed.
5299
5300 2008-10-03  Mark Probst  <mark.probst@gmail.com>
5301
5302         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
5303
5304 2008-10-03  Mark Probst  <mark.probst@gmail.com>
5305
5306         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
5307         thunks.
5308
5309 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
5310         
5311         * simd-intrinsics.c: Forgot to add this one.
5312
5313         * mini-codegen.c: Fix macro in case SIMD is not supported.
5314
5315 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
5316         
5317         This patch land initial JIT support for simd intrinsics.
5318
5319         * mini-x86.h: Added new define to make --enable_minimal work on x86.
5320
5321         * Makefile.am: Added simd-intrinsics.c
5322
5323         * simd-intrinsics.c: New file with simd instrinsic related
5324         code.
5325
5326         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
5327
5328         * cpu-x86.md: Add simd related instructions.
5329
5330         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
5331
5332         * driver.c: Added two new --regression variants.
5333
5334         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
5335
5336         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
5337
5338         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
5339         extract some complicated logic to helper functions.
5340
5341         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
5342
5343         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
5344
5345         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
5346         the specialized simplification pass.
5347
5348         * method-to-ir.c (mono_spill_global_vars): Use new macro.
5349
5350         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
5351
5352         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
5353         table.
5354
5355         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
5356         if MONO_ARCH_NEED_SIMD_BANK is defined.
5357
5358         * mini-ops.h: Added the new simd ops.
5359
5360         * mini-x86.c: Added mono_arch_xregname.
5361
5362         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
5363
5364         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
5365
5366         * mini-x86.h: Define simd related MONO_ARCH macros.
5367
5368         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
5369
5370         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
5371
5372         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
5373         MONO_CLASS_IS_SIMD to deal with simd related IR.
5374
5375         * mini.h (MonoInst): Added spill_var to the backend union.
5376
5377         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
5378
5379         * mini.h: Added forward declarations of the new simd fuctions.
5380
5381         * optflags-def.h: Added new optimization names SIMD.
5382
5383         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
5384
5385         * regalloc.h: Added support for working with 3 register banks.
5386
5387         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
5388
5389         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
5390
5391 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
5392
5393         * mini-exceptions.c: remove 64 bit related ifdef clutter.
5394
5395 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
5396
5397         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
5398         instead of one on 64 bit systems.
5399
5400         * method-to-ir.c: Remove unused includes.
5401
5402 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
5403
5404         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
5405         cfg->used_int_regs, since the two are different on arm.
5406
5407 2008-10-02  Mark Probst  <mark.probst@gmail.com>
5408
5409         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
5410         mono_method_get_vtable_index() to get the vtable index.
5411
5412 2008-10-02  Mark Probst  <mark.probst@gmail.com>
5413
5414         * method-to-ir.c (mono_method_to_ir2): Don't create native
5415         wrappers for array methods, because they're never called (and if
5416         they were called they wouldn't work).
5417
5418 2008-10-02  Mark Probst  <mark.probst@gmail.com>
5419
5420         * method-to-ir.c (mono_method_to_ir2): Array methods are
5421         special-cased and must not be invoked indirectly via the (M)RGCTX
5422         when generic sharing is turned on.  Fixes #431413.
5423
5424 2008-10-01  Mark Probst  <mark.probst@gmail.com>
5425
5426         * method-to-ir.c: When generic sharing is active, call
5427         non-interface virtual generic methods via the standard trampoline.
5428
5429         * mini-trampolines.c: Handle virtual generic shared methods.
5430
5431         * mini.h, mini-x86.c, mini-x86.h: New argument for
5432         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
5433         method thunks and which is the trampoline to call if the lookup
5434         fails.  Enable the virtual generic method thunk for x86.
5435
5436         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
5437         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
5438         argument but assert that it's NULL, because these archs don't yet
5439         implement the virtual generic method thunk.  Changes in the IMT
5440         thunk data structures.
5441
5442 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
5443
5444         * aot-compiler.c (emit_globals): Avoid invalid characters in
5445         the static linking symbol.
5446
5447         * objects.cs: Add a test for the range check optimization. Fix warnings.
5448
5449         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
5450         optimization from the current JIT.
5451
5452         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
5453         later in decompose_array_access_opts () to allow more optimizations.
5454
5455         * method-to-ir.c (mono_handle_soft_float): Rename this to 
5456         mono_decompose_soft_float () for consistency.
5457
5458         * mini-ops.h: Fix arguments of OP_STRLEN.
5459
5460         * method-to-ir.c (save_cast_details): Extract the cast details saving code
5461         into a separate function.
5462         (reset_cast_details): Ditto.
5463         (handle_unbox): Save cast details. Fixes #431254.
5464
5465         * method-to-ir.c: Remove some obsolete FIXMEs.
5466
5467 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5468
5469         * ir-emit.h (alloc_dreg): Write a warning before crashing.
5470
5471 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5472
5473         * mini-codegen.c: More work on macros to make them
5474         ready for multiple regbanks.
5475
5476 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5477
5478         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
5479
5480         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
5481
5482 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5483
5484         * mini-codegen.c (mono_spillvar_offset): Proper support for
5485         multiple regbanks.
5486
5487 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
5488
5489         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
5490         the stack overflow changes.
5491
5492 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5493
5494         * mini-codegen.c: Make all bank macros depend on reg_bank.
5495
5496         * mini-codegen.c (mono_local_regalloc): Make free mask
5497         initialization regbank aware.
5498
5499 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5500
5501         * mini-codegen.c (mono_local_regalloc): Extract callee
5502         mask selection to a function and make it regbank aware.
5503
5504 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
5505
5506         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
5507         code to deal with many regbanks.
5508
5509 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
5510
5511         * mini-codegen.c: More fp->regbank changes.
5512
5513 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
5514
5515         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
5516         of a hardcoded constant.
5517
5518 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
5519
5520         * method-to-ir.c (type_from_stack_type): Fix typo.
5521
5522 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
5523
5524         * mini-ia64.c (emit_move_return_value): Convert float return values to
5525         double.
5526
5527         * objects.cs: Add a new test.
5528         
5529         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
5530         VARARG methods to fix an assert later.
5531
5532         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
5533         end so it at least compiles.
5534
5535 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
5536
5537         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
5538
5539 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
5540
5541         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
5542         optimization to a new function (emit_optimized_ldloca_ir) and enable
5543         it for both ldloca and ldloca_s.
5544
5545 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
5546
5547         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
5548         gshared CASTCLASS code.
5549
5550         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
5551         amd64, where the libc stack unwinder encounters stack frames referring to
5552         native code in unmapped memory.
5553
5554         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
5555         sharing.
5556
5557         * generics.cs: Add new test.
5558
5559 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
5560
5561         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
5562         add a check that one of the ARM_FPU_ constants is defined.
5563
5564         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
5565         
5566         * mini-exceptions.c: Fix build on non-altstack platforms.
5567
5568         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
5569         sharing of vtypes.
5570
5571         * ir-emit.h: Add a comment to NEW_PCONST.
5572
5573         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
5574
5575         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
5576
5577         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
5578         after the changes to MonoJitDomainInfo.
5579
5580 2008-09-27  Mark Probst  <mark.probst@gmail.com>
5581
5582         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
5583
5584 2008-09-27  Mark Probst  <mark.probst@gmail.com>
5585
5586         * mini-ppc.c: Compiler warning fixes.
5587
5588 2008-09-27  Mark Probst  <mark.probst@gmail.com>
5589
5590         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
5591         for pinvokes.
5592
5593 2008-09-27  Mark Probst  <mark.probst@gmail.com>
5594
5595         * exceptions-ppc.c, mini-ppc.h: Compile
5596         mono_arch_handle_altstack_exception() on Darwin, too.
5597
5598 2008-09-27  Mark Probst  <mark.probst@gmail.com>
5599
5600         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
5601         work on archs which don't have generic sharing implemented, only
5602         without the vtable_arg.
5603
5604 2008-09-26  Mark Probst  <mark.probst@gmail.com>
5605
5606         * mini.c: Added comment explaining why delegate ctor icall
5607         wrappers are compiled.
5608
5609 2008-09-26  Mark Probst  <mark.probst@gmail.com>
5610
5611         * mini.c: Don't produce trampolines to delegate ctor icall
5612         wrappers but compile them upfront.
5613
5614 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
5615
5616         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
5617         runtime-set function when going back to managed code. Currently this
5618         is used to set back the protection on the soft ovf pages and/or to
5619         throw the stack overflow exception that happened in unmanaged code.
5620
5621 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
5622
5623         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
5624         runtime-set function when going back to managed code. Currently this
5625         is used to set back the protection on the soft ovf pages and/or to
5626         throw the stack overflow exception that happened in unmanaged code.
5627
5628 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
5629
5630         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
5631         the support code for restoring stack protection after stack overflows
5632         that happen in unmanaged code. Don't set the exec permission on the
5633         soft overflow area.
5634
5635 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
5636
5637         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
5638         delegate->method_ptr is set. Fixes #428054.
5639
5640 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
5641
5642         * tests.cs: Rename to ratests.cs.
5643
5644         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
5645         emit_get_rgctx_... functions.
5646
5647 2008-09-25  Mark Probst  <mark.probst@gmail.com>
5648
5649         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
5650
5651 2008-09-25  Mark Probst  <mark.probst@gmail.com>
5652
5653         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
5654         before asserting that method is sharable.
5655
5656 2008-09-25  Mark Probst  <mark.probst@gmail.com>
5657
5658         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
5659         whether method needs a static RGCTX wrapper used instead of
5660         complex conditions.
5661
5662         * generic-sharing.c, mini.h: A few functions moved to
5663         metadata/generic-sharing.c.
5664
5665 2008-09-25  Mark Probst  <mark.probst@gmail.com>
5666
5667         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
5668         Generic code sharing for value types, which essentially means
5669         treating value type methods like static methods.  The RGCTX is
5670         passed in the same way.
5671
5672 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
5673
5674         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
5675         opcode when creating multi-dimensional arrays of open types.
5676
5677         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
5678         open generic types.
5679
5680         * generics.cs: Add a test.
5681
5682         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
5683
5684 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
5685
5686         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
5687
5688         * mini.c (mini_method_compile): Set it when running under the debugger. 
5689
5690         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
5691         vreg optimization if the flag is set.
5692
5693         * driver.c (mono_main): Add --attach= option to pass options to
5694         the attach agent.
5695
5696         * mini.c (sigquit_signal_handler): Start the attach agent.
5697
5698         * ssapre.c: Disable this to save space since it is not yet ported to
5699         linear IR.
5700
5701         * regalloc2.c: Disable this to save space.
5702
5703         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
5704
5705 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
5706
5707         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
5708         the -v option useful again.
5709
5710 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
5711
5712         * mini-amd64.c (mono_arch_output_basic_block): Add support for
5713         --break-at-bb.
5714
5715         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
5716         arrays of arrays. Fixes #428406.
5717
5718         * method-to-ir.c (mini_emit_castclass): Ditto.
5719
5720         * objects.cs: Add new test.
5721         
5722 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
5723
5724         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
5725         was wrong at it choked against target_type_is_incompatible for byref types.
5726
5727 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
5728
5729         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
5730         places.
5731
5732 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
5733
5734         * mini-exceptions.c: update a few more exceptions-related counters.
5735
5736 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
5737
5738         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
5739         new functions to allocate from persistent mempools.
5740
5741 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
5742
5743         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
5744         multiple register banks in the future.
5745
5746         * mini-codegen.c (mono_local_regalloc): Fix a warning.
5747
5748 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
5749
5750         * mini.c (type_to_eval_stack_type): Remove duplicated function.
5751
5752         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
5753
5754         * mini.h: Export type_to_eval_stack_type.
5755
5756         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
5757         is only ins->klass of byref types.
5758
5759 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
5760
5761         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
5762         (mini_emit_memcpy2): Ditto.
5763
5764         * mini-amd64.c: Fix a warning.
5765
5766 2008-09-21  Mark Probst  <mark.probst@gmail.com>
5767
5768         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
5769         linking.
5770
5771 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
5772
5773         * method-to-ir.c: Extract stloc micro-optimization to a
5774         function and apply it to all cases.
5775
5776 2008-09-19  Mark Probst  <mark.probst@gmail.com>
5777
5778         * method-to-ir.c: Don't fail generic code sharing in cases we
5779         already support.
5780
5781 2008-09-18  Mark Probst  <mark.probst@gmail.com>
5782
5783         * mini-ppc.c: Handle structs in tailcalls on Darwin.
5784
5785 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
5786
5787         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
5788         implementation.
5789
5790 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
5791
5792         * trace.c: make tracing more useful and correct, with per-thread
5793         id and indent info.
5794
5795 2008-09-15  Mark Probst  <mark.probst@gmail.com>
5796
5797         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
5798         doing a method call and the argument is an R4.
5799
5800 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
5801
5802         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
5803         generic methods.
5804
5805 2008-09-13  Mark Probst  <mark.probst@gmail.com>
5806
5807         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
5808
5809 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
5810
5811         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
5812         (MONO_JUMP_TABLE_FROM_INS): Ditto.
5813
5814 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
5815
5816         * driver.c: Add a --agent argument (not supported yet) to load managed
5817         agent assemblies before loading the main assembly, similarly to how the
5818         Java VM handles agents.
5819
5820 2008-09-11  Mark Probst  <mark.probst@gmail.com>
5821
5822         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
5823         function to do stack layout of local variables.
5824
5825 2008-09-11  Mark Probst  <mark.probst@gmail.com>
5826
5827         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
5828         calculation.
5829
5830 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
5831
5832         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
5833         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
5834         JIT if DISABLE_JIT is defined.
5835
5836         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
5837         defined.
5838
5839 2008-09-10  Mark Probst  <mark.probst@gmail.com>
5840
5841         * iltests.il.in: Disable the fconv test on PPC (the result is
5842         undefined according to ECMA).
5843
5844 2008-09-10  Mark Probst  <mark.probst@gmail.com>
5845
5846         * iltests.il.in: Enable tail call tests for PPC.
5847
5848         * mini.h: Add variable for storing incoming valuetype argument
5849         addresses for tail calls.
5850
5851         * mini-ppc.c: Implement valuetype arguments and return values for
5852         tailcalls on Linux.
5853
5854 2008-09-09  Mark Probst  <mark.probst@gmail.com>
5855
5856         * mini-ppc.c: Partially implement tail calls (struct arguments and
5857         return values not supported).
5858
5859         * method-to-ir.c: Enable tail calls on PPC.
5860
5861 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
5862
5863         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
5864         runtime-invoke wrappers to work around the problem of them getting
5865         assigned to a random class.
5866
5867         * aot-runtime.c (mono_aot_get_method): Ditto.
5868         
5869 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
5870
5871         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
5872         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
5873
5874 2008-09-07  Mark Probst  <mark.probst@gmail.com>
5875
5876         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
5877         until they're implemented properly.
5878
5879         * exceptions-ppc.c: Use arch-independent exception-handling code
5880         instead of custom one.
5881
5882         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
5883         for Linear IR.
5884
5885         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
5886
5887         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
5888         applies when __powerpc__ is defined.
5889
5890 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
5891
5892         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
5893         methods to their code to avoid computing the full name of wrappers and
5894         doing a lookup in a string hash table.
5895
5896 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
5897
5898         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
5899         we identify bblocks before method_to_ir () is ran.
5900
5901         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
5902         Also avoid optimizing branches pointing to themselves.
5903
5904         * mini.c (mini_method_compile): Ditto. Fixes #422947.
5905
5906 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
5907
5908         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
5909
5910 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
5911
5912         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
5913         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
5914         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
5915         'buf'.
5916
5917         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
5918         jumped to the same entry in plt_jump_table.
5919
5920 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
5921
5922         * method-to-ir.c (initialize_array_data): Handle field with RVA from
5923         dynamic images.
5924
5925 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
5926
5927         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
5928         other assignment can be if converted. Saves 1.5% on corlib size and fixes
5929         #421807.
5930
5931 2008-08-29  Geoff Norton  <gnorton@novell.com>
5932
5933         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
5934         segment, and doesn't properly handle .space as .text.  Fixes
5935         AOT Mach/ARM
5936
5937 2008-08-29  Geoff Norton  <gnorton@novell.com>
5938
5939         * mini.c: Disable the mach exception handler when running on 
5940         ARM
5941
5942 2008-08-29  Geoff Norton  <gnorton@novell.com>
5943
5944         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
5945         globals on Darwin/ARM
5946
5947 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
5948
5949         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
5950         since too many things depend on it. Instead, call 
5951         mono_runtime_set_no_exec ().
5952         
5953         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
5954         the new JIT.
5955
5956         * aot-compiler.c: Add an 'asm-only' AOT option.
5957
5958         * mini.c: Avoid initializing the runtime when doing AOT compilation.
5959                 
5960         * aot-compiler.c (compile_method): Disable gshared support for now as it
5961         doesn't yet work.
5962
5963 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
5964
5965         * mini-amd64.h : Fix a compiler warning.
5966
5967         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
5968           Changed to use a callback function to retrieve the unwind info.
5969           This avoids problems observed when code blocks were removed by
5970           unloading an app domain.
5971
5972         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
5973           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
5974           to work properly.
5975
5976         Contributed under MIT/X11 license.
5977
5978 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
5979
5980         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
5981           case to keep the stack aligned to 8.
5982
5983         Contributed under MIT/X11 license.
5984
5985 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
5986
5987         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
5988         avoid repeated linear searches.
5989
5990 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
5991
5992         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
5993         methods it can't handle.
5994         
5995         * aot-compiler.c (add_method): Avoid adding a method twice.
5996         (add_wrappers): Add runtime invoke wrappers for all methods.
5997
5998         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
5999         function to create an aot-compatible version of this trampoline.
6000
6001         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
6002
6003 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6004
6005         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
6006
6007         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
6008         with a generic sharing failure.
6009
6010         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
6011
6012         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
6013         CEE_RETHROW. Fixes #419634.
6014
6015         * mini.c (mono_method_to_ir): Ditto.
6016
6017         * exceptions.cs: Add a new test.
6018         
6019         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
6020         to mono_type_stack_size_internal () since some callers might not pass in
6021         an rgctx.
6022
6023         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
6024         instrument_prolog. Fixes #419878.
6025
6026         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
6027         doubles in soft float mode volatile.
6028
6029 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
6030
6031         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
6032
6033         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
6034         to handle soft float correctly.
6035
6036         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
6037         the fast path.
6038
6039         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
6040
6041         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
6042         to sp, since the generics catch code requires it.
6043
6044         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
6045         copying.
6046
6047         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
6048         mono_arch_emit_imt_argument ().
6049
6050         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
6051
6052         * mini-arm.c tramp-arm.c: Generic sharing updates.
6053
6054 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
6055
6056         * mini-arm.c: Fix the arm build.
6057
6058         * generic-sharing.c (mini_type_get_underlying_type): New helper function
6059         handling enums, generic instances and generic sharing.
6060         (mini_type_stack_size_full): Ditto.
6061
6062         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
6063         
6064         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
6065
6066         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
6067
6068         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
6069         trampolines.
6070
6071         * mini-arm.c: Various small generic sharing changes.
6072
6073         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
6074         this for x86.
6075         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
6076         custom code.
6077
6078         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
6079         helper function to return a generic class init trampoline.
6080
6081         * method-to-ir.c mini.c: Use it.
6082         
6083         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
6084         arch-specfic function to return a generic class init trampoline.
6085
6086         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
6087         the GENERIC_CLASS_INIT custom code.
6088
6089         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
6090         a fatal error, not a sharing failure.
6091
6092         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
6093         needed.
6094
6095         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
6096         trampoline argument from MONO_ARCH_VTABLE_REG.
6097
6098         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
6099         order of the arguments to the C trampoline: pass 'slot' as the trampoline
6100         argument, and pass the vtable in VTABLE_REG.
6101
6102         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
6103         order of the arguments to the C trampoline: pass 'slot' as the trampoline
6104         argument, and pass the vtable in VTABLE_REG.
6105         (mono_arch_create_trampoline_code_full): Remove some special casing for
6106         the rgctx fetch trampoline.
6107
6108         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
6109         Fixes #419273.
6110
6111         * iltests.il: Add a test for it.
6112
6113 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
6114
6115         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
6116
6117         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
6118         no longer needed.
6119
6120         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
6121         use mono_jit_info_table_find () to avoid recursion.
6122         (mono_delegate_trampoline): Add a sync wrapper here.
6123
6124         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
6125         here.
6126
6127         * mini.c (mono_method_to_ir): Ditto.
6128         
6129         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
6130         add_sync_wrapper argument. Don't add a sync wrapper here.
6131         (mono_create_jump_trampoline): Don't add a sync wrapper here.
6132
6133         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
6134         
6135 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
6136
6137         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
6138           of nonvolatile registers back from MonoContext to CONTEXT.
6139
6140         Contributed under MIT/X11 license.
6141
6142 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
6143
6144         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
6145           arguments on Winx64 there are only 4 argument registers.  For this
6146           logic to work the last argument must be pulled from the stack.  
6147
6148         Contributed under MIT/X11 license.
6149
6150 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
6151
6152         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
6153
6154         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
6155         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
6156         encode/decode_method_ref ().
6157
6158         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
6159
6160         * aot-runtime.c (decode_patch): Ditto.  
6161
6162         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
6163         MONO_PATCH_INFO_METHOD.
6164
6165         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
6166         MonoGenericJitInfo.
6167
6168         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
6169         MonoGenericJitInfo.
6170
6171         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
6172
6173         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
6174         one from the caller.
6175
6176         * aot-runtime.c (decode_generic_inst): New function to decode and
6177         return a interned generic inst.
6178         (decode_klass_ref): Use it.
6179         (decode_method_ref): Ditto.
6180
6181         * aot-compiler.c (emit_exception_debug_info): Save 
6182         jinfo->has_generic_jit_info too.
6183
6184 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
6185
6186         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
6187
6188         * iltests.il.in: Add a test for fconv_to_i.
6189
6190         * liveness.c: Disable the liveness2 pass for now to save space.
6191
6192         * regalloc2.c: Include mempool-internals.h to fix warnings.
6193
6194         * aot-compiler.c (encode_method_ref): Encode the context of generic
6195         instance methods.
6196
6197         * aot-runtime.c (decode_method_ref): Inflate generic methods using
6198         the context saved in the aot file.
6199
6200         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
6201
6202         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
6203
6204         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
6205         volatile so they won't be optimized away.
6206
6207 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
6208
6209         * ssa.c:
6210         * ssa2.c:
6211         * mini.c:
6212         * regalloc2.c:
6213         * dominators.c: Remove duplicated functions that now are in
6214         mempool-internals.h.
6215
6216 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
6217
6218         * aot-compiler.c: Fix warnings.
6219
6220         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
6221
6222         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
6223
6224         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
6225         as the patch type.
6226
6227         * mini.c (mono_resolve_patch_target): Ditto.
6228         
6229         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
6230         (encode_klass_ref): Add support for encoding VARs/MVARs.
6231
6232         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
6233
6234         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
6235         the handling of the got entries into a separate 'decode_got_entry' function.
6236         Add support for RGCTX_FETCH.
6237
6238         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
6239         clobbered by the trampoline code.
6240
6241         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
6242         not clobbered by the indirect calling code.
6243
6244 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
6245
6246         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
6247         to fix the build.
6248
6249 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
6250
6251         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
6252         signature using the compilation mempool otherwise we would leak it.
6253
6254 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
6255
6256         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
6257         mono_emit_abs_call ().
6258
6259         * patch-info.h: Add GENERIC_CLASS_INIT.
6260
6261         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
6262
6263         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
6264         as their target as a near call.
6265
6266         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
6267         ABS handling code.
6268         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
6269
6270         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
6271         call to a runtime function described by a patch.
6272
6273         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
6274         mono_emit_abs_call, this has the advantage that the ABS handling code in
6275         mono_codegen () can handle them both, and can handle other stuff in the
6276         future without additional code.
6277
6278         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
6279         entry.
6280         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
6281         abs addresses.
6282
6283         * mini.h: Add missing bblock related prototypes.
6284
6285         * mini.h (MonoCompile): Remove unused reverse_inst_list and
6286         reverse_inst_list_len fields.
6287
6288         * mini.c: Refactor this file a bit by moving branch optimizations to 
6289         branch-opts.c.
6290
6291         * method-to-ir.c: Merge generic sharing changes missed earlier.
6292
6293         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
6294
6295         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
6296         shared patches. Process METHODCONST as a shared patch.
6297
6298         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
6299         as it crashes on the 2.0 mscorlib.
6300
6301         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
6302         to cause crashes.
6303         
6304         * aot-compiler.c: Use is_plt_patch () in a few additional places.
6305         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
6306         by IMT.
6307
6308         * aot-compiler.c: Reorganize the got handling code to be a bit more
6309         understandable.
6310
6311 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
6312
6313         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
6314         mono_patch_info_equals/hash, and use it to massively simplify
6315         get_plt_index ().
6316
6317         * mini.c (mono_patch_info_hash): Simplify this and add support for
6318         more patch types.
6319
6320         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
6321
6322         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
6323         handling code, since an offset is not enough to identify a trampoline.
6324
6325         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
6326
6327 2008-08-17  Mark Probst  <mark.probst@gmail.com>
6328
6329         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
6330
6331         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
6332
6333         * mini-ops.h: Argument and result types for OVF_CARRY ops.
6334
6335         * decompose.c: PPC decompositions for various ops.
6336
6337         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
6338
6339 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
6340
6341         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
6342         call the generic trampoline code using a call, instead of a jump, to
6343         remove some special casing from the generic trampoline code.
6344
6345         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
6346         (mono_codegen): Ditto.
6347
6348         * aot-compiler.c aot-runtime.c: Ditto.
6349
6350         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
6351
6352         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
6353         helper function to find the offset corresponding to a lazy fetch trampoline.
6354
6355         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
6356         when doing generic sharing.
6357
6358         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
6359         places.
6360         
6361         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
6362         mini-trampolines.c to be with the other trampoline creation functions.
6363
6364         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
6365         as it is equal to method->signature in most cases, add a 
6366         mono_emit_method_call_full variant which takes a signature and an imt
6367         argument as well.
6368
6369 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
6370
6371         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
6372         to this function, since it could be computed easily from the method 
6373         argument.
6374         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
6375         more.
6376
6377         * method-to-ir.c mini.c: Remove references to 
6378         compile_generic_method_wo_context.
6379
6380         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
6381         generic method calls.
6382         
6383         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
6384         dimensional non-szarrays.
6385
6386         * mini.c (mini_init): Register mono_array_new_1.
6387
6388         * jit-icalls.c (mono_array_new_1): New jit icall.
6389
6390         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
6391         pointing to the method.
6392
6393         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
6394         method addresses belonging to METHOD_JUMP patches in the 
6395         jump_target_got_slot_hash.
6396         (mono_aot_load_method): Ditto.
6397
6398         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
6399         METHOD_JUMP patches.
6400
6401         * mini.c (mini_create_jit_domain_info): New helper function which 
6402         initializes/frees domain->runtime_info.
6403         (mini_free_jit_domain_info): Ditto.
6404         (mini_init): Install the domain hook functions with the runtime.
6405
6406         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
6407         information maintained by the JIT.
6408
6409         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
6410         insertion into jump_table_hash into mono_codegen (), also implement proper
6411         locking.
6412
6413         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
6414         tail calls, it is already done by the aot code.
6415         
6416         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
6417         mechanism on amd64.
6418
6419         * iltests.il.in: Make the jmp test a bit more complex.
6420
6421         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
6422         generic instances which doesn't have a token.
6423
6424         * aot-runtime.c (decode_method_ref): Ditto.
6425         
6426         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
6427         can handle this case now.
6428         (handle_box): Ditto.
6429
6430 2008-08-15  Geoff Norton  <gnorton@novell.com>
6431
6432         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
6433         debugging check.
6434
6435 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
6436
6437         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
6438         calling generic methods.
6439
6440         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
6441
6442         * aot-runtime.c (decode_patch_info): Ditto.
6443
6444         * mini.c (mono_resolve_patch_target): Ditto.
6445         
6446         * patch-info.h: Add METHOD_RGCTX.
6447
6448         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
6449
6450 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
6451
6452         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
6453         arguments in registers.
6454
6455         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
6456         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
6457
6458         * mini.c (mini_method_compile): Abort aot compilation for generic
6459         methods if generic sharing is disabled.
6460         
6461         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
6462         an mrgctx.
6463
6464         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
6465         requiring an mrgctx.
6466
6467         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
6468         store instructions when converting a vcall to a normal call.
6469
6470         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
6471         mono_arch_find_jit_info.
6472
6473 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
6474
6475         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
6476         avoid calling mono_method_full_name () for every method even if the
6477         env var is not set.
6478         (check_inline_caller_method_name_limit): Ditto.
6479
6480 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
6481
6482         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
6483         assemblies in one run.
6484
6485         * aot-compiler.c (mono_compile_assembly): Only print out a count of
6486         skipped methods if it is not 0.
6487
6488         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
6489
6490 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
6491
6492         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
6493           MONO_ARCH_HAVE_UNWIND_TABLE.
6494
6495         Contributed under MIT/X11 license.
6496
6497 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
6498
6499         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
6500           from default optimizaton list on Winx64.
6501
6502         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
6503
6504         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
6505           the LMF from the MonoJitTlsData structure.
6506
6507         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
6508
6509         Contributed under MIT/X11 license.
6510
6511 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
6512
6513         * mini.c (sigsegv_signal_handler): Fix the build.
6514
6515         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
6516         assembly->aot_module.
6517
6518         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
6519         hash table. This simplifies and speeds up a lot of code, and fixes support
6520         for .netmodules.
6521
6522         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
6523         with the runtime.
6524
6525         * mini-exceptions.c: Ditto.
6526         
6527         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
6528         'native_offset' argument, since these are computed in the 
6529         mono_find_jit_info () function.
6530
6531         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
6532         is used by exceptions-ppc.c.
6533
6534         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
6535         mono_arch_find_jit_info ().
6536         
6537         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
6538         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
6539         generic code in mini-exceptions.c.
6540
6541 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
6542
6543         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
6544
6545         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
6546         
6547         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
6548         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
6549         called while holding the loader lock. Fixes #415608.
6550         (mono_aot_get_method_from_token_inner): Ditto.
6551
6552 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
6553
6554         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
6555         to reduce differences between this and the generic implementation in
6556         mini-exceptions.c.
6557         (ves_icall_get_frame_info): Ditto.
6558
6559         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
6560
6561         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
6562         longer neccesarry.
6563
6564         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
6565         mono_arch_get_call_filter () and make it non-static, for consistency with the
6566         other architectures.
6567
6568 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
6569
6570         * mini.c:
6571         * local-propagation.c:
6572         * mini-x86.c: Correct the name of arch defines.
6573
6574 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
6575
6576         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
6577         NO_EMULATE_LONG_SHIFT_OPS define.
6578
6579 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
6580
6581         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
6582         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
6583
6584         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
6585         MACH fixes. Merged from the 2.0 branch.
6586
6587         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
6588
6589         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
6590         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
6591
6592         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
6593
6594         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
6595         mono_marshal_get_native_wrapper () signature changes.
6596
6597 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
6598
6599         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
6600         conversion bug under arm.
6601
6602 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
6603
6604         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
6605
6606         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
6607         with overflow checking.
6608
6609 2008-08-05  Marek Habersack  <mhabersack@novell.com>
6610
6611         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
6612         to the genmdesc.pl file
6613
6614 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
6615
6616         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
6617         arg_array in the soft-float versions of the LOAD/STORE macros.
6618
6619         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
6620         implementation.
6621
6622         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
6623
6624 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
6625
6626         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
6627         a float HFA. Fixes #413621.
6628
6629 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
6630
6631         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
6632         frame_size to args_size. Fixes build.
6633
6634 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
6635
6636         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
6637         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
6638
6639         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
6640         the stack are not unaligned. Fixes #413247.
6641         
6642 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
6643
6644         * mini.c: update jitted methods performance counters.
6645
6646 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
6647
6648         * mini-exceptions.c: increase the exceptions thrown performance
6649         counter in mono_handle_exception ().
6650
6651 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
6652
6653         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
6654         can work with netmodules.
6655
6656 2008-07-28  Geoff Norton  <gnorton@novell.com>
6657
6658         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
6659         regression tests.
6660
6661 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
6662
6663         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
6664         correct place.
6665
6666 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
6667
6668         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
6669           The float param registers and other param registers must be the 
6670           same index on Windows x64.
6671
6672         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
6673           ArgValuetypeAddrInIReg argument case.  Setting the argument
6674           op to OP_VTARG_ADDR (OP_REGOFFSET)).
6675
6676         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
6677           variable computed above as the copy length for arguments of storage
6678           type ArgValuetypeAddrInIReg.
6679
6680         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
6681           ArgValuetypeAddrInIReg argument case.  This case will rely on
6682           mono_arch_emit_outarg_vt to emit the correct code later in the process.
6683
6684         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
6685           a 32 byte stack allocation for all calls.  We will omit the adjustment for
6686           jump and tail call instructoins as they do not follow the typical call behavior.
6687
6688         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
6689           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
6690           local variable and pass the local variable by reference to the called method.
6691
6692         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
6693           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
6694           of a struct is passed in a register it must be saved with the other
6695           volatile argument on the stack.
6696
6697         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
6698           frame pointer the stack adjustment value must be saved to the unwind 
6699           info structure.
6700
6701         Contributed under MIT/X11 license.
6702
6703 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
6704
6705         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
6706         which got lost in the merge.
6707
6708 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
6709
6710         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
6711         build.
6712
6713         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
6714         
6715         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
6716         icalls, since they won't be patched.
6717
6718         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
6719         different code sequence when running under valgrind to prevent some valgrind
6720         errors.
6721
6722         * iltests.il.in: Add new regression test.
6723
6724         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
6725         end with a throw.
6726
6727         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
6728         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
6729
6730         * iltests.il.in: Add new test.
6731
6732         * aot-compiler.c: Fix some warnings.
6733
6734         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
6735         Fixes #412494.
6736
6737 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
6738
6739         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
6740         (mini_usage_jitdeveloper): Add a missing --wapi option.
6741
6742 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
6743
6744         * mini-codegen.c: Simplify the is_fp macros.
6745         (free_up_ireg): Remove, use free_up_reg instead.
6746         (free_up_reg): Fix the fp case.
6747
6748 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
6749
6750         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
6751         lowered earlier.
6752
6753         * exceptions-x86.c: Merge some changes which seemed to have got lost
6754         in the linear-ir merge.
6755
6756         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
6757
6758         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
6759         long vreg volatile even if the variable was already created.
6760
6761         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
6762         volatile variables.
6763
6764 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
6765
6766         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
6767
6768         * mini.c (mono_jit_compile_method_inner): Add support for 
6769         MONO_EXCEPTION_BAD_IMAGE.
6770
6771         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
6772         mini_method_get_context () returns NULL. Fixes #356531.
6773
6774         * mini.c (mono_method_to_ir): Ditto.
6775         
6776         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
6777         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
6778
6779 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
6780
6781         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
6782         in the LDFTN implementation.
6783
6784 2008-07-25  Mark Probst  <mark.probst@gmail.com>
6785
6786         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
6787         code, patch calls to icalls, too, even if they're not in the
6788         shared generic code hash.  Fixes #411962.
6789
6790 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
6791
6792         * cpu-x86.md: Increase the length of the fcall opcodes.
6793
6794         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
6795         calls returning floats.
6796
6797         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
6798         on NEWARR.
6799         
6800         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
6801         missed earlier.
6802
6803         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
6804         into the domain->method_code_hash.
6805
6806         * aot-compiler.c: Fix win32 build.
6807
6808         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
6809         
6810         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
6811         gshared NEWARR implementation.
6812
6813         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
6814
6815         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
6816         can be used outside of method_to_ir.
6817
6818         * mini.h (MonoCompile): Add arg_types field.
6819
6820         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
6821         
6822         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
6823         the values of the local arg_array and param_types array.
6824
6825 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
6826
6827         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
6828         got accesses might only get generated later when NEWOBJ is decomposed.
6829         
6830         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
6831         looking up the native code of the target method when a delegate is called
6832         for the first time.
6833
6834         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
6835         optimization.
6836
6837         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
6838
6839         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
6840         AOT work on platforms without a working dlsym implementation.
6841
6842         * mini.h: Bump AOT image format version.
6843         
6844 2008-07-24  Mark Probst  <mark.probst@gmail.com>
6845
6846         * mini-exceptions.c: Free a MonoType with
6847         mono_metadata_free_type() instead of g_free().
6848
6849         * aot-runtime.c: Free a MonoType.
6850
6851 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
6852
6853         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
6854         optimization.
6855
6856         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
6857         fp stack on x86.
6858
6859 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
6860         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
6861         profiler hook.
6862
6863 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
6864
6865         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
6866         NEWOBJ calls on valuetypes.
6867
6868         * iltests.il.in: Add new test.
6869
6870         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
6871
6872 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
6873
6874         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
6875         is no longer needed.
6876
6877         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
6878         non register sized integer arguments.
6879         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
6880         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
6881         emit_memcpy2 ().
6882
6883         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
6884         CEE_MONO_RETOBJ.
6885         
6886         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
6887         two a binop with different sized arguments is emitted.
6888
6889         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
6890         instruction in the ins==NULL case.
6891
6892 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
6893
6894         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
6895
6896         * mini-x86.c: Fix osx build.
6897
6898         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
6899         opcodes as well.
6900
6901         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
6902         instruction for non int sized variables.
6903
6904         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
6905         implementation.
6906
6907 2008-07-23  Robert Jordan  <robertj@gmx.net>
6908
6909         * method-to-ir.c: Fix MSVC build.
6910
6911 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
6912
6913         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
6914         a non int sized type, widen it to an int since newer versions of gcc seem to
6915         generate code which needs this.
6916
6917         * ssa2.c abcremoval2.c: Fix warnings.
6918
6919         * *: Merge the Linear IR branch.
6920
6921         The original branch is at trunk/branches/vargaz/mini-linear-il, and
6922         the ChangeLog file there describes all the changes done over the years. 
6923         Further documentation can be found at www.mono-project.com/Linear_IL.
6924
6925 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
6926
6927         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
6928           The float param registers and other param registers must be the 
6929           same index on Windows x64.
6930
6931         Contributed under MIT/X11 license.
6932
6933 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
6934
6935         * mini.c: Make the previous fix GC safe.
6936
6937 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
6938
6939         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
6940
6941 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
6942
6943         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
6944           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
6945           ArgValuetypeAddrInIReg instead.
6946
6947         Contributed under MIT/X11 license.
6948
6949 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
6950
6951         * mini-codegen.c (get_register_spilling): Fix a warning.
6952
6953 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
6954
6955         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
6956         for types which the initialization fails. Raises the provided exception
6957         at the right stop after cleanup.
6958
6959 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
6960
6961         * aot-compiler.c: Free most of the memory allocated during compilation.
6962
6963         * mini.c (mini_parse_debug_options): Fix a leak.
6964         
6965         * mini.c (mini_method_compile): Don't add the method to the jit info tables
6966         during aot compilation.
6967
6968 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
6969
6970         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
6971         it has too much register pressure.
6972
6973 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
6974
6975         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
6976
6977 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
6978
6979         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
6980         on x86.
6981
6982         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
6983         on amd64 similar to the way it is done on arm.
6984
6985         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
6986
6987         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
6988         consistency, normalize error messages, avoid loading aot-only modules in
6989         normal mode.
6990
6991         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
6992         for consistency.
6993
6994         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
6995
6996 2008-07-11  Martin Baulig  <martin@ximian.com>
6997
6998         * debug-debugger.h
6999         (MonoDebuggerInfo): Add `interruption_request'.
7000
7001 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
7002
7003         * aot-compiler.c (emit_plt): Remove some dead code.
7004
7005         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
7006
7007         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
7008         return the plt info offset belonging to a given plt entry.
7009
7010         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
7011         mono_aot_get_plt_info_offset.
7012         
7013         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
7014         similar to the amd64 code by makeing jumps through a separate jump table 
7015         instead of embedding the jump addresses into the code.
7016
7017 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
7018
7019         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
7020         method.
7021
7022 2008-07-10  Martin Baulig  <martin@ximian.com>
7023
7024         * mini.c (mini_method_compile): Disable generics sharing when
7025         running in the debugger.
7026
7027 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
7028
7029         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
7030
7031         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
7032         the local register allocator from running out of registers on x86 when 
7033         using aot.
7034
7035 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
7036
7037         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
7038         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
7039         C4146.
7040
7041         Contributed under MIT/X11 license.
7042
7043 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
7044
7045         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
7046         speed up the assembler.
7047
7048 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
7049
7050         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
7051         support.
7052
7053         * mini.c: Move the soft float handling macros a bit earlier, add 
7054         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
7055         place.
7056
7057         * mini.h: Add prototype for mono_arch_fixup_jinfo.
7058
7059         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
7060         read-only to help catch code allocation requests.
7061         
7062         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
7063         and turn it off when using --aot-only or when compiling with --aot=full.
7064
7065         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
7066         jump table for switches from the normal domain mempool, not the code
7067         manager.
7068
7069         * mini-trampolines.c (get_unbox_trampoline): New function to return an
7070         unbox trampoline which handles aot-only mode too.
7071
7072         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
7073         an AOTed unbox trampoline.
7074
7075         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
7076
7077 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
7078
7079         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
7080         ""
7081
7082         Contributed under MIT/X11 license.
7083
7084 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
7085
7086         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
7087           the unwind information for the method at the end of the allocated block.
7088           
7089         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
7090           MonoCompileArch to hold the unwind info for SEH on Winx64
7091         
7092         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
7093           frame pointer info for the method being compiled.
7094           
7095         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
7096           the call to mono_exception_from_token.
7097           
7098         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
7099           storing the method prolog information in a format that the Winx64 SEH can understand.  This
7100           information is stored a the end of the method block because it is all 32-bit offset based.
7101
7102         Contributed under MIT/X11 license.
7103
7104 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
7105
7106         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
7107
7108         * wapihandles.c: Fix warnings.
7109
7110         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
7111         mode.
7112
7113         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
7114         mono_jit_compile_method in aot-only mode since that calls the type 
7115         initializer.
7116         
7117         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
7118         get_delegate_invoke_impl in aot-only mode.
7119
7120         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
7121
7122 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
7123
7124         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
7125
7126         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
7127         is on by default.
7128
7129         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
7130
7131         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
7132         init trampoline from the AOT file as well.
7133
7134         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
7135         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
7136         code.
7137
7138         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
7139         mono_init.
7140
7141         * exceptions-amd64.c: Add _full variants for the remaining exception code
7142         creation functions as well, allow emission of relocatable code, remove
7143         caching since that is now done by the caller.
7144
7145         * mini-exceptions.c: Add _full variants for the remaining exception code
7146         creation functions as well, add aot-only support.
7147
7148         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
7149         if we can determine a proper token for them.
7150         (add_wrappers): Add a few more wrappers.
7151         (emit_method_code): Remove some dead code.
7152         (emit_trampolines): Emit exception code too.
7153
7154         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
7155
7156         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
7157         mono_array_new_va which avoids varargs.
7158
7159         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
7160
7161         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
7162         mono_arch_create_specific_trampoline () in all places.
7163
7164         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
7165         a bit so it can be used for other things as well.
7166         
7167         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
7168         on demand as well.
7169
7170         * exceptions-amd64.c: Rename the caching from the exception code creation
7171         functions, it is done by the caller instead.
7172         
7173         * exceptions-amd64.c: Change the signature of the exception code creation 
7174         functions to allow the creation of relocatable code later.
7175
7176         * mini-exceptions.c: Add a set of functions to query the various 
7177         runtime-generated exception functions.
7178
7179         * mini.c mini-exceptions.c: Use the newly added functions instead of the
7180         mono_arch_.. () functions.
7181         
7182 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
7183
7184         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
7185
7186         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
7187
7188         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
7189         (mini_get_vtable_trampoline): Ditto.
7190
7191         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
7192         code in the AOT case by returning the code size and a list of relocations to
7193         the caller.
7194
7195         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
7196
7197 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
7198
7199         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
7200           clean the stack.
7201
7202         Contributed under MIT/X11 license.
7203
7204 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
7205
7206         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
7207         so the buffer size can be computed correctly. Fixes #404735.
7208
7209         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
7210         normally as cfg->debug_info is already freed.
7211
7212 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
7213
7214         * mini-amd64.c: For calls returning vtypes in registers, don't store
7215         the return address on the stack, instead allocate a separate local for
7216         it. Fixes #404729.
7217
7218 2008-07-05  Mark Probst  <mark.probst@gmail.com>
7219
7220         * mini-trampolines.c, mini.h: Add an argument to
7221         mono_create_jit_trampoline_in_domain() for turning off the adding
7222         of the sync wrapper.
7223
7224         * mini.c: Use the JIT trampoline without sync instead of
7225         ldftn_nosync in static RGCTX invoke wrappers so that the call can
7226         be patched.
7227
7228 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7229
7230         * driver.c: Turn on GSHARED optimization by default.
7231
7232 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
7233
7234         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
7235         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
7236
7237         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
7238         create a variant of the generic trampoline code callable from AOTed trampolines.
7239
7240         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
7241         trampoline code callable from AOTed trampolines.
7242
7243         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
7244
7245 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7246
7247         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
7248         pass-through manner.
7249
7250         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
7251         and don't fail sharing for them anymore.
7252
7253         * mini-exceptions.c: Handle exceptions in shared generic methods.
7254
7255         * generic-sharing.c: When checking the context of a generic
7256         method, also check its class's context.  Don't treat wrappers as
7257         sharable.
7258
7259         * mini-trampolines.c: Some code factored out to
7260         metadata/generic-sharing.c.  Handle the MRGCTX case.
7261
7262         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
7263         we must deal with the method being of another instantiation of the
7264         class.  Add static rgctx invoke wrappers to generic methods.
7265
7266 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7267
7268         * mini.c: Provide all jit infos of generic shared methods with a
7269         generic jit info.
7270
7271         * mini-exceptions.c: Handle the new situation that a generic info
7272         might be available, but not info about the this/vtable/mrgctx
7273         variable.
7274
7275 2008-07-03  Mark Probst  <mark.probst@gmail.com>
7276
7277         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
7278         generic methods.
7279
7280 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
7281
7282         * dominators.c (check_dominance_frontier): Fix a warning.
7283
7284         * mini.h: Add some missing prototypes.
7285
7286         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
7287
7288         * driver.c (mono_jit_init_version): Correct the comments since the first
7289         argument should be the name of the root domain, not a filename.
7290
7291         * aot-runtime.c (make_writable): Error out if this is called while running
7292         with --aot-only.
7293         (load_aot_module): Ditto.
7294
7295         * aot-compiler.c: Really fix the computation of method indexes.
7296
7297         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
7298         optimizations as this is no longer called frequently.
7299
7300         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
7301         method and the invoke impl code and pass it to the delegate trampoline instead of
7302         just the delegate class.
7303
7304 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
7305
7306         * aot-compiler.c: Fixup the computation of method indexes.
7307         (add_wrappers): Create the base methods of the runtime invoke wrappers using
7308         the method builder infrastructure.
7309
7310         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
7311         has no header.
7312
7313         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
7314         mode, load the method right away instead of creating a trampoline.
7315
7316         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
7317
7318         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
7319         some checks a bit.
7320
7321 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
7322
7323         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
7324         (mono_aot_load_method): Use method_index instead of method->token.
7325
7326         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
7327         can handle icalls etc. properly.
7328
7329         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
7330
7331         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
7332
7333         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
7334         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
7335         JIT_ICALL_ADDR patch type.
7336
7337         * patch-info.h: Add JIT_ICALL_ADDR patch type.
7338
7339         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
7340         request flag.
7341         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
7342
7343         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
7344
7345 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
7346
7347         * mini.c: Use domain->jit_code_hash_lock for controlling access to
7348         domain->jit_code_hash.
7349
7350 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
7351
7352         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
7353
7354 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
7355
7356         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
7357         get_this_arg_from_call, let it compute it when needed.
7358
7359         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
7360         gsctx from code only when needed.
7361
7362         * mini-trampolines.c (get_generic_context): Rename this to 
7363         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
7364         it can be called by the arch backends.
7365
7366         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
7367
7368 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
7369
7370         * driver.c (mono_main): Add experimental --aot-only command line option.
7371
7372         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
7373         set.
7374
7375 2008-06-26  Kornel Pal  <kornelpal@gmail.com>
7376
7377         * driver.c (DllMain): Remove mono_module_handle.
7378
7379         Contributed under MIT/X11 license.
7380
7381 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
7382
7383         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
7384         for emitting methods which are not in the source assembly. Detect and report
7385         failure of assembling+linking.
7386         
7387         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
7388
7389         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
7390
7391 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
7392
7393         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
7394
7395 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
7396
7397         * mini.h: Remove some obsolete prototypes.
7398
7399         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
7400
7401 2008-06-24  Mark Probst  <mark.probst@gmail.com>
7402
7403         * mini.c (get_object_generic_inst): Variable-sized arrays are not
7404         supported by Visual Studio, so use alloca().
7405
7406 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
7407
7408         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
7409         Fixes #402585.
7410
7411 2008-06-23  Mark Probst  <mark.probst@gmail.com>
7412
7413         * mini.c: Fail sharing of a generic method if it contains an open
7414         catch clause (because we don't pass MRGCTXs yet).
7415
7416 2008-06-23  Mark Probst  <mark.probst@gmail.com>
7417
7418         * mini.c: When compiling a method with generic sharing, insert the
7419         method instantiated with an all-Object generic context into the
7420         jit info table, instead of the context of the first instantiation
7421         of the method we happen to compile.
7422
7423 2008-06-18  Martin Baulig  <martin@ximian.com>
7424
7425         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
7426         `major_version' and `minor_version'.
7427
7428 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7429
7430         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
7431         mono_method_is_generic_sharable_impl() takes an additional
7432         argument specifying whether to treat type variables as reference
7433         types.
7434
7435 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7436
7437         * mini.h: Removed obsolete prototypes.
7438
7439 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7440
7441         * mini.c: Don't fail generic sharing for initobj and sizeof - we
7442         already handle them.
7443
7444 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7445
7446         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
7447         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
7448         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
7449         tramp-x86.c: Added a MonoGenericContext* argument to
7450         mono_arch_get_unbox_trampoline() so that it can call other
7451         functions which require it.
7452
7453 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7454
7455         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
7456         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
7457         mono_arch_get_this_arg_from_call() takes a
7458         MonoGenericSharingContext* as well.
7459
7460 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7461
7462         * mini.c: Factor out code for emitting unbox into emit_unbox() and
7463         implement generic sharing of unbox.
7464
7465 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7466
7467         * mini.c: Don't compute the vtable to determine whether a field is
7468         special static, because it might not work for open types.
7469
7470 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7471
7472         * mini.c: Removed the unused token_type and token_source arguments
7473         from get_runtime_generic_context_ptr().
7474
7475 2008-06-17  Marek Habersack  <mhabersack@novell.com>
7476
7477         * mini.c (ADD_BINOP): fix the build
7478
7479 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
7480
7481         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
7482         a widening op.
7483
7484 2008-06-16  Mark Probst  <mark.probst@gmail.com>
7485
7486         * mini.h: Removed class relations enum that's not used anymore.
7487
7488 2008-06-16  Mark Probst  <mark.probst@gmail.com>
7489
7490         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
7491
7492         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
7493         the lazy fetch trampoline access code.
7494
7495 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
7496
7497         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
7498
7499 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
7500
7501         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
7502
7503         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
7504
7505         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
7506
7507 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7508
7509         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
7510         intrinsics.
7511
7512         * mini-ops.h: Add MIN/MAX_UN opcodes.
7513
7514         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
7515         intrinsics.
7516
7517         * basic-math.cs: Add more min/max tests.
7518
7519         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
7520
7521 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7522
7523         * mini.c: Small fix in the prologue of emit_castclass.
7524
7525 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7526
7527         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
7528
7529         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
7530         do not work even for unsigned types. Fixes #400014.
7531
7532         * basic-math.cs: Add regression tests for unsigned Min/Max.
7533
7534 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7535
7536         * mini.c: Added additional context_used argument to several
7537         functions, which will be needed for sharing generic methods.  Use
7538         GET_RGCTX macro wherever appropriate.  Declare only one
7539         context_used in mono_method_to_ir().
7540
7541 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7542
7543         * mini.c, generic-sharing.c: Removed generic class relations.
7544
7545         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
7546         functions due to MRGCTX changes.
7547
7548 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7549
7550         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
7551         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
7552         with calculated IMT.
7553
7554         * mini.c: Generic sharing of calls via generic interfaces.
7555
7556         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
7557         generic method with non-constant MonoGenericContext*.  Instead,
7558         the context is taken out of the method itself.
7559
7560 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7561
7562         * mini.c: Generic sharing of ldvirtftn.
7563
7564 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7565
7566         * mini.c: Generic sharing of ldftn.
7567
7568 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7569
7570         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
7571
7572 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7573
7574         * mini.c: Generic sharing of the special case of ldtoken followed
7575         by a call to GetTypeFromHandle.
7576
7577 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7578
7579         * mini.c: Generic sharing of box for nullable types.
7580
7581 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7582
7583         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
7584         are passed on the stack. Fixes #324807.
7585
7586 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
7587
7588         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
7589         for the ArgValuetypeAddrInIReg case.
7590
7591         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
7592         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
7593
7594         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
7595         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
7596         local variable and pass the local variable by reference to the called method.
7597           
7598         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
7599         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
7600
7601         Contributed under MIT/X11 license.
7602
7603 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
7604
7605         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
7606
7607         * debug-mini.c (mono_debug_print_vars): Release memory after printing
7608         everything.
7609
7610 2008-06-10  Martin Baulig  <martin@ximian.com>
7611
7612         * debug-mini.c
7613         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
7614
7615 2008-06-09  Kornel Pal  <kornelpal@gmail.com>
7616
7617         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
7618         possible error when no arguments are passed.
7619
7620         Contributed under MIT/X11 license.
7621
7622 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
7623
7624         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
7625         where the file name is NULL.
7626
7627 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7628
7629         * mini.c: Fix s390 build.
7630
7631 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
7632
7633         * trace.c (mono_trace_parse_options): Fix warnings.
7634
7635         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
7636
7637 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
7638
7639         * mini.c (remove_block_if_useless): Avoid printing the method name.
7640         
7641         * mini.c: Remove needless setting of ins->cil_code which is now done by 
7642         MONO_INST_NEW.
7643
7644         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
7645         LMF. Not yet used.
7646
7647         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
7648         translated code after it has been patched.
7649
7650 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
7651
7652         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
7653         avoid problems during code patching on SMP systems.
7654         (emit_call): Avoid adding a patch info which is already added by 
7655         emit_call_body.
7656         (mono_arch_emit_exceptions): Ditto.
7657
7658 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
7659
7660         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
7661         MONO_TYPE_ISSTRUCT already checks for it.
7662
7663 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
7664
7665         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
7666           structs with floats on Winx64 the float registers are not used.  
7667           The integer registers are always used..
7668         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
7669           only one register will be used and only if the size of the struct 
7670           is 1,2,4, or 8 bytes.
7671
7672         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
7673           to work for Winx64.
7674
7675         Contributed under MIT/X11 license.
7676
7677 2008-06-05  Martin Baulig  <martin@ximian.com>
7678
7679         * debug-debugger.c (debugger_lookup_class): Also call
7680         mono_class_setup_methods() here; we're only called from RTI.
7681
7682 2008-06-05  Andreas Farber  <andreas.faerber@web.de>
7683
7684         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
7685         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
7686         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
7687         Post-process object files and add dtrace-generated object, if necessary.
7688
7689         Contributed under MIT/X11 license.
7690
7691 2008-06-04  Mark Probst  <mark.probst@gmail.com>
7692
7693         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
7694         element class.
7695
7696         * mini.c: Generic sharing for unbox.any and castclass.
7697
7698 2008-06-04  Mark Probst  <mark.probst@gmail.com>
7699
7700         * mini.c: Ignore tailcall prefix in shared generic code and when
7701         doing calls which require a vtable/rgctx argument.
7702
7703 2008-06-04  Mark Probst  <mark.probst@gmail.com>
7704
7705         * mini.c: Don't free the JIT info.
7706
7707         * driver.c: Changes in the JIT info table testing code.
7708
7709 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
7710
7711         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
7712         interruption. Fix some warnings.
7713
7714         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
7715         interruption_checkpoint.
7716
7717 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7718
7719         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
7720         from embedding applications.
7721
7722 2008-06-02  William Holmes  <billholmes54@gmail.com>
7723
7724         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
7725           reserving 32 bytes on the stack when making calls. 
7726
7727         Contributed under MIT/X11 license.
7728
7729 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
7730
7731         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
7732         the linear IL branch.
7733
7734         * driver.c: Print out more information for --version on arm.
7735
7736 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
7737
7738         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
7739         bb_exit instead, since out of line bblocks might not actually be emitted
7740         out-of-line.
7741         
7742         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
7743         maximum epilog size for out of line bblocks if tracing is enabled.
7744
7745         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
7746
7747 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
7748
7749         * arrays.cs: Regression tests for allocating arrays with negative sizes.
7750
7751 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
7752
7753         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
7754         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
7755         opcodes.
7756
7757 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
7758
7759         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
7760         the 'value' to store is a constant.
7761
7762         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
7763
7764         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
7765         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
7766
7767 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
7768
7769         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
7770         for accessing method->generic_container.
7771
7772 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
7773
7774         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
7775         
7776         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
7777
7778         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
7779
7780         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
7781         fails.
7782
7783 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
7784
7785         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
7786
7787         * mini.c: Handle the case when mono_class_vtable () fails.
7788
7789 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
7790         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
7791         the stat profiler.
7792
7793 2008-05-22  Mark Probst  <mark.probst@gmail.com>
7794
7795         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
7796         together with domain sharing.
7797
7798 2008-05-22  Mark Probst  <mark.probst@gmail.com>
7799
7800         * mini.c: Treat callvirts to final methods like non-virtual calls
7801         when doing generic sharing, i.e. look them up in the runtime
7802         generic context.
7803
7804 2008-05-22  Mark Probst  <mark.probst@gmail.com>
7805
7806         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
7807         with computed types (for generic sharing).
7808
7809         * mini.c: Generic sharing for mkrefany and refanyval.
7810
7811 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
7812
7813         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
7814         possible.
7815
7816         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
7817         the generic sharing code.
7818         
7819         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
7820         when needed.
7821
7822 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
7823
7824         * mini.h: Remove the declaration of mono_aot_init_vtable ().
7825
7826 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
7827
7828         * driver.c: updated copyright date
7829
7830 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
7831
7832         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
7833         needed.
7834
7835 2008-05-19  Martin Baulig  <martin@ximian.com>
7836
7837         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
7838         pointing to the new `_mono_debug_using_mono_debugger' variable.
7839
7840         * driver.c
7841         (mono_main): Check mono_debug_using_mono_debugger() rather than
7842         the `MONO_INSIDE_MDB' environment variable to check whether we're
7843         inside the debugger.
7844
7845 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
7846
7847         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
7848         argument.
7849
7850 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
7851
7852         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
7853
7854         * mini.c: Added mini_assembly_can_skip_verification. This
7855         function checks if the assembly requested to skip verification. 
7856         Fixes part of #387274.
7857
7858 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
7859
7860         * mini.c (mini_get_method): Disable the check for open generic classes when
7861         using generic sharing.
7862
7863         * generics.cs: Add a test for #387034.
7864
7865         * mini.c (mini_get_method): Check whenever the method class is an open generic
7866         type, and return NULL in that case, causing a verification error. Fixes
7867         #384123.
7868
7869 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
7870
7871         * driver.c (mono_main): Revert r102623. The right
7872         thing to do is to enable the verifier under verifiable
7873         unless a --security flag was passed.
7874
7875         We need this non-trivial behavior for --verify-all otherwise
7876         mcs-compileall won't be able to use it. As it needs everything to
7877         be verified under validil.
7878
7879 2008-05-06  Martin Baulig  <martin@ximian.com>
7880
7881         Fix #383749.
7882
7883         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
7884         (mono_debugger_thread_cleanup): Likewise.
7885         (mono_debugger_extended_notification): Likewise.
7886
7887 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
7888
7889         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
7890         against both inflated and non-inflated methods. We need to check against the
7891         generic definition for cases where the instantiated method is not visible.
7892         We need to check against the inflated types for cases where the instantiation
7893         changes any super type. This fixes #382986.
7894
7895         Note that this doesn't need to be applied to other parts of mono_method_to_ir
7896         that check for visibiliy as generic params only appears as the type subject
7897         of tokens on call opcodes. Field manipulation and ldftn must always
7898         target an exact type.
7899
7900 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
7901
7902         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
7903         if no related --security flag is passed.
7904
7905 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
7906
7907         * mini-arch.h: Prepare support for ppc64.
7908
7909         Contributed under MIT/X11 license.
7910
7911 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
7912
7913         * aot-runtime.c: Prepare support for ppc64.
7914
7915         Contributed under MIT/X11 license.
7916
7917 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
7918
7919         * mini-ops.h: Prepare support for ppc64.
7920
7921         Contributed under MIT/X11 license.
7922
7923 2008-05-04  Andreas Farber  <andreas.faerber@web.de>
7924
7925         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
7926
7927         Contributed under MIT/X11 license.
7928
7929 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
7930
7931         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
7932         assemblies, since aot_name is not a full path, causing us to load MS.NET 
7933         assemblies on windows.
7934
7935 ?2008-04-28  Kornel Pal  <kornelpal@gmail.com>
7936
7937         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
7938         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
7939         * main.c: Use UTF-8 encoded command line instead of Windows default code
7940         page on Windows to support Unicode.
7941         * driver.c (DllMain): New function for mixed-mode assembly support.
7942         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
7943         export __stdcall functions without decoration.
7944
7945         Contributed under MIT/X11 license.
7946
7947 2008-04-28  Mark Probst  <mark.probst@gmail.com>
7948
7949         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
7950         saving it very early.
7951
7952 2008-04-28  Mark Probst  <mark.probst@gmail.com>
7953
7954         * mini.h, mini.c: Lots of code for accessing the old RGCTX
7955         deleted.  The only way to access the new RGCTX is via the
7956         trampline.
7957
7958         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
7959         vtable instead of the RGCTX to static methods.
7960
7961         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
7962         accessing the new RGCTX.
7963
7964         * generic-sharing.c: There is no separation between self, type
7965         arguments and other types in the RGCTX anymore.
7966
7967 2008-04-25  Jonathan Chambers <joncham@gmail.com>
7968
7969         * mini-amd64.c (add_general): Remove previous stack adjustment.
7970         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
7971         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
7972         for 32 bytes of stack space reserved for all calls.
7973         
7974         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
7975         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
7976         adjustment.
7977         
7978         Code contributed under MIT/X11 license.
7979
7980 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
7981
7982         * mini.c (mini_method_verify): Only verify non-inflated methods, check
7983         against the root definition, peeling out method and type instantiations.
7984         Cache verify success results, code that fails verification is still
7985         checked multiple times.
7986
7987 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
7988
7989         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
7990
7991 2008-04-23  Jonathan Chambers <joncham@gmail.com>
7992
7993         * mini-amd64.c (add_general): Always increment stack on Win64.
7994         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
7995         on Win64.
7996         
7997         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
7998         stack based argument handling on Win64.
7999         
8000         Code contributed under MIT/X11 license.
8001
8002 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
8003
8004         * Makefile.am (version.h): Add support for git-svn.
8005
8006 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
8007
8008         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
8009         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
8010         avoiding allocations and libc functions which might deadlock.
8011         
8012         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
8013         'no-gdb-backtrace' option is set.
8014
8015         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
8016
8017         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
8018
8019 2008-04-21  Martin Baulig  <martin@ximian.com>
8020
8021         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
8022         and `get_lmf_addr'; `notification_address' is no longer a pointer.
8023
8024 2008-04-21  Martin Baulig  <martin@ximian.com>
8025
8026         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
8027         `thread_vtable', `event_handler_ptr' and `event_handler'.
8028
8029 2008-04-21  Martin Baulig  <martin@ximian.com>
8030
8031         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
8032         allows delayed initialization of the `executable_code_buffer' when
8033         attaching.
8034
8035 2008-04-21  Martin Baulig  <martin@ximian.com>
8036
8037         * mini.h (mono_debugger_create_notification_function): Removed.
8038         * tramp-*.c (mono_debugger_create_notification_function): Removed.
8039
8040         * mdb-debug-info64.s
8041         (MONO_DEBUGGER__notification_function): Added this in the .text section.
8042
8043         * mdb-debug-info32.s
8044         (MONO_DEBUGGER__notification_function): Added this in the .text section.
8045
8046         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
8047         currently only works on x86 and x86_64, so don't create it on ppc.
8048
8049 2008-04-21  Martin Baulig  <martin@ximian.com>
8050
8051         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
8052
8053         * mini.c
8054         (mini_method_compile): In the fp elimination check, check
8055         `debug_options.mdb_optimizations' in addition to
8056         mono_debug_using_mono_debugger().       
8057
8058         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
8059         disable some JIT optimizations which are only disabled when
8060         running inside the debugger.
8061         Added `--help-debug' option to describe the debugging options.
8062         (parse_debug_options): New static function to parse the `--debug'
8063         options, so we can easily add more stuff in future.
8064
8065 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
8066
8067         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
8068         the method has no body.
8069
8070 2008-04-19  Jonathan Chambers <joncham@gmail.com>
8071
8072         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
8073         assembly is not allowed in MSVC 64-bit compiler. 
8074         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
8075         as we get floating point exceptions everywhere.
8076         
8077         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
8078         correctly align arguments for call to throw_exception.
8079         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
8080         
8081         Code contributed under MIT/X11 license.
8082
8083 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
8084
8085         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
8086
8087 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
8088
8089         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
8090
8091         * mini-amd64.c (NEW_INS): Set cil_code.
8092
8093         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
8094         from mini-amd64.c so all debugger related logic is in one place.
8095
8096         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
8097         later won't have a random ip assigned to them.
8098
8099 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
8100
8101         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
8102         the arch specific function initializes code_size.
8103         (mono_create_delegate_trampoline): Ditto.
8104
8105         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
8106         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
8107         platforms.
8108
8109         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
8110         running under the debugger.
8111
8112         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
8113         debugger.
8114
8115         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
8116         debugger. Also move the disabling of optimizations here from driver.c.
8117         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
8118         debugger.
8119
8120         * mini.h (MonoCompile): Add a few new flags.
8121
8122 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
8123
8124         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
8125         so the cil_code field of created MonoInst's is properly set.
8126         (mini_select_instructions): Ditto.
8127
8128         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
8129         (MONO_INST_NEW_CALL): Ditto.
8130
8131         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
8132         in many places so the ins->cil_code field is properly initialized.
8133
8134         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
8135         place.
8136
8137 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
8138
8139         * mini.c (mini_method_compile): Print a different message when compiling a 
8140         shared method.
8141         
8142         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
8143         > 1.
8144
8145 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
8146
8147         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
8148         SSE2 instructions.
8149
8150         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
8151         
8152 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
8153
8154         * mini.c (handle_stack_args): Make this return void since its return value was
8155         never used. Also set cfg->unverifiable for invalid IL instead of calling
8156         G_BREAKPOINT ().
8157
8158 2008-04-10  Mark Probst  <mark.probst@gmail.com>
8159
8160         * mini.c: Make sure "this" is live in catch clauses with type
8161         variables in shared generic code.
8162
8163 2008-04-08  Mark Probst  <mark.probst@gmail.com>
8164
8165         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
8166         generic_class_is_reference_type() to ensure the proper behaviour
8167         when sharing generic code and the type in question is a type
8168         argument.
8169
8170 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
8171
8172         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
8173         race conditions when printing thread dumps. Fixes #377738.
8174
8175 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
8176         
8177         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
8178         shows up when both MonoInst arguments can cause aliasig.
8179         There is likely no way in the current JIT to trigger this problem, but
8180         it showed up in the development of generics sharing, when in a new
8181         opcode both args of an OP_GROUP can be aliases (addresses of a local).
8182         When the generics sharing code will be committed, its tests will be
8183         valid also for this bug.
8184
8185 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
8186
8187         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
8188         PATCH_INFO_METHOD.
8189
8190         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
8191         NULL.
8192
8193 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
8194
8195         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
8196         use a more detailed exception message for InvalidCastException.
8197
8198         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
8199
8200         * driver.c (mono_main): Add --debug=casts option to turn on better 
8201         InvalidCastException message details.
8202
8203         * mini.c (mini_get_debug_options): New helper function to return the address of
8204         the debug_options variable.
8205
8206         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
8207         the jit_tls TLS variable.
8208
8209         * mini.c (mono_jit_tls): New TLS variable.
8210
8211         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
8212         option is used.
8213
8214 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
8215
8216         * mini.h: Removed verifer related stuff. This code was moved to verify.c
8217
8218         * mini.c: Removed verifer related stuff, code moved to verify.c.
8219
8220         * driver.c: Using code from verify.c instead of mini.c.
8221
8222 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
8223
8224         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
8225         longer valid.
8226
8227 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
8228
8229         * mini.c (check_for_method_verify): Enabling verification of
8230         corlib if mono_verify_all is set. Bugs in the verifier preventing that
8231         have been fixed.
8232
8233 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
8234
8235         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
8236         caller saved registers as well.
8237         
8238         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
8239         saved registers as well.
8240
8241 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
8242
8243         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
8244
8245         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
8246         code.
8247
8248 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
8249
8250         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
8251         to get_call_info.
8252         (get_call_info): Take a gsctx argument instead of 'cfg'.
8253
8254 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
8255
8256         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
8257         mono_verify_all is set.
8258
8259         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
8260
8261         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
8262
8263 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
8264
8265         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
8266         an exception.
8267
8268         * driver.c mini.c mini.h: Add a --verify-all development option to test the
8269         verifier and the code generated by the compiler.
8270
8271 2008-03-25  Mark Probst  <mark.probst@gmail.com>
8272
8273         * mini.c: Generic sharing of the non-nullable case of the box
8274         instruction.
8275
8276 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
8277
8278         * inssel.brg: Fix the build.
8279
8280         * iltests.il.in: Add a test for lconv.ovf.u8.un.
8281
8282 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
8283
8284         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
8285         Array:Address. Fixes #372410.
8286
8287         * iltests.il.in: New tests for readonly prefix.
8288
8289 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
8290
8291         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
8292         mini-trampolines.c.
8293
8294         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
8295         mini-exceptions.c.
8296
8297         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
8298         
8299         * mini.c (mono_decompose_op_imm): New helper function.
8300
8301         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
8302         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
8303         return value.
8304
8305         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
8306         mono_arch_output_basic_block. Fix warnings.
8307
8308         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
8309         for now.
8310
8311 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
8312
8313         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
8314         since the extra frame is now detected automatically inside the loop.
8315
8316         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
8317         opts which are now in mono_peephole_ins ().
8318         
8319         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
8320
8321         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
8322         frames and skip duplicate managed-to-native frames. Fixes #367665.
8323
8324         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
8325         opts which are now in mono_peephole_ins ().
8326         (mono_arch_peephole_pass_2): Ditto.
8327
8328         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
8329
8330         * mini-codegen.c (mono_peephole_ins): New helper function containing the
8331         arch independent peephole optimizations.
8332
8333         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
8334         opts which are now in mono_peephole_ins ().
8335
8336         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
8337         
8338         * mini-s390.c (mono_arch_output_basic_block): Fix build.
8339
8340         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
8341         pattern.
8342
8343         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
8344         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
8345         opcode. 
8346
8347 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
8348
8349         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
8350         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
8351         return value.
8352
8353         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
8354         mono_arch_output_basic_block. Fix warnings.
8355
8356 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
8357
8358         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
8359         conv.ovf.u.un.
8360
8361 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
8362
8363         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
8364         conv.ovf.u.un.
8365
8366         * iltests.il: Add new tests.
8367
8368 2008-03-20  Kornel Pal  <kornelpal@gmail.com>
8369
8370         * mini.c: Removed Windows version macros.
8371
8372 2008-03-20  Mark Probst  <mark.probst@gmail.com>
8373
8374         * generic-sharing.c: Put reflection types in the extensible part
8375         of the runtime generic context.
8376
8377         * mini.c: Generic sharing of the GetTypeHandle special case of the
8378         ldtoken instruction.
8379
8380 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
8381
8382         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
8383
8384         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
8385         
8386         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
8387         consistency with the other version on the linear IR branch.
8388
8389         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
8390
8391         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
8392
8393         * iltests.il.in: Add new tests.
8394
8395 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
8396
8397         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
8398
8399         * iltests.il.in: Add new tests.
8400
8401 2008-03-19  Mark Probst  <mark.probst@gmail.com>
8402
8403         * mini.c: Two variables with the same name were declared in
8404         nesting contexts and one wasn't initialized.  Fixed.
8405
8406 2008-03-19  Mark Probst  <mark.probst@gmail.com>
8407
8408         * mini.c: Generic sharing of the initobj instruction.
8409
8410 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
8411
8412         * mini.c: make the test to optimize ldtoken from typeof() more
8413         precise.
8414
8415 2008-03-18  Mark Probst  <mark.probst@gmail.com>
8416
8417         * mini.c: Generic sharing of the initobj instruction for reference
8418         types.
8419
8420 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
8421
8422         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
8423         the mono_breakpoint_clean_code() code to perform bound checks.
8424
8425 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
8426
8427         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
8428         mono_arch_patch_callsite() to include the start of the managed method
8429         to be able to perform bound checks.
8430
8431 2008-03-17  Mark Probst  <mark.probst@gmail.com>
8432
8433         * mini.c: Generic sharing for the isinst instruction.
8434
8435 2008-03-17  Mark Probst  <mark.probst@gmail.com>
8436
8437         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
8438         inssel-long32-mips.brg: Added opcodes for doing indirect calls
8439         with the runtime generic context argument.
8440
8441         * mini.c: Share calls to several types of unsharable methods by
8442         putting the address of the method code in the runtime generic
8443         context and doing an indirect call.
8444
8445         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
8446         to switches.
8447
8448 2008-03-16  Mark Probst  <mark.probst@gmail.com>
8449
8450         * generic-sharing.c: Change due to a change in the runtime genric
8451         context API.
8452
8453 2008-03-15  Martin Baulig  <martin@ximian.com>
8454
8455         * tramp-x86.c
8456         (mono_arch_nullify_class_init_trampoline): Add call to
8457         mono_breakpoint_clean_code() to make things work when running
8458         inside the debugger.
8459
8460         * tramp-amd64.c
8461         (mono_arch_nullify_class_init_trampoline): Add call to
8462         mono_breakpoint_clean_code() to make things work when running
8463         inside the debugger.
8464
8465 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
8466
8467         * inssel-long.brg (reg): Fix 64 bit build.
8468
8469 2008-03-14  Mark Probst  <mark.probst@gmail.com>
8470
8471         * mini.c, mini.h: Share static generic code by passing it an
8472         implicit argument pointing to the runtime generic context.
8473
8474         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
8475         inssel-long32-mips.brg: New opcodes for calling shared static,
8476         which need to be passed the runtime generic context.
8477
8478         * mini-amd64.c, mini-x86.c: Save the runtime generic context
8479         argument on the stack in the prologue if needed.  New function for
8480         finding the runtime generic context argument from the registers
8481         saved by the trampoline.
8482
8483         * mini-amd64.h, mini-x86.h: Specify which register to use for the
8484         runtime generic context argument.
8485
8486         * tramp-amd64.c: Also restore the register used for the runtime
8487         generic context argument.
8488
8489         * mini-trampoline.c: Resolve shared static calls by consulting the
8490         runtime generic context via the new argument.
8491
8492         * generic-sharing.c: Add an argument to sharability-checking
8493         functions that specifies whether type variables should be treated
8494         as sharable type arguments.
8495
8496         * inssel-x86.brg: Removed a superfluous, buggy rule.
8497
8498         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
8499         to switches.
8500
8501 2008-03-14  Martin Baulig  <martin@ximian.com>
8502
8503         * debug-debugger.c (main_thread_handler): Call
8504         mono_runtime_run_main() without sending any notifications.
8505
8506         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
8507
8508 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
8509
8510         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
8511
8512 2008-03-14  Mark Probst  <mark.probst@gmail.com>
8513
8514         * tramp-x86.c: Fixed register restore offsets in the trampoline
8515         code for ECX and EDX.
8516
8517 2008-03-12  Geoff Norton  <gnorton@novell.com>
8518
8519         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
8520         different ucontext_t implementations.
8521         * exceptions-arm.c: Use the above defines to get exceptions working on 
8522         iPhone (based on a patch by Luke Howard lukeh@padl.com)
8523         * mini-arm.c: Implement iPhone icache support (based on a patch by
8524         Luke Howard lukeh@padl.com)
8525
8526 2008-03-12  Mark Probst  <mark.probst@gmail.com>
8527
8528         * mini.c: Enable generic sharing of calls to non-static
8529         non-interface non-generic non-value-type methods.
8530
8531         * mini-trampolines.c: Resolve calls from shared generic code.
8532
8533 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
8534
8535         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
8536
8537         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
8538
8539 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
8540
8541         * mini.c: some fixes for the AOT compiler.
8542
8543 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
8544
8545         * cpu-amd64.md: Add clob:1 to some float opcodes.
8546
8547 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
8548
8549         * mini.h: Added MiniVerifierMode enumeration.
8550
8551         * mini.c: Added mini_verifier_set_mode to control
8552         the usage of the new verifier.
8553
8554         * mini.c (mono_method): Integrated the new verifier.
8555
8556         * driver.c: Extended --security option with validil and
8557         verifiable options to activate the new verifier.
8558
8559 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
8560
8561         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
8562         optimization to ctors taking 0 or 2 arguments too.
8563
8564         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
8565         a bit.
8566
8567         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
8568
8569         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
8570
8571 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
8572
8573         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
8574         non-aot case as well.
8575
8576         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
8577
8578         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
8579         changes.
8580
8581         * aot-compiler.c (encode_patch): Ditto.
8582
8583         * mini.h (G_MININT32): Fix the definition of this.
8584
8585 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
8586
8587         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
8588
8589         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
8590
8591 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
8592
8593         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
8594         methods returning vtypes in registers.
8595         (mono_arch_allocate_vars): Ditto.
8596
8597         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
8598
8599         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
8600
8601         * generics.cs: Add a test from the linear IR branch.
8602
8603         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
8604
8605         * mini.c (inline_method): Cache failed inline attempts.
8606
8607 2008-03-04  Mark Probst  <mark.probst@gmail.com>
8608
8609         * mini.c: For shared methods of generic classes put the location
8610         of "this" into the MonoGenericJitInfo.
8611
8612         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
8613         register out of a MonoContext by register number.  Add the generic
8614         sharing context as an argument to mono_arch_find_this_argument().
8615
8616         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
8617         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
8618         for new arch function.
8619
8620         * mini-exception.c: Handle open exception clauses in shared
8621         generic code.
8622
8623         * mini-trampolines.c: Supply additional argument to
8624         mono_arch_find_this_argument().
8625
8626 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
8627
8628         * Makefile.am (regtests): Run the bench.exe tests last.
8629
8630 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
8631
8632         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
8633         a bit.
8634
8635 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
8636
8637         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
8638         with MS.
8639
8640         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
8641         
8642         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
8643
8644         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
8645         whose class has no cctor.
8646
8647         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
8648
8649 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
8650
8651         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
8652         unverified.
8653
8654 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
8655
8656         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
8657         to be in sync with the code on the linear IR branch.
8658
8659         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
8660
8661         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
8662
8663 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
8664
8665         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
8666
8667         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
8668
8669         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
8670
8671         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
8672
8673         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
8674         
8675         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
8676         body.
8677
8678 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
8679
8680         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
8681         OP_LOADR4_MEMBASE emission.
8682
8683         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
8684         (mono_spillvar_offset_float): Ditto.
8685
8686         * mini-mips.c (mono_arch_emit_prolog): Ditto.
8687
8688         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
8689         emission.
8690
8691         * basic-long.cs: Add regression tests for them.
8692
8693         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
8694         use.
8695         (mono_arch_allocate_vars): Fix representation of single-precision float
8696         argument.
8697         (mono_arch_output_basic_block): Ditto.
8698
8699         * inssel-mips.brg: Ditto, remove duplicate items.
8700
8701         * mini-mips.c (emit_load_volatile_arguments): New function to handle
8702         arguments of tail calls as on other platforms.
8703         (mono_arch_output_basic_block): Handle tail calls.
8704
8705         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
8706         register.
8707
8708         * objects.cs (test_5_pass_static_struct): Add test for it.
8709
8710         Contributed under MIT/X11 license.
8711
8712 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
8713
8714         * Makefile.am: Use gmcs for compiling the regression tests.
8715
8716         * *.2.cs *.2.il: Rename to *.cs and *.il.
8717
8718 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
8719
8720         * regalloc.h: Make the vassign array smaller.
8721
8722         * mini.c (mini_method_compile): Remove an unused field in cfg.
8723
8724         * mini-codegen.c: Add a bunch of micro optimizations.
8725
8726 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
8727
8728         * regalloc.h: Remove some unused fields.
8729
8730 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
8731
8732         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
8733
8734         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
8735
8736 2008-02-22  Mark Probst  <mark.probst@gmail.com>
8737
8738         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
8739
8740         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
8741         trampoline: Fetch an entry from the runtime generic context.  If
8742         it's NULL, jump to the actual trampoline to fill the runtime
8743         generic context.  Otherwise, return it.
8744
8745         * mini.c: Call the lazy fetch trampoline to get entries out of the
8746         runtime generic context.
8747
8748         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
8749         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
8750         tramp-sparc.c: Stubs for the lazy fetch trampoline.
8751
8752 2008-02-21  Mark Probst  <mark.probst@gmail.com>
8753
8754         * mini.c: Fetch data out of the extensible part of the runtime
8755         generic context instead of calling a helper function.
8756
8757         * generic-sharing.c: Some functions moved into
8758         metadata/generic-sharing.c.  Helper function for fetching other
8759         types now checks and asserts against extensible rgctx (just for
8760         debugging purposes - the helper function isn't called anymore
8761         unless for debugging).
8762
8763 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
8764
8765         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
8766         for tail calls up to the point that the tests in iltests.exe run. Also add a
8767         dummy CKFINITE implementation.
8768         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
8769         needed for trampoline LMF frames.
8770
8771         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
8772         trampoline LMF frames.
8773
8774 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
8775
8776         * mini.c (inline_method): clean any pending loader error when inlining fail.
8777         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
8778
8779 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
8780
8781         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
8782
8783         * aot-runtime.c (decode_patch_info): Ditto.
8784
8785         * mini.c (mono_resolve_patch_target): Ditto.
8786         
8787         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
8788         icall wrappers.
8789
8790         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
8791         
8792         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
8793         if it references an icall address.
8794
8795 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
8796
8797         * cpu-s390x.md: Remove some more unused opcodes.
8798         
8799         * cpu-s390x.md: Remove some unused opcodes.
8800
8801         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
8802         mono_op_imm_to_op ().
8803
8804         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
8805         instead of a switch statement.
8806         
8807         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
8808         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
8809
8810         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
8811         
8812         * mini-codegen.c: Remove unused mono_regstate2_... functions.
8813
8814         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
8815         -1.
8816
8817 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
8818
8819         * driver.c (mono_main): Improve error reporting when an assembly cannot be
8820         opened. Fixes #362607.
8821
8822         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
8823
8824         * iltests.il.in: Add a test for static methods in interfaces.
8825
8826 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
8827
8828         * genmdesc.c (build_table): Fix a crash on older glib versions.
8829
8830         * cpu-sparc.md: Remove some unused opcodes.
8831         
8832         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
8833         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
8834
8835         * cpu-amd64.md: Remove some unused opcodes.
8836
8837         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
8838         like the other opcodes.
8839
8840 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
8841
8842         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
8843
8844         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
8845
8846         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
8847         variables 'cfg' instead of 'm' for consistency.
8848
8849         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
8850
8851         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
8852         argument holding the vtype return address, to avoid the ambigious use of
8853         cfg->ret for this purpose.
8854
8855         * mini.c (NEW_RETLOADA): Use vret_addr if set.
8856
8857         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
8858         
8859         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
8860         new mono_print_ins () function which only takes one argument.
8861
8862 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
8863
8864         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
8865         macro arguments.
8866
8867 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
8868
8869         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
8870
8871         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
8872
8873         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
8874         opcodes and other small changes.
8875
8876         * mini-ops.h: Add some new opcodes from the linear IR branch.
8877
8878         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
8879
8880         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
8881         opcodes, use the REG_MEMBASE opcodes instead.
8882         
8883         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
8884         opcodes, use the REG_MEMBASE opcodes instead.
8885         
8886         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
8887         linear IR branch.
8888
8889         * mini.c (mono_op_imm_to_op): New helper function.
8890
8891         * mini-ops.h: Add some opcodes from linear IR branch.
8892
8893 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
8894
8895         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
8896         <tsv@solvo.ru>.
8897
8898 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
8899
8900         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
8901         OP_ICONV_TO_R4/R8.
8902
8903         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
8904
8905 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
8906
8907         * aot-compiler.c (emit_method_code): Add an assert.
8908
8909         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
8910         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
8911         methods.
8912
8913 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
8914
8915         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
8916         some load/store opcodes so they are consistent. 
8917         (mono_arch_emit_prolog): Simplify some code.
8918
8919         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
8920
8921         * objects.cs: Add tests for large argument offsets on ARM.
8922
8923         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
8924         stack offsets. Fixes #359651.
8925
8926         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
8927
8928         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
8929
8930         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
8931
8932         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
8933
8934         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
8935
8936         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
8937         rid of CEE_CONV_R_UN.
8938
8939         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
8940
8941 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
8942
8943         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
8944
8945         * mini.c (mono_normalize_opcodes): Add some more opcodes.
8946
8947         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
8948
8949         * cpu-amd64.md: Remove some unused opcodes.
8950
8951         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
8952
8953         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
8954
8955         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
8956         arch specific functions for its parts. Call the peephole pass after local
8957         regalloc so the prolog can compute a more accurate max_offset.
8958         
8959         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
8960         the corresponding OP_I/OP_L opcodes.
8961
8962         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
8963
8964         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
8965
8966 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
8967
8968         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
8969         as they are handled in mini.c.
8970
8971         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
8972         
8973         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
8974         case since it is handled in mini.c.
8975
8976         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
8977
8978         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
8979
8980         * *.c: Use the new opcodes in the IR and back end code.
8981
8982         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
8983
8984         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
8985
8986 2008-02-06  Mark Probst  <mark.probst@gmail.com>
8987
8988         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
8989         an assert because it has a race condition.
8990
8991 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
8992
8993         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
8994
8995         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
8996
8997         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
8998
8999         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
9000         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
9001
9002 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
9003
9004         * cpu-amd64.md (move): Correct the maximum size of move.
9005
9006 2008-02-05  Mark Probst  <mark.probst@gmail.com>
9007
9008         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
9009         the generic class init trampoline to return quickly if the class
9010         is already inited.
9011
9012 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
9013
9014         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
9015         issues where an 32 bit callsite cannot be patched by a 64 bit address.
9016
9017 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
9018
9019         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
9020         branch.
9021
9022 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
9023
9024         * objects.cs: Add some soft-float tests.
9025
9026         * mini.c: Fix a couple more soft-float issues.
9027
9028         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
9029
9030         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
9031         avoid a REX prefix.
9032
9033 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
9034
9035         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
9036         exception happens while compiling a virtual method.
9037
9038 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
9039
9040         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
9041         
9042         * mini-sparc.c: Fix build.
9043
9044         * mini-sparc.c (get_call_info): Add support for generic sharing.
9045
9046         * mini-exceptions.c: Add a FIXME.
9047
9048 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
9049
9050         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
9051         altstack handling code.
9052
9053         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
9054         
9055         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
9056
9057         * mini-s390.c: Add support for generic sharing.
9058
9059         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
9060         Fix CAS on s390.
9061         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
9062
9063         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
9064
9065         * mini-s390x.c: Add support for generic sharing.
9066         
9067         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
9068         Fix CAS on ia64.
9069         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
9070
9071         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
9072         can be used since it takes a 16 bit signed immediate.
9073
9074         * inssel-s390x.brg: Fix OP_SETRET.
9075
9076         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
9077
9078         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
9079
9080         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
9081
9082         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
9083
9084         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
9085         in one place.
9086
9087         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
9088         stuff.
9089
9090         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
9091         of the unused mono_arch_patch_delegate_trampoline stuff.
9092
9093 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
9094
9095         * basic-long.cs: Move the fp related tests to basic-float.cs.
9096
9097         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
9098
9099         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
9100
9101         * basic-calls.cs: Add a test for proper float argument passing.
9102
9103         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
9104         if the context corresponds to an exception received through a signal.
9105
9106         * exceptions.cs: Add a test for nullref handling at the start of a try
9107         clause.
9108
9109         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
9110
9111         * jit-icalls.c (mono_break): New JIT icall.
9112
9113         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
9114
9115         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
9116
9117 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * cpu-*.md: Get rid of unused opcodes.
9120
9121         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
9122
9123         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
9124         by all platforms.
9125
9126         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
9127         define.
9128
9129         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
9130         the arch independent trampoline code in mini-trampolines.c.
9131
9132         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
9133
9134         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
9135
9136         * mini-s390.h: Remove an unused define.
9137         
9138         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
9139         the arch independent trampoline code in mini-trampolines.c.
9140
9141         * mini-arm.c (mono_arch_emit_prolog): Fix build.
9142
9143 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
9144
9145         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
9146
9147         * mini-s390.c (mono_arch_emit_prolog): Fix build.
9148
9149         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
9150
9151         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
9152
9153         * cpu-amd64.md: Use smaller sizes for int opcodes.
9154
9155         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
9156
9157         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
9158         objects.cs.
9159
9160         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
9161         debugging.
9162
9163         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
9164         instead of though a pointer to save an indirection when accessing elements of
9165         the array.
9166
9167         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
9168         some typos.
9169         (NOT_IMPLEMENTED): New helper macro.
9170         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
9171         of a bb.
9172
9173         * *.c: Use the new helper macro.
9174
9175 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
9176
9177         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
9178
9179 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
9180
9181         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
9182         stack slots.
9183
9184 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
9185
9186         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
9187         profiling is enabled.
9188         
9189         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
9190         the end.
9191         (mono_arch_emit_prolog): Add more first bblock optimizations.
9192
9193         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
9194         in order if possible.
9195         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
9196         bblock, since the arguments are still in their original registers.
9197
9198         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
9199
9200 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
9201
9202         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
9203         as well.
9204
9205         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
9206         offset 0.
9207
9208         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
9209
9210         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
9211         process async exceptions received while in unmanaged code.
9212
9213         * mini.c (mini_init): Install a callback with the runtime which will be called
9214         when a thread receives an async exception while in unmanaged code.
9215
9216         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
9217
9218         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
9219
9220 2008-01-16  Wade Berrier  <wberrier@novell.com>
9221
9222         * cpu-g4.md:
9223         * cpu-arm.md:
9224         * cpu-s390x.md:
9225         fix build
9226
9227 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
9228
9229         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
9230         compilation with sun cc.
9231
9232         * cpu-*.md: Fix the build.
9233
9234         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
9235
9236         * mini-amd64.h: Add some comments to the MonoLMF structure.
9237
9238         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
9239         
9240         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
9241         in the LMF structure if possible. This saves two instructions in the
9242         managed->native wrappers.
9243
9244         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
9245
9246 2008-01-16  Mark Probst  <mark.probst@gmail.com>
9247
9248         * generic-sharing.c: New type argument lookup code which uses the
9249         runtime generic context template.
9250
9251 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
9252
9253         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
9254
9255         * mini-arm.c (add_general): Fix arm eabi parameter passing.
9256         (mono_arch_output_basic_block): Fix localloc implementation.
9257
9258         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
9259
9260         * mini-ia64.c (peephole_pass): Fix ia64 build.
9261
9262         * mini-amd64.c (peephole_pass): Fix a warning.
9263         
9264         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
9265         at a constant offset from sp/fp.
9266
9267         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
9268         instead of obtaining it from *lmf in the managed method case.
9269
9270 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
9271
9272         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
9273
9274 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
9275
9276         * mini.h (MonoInstList): New type.
9277         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
9278         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
9279         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
9280         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
9281         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
9282         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
9283         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
9284         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
9285         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
9286         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
9287         MONO_INST_LIST_FOR_EACH_ENTRY,
9288         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
9289         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
9290         mono_inst_list_first, mono_inst_list_last,
9291         mono_inst_list_next, mono_inst_list_prev): New instruction
9292         list handling interfaces.
9293         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
9294         list head 'ins_list'.
9295         (MonoInst): Replace next pointer with list head 'node'.
9296         (MonoCallInst): Make 'out_args' a MonoInstList.
9297         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
9298         (MonoCompile): Delete reverse_inst_list and
9299         reverse_inst_list_len.
9300         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
9301         mono_arch_lowering_pass, mono_arch_local_regalloc,
9302         mono_arch_output_basic_block, mono_arch_emit_prolog):
9303         Convert to new instruction lists.
9304         (insert_after_ins): Delete.
9305         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
9306         instruction lists.
9307         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
9308         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
9309         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
9310         mono_emulate_opcode, mono_emit_load_got_addr,
9311         inline_method, mono_method_to_ir, mono_print_bb_code,
9312         print_dfn, decompose_pass, nullify_basic_block,
9313         replace_out_block_in_code, remove_block_if_useless,
9314         merge_basic_blocks, move_basic_block_to_end,
9315         try_unsigned_compare, optimize_branches, mono_print_code,
9316         mini_select_instructions, remove_critical_edges): Likewise.
9317         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
9318         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
9319         mono_arch_output_basic_block, mono_arch_emit_prolog):
9320         Likewise.
9321         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
9322         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
9323         mono_arch_output_basic_block): Likewise.
9324         (inst_list_prepend, insert_after_ins): Delete.
9325         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
9326         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
9327         instruction lists.
9328         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
9329         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
9330         mono_arch_emit_prolog): Likewise.
9331         * cfold.c (mono_constant_fold): Likewise.
9332         * liveness.c (visit_bb, mono_analyze_liveness,
9333         optimize_initlocals): Likewise.
9334         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
9335         * graph.c (mono_draw_code_cfg): Likewise.
9336         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
9337         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
9338         mono_ssa_cprop): Likewise.
9339         * abcremoval (get_relations_from_previous_bb, process_block):
9340         Likewise.
9341         * local-propagation (mono_cprop_invalidate_values,
9342         mono_local_cprop_bb): Likewise.
9343         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
9344         peephole_pass, mono_arch_output_basic_block,
9345         mono_arch_emit_prolog): Likewise.
9346         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
9347         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
9348         mono_arch_emit_prolog): Likewise.
9349         (insert_after_ins): Delete.
9350         * aliasing.c (print_code_with_aliasing_information,
9351         mono_build_aliasing_information, mono_aliasing_deadce):
9352         Convert to new instruction lists.
9353         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
9354         peephole_pass, NEW_INS, mono_arch_lowering_pass,
9355         mono_arch_local_regalloc, mono_arch_output_basic_block):
9356         Likewise.
9357         (insert_after_ins): Delete.
9358         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
9359         peephole_pass, mono_arch_output_basic_block): Convert to
9360         new instruction lists.
9361         * mini-codegen (InstList, inst_list_prepend,
9362         insert_after_ins): Delete.
9363         (insert_before_ins, get_register_force_spilling,
9364         get_register_spilling, free_up_ireg, free_up_reg,
9365         create_copy_ins, create_spilled_store, alloc_int_reg,
9366         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
9367         to new instruction lists.
9368         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
9369         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
9370         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
9371         (insert_after_ins): Delete.
9372         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
9373         mono_arch_local_regalloc, mono_arch_output_basic_block,
9374         mono_arch_call_opcode): Convert to new instruction lists.
9375         (insert_after_ins): Delete.
9376         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
9377         peephole_pass, mono_arch_output_basic_block,
9378         mono_arch_emit_prolog): Convert to new instruction lists.
9379
9380 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
9381
9382         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
9383
9384         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
9385         Fixes #353182.
9386
9387         * Makefile.am (version.h): Make this work with non-bash shells.
9388
9389 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
9390
9391         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
9392
9393 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
9394
9395         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
9396         the InitializeArray optimization.
9397
9398 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
9399
9400         * mini.c driver.c: Don't include os/gc_wrapper.h.
9401
9402 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
9403
9404         * mini.c (print_jit_stats): Print GC statistics if available.
9405
9406 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
9407
9408         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
9409
9410 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
9411
9412         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
9413
9414 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
9415
9416         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
9417         
9418         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
9419
9420         * driver.c (mono_main): Ditto.
9421
9422 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
9423
9424         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
9425
9426         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
9427         in the vtable can't be encoded.
9428         (compile_method): Ditto.
9429
9430 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
9431
9432         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
9433         defined.
9434
9435         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
9436         lmf->rbp.
9437
9438         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
9439         the top LMF entry belongs to the current method.
9440
9441         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
9442
9443 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
9444
9445         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
9446         
9447         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
9448
9449         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
9450
9451         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
9452
9453         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
9454
9455         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
9456         implementation.
9457
9458         * basic-float.cs: Add an ulong->double cast test.
9459
9460 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
9461
9462         * mini.c (mono_method_to_ir): Fix a warning.
9463
9464 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
9465
9466         * mini-ops.h: Add OP_SWITCH.
9467
9468         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
9469         CEE_SWITCH in back-end code, use OP_SWITCH instead.
9470
9471 2007-12-11  Geoff Norton  <gnorton@novell.com>
9472
9473         * mini-s390x.c: Minor change to the MAX() define to allow
9474         it to compile with other gcc versions.
9475
9476 2007-12-11  Geoff Norton  <gnorton@novell.com>
9477
9478         * cpu-s390x.md:
9479         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
9480
9481 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
9482
9483         exceptions-arm.c (mono_arch_get_restore_context): Restore
9484         the frame pointer.
9485
9486         exceptions-arm.c (throw_exception): Save the frame pointer.
9487         This is a partial fix for #323747. Only the client side is
9488         fixed.
9489
9490 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
9491
9492         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
9493         was using an unrelated variable to log the class which
9494         needed the cctor to be called. This was crashing on arm.
9495
9496 2007-12-09  Robert Jordan  <robertj@gmx.net>
9497
9498         * mini-x86.c (mono_arch_emit_epilog):
9499         Consider all kinds of 64-bit types. Fixes #323114.
9500
9501 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
9502
9503         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
9504
9505 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
9506
9507         * mini-amd64.c (peephole_pass): Add a missing instruction check.
9508
9509 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9510
9511         * mini.c: run type ctor before allocating an object, not only
9512         when running it's constructor method (fixes at least part of bug #342507).
9513
9514 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
9515         
9516         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
9517         
9518         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
9519         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
9520         function.
9521
9522         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
9523         mono_generic_class_init_trampoline () the same as it is done with the other
9524         trampolines.
9525
9526         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
9527         aot-runtime.c aot-compiler.c: Implement AOT support.    
9528
9529 2007-12-07  Mark Probst  <mark.probst@gmail.com>
9530
9531         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
9532         build for archs which don't have the vtable trampoline defined
9533         yet.
9534
9535 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
9536
9537         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
9538
9539         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
9540
9541         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
9542
9543         * tramp-<ARCH>.c: Use the new helper function.
9544
9545 2007-12-07  Mark Probst  <mark.probst@gmail.com>
9546
9547         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
9548         trampoline call, which takes a vtable argument.
9549
9550         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
9551         OP_TRAMPCALL_VTABLEs like other calls.
9552
9553         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
9554         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
9555         call.  Implemented a support function which fetches the vtable
9556         from a register set.
9557
9558         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
9559         Implemented a generic class init trampoline, using the
9560         OP_TRAMPCALL_VTABLE opcode.
9561
9562         * mini.c: Implemented static field access when sharing generic
9563         code.  This implies initing the class using the new
9564         OP_TRAMPCALL_VTABLE call.
9565
9566 2007-12-07  Mark Probst  <mark.probst@gmail.com>
9567
9568         * mini.c: Don't compile methods with sharing enabled if their
9569         classes are disabled for sharing.
9570
9571 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
9572
9573         * inssel.brg: Add a missing sign extension to the GETCHR and array access
9574         opcodes. Fixes #346563.
9575
9576         * objects.cs: Add a new test.
9577
9578         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
9579
9580         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
9581         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
9582
9583 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
9584
9585         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
9586
9587 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
9588
9589         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
9590         code stream.
9591
9592 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
9593
9594         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
9595
9596         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
9597         optimization in the AOT case.
9598         
9599 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
9600
9601         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
9602         
9603         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
9604
9605         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
9606
9607         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
9608
9609         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
9610         is created by the inlined delegate ctor.
9611
9612         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
9613
9614         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
9615
9616 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
9617
9618         * cpu-x86.md: Fix the length of ckfinite.
9619
9620 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
9621
9622         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
9623         
9624         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
9625         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
9626
9627         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
9628
9629         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
9630         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
9631
9632 2007-11-28  Martin Baulig  <martin@ximian.com>
9633
9634         * mini-x86.c
9635         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
9636         after creating the trampoline.
9637
9638 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
9639
9640         * aot-runtime.c (load_aot_module): Check runtime version if needed.
9641
9642         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
9643         the same version.
9644
9645         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
9646         instead of the calling method to help AOT.
9647
9648         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
9649
9650 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
9651
9652         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
9653         is defined.
9654
9655 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
9656
9657         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
9658         
9659         * aot-compiler.c (compile_method): Correct check for generic method definitions.
9660         (encode_method_ref): No need to handle generic method definitions specially.
9661
9662         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
9663
9664         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
9665         decode_klass_info.
9666
9667         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
9668         encode_klass_info.
9669         (compile_method): Enable generic sharing.
9670
9671 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
9672
9673         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
9674         (mini_method_compile): Add preliminary support for AOTing shared generic code.
9675
9676         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
9677         generic code.
9678
9679         * mini-trampolines.c: Fix a warning.
9680
9681         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
9682         NEW_PCONST.
9683         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
9684         (generic_class_is_reference_type): Remove unused function.
9685
9686         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
9687         in the generic vtable trampoline case.
9688
9689         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
9690         
9691         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
9692         return an AOT method based on a vtable slot.
9693
9694         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
9695
9696         * mini.c (mini_get_vtable_trampoline): Export this.
9697
9698 2007-11-22  Martin Baulig  <martin@ximian.com>
9699
9700         * debug-debugger.h
9701         (MonoDebuggerInfo): Move `debugger_version' up.
9702
9703 2007-11-22  Martin Baulig  <martin@ximian.com>
9704
9705         * mini-amd64.c
9706         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
9707
9708         * mini-trampolines.c
9709         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
9710         after compiling the method.
9711
9712 2007-11-20  Martin Baulig  <martin@ximian.com>
9713
9714         * debug-mini.c
9715         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
9716         (mono_debugger_remove_breakpoint): Likewise.
9717         (mono_debugger_check_breakpoints): Likewise.
9718
9719         * debug-debugger.c: Implement the new breakpoint interface here.
9720
9721 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
9722
9723         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
9724         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
9725
9726         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
9727
9728 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
9729
9730         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
9731
9732         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
9733         mini.c.
9734
9735         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
9736         mini.c.
9737
9738         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
9739         returning a vtype in a register.
9740
9741         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
9742         here from the arch specific code.
9743
9744         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
9745         mini.c.
9746
9747         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
9748         (mono_arch_emit_prolog): Increment maximum prolog size.
9749
9750         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
9751         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
9752
9753         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
9754         MonoGenericSharingContext.
9755
9756         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
9757         MonoGenericSharingContext. Allocate memory from the cfg mempool.
9758
9759 2007-11-15  Mark Probst  <mark.probst@gmail.com>
9760
9761         * mini.c, mini.h, generic-sharing.c: Functions for producing code
9762         which extract fields out of the runtime generic context.  Full
9763         sharing of the NEWARR opcode.
9764
9765 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
9766
9767         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
9768         --enable-minimal=ssa.
9769
9770 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
9771
9772         * mini-trampolines.c (mono_delegate_trampoline): Update after 
9773         mono_marshal_get_delegate_invoke () signature change.
9774
9775 2007-11-13  Mark Probst  <mark.probst@gmail.com>
9776
9777         * mini.c: Removed the shared context in favor of the generic
9778         sharing context.  Allocate the MonoJitInfo structure with room for
9779         the generic sharing context if it's needed.
9780
9781         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
9782         domain-internals.h now.
9783
9784         * mini-x86.c: Pass the generic sharing context to get_call_info ().
9785
9786         * generic-sharing.c: Several changes for working without a shared
9787         context and instead operating on open types instead.
9788
9789 2007-11-12  David S. Miller  <davem@davemloft.net>
9790
9791        * inssel-sparc.brg: Fix double instruction emit.
9792
9793 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
9794
9795         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
9796         Get/Set/Address methods.
9797         
9798         * mini.c debug-debugger.c mini-trampolines.c: Update after 
9799         mono_marshal_get_delegate_invoke signature change.
9800
9801 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
9802
9803         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
9804         This can happens with dynamic methods. Fixes the other bug in #322722.
9805
9806 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
9807
9808         * tramp-arm.c (mono_arch_patch_callsite): Support patching
9809         BX call sequence.
9810
9811         * mini-arm.c (arm_patch): Implement patching of BX call
9812         sequence. Fixes one of the bugs in #322722.
9813
9814 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
9815
9816        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
9817        under Linux.  We only need to flush every 32-byte cache line.    
9818
9819 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
9820
9821         * mini.c:
9822         move_basic_block_to_end: Add branches when needed, eventually creating
9823         a new BB.
9824         optimize_branches: added a parameter that tells if it's ok to create
9825         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
9826         and avoid calling move_basic_block_to_end when it's not ok.
9827         Fixes bug 318677.
9828
9829 2007-11-07  Mark Probst  <mark.probst@gmail.com>
9830
9831         * mini.c: Abort inlining call to InitializeArray if something
9832         looks wrong.  Let the icall handle it, which now has proper safety
9833         checks.
9834
9835 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
9836
9837         * mini.c (mono_spill_call): add support for soft-float.
9838
9839         * mini.c (mono_method_to_ir): add support for soft-float
9840         to inlined functions that return float.
9841
9842         * mini.c (mono_method_to_ir): add support for soft-float
9843         to cee_stsfld opcode on float fields.
9844
9845 2007-11-05  Geoff Norton  <gnorton@novell.com>
9846
9847         * mini-x86.h: Fix the structure access for X86 Leopard.
9848
9849
9850 2007-11-05  Martin Baulig  <martin@ximian.com>
9851
9852         * mini-trampolines.c
9853         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
9854         after compiling the method to notify the debugger.
9855
9856 2007-11-05  Martin Baulig  <martin@ximian.com>
9857
9858         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
9859
9860 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
9861
9862         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
9863         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
9864
9865 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
9866
9867         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
9868         native-to-managed wrappers.
9869         
9870 2007-11-01  Geoff Norton  <gnorton@novell.com>
9871
9872         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
9873         members.
9874
9875 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
9876
9877         * mini.c, mini-x86.c: when getting back from unmanaged code
9878         to managed via a marshaled delegate we also need to set the
9879         right domain.
9880
9881 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
9882
9883         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
9884         for amd64.
9885
9886 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
9887
9888         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
9889         let the debugger or other external agents to tell the JIT when
9890         a sw breakpoint has been inserted in the code that the JIT needs
9891         to be able to inspect.
9892
9893 2007-10-31  Martin Baulig  <martin@ximian.com>
9894
9895         * debug-debugger.h
9896         (MonoDebuggerInfo): Remove `runtime_class_init'.
9897
9898 2007-10-30  Martin Baulig  <martin@ximian.com>
9899
9900         * debug-mini.h
9901         (mono_debugger_thread_created): Added `MonoThread *' argument.
9902         (mono_debugger_extended_notification): New public method.
9903         (mono_debugger_trampoline_compiled): New public method.
9904
9905         * debug-mini.c
9906         (MonoDebuggerThreadInfo): Added `thread' and
9907         `extended_notifications' fields.
9908
9909         * debug-debugger.c
9910         (debugger_executable_code_buffer): New static variable.
9911
9912         * debug-debugger.h
9913         (MonoDebuggerInfo): Added `executable_code_buffer',
9914         `executable_code_buffer_size', `breakpoint_info_area',
9915         `breakpoint_table' and `breakpoint_table_size'.
9916
9917 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
9918
9919         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
9920         that IP  either is an unused value or the vtable pointer. IMT 
9921         calls use vtable + offset now. Reduced by almost half the size
9922         of IMT entries.
9923
9924 2007-10-26  Jonathan Chambers <joncham@gmail.com>
9925
9926         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
9927         defines to access param registers. Replace long usage with
9928         gsize as sizeof(long) != sizeof(void*) on Win64.
9929
9930         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
9931         on Win64. Fix intrinsic, use _AddressOfReturnAddress
9932         instead of non-existant _GetAddressOfReturnAddress.
9933
9934         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
9935         param registers. Save/restore %rdi and %rsi in MonoLMF.
9936
9937         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
9938         param registers. Modify (throw_exception) signature to take 
9939         %rdi and %rsi on Win64. 
9940
9941         Code is contributed under MIT/X11 license.
9942
9943 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9944
9945         * helpers.c: unlink debugging output files.
9946
9947 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
9948
9949         * mini.c: Move mono_create_ftnptr () to object.c.
9950
9951 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9952
9953         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
9954         optional. This function can now be used to disassemble code generated
9955         outside the JIT such as trampolines and IMT thunks.
9956
9957         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
9958
9959         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
9960         vtable pointer from a ldr instruction.
9961
9962         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
9963         new IMT call sequence.
9964
9965         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
9966         call sequence for interface invocations.
9967
9968         * mini-arm.c (mono_arch_emit_imt_argument): added, required
9969         for imt support. This function is empty since IMT on ARM requires no
9970         special handling on the IR side.
9971
9972         * mini-arm.c (mono_arch_find_imt_method): added, required for
9973         imt support.
9974
9975         * mini-arm.c (mono_arch_find_this_argument): added, required
9976         for imt support.
9977
9978         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
9979         a ldr instruction to load a value stored in the code stream.
9980
9981         * mini-arm.c (mono_arch_build_imt_thunk):added, required
9982         for imt support.
9983
9984
9985 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
9986
9987         * mini.c (mini_init): Install the jump trampoline callback.
9988
9989 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9990
9991         * mini-trampolines.c: handle synchronized methods with the common
9992         vtable trampoline (bug #335601).
9993
9994 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
9995
9996         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
9997
9998         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
9999         64 bit platforms.
10000
10001         * mini-ia64.h mini-ia64.c: Add support for IMT.
10002
10003         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
10004         prolog. Fixes #331958.
10005
10006 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
10007
10008         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
10009
10010 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
10011
10012         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
10013         trampoline.
10014
10015 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
10016
10017         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
10018         trampoline.
10019
10020 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
10021
10022         * mini-x86.c, mini-x86.h: x86 support for the common vtable
10023         trampoline.
10024
10025 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
10026
10027         * mini-trampolines.c: changed the magic rampoline to understand
10028         the common vtable trampoline method: the method to invoke is
10029         determined by the vtable displacement of the call.
10030
10031 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
10032
10033         * mini.c, mini.h: register the common vtable trampoline if the
10034         architecture supports it.
10035
10036 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
10037
10038         * cpu-amd64.md: use the correct max length for tls_get.
10039
10040 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
10041
10042         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
10043         CEE_STELEM_ANY. Fixes #333696.
10044
10045 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
10046
10047         * exceptions-x86.c: provide more graceful handling of the case where
10048         we followed a bogus function pointer from managed code (bug #332866).
10049
10050 2007-10-11  Mark Probst  <mark.probst@gmail.com>
10051
10052         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
10053         replaces the generic_shared flag and will carry more information
10054         in the future.
10055
10056         * generic-sharing.c: Added mini_type_stack_size() which allows
10057         allows open types if given a generic sharing context.
10058         mini_get_basic_type_from_generic() takes a
10059         MonoGenericSharingContext* instead of a MonoCompile* now.
10060
10061         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
10062         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
10063         mini-sparc.c, mini-x86.c: Trivial changes required by the two
10064         changes above.  Just passing arguments through to the right
10065         places.
10066
10067 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
10068
10069         * mini-arm.c: unify the call emission to emit_code_seq().
10070
10071 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
10072
10073         * tramp-arm.c: reduced the trampoline size.
10074
10075 2007-10-10  Mark Probst  <mark.probst@gmail.com>
10076
10077         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
10078         variable handling out of arch-specific code.
10079
10080 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
10081
10082         * mini-arm.c: implemented fast delegate dispatch.
10083
10084 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
10085
10086         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
10087         that fp elimination is turned off if the space required by locals is too
10088         big. Fixes #331958.
10089
10090 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
10091
10092         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
10093         ARM to the new style trampoline.
10094
10095 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
10096
10097         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
10098
10099         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
10100
10101 2007-10-09  Martin Baulig  <martin@ximian.com>
10102
10103         * debug-debugger.h
10104         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
10105         `field_info_offset_offset'.     
10106
10107 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
10108
10109         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
10110         removed more internal usage of the r11 register and made it available
10111         to the register allocator.
10112
10113 2007-10-08  Mark Probst  <mark.probst@gmail.com>
10114
10115         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
10116         when sharing generics and treat type variables as references.
10117
10118 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
10119
10120         * mini-ppc.c: started removing the internal uses of register r11
10121         to eventually allow the register allocator to manage it as an
10122         additional available register.
10123
10124 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
10125
10126         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
10127
10128 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
10129
10130         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
10131         specific trampolines as they are not performance critical as a jump
10132         target (maybe align as before only for AOT code?). This saves about
10133         200 KB of native code on x86 for monodevelop startup.
10134
10135 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
10136
10137         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
10138         monodevelop startup.
10139
10140 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
10141
10142         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
10143
10144         * mini-sparc.h mini-sparc.c: Implement IMT support.
10145
10146         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
10147         its smaller and doesn't clobber sparc_g1.
10148
10149         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
10150
10151 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
10152
10153         * mini-ppc.c: optimized the size of the IMT thunks a bit.
10154
10155 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
10156
10157         * mini-ppc.c: implemented fast delegate invocation.
10158
10159 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
10160
10161         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
10162
10163 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
10164
10165         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
10166         code to the new style trampoline in preparation for IMT support.
10167
10168 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
10169
10170         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
10171         systems already. This also reduces the specific trampiline sizes and
10172         prepares for the use of r12 as the IMT identifier register.
10173
10174 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
10175
10176         * mini-mips.h: endianess fix (simplified from a patch by
10177         Thomas Kunze <thommy@tabao.de>, bug #323737).
10178
10179 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
10180
10181         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
10182         to access ucontext fields and enable netbsd support
10183         (partially from Magnus Henoch <mange@freemail.hu>).
10184
10185 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
10186
10187         * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
10188         use the preprocessor from the CPP env var if it is set.
10189
10190 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
10191
10192         * mini-trampolines.c: fixed an assertion and moved it earlier in the
10193         code, before interface_offset gets used.
10194
10195 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
10196
10197         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
10198         mono_class_setup_vtable () before accessing klass->vtable.
10199
10200 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
10201
10202         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
10203         hackish.
10204
10205 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
10206
10207         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
10208         IMT slots (this saves hundreds of KB of memory in programs like
10209         IronPython and Monodevelop).
10210
10211 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
10212
10213         * mini.c: print the delegate counter.
10214
10215 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
10216
10217         * mini-x86.c: make it easier to enable the debugging code for IMT
10218         slots.
10219
10220 2007-09-28  Martin Baulig  <martin@ximian.com>
10221
10222         * debug-debugger.h
10223         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
10224         `mono_method_klass_offset' and `mono_method_token_offset'.
10225
10226 2007-09-20  Mark Probst  <mark.probst@gmail.com>
10227
10228         * mini.c: First generics sharing implementation.  Can only share
10229         in very simple cases.  If sharing doesn't work it falls back to
10230         dedicated compilation.
10231
10232         * mini.h: Flag in MonoCompile to specify whether generic
10233         compilation is shared.  Flags enum for marking which generic inst
10234         of a context is used.  Prototypes for helper functions.
10235
10236         * generic-sharing.c: Helper functions for generic method sharing.
10237
10238         * optflags-def.h: Optimization flag (gshared) for enabling generic
10239         method sharing added.
10240
10241         * Makefile.am: generic-sharing.c added.
10242
10243 2007-09-19 Daniel Nauck <dna@mono-project.de>
10244
10245         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
10246
10247 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
10248         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
10249         fixes bug 325507.
10250
10251 2007-09-19  Martin Baulig  <martin@ximian.com>
10252
10253         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
10254         mono_debug_cleanup() is now part of mono_cleanup().
10255
10256 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
10257
10258         * driver.c (mono_main): Fix a warning.
10259
10260 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
10261
10262         * aot-compiler.c: Optimize various parts when processing large assemblies.
10263         Fixes ##325568.
10264
10265         * mini.c (mono_patch_info_hash): Improve hash function.
10266
10267 2007-09-14  Jonathan Chambers <joncham@gmail.com>
10268
10269         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
10270         
10271         Code is contributed under MIT/X11 license.
10272
10273 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
10274
10275         * mini.c (mini_init): Fix a leak.
10276
10277         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
10278
10279 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
10280
10281         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
10282
10283 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
10284
10285         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
10286
10287 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
10288
10289         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
10290         variance tests.
10291
10292         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
10293
10294         * mini.c (handle_alloc): Enable managed allocators in AOT code.
10295
10296         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
10297
10298         * aot-runtime.c (decode_patch_info): Ditto.
10299
10300 2007-09-12  Jonathan Chambers <joncham@gmail.com>
10301
10302         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
10303         static case. Cache delegates in architecture specific code, 
10304         based on number of parameters.
10305         
10306         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
10307         in architecture specific code, based on number of parameters.
10308         
10309         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
10310         caching happen in architecture specific code now.
10311         
10312         Code is contributed under MIT/X11 license.
10313
10314 2007-09-12  Jonathan Chambers <joncham@gmail.com>
10315
10316         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
10317         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
10318         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
10319
10320         Code is contributed under MIT/X11 license.
10321
10322 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
10323         * mini.c: (mono_thread_abort) Fixed bug #82416.
10324
10325 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
10326
10327         * mini.: hook the new managed GC allocation feature into the JIT.
10328
10329 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
10330
10331         * mini.c: implementation for the new runtime tls opcode.
10332
10333 2007-09-11  Martin Baulig  <martin@ximian.com>
10334
10335         * debug-debugger.h
10336         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
10337         `mono_method_inflated_offset'.
10338
10339 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
10340
10341         * driver.c mini.h mini.c: Add a new devel command line option for injecting
10342         async exceptions into a method.
10343
10344         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
10345         purpose of testing whenever the unwinder works at every instruction.
10346
10347 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
10348
10349         * mini.c: check accessibility of method used in ldftn (fixes
10350         bug #82635).
10351
10352 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
10353
10354         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
10355
10356         * inssel.brg: Fix a warning.
10357
10358 2007-09-03  Martin Baulig  <martin@ximian.com>
10359
10360         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
10361         now takes the `main_method' as argument.
10362
10363 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
10364
10365         * cpu-sparc.md (endfilter): Add missing src1:i argument.
10366
10367 2007-08-30  Jonathan Chambers <joncham@gmail.com>
10368
10369         * driver.c: include the cil-coff.h header on Windows.
10370         
10371         Code is contributed under MIT/X11 license.
10372
10373 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
10374
10375         * mini.c, driver.c: don't include the cil-coff.h header.
10376
10377 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
10378
10379         * mini.c: flag places that needs fixes fo soft-float support.
10380
10381 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
10382
10383         * mini.h, inssel-float.brg: fix soft-float constant loads on big
10384         endian systems (partially from Dean Jenkins, bug #81924).
10385
10386 2007-08-28  Mark Probst  <mark.probst@gmail.com>
10387
10388         * mini.c (check_linkdemand): Remove embedded reference object in
10389         call to LinkDemandSecurityException.
10390         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
10391         with an IntPtr instead of a reference object.
10392
10393 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
10394
10395         * mini.c (handle_initobj): Handle alignment properly.
10396
10397         * inssel.brg (mini_emit_memset): Ditto. 
10398
10399         * inssel.brg (mini_emit_memcpy): Ditto. 
10400
10401         * inssel-sparc.brg: Ditto.              
10402
10403         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
10404
10405 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
10406
10407         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
10408         exceptions raised in unmanaged code. Fixes part of #82594.
10409
10410 2007-08-24  Mark Probst  <mark.probst@gmail.com>
10411
10412         * mini.c (mono_method_to_ir), declsec.c
10413         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
10414
10415 2007-08-22  Martin Baulig  <martin@ximian.com>
10416
10417         * debug-mini.h
10418         (MonoDebuggerThreadInfo): New typedef.
10419         (mono_debugger_thread_table): New global variable.
10420         (mono_debugger_thread_created): New public function.
10421         (mono_debugger_thread_cleanup): New public function.
10422
10423         * debug-debugger.h
10424         (MonoDebuggerInfo):
10425         - removed `get_current_thread' and `lookup_assembly'.
10426         - removed `data_table'.
10427         - added `thread_table'.
10428
10429         * mini.c
10430         (mono_thread_start_cb): Call mono_debugger_thread_created().
10431         (mono_thread_attach_cb): Likewise.
10432         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
10433         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
10434         initial domain.
10435
10436         * driver.c (mono_main): Move mono_debug_init() up, before calling
10437         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
10438
10439 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
10440
10441         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
10442         together when passing several arguments of type double (gives a small
10443         speedup and saves a few bytes of generated code).
10444
10445 2007-08-20  Jb Evain  <jbevain@novell.com>
10446
10447         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
10448
10449 2007-08-20  Jb Evain  <jbevain@novell.com>
10450
10451         * mini.c (mono_method_to_ir): throw MethodAccessException
10452         and FieldAccessException instead of InvalidProgramException.
10453
10454 2007-08-20  Mark Probst  <mark.probst@gmail.com>
10455
10456         * mini.c: CoreCLR security checks.
10457
10458         * mini.h: Removed MonoSecurityMode (moved to
10459         metadata/security-manager.h) and mono_security_mode global var
10460         (replaced by set/get functions in security-manager.h).
10461
10462         * driver.c: Added "core-clr-test" security mode for testing.  Used
10463         set-function for setting security mode.
10464
10465 2007-08-17  Mark Probst  <mark.probst@gmail.com>
10466
10467         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
10468         the new jit_info_table.
10469
10470         * driver.c: Test code for the new jit_info_table (enabled by the
10471         define MONO_JIT_INFO_TABLE_TEST).
10472
10473 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
10474
10475         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
10476         detection of call <REG> instruction sequence. Fixes build on freebsd.
10477
10478 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
10479
10480         * mini-exceptions.c: Fix a warning.
10481
10482 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
10483
10484         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
10485         stack overflow handling code on amd64 too.
10486
10487         * mini-exceptions.c (mono_setup_altstack): Make this use 
10488         mono_thread_get_stack_bounds ().
10489
10490         * mini-x86.h: Disable sigaltstack on solaris x86.
10491
10492 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
10493
10494         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
10495
10496 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
10497
10498         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
10499
10500 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
10501
10502         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
10503
10504         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
10505
10506 2007-08-03  Neale Ferguson <neale@sinenomine.net>
10507
10508         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
10509         due to alignment.
10510
10511 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
10512
10513         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
10514         to be emitted (bug #82281).
10515
10516 2007-08-01  Martin Baulig  <martin@ximian.com>
10517
10518         Merged the `debugger-dublin' branch.
10519
10520         * debug-debugger.h (MonoDebuggerInfo):
10521         Removed the `old_*' compatibility entries.
10522         Added `debugger_version' and `data_table'.
10523         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
10524         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
10525
10526         * debug-mini.c
10527         (MiniDebugMethodBreakpointInfo): Add `address_list'.
10528         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
10529         instead of a `gconstpointer'.
10530         (mono_debugger_insert_method_breakpoint): Return a
10531         `MonoDebugMethodAddressList *'.
10532
10533 2007-06-28  Martin Baulig  <martin@ximian.com>
10534
10535         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
10536
10537 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
10538
10539         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
10540         __builtin_frame_address () since it is broken on older gcc versions.
10541
10542 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
10543
10544         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
10545         on the stack overflow handling and made the managed stack overflows
10546         catchable in most cases using soft guard pages.
10547         * exceptions-x86.c: added code to restore the protection in the soft
10548         guard pages at the end of exception handling.
10549
10550 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
10551
10552         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
10553
10554 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
10555
10556         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
10557         exception handling.
10558
10559 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
10560
10561         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
10562         signal handling support until it has been ported to the new mechanism.
10563         * mini.c: fixed stack overflow detection and use the new
10564         architecture code  to handle signals on the altstack.
10565
10566 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
10567
10568         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
10569         stack overflows on the alt stack.
10570
10571 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
10572
10573         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
10574         stack overflows on the alt stack.
10575
10576 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
10577
10578         * exceptions-ppc.c: cleanup preparing for altstack support.
10579
10580 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
10581
10582         * exceptions-arm.c: cleanup preparing for altstack support.
10583
10584 2007-07-27  Mark Probst  <mark.probst@gmail.com>
10585
10586         * mini.c (print_jit_stats): Output hazard pointer stats.
10587
10588 2007-07-26  Mark Probst  <mark.probst@gmail.com>
10589
10590         * driver.c, mini.c: Replaced security mode flags with a single
10591         enum variable.
10592
10593 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
10594
10595         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
10596
10597 2007-07-25  Mark Probst  <mark.probst@gmail.com>
10598
10599         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
10600         (which doesn't do anything yet) for activating Core CLR
10601         (Silverlight) security.
10602
10603 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
10604
10605         * mini-codegen.c: work around a possible gcc bug on arm.
10606
10607 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
10608
10609         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
10610         message for platforms that don't support AOT compilation.
10611
10612 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
10613
10614         * mini.h, mini.c, driver.c: temporary smcs hack.
10615
10616 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
10617
10618         * mini-arm.h, mini-arm.c: arm EABI fixes.
10619
10620 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
10621
10622         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
10623         case.
10624
10625         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
10626         trampolines taking a method argument.
10627
10628         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
10629
10630         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
10631         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
10632
10633         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
10634         JIT compilation throws an exception. Fixes #82050.
10635
10636 2007-07-19  Mark Probst  <mark.probst@gmail.com>
10637
10638         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
10639         with the MONO_EXCEPTION_ defines.
10640
10641 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
10642
10643         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
10644         #82117.
10645         
10646         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
10647         the cause of an assertion.
10648
10649 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
10650
10651         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
10652         removed.
10653
10654 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
10655
10656         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
10657         assert. Should fix #82103.
10658
10659 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
10660
10661         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
10662         here too. Fixes #82095.
10663
10664         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
10665         addresses.
10666
10667         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
10668
10669         * mini-amd64.h: Enable IMT for amd64.
10670         
10671         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
10672
10673 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
10674
10675         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
10676
10677 2007-07-12  Mark Probst  <mark.probst@gmail.com>
10678
10679         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
10680         as soon as check_linkdemand sets an exception_type.
10681
10682 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
10683
10684         * mini-x86.c: fixed offsets for IMT call sequence.
10685         * mini-x86.h: enable IMT again.
10686
10687 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
10688
10689         * trace.c (mono_trace_enter_method): Decode MonoType too.
10690
10691         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
10692
10693         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
10694
10695         * mini-amd64.c: Add preliminary IMT implementation.
10696         
10697 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
10698
10699         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
10700         understand the new IMT-base interface invocation (thanks to
10701         Daniel Nauck for the report and the remote debugging session).
10702
10703 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
10704
10705         * mini-x86.c: size and speed optimizations for the IMT bsearch.
10706
10707 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
10708
10709         * Makefile.am (aotcheck): Make this actually use the AOTed code.
10710
10711 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
10712
10713         * mini-trampolines.c: implement AOT IMT support.
10714         * mini-x86.h: enable IMT support for wider testing.
10715
10716 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
10717
10718         * inssel.brg (emit_imt_argument): Add aot support here.
10719
10720         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
10721
10722 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
10723
10724         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
10725         of the IMT implementation, partially from massi, with my
10726         implementation of the bsearch sequence. Disabled by default until
10727         the AOT code is implemented.
10728
10729 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
10730
10731         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
10732
10733         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
10734
10735 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
10736
10737         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
10738         arch-independent IMT JIT code from Massimiliano
10739         Mantione (massi@ximian.com) with small cleanups from me.
10740
10741 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
10742
10743         * Makefile.am: fix svn invocation to get the svn revision to be
10744         independent of the local language (build fix).
10745
10746 2007-07-09  Mark Probst  <mark.probst@gmail.com>
10747
10748         * mini.c (inline_method): Reset cfg->exception_type if the
10749         inlining is aborted.  Fixes: 82049.
10750
10751 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
10752
10753         * mini.c: remove assert from exception handling code when exception_ptr
10754         is not set.
10755
10756 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
10757
10758         * mini.c (mono_codegen): Add an assert.
10759
10760         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
10761         enter and leave code.
10762         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
10763
10764 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
10765
10766         * mini-ppc.c: fixed memory corruption for localloc(0)
10767         (bug #81852).
10768
10769 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
10770         
10771         * mini.c: Fix warnings.
10772
10773 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
10774
10775         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
10776         to emit better double->int conversions.
10777
10778 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
10779
10780         * mini.c: the provided Min/Max optimizations are valid for unisgned
10781         ints.
10782
10783 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
10784
10785         * 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
10786
10787 2007-06-28  Miguel de Icaza  <miguel@novell.com>
10788
10789         * mini.c (mono_running_on_valgrind): Add support for reporting the
10790         method and  its boundaries to valgrind.
10791
10792 2007-06-28  Martin Baulig  <martin@ximian.com>
10793
10794         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
10795
10796 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
10797
10798         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
10799
10800         * generic.2.cs: Add new test case.
10801
10802 2007-06-25  Martin Baulig  <martin@ximian.com>
10803
10804         Merged the `debugger-dublin' branch.
10805
10806         * debug-mini.c
10807         (mono_debugger_insert_method_breakpoint): New public method.
10808         (mono_debugger_remove_method_breakpoint): Likewise.
10809         (mono_debugger_check_breakpoints): New static method.
10810         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
10811
10812         * debug-debugger.h (MonoDebuggerInfo):
10813         Renamed (to keep backward compatibility in the vtable):
10814         `insert_breakpoint' -> `old_insert_breakpoint'.
10815         `remove_breakpoint' -> `old_remove_breakpoint'.
10816         `create_string' -> `old_create_string'.
10817         `lookup_class' -> `old_lookup_class'.
10818         `lookup_type' -> removed; changed into a dummy field.
10819         `lookup_assembly' -> `old_lookup_assembly'.
10820         Added (same functionality, but different signature):
10821         `create_string', `lookup_class', `lookup_assembly'
10822         Added new:
10823         `get_method_addr_or_bpt', `remove_method_breakpoint',
10824         `runtime_class_init'.
10825
10826         * debug-debugger.c: Merged the `debugger-dublin' branch.
10827
10828 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
10829
10830         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
10831         well.
10832         (peephole_pass): Likewise.
10833
10834 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
10835
10836         * driver.c: hopefully make setaffinity work also for ancient
10837         versions of linux.
10838
10839 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
10840
10841         * driver.c : win32 build fix.
10842
10843 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
10844
10845         * driver.c: check for the MONO_NO_SMP env var and bind to a single
10846         processor if it is set.
10847
10848 2007-06-21  Martin Baulig  <martin@ximian.com>
10849
10850         * debug-mini.h: New file.
10851
10852         * debug-mini.c
10853         (mono_debugger_insert_breakpoint_full): Moved here from
10854         ../metadata/mono-debug-debugger.c.
10855         (mono_debugger_remove_breakpoint): Likewise.
10856         (mono_debugger_breakpoint_callback): Likewise.
10857
10858 2007-06-15  Raja R Harinath  <rharinath@novell.com>
10859
10860         * jit-icalls.c (mono_helper_compile_generic_method): Update to
10861         changes in MonoGenericClass.
10862
10863 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
10864
10865         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
10866
10867 2007-06-14  Raja R Harinath  <rharinath@novell.com>
10868
10869         * jit-icalls.c (mono_helper_compile_generic_method): Update to
10870         removal of MonoGenericMethod.
10871
10872 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
10873
10874         * mini-exceptions.c: hooks for the exception events profiling API.
10875
10876 2007-06-14  Randolph Chung  <tausq@debian.org>
10877
10878         * Makefile.ma: Add hppa target.
10879         * mini-arch.h: Include mini-hppa.h
10880         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
10881         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
10882         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
10883
10884 2007-06-14  Randolph Chung  <tausq@debian.org>
10885
10886         * inssel.brg: Add rules for "chained" compare-branch operations so that
10887         a single compare op can affect multiple branches.  Adjust cost for
10888         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
10889         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
10890         cost for some rules so that they can more easily be overridden by
10891         per-arch rules (with fixes from lupus).
10892         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
10893
10894 2007-06-13  Randolph Chung  <tausq@debian.org>
10895
10896         * mini-ops.h: Reorder branch ops so that they match the order of the
10897         corresponding CEE_* ops.  The code expects them this way.
10898         Add new ops for HPPA target.
10899         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
10900
10901 2007-06-13  Randolph Chung  <tausq@debian.org>
10902
10903         * mini-exceptions.c: Handle cases where the stack grows towards
10904         larger addresses.
10905         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
10906
10907 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
10908
10909         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
10910         counter.
10911         * driver.c: explain where a non-matching corlib is found.
10912
10913 2007-06-13  Mark Probst  <mark.probst@gmail.com>
10914
10915         * mini.c (print_jit_stats): Output dynamic code allocation stats.
10916
10917 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
10918
10919         * mini-exceptions.c: Generate a method profile leave event during
10920         an exception to ensure that the profiler gets notified.
10921
10922 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
10923
10924         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
10925         branch.
10926
10927         * cpu-amd64.md: Add long_and/or/xor opcodes.
10928
10929 2007-06-06  Wade Berrier  <wberrier@novell.com>
10930
10931         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
10932         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
10933         length of instruction shr_imm (expected 8, got 10)
10934
10935 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
10936
10937         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
10938
10939 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10940
10941         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
10942         MonoInternalHashTable again (fixed bug in the internal hash table
10943         code).
10944
10945 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10946
10947         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
10948         Have to figure out what makes it crash the SWF regression.
10949
10950 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
10951
10952         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
10953
10954 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
10955
10956         * mini.c: optimize out the type check when storing null in a
10957         reference array.
10958
10959 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10960
10961         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
10962         MonoInternalHashTable.
10963
10964 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
10965
10966         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
10967         signed integer methods.
10968
10969 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
10970
10971         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
10972         permanently since the current approach doesn't work.
10973
10974 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
10975
10976         * inssel.brg (stmt): Only call delegate->invoke_impl if 
10977         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
10978
10979 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
10980
10981         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
10982         the sreg2==rdx case.
10983         
10984         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
10985         account if it contains a rex prefix.
10986         (peephole_pass): Handle OP_FMOVE as well.
10987
10988 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
10989
10990         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
10991         as it causes regressions.
10992
10993 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
10994
10995         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
10996         static case as well.
10997
10998         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
10999
11000         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
11001         (mono_arch_get_this_arg_from_call): Ditto.
11002
11003         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
11004
11005         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
11006         invoke_impl field.
11007
11008         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
11009         (mono_arch_get_this_arg_from_call): Ditto.
11010
11011         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
11012         
11013         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
11014         try to create optimized invoke code and use that for further invocations. 
11015         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
11016
11017         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
11018
11019 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
11020
11021         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
11022         sealed classes or methods.
11023         *devirtualization.cs: tests for the new optimization
11024
11025 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
11026
11027         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
11028         by the update_volatile () function.
11029
11030 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
11031
11032         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
11033         require it.
11034
11035         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
11036
11037 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
11038
11039         * mini.c: Add configure checks for header files.
11040         * mini-x86.c: Add configure checks for header files.
11041         * trace.c: Add configure checks for header files.
11042         * aot-runtime.c: Add configure checks for header files.
11043         * aot-compiler.c: Add configure checks for header files.
11044         * driver.c: Add configure checks for header files.
11045         * mini-codegen.c: Add configure checks for header files.
11046         
11047         Code is contributed under MIT/X11 license.
11048
11049 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
11050
11051         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
11052         icompare_imm -128 + op_iclt. Fixes #81703.
11053
11054 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
11055
11056         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
11057
11058 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
11059
11060         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
11061         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
11062         so that all isinst checks now use "interface_bitmap".
11063
11064 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
11065
11066         * cpu-amd64.md (jmp): Fix a warning.
11067
11068         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
11069
11070         * basic.cs: Add new regression test.
11071
11072         * basic.cs: Remove test which is now in basic-long.cs.
11073
11074         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
11075
11076         * basic-long.cs: Add new test.
11077         
11078 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
11079
11080         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
11081
11082 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
11083
11084         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
11085
11086         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
11087         places.
11088         
11089         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
11090         throwing code a bit.
11091
11092         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
11093         the exception throwing code a bit.
11094
11095         * mini-x86.c (get_call_info): Allocate result from a mempool.
11096
11097 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
11098
11099         * aot-compiler.c (find_typespec_for_class): Fix the assert.
11100
11101         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
11102
11103         * mini.h (MonoCompile): Add 'token_info_hash' field.
11104
11105         * mini.c: Save token->method associations during compilation so the AOT 
11106         compiler can use it.
11107         
11108         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
11109         which reference generic classes and methods.
11110
11111 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
11112
11113         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
11114
11115         * aot-compiler.c (compile_method): Fix a typo in a comment.
11116
11117         * aot-runtime.c (decode_cached_class_info): Skip generic types.
11118
11119         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
11120         everything generic.
11121
11122         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
11123
11124 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
11125
11126         * mini.h (MonoCompile): Add 'args' field.
11127
11128         * mini.c (mono_compile_create_vars): Store variables representing the arguments
11129         into cfg->args.
11130
11131         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
11132
11133 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
11134
11135         * mini.c (mono_compile_get_interface_var): Remove this unused function.
11136
11137         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
11138
11139         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
11140         opcodes for some opcodes.
11141
11142         * mini.h *.brg *.c: Use the new opcodes.
11143
11144 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
11145
11146         * mini.h: Bumped aot revision.
11147
11148         * inssel.brg: modified code generation of type checks for interfaces
11149         to use the new "MonoClass.interface_bitmap" instead of the old
11150         "MonoClass.interface_offsets".
11151
11152 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
11153
11154         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
11155
11156 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
11157
11158         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
11159         64 bit platforms.
11160
11161 2007-04-27  Neale Ferguson <neale@sinenomine.net>
11162
11163         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
11164
11165 2007-04-27  Wade Berrier  <wberrier@novell.com>
11166
11167         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
11168         mini.h) to fix build.
11169
11170 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
11171
11172         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
11173         
11174         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
11175         causes the corlib unit tests to fail.
11176
11177 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
11178
11179         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
11180
11181         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
11182
11183         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
11184         opcodes to the comparison relations.
11185
11186         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
11187         opcodes to their types.
11188         
11189         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
11190
11191         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
11192         it in cfg->arch.cinfo.
11193
11194         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
11195
11196         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
11197         cfg->cil_offset_to_bb.
11198
11199 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
11200
11201         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
11202         created becase of initlocals.
11203
11204 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
11205
11206         * mini-alpha.c cpu-alpha.md: More alpha port work from 
11207         Sergey Tikhonov <tsv@solvo.ru>.
11208
11209 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
11210
11211         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
11212
11213 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
11214
11215         * cpu-s390.md (break): Correct the length of break instruction.
11216
11217 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
11218
11219         * mini.c: fix a couple of soft-float issues and comments.
11220
11221 2007-04-15  Miguel de Icaza  <miguel@novell.com>
11222
11223         * trace.c (is_filenamechar): - is also a filename char.
11224
11225 2007-04-15  Neale Ferguson <neale@sinenomine.net>
11226
11227         * mini-s390.c: Correct checking for enum type in return value processing.
11228
11229 2007-04-14  Raja R Harinath  <rharinath@novell.com>
11230
11231         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
11232         (version.h): Makefile is in the build directory.
11233
11234 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
11235
11236         * mini-amd64.h: fix for assertion failure on Solaris/amd64
11237
11238 2007-04-11  Martin Baulig  <martin@ximian.com>
11239
11240         * mini.c (can_access_member): Fix handling of generic classes;
11241         fixes #81259.
11242
11243 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
11244
11245         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
11246
11247 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
11248
11249         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
11250
11251 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
11252
11253         * mini-codegen.c: make sure the right spill amount is
11254         used for fp or integer registers (fixes the float_sub_spill() on ppc).
11255
11256 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
11257
11258         * mini-ppc.c: fixes for the fp_branch_nan test.
11259
11260 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
11261
11262         * basic.cs: Comment out new test which still fails on ia64.
11263
11264 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11265
11266         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
11267
11268 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
11269
11270         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
11271
11272 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
11273
11274         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
11275         on 64 bit machines. Fixes part of #80738.
11276
11277         * basic.cs: Add regression test.
11278
11279 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
11280
11281         * inssel.brg basic.cs: Revert previous change to fix build.
11282
11283         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
11284         platforms.
11285         
11286         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
11287
11288         * basic.cs: Add new regression test.
11289
11290 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
11291
11292         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
11293         many arguments.
11294
11295 2007-03-16  Neale Ferguson <neale@sinenomine.net>
11296
11297         * cpu-s390x.md: Correct length of break instruction.
11298
11299 2007-03-16  Neale Ferguson <neale@sinenomine.net>
11300
11301         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
11302         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
11303
11304 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
11305
11306         * *.c: Begin WIN64 port.
11307         * mini.c:  Use correct register in profiler.
11308         * mini-amd64.c: No inline assembly on Win64.
11309         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
11310         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
11311         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
11312         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
11313         mono_arch_ip_from_context for Win64.
11314         
11315         Contributed under MIT/X11 license.
11316
11317 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
11318
11319         * exceptions-amd64.c (seh_handler): Ditto.
11320
11321         * exceptions-x86.c (seh_handler): Fix a memory leak.
11322
11323 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
11324
11325         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
11326         mini-s390x.c: fixed peephole optimizations to deal
11327         correctly with 1 and 2 byte reload avoidance.
11328
11329 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
11330
11331         * cpu-s390.md, cpu-s390x.md: update localloc length.
11332
11333 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
11334
11335         * cpu-g4.md: added missing descriptions.
11336
11337 2007-03-14  Miguel de Icaza  <miguel@novell.com>
11338
11339         *  Makefile.am: Add support so the tail tests are not executed on
11340         PowerPC as that is a known limitation of the PowerPC port.
11341
11342 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
11343
11344         * runmdesc.bat:  Move to msvc directory.
11345         
11346 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
11347
11348         * runmdesc.bat:  Run executable that was produced by the current
11349         target and sent via an argument.
11350         
11351 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
11352
11353         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
11354         #81102.
11355
11356         * generics.2.cs: Add regression test.
11357
11358 2007-03-09  Wade berrier  <wberrier@novell.com>
11359
11360         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
11361
11362 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
11363
11364         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
11365         AOT code depends on this.
11366
11367 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
11368
11369         * mini.c: more precise tracking of types in the eval stack
11370         (part of fix for bug #81044).
11371
11372 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
11373
11374         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
11375
11376         * aot-compiler.c (encode_patch): Remove an obsolete comment.
11377
11378 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
11379
11380         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
11381
11382         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
11383
11384 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
11385
11386         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
11387         a pointer on 64 bit systems. Fixes #80190.
11388
11389         * iltests.il: Add new regression test.
11390
11391 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
11392
11393         * mini.c: inline a constant for Environment.IsRunningOnWindows.
11394
11395 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
11396
11397         * trace.c: Remove an erroneous alignemnt check when tracing.
11398           Fixes --trace on OSX86.
11399
11400 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
11401
11402         * mini-$(arch).h: initialize SP in context for all the archs.
11403
11404 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
11405
11406         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
11407         regressions in the thread tests.
11408
11409 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
11410
11411         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
11412         - fixed implementation of LOCALLOC opcode
11413         - implemented non-un compare for floats
11414         - code cleanup
11415         - implementation of FDIV and CKFINITE opcodes
11416         - fixes for latest mono updates
11417         - additional arch opcodes
11418
11419 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
11420
11421         * Makefile.am: simplify and merge rules for cross-compilation.
11422
11423 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
11424
11425         * local-propagation.c: Actually *apply* the fix for bug 80591...
11426
11427 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
11428
11429         * mini-exceptions.c: backuot part of the last change
11430         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
11431
11432 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
11433         * inssel.brg: Fix bug 59286.
11434
11435
11436 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
11437
11438         * mini-exceptions.c: patch from Zoltan to correctly check for
11439         stack boundaries (using the stack register, not the frame register),
11440         fixes bugs #80724, #79717.
11441
11442 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
11443
11444         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
11445         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
11446
11447         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
11448         presence of frame pointer elimination.
11449
11450 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
11451         
11452         * mini-x86.h: NetBSD UCONTEX_REG defines.
11453
11454 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
11455
11456         * inssel-amd64.brg: Fix amd64 build.
11457
11458 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
11459
11460         * mini.h: remove extern to workaround what looks likes gcc bug 26905
11461         on amd64.
11462
11463 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
11464
11465         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
11466         ends.
11467
11468         * mini-<ARCH>.c: Use mono_is_regsize_var ().
11469
11470 2007-01-30 Mark Mason <mason@broadcom.com>
11471
11472            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
11473            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
11474            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
11475            beginning support for CEE_JMP [not quite working yet]
11476            * tramp-mips.c: LMF handling now works
11477         
11478 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
11479
11480         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
11481
11482         * mini.h (NULLIFY_INS): New macro.
11483
11484 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
11485
11486         * mini.c: statistical profiler fix for windows, patch
11487         from Tor Lillqvist (tml@novell.com).
11488
11489 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
11490         * local-propagation.c: Fix bug 80591.
11491
11492 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
11493
11494         * Makefile.am: put back the --export-dynamic option as with
11495         the previous gmodule flags (thanks to Robert Jordan).
11496
11497 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
11498
11499         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
11500
11501         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
11502         simplify and speed up the local register allocator. Also rename some fields
11503         like iassign->vassign.
11504         
11505         * regalloc.c: Remove some functions which are no longer used since their
11506         inlined version is in mini-codegen.c.
11507         
11508         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
11509
11510         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
11511
11512 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
11513
11514         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
11515         narrowing. Fixes #80622.
11516
11517         * iltests.il: Add new regresssion test. 
11518
11519 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
11520
11521         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
11522         debug-debugger.c, debug-debugger.h: warning fixes.
11523         * driver.c: updated copyright year and made it fit in one line.
11524
11525 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
11526
11527         * aot-runtime.c: updated to use mono-dl instead of gmodule.
11528
11529 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
11530
11531         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
11532
11533         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
11534
11535         * iltests.il: Add new test for bug #80507.
11536
11537 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
11538
11539         * mini-arm.h: use soft-float also on vfp for now.
11540
11541 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
11542
11543         * mini.c: fix some more soft-float issues.
11544
11545 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
11546
11547         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
11548
11549 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
11550         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
11551         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
11552         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
11553
11554 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
11555
11556         * mini-arm.c: typo fix.
11557
11558 2007-01-23  Neale Ferguson <neale@sinenomine.net>
11559
11560         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
11561
11562 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
11563
11564         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
11565         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
11566
11567         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
11568
11569         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
11570
11571         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
11572         
11573         * inssel.brg: Fix a warning.
11574
11575         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
11576
11577         * abcremoval.c ssa.c ssapre.c: Update after this change.
11578         
11579         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
11580
11581         * dominators.c (df_set): Use mono_bitset_union_fast.    
11582
11583 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
11584
11585         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
11586         mini-codegen.c: reduce relocations and memory usage for the cpu
11587         description.
11588
11589 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
11590
11591         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
11592
11593         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
11594         to reduce their size.
11595
11596 2007-01-19 Mark Mason <mason@broadcom.com>
11597
11598         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
11599         * mini-mips.c: more configuration macros, support long conditional branches, additional
11600         asserts, fix epilog instrumentation.
11601         * mini-mips.h: use standard stack walk
11602         * cpu-mips.md: increase size of div, rem and conditional branches
11603         
11604 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
11605
11606         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
11607         to cpu spec data.
11608
11609 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
11610
11611         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
11612         (compile_method): Ditto.
11613
11614         * aot-runtime.c (decode_klass_info): Ditto.
11615
11616         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
11617         needed by the code generated by inssel.brg. Also fix a warning.
11618
11619 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
11620
11621         * mini.c: deal with enums that become genericinsts by
11622         being nested in a generic class (bug #79956).
11623
11624 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
11625
11626         * mini.c: match the generic definition to check for
11627         private access with generic types (bug #78431).
11628
11629 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
11630
11631         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
11632         to make life easier for people cross-compiling that insist on not
11633         using scratchbox.
11634
11635 2007-01-17 Mark Mason <mason@broadcom.com>
11636
11637         * inssel-long.brg: patch to deal with mips missing flags
11638         * inssel-long32-mips.brg: implement overflow checks
11639         * insset-mips.brg: implement overflow checks
11640         * mini-mips.h: implement conditional exception handling
11641         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
11642           Remove unused code, minor cleanups.
11643         * exceptions-mips.c: minor cleanups
11644         * mini-ops.h: add mips conditional exception ops
11645         * cpu-mips.md: add mips conditional exception ops
11646
11647         
11648 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
11649
11650         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
11651         to deal with mips missing of flags.
11652
11653 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
11654
11655         * exceptions-ppc.c: execute fault handlers.
11656
11657 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
11658
11659         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
11660
11661 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
11662
11663         * mini.c: handle also floating point values in initialize_array.
11664
11665 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
11666
11667         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
11668         array initialization and make it conditional on the intrins option.
11669
11670 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
11671
11672         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
11673         relocations and put the patch info names close to the enum definition.
11674
11675 2007-01-15 Mark Mason <mason@broadcom.com>
11676
11677         * basic.cs, exceptions.cs: break up large tests to increase debugability.
11678
11679 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
11680
11681         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
11682
11683 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11684
11685         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
11686
11687 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
11688
11689         * Makefile.am: distribute the mips sources.
11690
11691 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
11692
11693         * mini-codegen.h: handle bug #80489 here, by excluding ecx
11694         directly.
11695
11696 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
11697
11698         * cpu-x86.md: back out for now as this triggers other regressions.
11699
11700 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
11701
11702         * cpu-x86.md: force src1 and dest regpair for long shift instructions
11703         to eax:edx, so ecx can't get allocated to them (bug #80489).
11704
11705 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
11706
11707         * mini.c, mini-exceptions.c: enabled running fault handlers
11708         (bug #80469).
11709
11710 2007-01-03  Miguel de Icaza  <miguel@novell.com>
11711
11712         * driver.c: If nothing fail, do not use the string "failed",
11713         because it makes it very annoying to view test result logs on the
11714         web. 
11715
11716 2006-12-30  Miguel de Icaza  <miguel@novell.com>
11717
11718         * debug-debugger.c (mono_debugger_main): Rename "main" to
11719         "main_method" to prevent a warning.
11720
11721         Remove a warning for unused field.
11722
11723 2006-12-28  Martin Baulig  <martin@ximian.com>
11724
11725         * debug-debugger.c
11726         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
11727
11728 2006-12-22  Martin Baulig  <martin@ximian.com>
11729
11730         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
11731         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
11732         seperate `.mdb_debug_info' section, so we can access it from the
11733         debugger even if the binary is stripped.
11734
11735         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
11736         from the `.mdb_debug_info' here to prevent the linker from
11737         removing that section.
11738
11739         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
11740         mdb-debug-info64.s.
11741
11742 2006-12-19  Robert Jordan  <robertj@gmx.net>
11743
11744         * mini-x86: enable the code to return small structures in
11745         registers for FreeBSD as well. Fixes bug #80278.
11746         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
11747
11748 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11749
11750         * mini-x86.c: align the stack when calling the profiler
11751         function instrumenting the prolog (on OSX).
11752
11753 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11754
11755         * mini.c: emit a break opcode where Debugger.Break () is called.
11756
11757 2006-12-13  Miguel de Icaza  <miguel@novell.com>
11758
11759         * mini.c (mono_method_to_ir): Provide useful information on this
11760         assert, to prevent others from debugging like I did.
11761
11762 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
11763
11764         * mini.c: enable code which was incorrectly commented
11765         (bug #80235).
11766
11767 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
11768
11769         * mini-x86.c: enable on OSX, too, the code to return small
11770         structures in registers.
11771
11772 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11773
11774         * mini-x86.c: remove the use of the dynamic code manager here, too.
11775
11776 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11777
11778         * mini.h, debug-debugger.c, tramp-*.c: fixed 
11779         mono_debugger_create_notification_function() to use
11780         mono_global_codeman_reserve () instead of a dynamic code manager.
11781
11782 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
11783
11784         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
11785         ves_array_element_address() jit icall and use a generated
11786         managed method instead (which is about 4 times faster for a rank 3
11787         array access).
11788
11789 2006-11-29  Mark Mason  <mason@broadcom.com>
11790
11791         * basic-calls.cs: additional tests for passing
11792         structures as function arguments.
11793
11794 2006-11-29  Mark Mason  <mason@broadcom.com>
11795
11796         * mini-mips.h: disable custom exception handling
11797         * mini-mips.c: throw/rethrow should use jalr to call
11798         exception stubs.  Fixed bug with passing structures
11799         by value. More support for tracing floating point
11800         functions.
11801
11802 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11803
11804         * mini.c: fixed typo in the soft-float ldind.r4 handling
11805         (bug #80086).
11806
11807 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
11808
11809         * mini.c, mini.h, driver.c: added --runtime command line
11810         option to select a different runtime than the autodetected one.
11811         * jit.h: added API for embedders to initialize with a specific
11812         runtime version.
11813
11814 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
11815
11816         * mini.c: handle also boxing of r4 values (bug #80024).
11817
11818 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11819
11820         * mini-ppc.c: force indirect calls until we reserve
11821         enough address space for all the generated code.
11822
11823 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
11824
11825         * exceptions-arm.c: workaround bugs in the libc definition
11826         of struct ucontext.
11827
11828 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11829
11830         * inssel.brg: fixes from me and Mark Mason.
11831
11832 2006-11-23  Dick Porter  <dick@ximian.com>
11833
11834         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
11835         semaphore display now we've fixed the initial value
11836
11837 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11838
11839         * inssel.brg: partially revert the last change to fix the build.
11840
11841 2006-11-21  Mark Mason  <mason@broadcom.com>
11842
11843         * inssel.brg: Add and use compare-and-branch macros to support
11844         architectures that do not have condition code registers (ie. MIPS).
11845         * *-mips.{c,brg,md}: Fix copyright statements
11846
11847 2006-11-20  Mark Mason  <mason@broadcom.com>
11848
11849         * Makefile.am: remove mini-codegen.c from list of MIPS sources
11850         * mini.c: Allow GET_CONTEXT to be specified by the arch port
11851         * mini.h: Added declaration for mono_print_ins()
11852         * mini-codegen.c: added ins_spec initializer for MIPS
11853         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
11854         vreg to be virtual and hreg to be non-virtual.
11855         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
11856         is not yet working/implemented correctly.
11857         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
11858         non-static, fixup calls to print_ins() from other parts in the file.
11859
11860 2006-11-20  Mark Mason  <mason@broadcom.com>
11861
11862         * basic-calls.cs: added tests for passing structures as arguments
11863         to calls.
11864
11865 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11866
11867         * inssel-long32.brg: optimize signed division by power of two.
11868
11869 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
11870
11871         * mini-arm.c: added support for interworking with thumb code
11872         (mono must be still be built using the ARM instruction encoding).
11873
11874 2006-11-19  Miguel de Icaza  <miguel@novell.com>
11875
11876         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
11877         verifier has different rules for it.   Fixes a few verifier issues
11878         in the test suite.
11879
11880         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
11881         at the end, so people know what happened.
11882
11883 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11884
11885         * brach-opts.c: in optimize_exception_target() make sure we
11886         are in a catch clause (fixes bug #79871).
11887
11888 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11889
11890         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
11891         more soft-float support fixes.
11892
11893 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
11894
11895         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
11896         that are passed half on the stack and half in registers.
11897
11898 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
11899
11900         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
11901         more mips integration work from Mark E Mason 
11902         <mark.e.mason@broadcom.com>.
11903
11904 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
11905
11906         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
11907         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
11908         tramp-mips.c: added sources for the mips port, not
11909         integrated in the build yet. Contributed by
11910         Mark E Mason <mark.e.mason@broadcom.com>.
11911
11912 2006-11-14  Neale Ferguson <neale@sinenomine.net>
11913
11914         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
11915
11916 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11917
11918         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
11919         put the soft-float rules in its own file since it seems to
11920         break s390 compilation.
11921
11922 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
11923
11924         * mini-arm.c: fixed wrnings.
11925
11926 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
11927
11928         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
11929         inssel-arm.brg: ARM support for soft-float.
11930
11931 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
11932
11933         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
11934         loads and stores of 32 bit fp values.
11935
11936 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
11937
11938         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
11939
11940         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
11941         works. Fixes #79852 and #79463.
11942
11943 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11944
11945         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
11946         more soft-float support WIP and fixes.
11947
11948 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
11949
11950         * mini-arm.c: some VFP updates.
11951
11952 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11953
11954         * mini-exceptions.c: 0 is a valid local var offset in some
11955         architectures, don't assert (bug #78508).
11956
11957 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
11958
11959         * exceptions-arm.c: fixed off by one error in stack walk code.
11960
11961 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11962
11963         * mini.h, mini.c: more precise tracking of type load exceptions.
11964
11965 2006-11-03  Robert Jordan  <robertj@gmx.net>
11966
11967         * Makefile.am: [WIN32] Add monow.exe target.
11968         * driver.c: [WIN32] Don't detach the console when debugging.
11969         Fixes bug #79797.
11970         
11971 2006-10-30  Miguel de Icaza  <miguel@novell.com>
11972
11973         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
11974
11975 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
11976
11977         * aot-compiler.c (emit_method_info): Add a case missed earlier.
11978
11979         * driver.c (mini_regression): Fix --regression with AOT.
11980
11981         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
11982
11983 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
11984
11985         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
11986
11987         * mini-sparc.h: Don't use sigaction on sparc/linux.
11988
11989         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
11990
11991         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
11992
11993         * mini-exceptions.c: Add proper include files for getpid ().
11994
11995 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
11996
11997         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
11998         address instead of a MonoJitInfo* to avoid decoding the exception info for the
11999         method.
12000
12001         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
12002         name cache to reduce its size.
12003
12004         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
12005
12006 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
12007
12008         * mini-x86.c: Save/restore the current LMF structure more efficiently using
12009         the mono_lmf TLS variable.
12010
12011         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
12012         trampoline lmf frames.  
12013
12014         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
12015
12016 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
12017
12018         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
12019         the mono_lmf TLS variable.
12020
12021         * mini-exceptions.c: Access the LMF structure through accessors.
12022
12023         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
12024         variable instead of in jit_tls->lmf.
12025
12026         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
12027         
12028         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
12029         trampoline lmf frames.
12030
12031         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
12032
12033 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
12034
12035        * mini.c trace.c mini-x86.c: Revert these too.
12036         
12037        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
12038        signature change.
12039
12040 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
12041
12042         * genmdesc.c: removed now dead code.
12043
12044 2006-10-09  Robert Jordan <robertj@gmx.net>
12045
12046         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
12047
12048 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
12049
12050         * mini.h: do not leave gaps in the opcode values.
12051
12052 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
12053
12054         * jit-icalls.h: flag functions as internal here, too.
12055
12056 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
12057
12058         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
12059         functions with the internal attribute.
12060
12061 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
12062
12063         * aot-compiler.c: fclose the file descriptor in the profile read loop.
12064
12065 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
12066
12067         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
12068         for soft-float.
12069
12070 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
12071
12072         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
12073         tail calls as on other platforms.
12074
12075         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
12076
12077         * iltests.il: Add a few tailcall tests.
12078
12079 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
12080
12081         * driver.c: fix loop for old compilers (bug #79521).
12082
12083 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
12084
12085         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
12086
12087         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
12088
12089         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
12090         metadata without any code.
12091
12092         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
12093         more precise debugging information using gdb.
12094
12095 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
12096
12097         * inssel-ia64.brg: Make the helper methods static.
12098
12099 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
12100
12101         * inssel-x86.brg: make the helper methods static.
12102
12103 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
12104
12105         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
12106
12107 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
12108
12109         * mini.c: updates for monoburg changes.
12110         * inssel.brg: make a few helper functions static as they should.
12111
12112 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
12113
12114         * Makefile.am: Move mini-codegen.c to common_sources.
12115
12116 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
12117
12118         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
12119         instructions.
12120         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
12121         mini-ppc.h: port to use the common local register allocator.
12122
12123 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
12124
12125         * mini.h: Remove the comment too then.
12126
12127 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
12128
12129         * mini.h: put back backend.data which is to be used shortly and
12130         doesn't increase the size of MonoInst. If any 64 bit arch aligned
12131         pointers on 4 byte boundaries it'd have much bigger issues running
12132         and you can ifdef it out anyway.
12133
12134 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
12135
12136         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
12137         MonoInst size by 4 bytes on 64 bit machines.
12138
12139 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
12140
12141         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
12142         replacement with more meaningful field names. Arch maintainers, please
12143         check the assigned names are good enough for your arch.
12144
12145 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
12146
12147         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
12148         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
12149
12150 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
12151
12152         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
12153         relocations and memory requirements, put the optimization flags
12154         definitions in their own file.
12155
12156 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
12157
12158         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
12159
12160         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
12161
12162 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
12163
12164         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
12165
12166 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
12167
12168         * inssel.brg: use the correct function to get the size of an item
12169         in an array, given an element class.
12170         * aot-compiler.c: do not access class->class_size directly.
12171
12172 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
12173
12174         * mini.h, debug-mini.c: added a debugging function to print
12175         info about local variables and arguments in a jitted method.
12176
12177 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
12178
12179         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
12180
12181         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
12182
12183 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
12184
12185         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
12186         inner and outer loops when passing vtypes.
12187
12188 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
12189
12190         * mini-ppc.c: take into account the cpu errata for cache flushing
12191         which caused some random errors (bug #79381).
12192
12193 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
12194
12195         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
12196         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
12197
12198 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
12199
12200         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
12201         loaded.
12202
12203         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
12204         freebsd ports tree.
12205
12206         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
12207         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
12208
12209         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
12210         displacement.
12211
12212 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
12213
12214         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
12215
12216 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
12217
12218         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
12219         macro does not have to be changed during debugging.
12220
12221         * 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>.
12222
12223         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
12224
12225         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
12226         
12227         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
12228         MONO_ARCH_NO_EMULATE_MUL is defined.
12229
12230         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
12231
12232         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
12233
12234         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
12235
12236         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
12237         
12238 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
12239
12240         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
12241         stuff to mini-exceptions.c where it is used.
12242
12243         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
12244         setup code, the real one is in mini-exceptions.c.
12245
12246         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
12247         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
12248         some changes from the freebsd ports tree.
12249
12250         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
12251         constants.
12252         
12253         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
12254
12255 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
12256
12257         * mini.c: on Linux, check for /proc to be mounted
12258         (bug# 79351, novell bug#201204).
12259
12260 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
12261
12262         * mini.c: handle cases where pthread_attr_getstack() behaves
12263         incorrectly (bug #78096).
12264
12265 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
12266
12267         * mini-arm.c: support larger stack frames (bug #79272).
12268
12269 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
12270
12271         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
12272
12273         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
12274         tokens.
12275
12276         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
12277         mono_class_from_name () to find a class from its name.
12278
12279         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
12280
12281 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
12282
12283         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
12284
12285 2006-09-05  Kornel Pal  <kornelpal@gmail.com>
12286
12287         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
12288
12289 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
12290
12291         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
12292         callinfo->trampoline.
12293
12294         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
12295         fixes #79271.
12296         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
12297         future.
12298
12299 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
12300
12301         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
12302
12303 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
12304
12305         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
12306         stats.method_trampolines, it is already done by the generic trampoline code.
12307
12308         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
12309         
12310 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
12311
12312         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
12313
12314         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
12315
12316         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
12317
12318         * mini.c (print_jit_stats): Print mscorlib mempool size too.
12319         
12320         * mini.c (print_jit_stats): Print new stats.
12321
12322         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
12323
12324 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
12325
12326         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
12327         Address on two dimensional arrays. Fixes #78729.
12328
12329         * mini.h (MonoCompile): Add a 'skip_visibility' field.
12330
12331         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
12332         a method.
12333
12334         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
12335
12336         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
12337         #79130.
12338         
12339         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
12340         a race condition.
12341         (mini_get_ldelema_ins): Ditto.
12342
12343 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
12344
12345         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
12346         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
12347         Fixes #79213.
12348
12349 2006-08-29 Neale Ferguson <neale@sinenomine.net>
12350
12351         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
12352         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
12353
12354         * exceptions-s390x.c: Cosmetic change.
12355
12356         * tramp-s390.c: Fix warning.
12357
12358         * cpu-s390.md: Correct length of mul_imm.
12359
12360 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
12361
12362         * aot-compiler.c: added binary writer with ELF backend
12363         implementation (only on Linux/x86 for now).
12364
12365 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
12366
12367         * Makefile.am: Don't run net 2.0 AOT tests.
12368
12369         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
12370         (mono_compile_assembly): Skip net 2.0 assemblies as well.
12371
12372         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
12373
12374 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
12375
12376         * aot-compiler.c: simplified and refactored the asm-writing code
12377         to allow different backends.
12378
12379 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
12380
12381         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
12382
12383         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
12384         little. Share patches of type TYPE_FROM_HANDLE as well.
12385
12386         * mini.c (mono_patch_info_equal): New helper function.
12387         (mono_patch_info_hash): Ditto.
12388
12389         * aot-compiler.c (emit_method_code): Fix s390 build.
12390
12391         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
12392         is not handled because it is stored as a flag and not as a type ctor. Fixes
12393         #79016.
12394
12395 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12396
12397         * aot-compiler.c: Fix computation of GOT slot statistics.
12398         
12399         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
12400         Also remove support for not PIC AOT.
12401
12402         * mini.h: Bump AOT file format version.
12403
12404         * objects.cs: Add a test for #78990.
12405
12406         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
12407         (peter.dettman@iinet.net.au). Fixes #79087.
12408
12409         * basic-long.cs: Add a test for the above.
12410
12411 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
12412
12413         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
12414         
12415         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
12416         code somewhat.
12417
12418 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
12419
12420         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
12421         exceptions.
12422
12423 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
12424
12425         * mini.c: Don't verify COM proxy invoke calls
12426         
12427
12428 2006-08-10  Dick Porter  <dick@ximian.com>
12429
12430         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
12431         which process is holding semaphores locked.
12432
12433 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
12434
12435         * mini-ia64.c mini-amd64.c: Fix #79027.
12436
12437         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
12438
12439         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
12440
12441         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
12442         implicit arguments in a vararg call. Fixes #79027.
12443
12444 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
12445
12446         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
12447         (mono_get_array_new_va_signature): Ditto.
12448
12449 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
12450
12451         * aot-runtime.c: Call init_plt lazily.
12452
12453         * inssel-long.brg: Fix unsigned long->int conversion.
12454
12455         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
12456
12457         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
12458         that most data is now in the .rss/.data section.
12459
12460 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
12461
12462         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
12463
12464         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
12465
12466         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
12467
12468         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
12469
12470         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
12471         virtual call. Fixes #79010.
12472
12473         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
12474         and use the result as the this argument in the real call.
12475
12476         * generics.2.cs: Add a new test for #79010.
12477         
12478 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
12479
12480         * mini-x86.c: Fix a warning.
12481
12482         * aot-compiler.c: Add a bunch of statistics.
12483
12484         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
12485
12486 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
12487
12488         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
12489
12490 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
12491
12492         * 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>.
12493
12494 2006-07-13  Miguel de Icaza  <miguel@novell.com>
12495
12496         * mini.c (mono_method_to_ir): Obtain the original method in the
12497         CIL stream and use this to perform validation.
12498
12499         Fixed: #78816
12500
12501 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
12502
12503         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
12504         (mono_arch_call_opcode): Ditto.
12505
12506         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
12507         #78826.
12508
12509         * mini.c (mono_patch_info_dup_mp): New helper function.
12510         
12511         * aot-compiler.c (compile_method): Fix some of the memory allocated during
12512         compilation. Fixes #78827.
12513
12514 2006-07-18  Kornel Pal  <kornelpal@gmail.com>
12515
12516         * declsec.c: Use original security informations for
12517           MONO_WRAPPER_MANAGED_TO_MANAGED.
12518
12519 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
12520
12521         * mini.c: Allow Com Interop methods/classes and
12522         don't verify COM wrapper calls
12523         
12524
12525 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
12526
12527         * inssel-long32.brg: Fix long->i4 checked conversion.
12528
12529         * exceptions.cs: Add a test for the above.
12530
12531 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
12532
12533         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
12534
12535         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
12536         leaks.
12537
12538         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
12539         #78775.
12540
12541 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
12542
12543         * mini.c: Fix solaris/x86 exception handling.
12544
12545         * Makefile.am: Get rid of $(ICU_LIBS).
12546
12547 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
12548
12549         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
12550         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
12551         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
12552
12553         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
12554
12555         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
12556         this function causes a SIGSEGV.
12557
12558 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
12559
12560         * mini.c: Remove unused solaris/x86 includes.
12561
12562 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
12563
12564         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
12565
12566 2006-06-20  Jb Evain  <jbevain@gmail.com>
12567
12568         * cpu-g4.md: fix max length of start_handler instruction.
12569
12570 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
12571         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
12572
12573 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
12574         * ssa.c: Fixed bug 78653 for SSA based deadce.
12575         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
12576         MonoInst.flags, used in SSA based deadce.
12577         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
12578         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
12579
12580 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
12581
12582         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
12583         it can end up using non executable memory on ppc64 systems
12584         running ppc32 userspace (fix from Johannes Berg).
12585
12586 2006-06-14  Dick Porter  <dick@ximian.com>
12587
12588         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
12589         4.1.1
12590
12591 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
12592         * mini.c: Made so that inline is locally disabled if it would
12593         trigger a .cctor, because too many apps depend on this behavior
12594         (which seems to be also the one of the MS CLR).
12595
12596 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
12597
12598         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
12599         No idea why this worked before.
12600
12601         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
12602         which branch to outer exception clauses since they could skip the
12603         inner finally clauses. Fixes #78633.
12604
12605         * exceptions.cs: Add a test for the above.
12606
12607         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
12608         Fixes #78629.
12609
12610         * iltests.il: Add a test for the above.
12611
12612 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
12613
12614         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
12615         after the end of a try bblock, to prevent asserts in mini_method_compile ().
12616
12617         * iltests.il: Add a test for the above.
12618
12619 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
12620
12621         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
12622         
12623         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
12624         methods as instrinsics.
12625
12626 2006-06-09  Wade Berrier <wberrier@novell.com>
12627
12628         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
12629         (simple-cee-ops.h ssapre-mini-ops.h)
12630
12631 2006-06-09  Neale Ferguson <neale@sinenomine.net>
12632
12633         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
12634         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
12635         instruction).
12636         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
12637         * cpu-s390x.md: Fix max. length values for a couple of instructions.
12638
12639 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12640
12641         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
12642
12643 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
12644
12645         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
12646         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
12647         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
12648         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
12649         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
12650         of opcodes, so that bug 78549 should not happen again.
12651         * ssapre.c: Updated to use the renamed files.
12652
12653 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
12654
12655         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
12656         in OP_ATOMIC_EXCHANGE_I4.
12657
12658 2006-06-07  Wade Berrier <wberrier@novell.com>
12659
12660         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
12661         in mono_debugger_create_notification_function)
12662
12663 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
12664
12665         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
12666         
12667         * mini.c (type_from_stack_type): Disable some changes which do not
12668         seem to work.
12669
12670         * driver.c: Reenable opts.
12671
12672         * mini.h (MonoStackSlot): New structure to keep track of the verification state
12673         of the evaluation stack.
12674         
12675         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
12676         evaluation stack trace at entry to the bblock.
12677
12678         * mini.c (merge_stacks): New function to perform verification of stack merges.
12679         Turned off by default.
12680
12681         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
12682         STACK_MP.
12683         
12684 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
12685
12686         * local-propagation.c: Fixed bug 78549.
12687
12688 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
12689
12690         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
12691
12692 2006-06-02  Miguel de Icaza  <miguel@novell.com>
12693
12694         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
12695         tramp-arm.c, tramp-ia64.c
12696         (mono_debugger_create_notification_function): Update signature to
12697         new signature and use new protocol for creating the notification
12698         function.  
12699
12700         Should fix the build.
12701
12702 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
12703
12704         * exceptions-ppc.c (mono_jit_walk_stack)
12705         (ves_icall_get_frame_info): Fix the build
12706
12707 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
12708
12709         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
12710
12711 2006-05-31  Raja R Harinath  <rharinath@novell.com>
12712
12713         * il2tests.2.il: New file for generics CIL tests.  Add test for
12714         #78019.
12715         * Makefile.am: Update.
12716
12717         Fix #78019
12718         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
12719         to nullable types.
12720
12721 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
12722
12723         * aliasing.c: Fixed bug 78311.
12724
12725 2006-05-29  Martin Baulig  <martin@ximian.com>
12726
12727         * mini-exceptions.c (mono_find_jit_info): When computing the
12728         native offset, check whether we're actually inside the method's
12729         code; call mono_debug_print_stack_frame() to format the frame.
12730         (ves_icall_System_Exception_get_trace): Call
12731         mono_debug_print_stack_frame() to format the stack frame.
12732         (ves_icall_get_trace): Update to the new debugging API.
12733         (mono_jit_walk_stack_from_ctx): Likewise.
12734         (ves_icall_get_frame_info): Likewise.
12735
12736         * mini.c (get_method_from_ip): Use the new debugging API.
12737         (mono_print_method_from_ip): Likewise.
12738
12739         * exceptions-ppc.c
12740         (mono_jit_walk_stack): Use the new debugging API.
12741         (ves_icall_get_frame_info): Likewise.   
12742
12743 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
12744
12745         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
12746
12747 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
12748
12749         * mini.c: Added "limitator" to inline for debugging.
12750
12751 2006-05-24  Martin Baulig  <martin@ximian.com>
12752
12753         * debug-debugger.c (mono_debugger_init): Create a private,
12754         malloc()-based code manager for the notification function and
12755         intentionally leak it on exit.  This fixes the crash-on-exit race
12756         condition.
12757
12758         * tramp-amd64.c
12759         (mono_debugger_create_notification_function): Added
12760         `MonoCodeManager *' argument.
12761
12762         * tramp-x86.c
12763         (mono_debugger_create_notification_function): Added
12764         `MonoCodeManager *' argument.
12765
12766 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
12767
12768         * aliasing.c: Fixed 64 bit issue.
12769         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
12770         default since all known bugs are fixed (one more time!).
12771
12772 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
12773
12774         * mini.c: write barrier support.
12775
12776 2006-05-23  Martin Baulig  <martin@ximian.com>
12777
12778         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
12779         check at the top of the file.
12780
12781 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
12782
12783         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
12784         reverting changes without reason and without changelog entries.
12785
12786 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
12787
12788         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
12789         to a few opcodes. Fixes #78439.
12790
12791         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
12792         consistency with other archs.
12793
12794         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
12795
12796 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
12797
12798         * debug-debugger.c: fix the build.
12799
12800 2006-05-17  Martin Baulig  <martin@ximian.com>
12801
12802         * debug-debugger.c
12803         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
12804         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
12805         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
12806         (debugger_attach): Call GC_mono_debugger_add_all_threads().
12807
12808 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
12809
12810         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
12811
12812 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
12813
12814         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
12815         MONO_TYPE_GENERICINST.
12816         
12817         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
12818         MONO_TYPE_GENERICINST.
12819
12820 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
12821
12822         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
12823         #78325.
12824
12825 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
12826
12827         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
12828         mempool.
12829         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
12830
12831 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
12832
12833         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
12834         mono_trace_cleanup ().
12835
12836         * iltests.il: Fix problem with the newly added test.
12837
12838         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
12839         due to register constraints, free up the previous hreg. Fixes #78314.
12840
12841         * iltests.il: Add new test for #78314.  
12842
12843         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
12844         Interlocked.Add. Fixes #78312.
12845
12846         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
12847         
12848 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
12849
12850         * inssel.brg (mini_emit_virtual_call): Fix a warning.
12851
12852 2006-05-05  Martin Baulig  <martin@ximian.com>
12853
12854         * debug-mini.c (mono_debug_open_block): New method.
12855
12856         * mini-amd64.c
12857         (mono_arch_output_basic_block): Call mono_debug_open_block() at
12858         the beginning of each basic block.
12859
12860         * mini-x86.c
12861         (mono_arch_output_basic_block): Call mono_debug_open_block() at
12862         the beginning of each basic block.
12863
12864 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
12865
12866         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
12867         default until I understand why they break the build on amd64.
12868
12869 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
12870
12871         * mini.c (mini_cleanup): Call mono_cleanup ().
12872
12873         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
12874         errors.
12875
12876 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
12877
12878         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
12879         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
12880         default since all known bugs are fixed, and I cannot reproduce bug
12881         77944... I'm asking Matt Hargett to test again after this commit.
12882
12883 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
12884
12885         * mini-codegen.c: Fixed typo that thrashed inline.
12886
12887 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
12888
12889         * dominators.c (compute_dominators): Avoid using a worklist since
12890         it is not correct in some cases. Instead, iterate over all bblocks as
12891         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
12892
12893 2006-04-28  Miguel de Icaza  <miguel@novell.com>
12894
12895         * mini.c (mono_jit_compile_method_inner): Use
12896         mono_prepare_exception_from_error that resets the value
12897         internally.
12898
12899 2006-04-27  Miguel de Icaza  <miguel@novell.com>
12900
12901         * mini.c: Move the mini_loader_error_to_exception to metadata. 
12902         
12903 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
12904
12905         * aliasing.c: Fixed bug 78210.
12906
12907 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
12908
12909         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
12910         default until all their problems (or the ones they trigger) are fixed.
12911
12912 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
12913
12914         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
12915         
12916         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
12917         as loaded only after resolving patches since that could invoke the same method.
12918
12919         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
12920
12921         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
12922         functions.
12923
12924         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
12925         AOT loader.
12926
12927         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
12928         stack.
12929
12930         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
12931         made from AOT code through the PLT table.
12932
12933         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
12934         holding the plt offset when a call is made to the aot plt trampoline.
12935         
12936 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
12937
12938         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
12939         amd64 AOT support.
12940
12941         * Makefile.am (common_sources): Fix build breakage.
12942
12943         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
12944         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
12945         intra-assembly calls if possible.
12946         
12947         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
12948
12949         * mini-trampolines.c: Handle PLT entries.
12950
12951         * mini.c: Avoid creating a GOT var for calls.
12952
12953         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
12954         from mscorlib code.
12955
12956         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
12957         from mscorlib code.
12958
12959         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
12960         AOT code.       
12961
12962         * mini.h: Bump AOT file format version.
12963         
12964         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
12965         covers more cases.
12966
12967 2006-04-25  Martin Baulig  <martin@ximian.com>
12968
12969         * driver.c: Disable copyprop, consprop and inline when running
12970         inside the debugger.
12971
12972 2006-04-25  Martin Baulig  <martin@ximian.com>
12973
12974         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
12975         with `get_current_thread' and added `detach'.
12976         (MonoDebuggerMetadataInfo): Added `thread_size',
12977         `thread_tid_offset', `thread_stack_ptr_offset' and
12978         `thread_end_stack_offset'.
12979
12980 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
12981
12982         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
12983         aot-runtime.c.
12984
12985         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
12986         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
12987
12988         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
12989
12990         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
12991
12992         * aot.c: Add support for ADJUSTED_IID.  
12993
12994 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
12995
12996         * aot.c (emit_method_order): Don't align method_order_end.
12997
12998         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
12999         the interface ID changes.
13000
13001 2006-04-21  Dick Porter  <dick@ximian.com>
13002
13003         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
13004         cleaning up a thread.  Fixes the new part of bug 77470.
13005
13006 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
13007
13008         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
13009         to managed wrapper.
13010                      
13011 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
13012
13013         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
13014         
13015         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
13016         SIGSEGV. Fixes #78072.
13017
13018         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
13019         unregister our SIGABRT handler.
13020
13021 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
13022
13023         * mini.c: Disabled inline where it can alter the call stack in a
13024         way visible from managed code.
13025         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
13026         default.
13027
13028 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
13029
13030         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
13031         on other platforms. Fixes #78089.
13032
13033 2006-04-13  Martin Baulig  <martin@ximian.com>
13034
13035         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
13036         determine whether we're inside the debugger.
13037
13038         * debug-debugger.h
13039         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
13040
13041 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13042
13043         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
13044         handler clauses. Fixes #78024.
13045
13046         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
13047         in the CALL_MEMBASE opcodes. Fixes #78088.
13048         (mono_arch_get_vcall_slot_addr): Ditto.
13049
13050 2006-04-10  Martin Baulig  <martin@ximian.com>
13051
13052         * debug-debugger.c: The thread handling code has now been moved
13053         into ../metadata/threads.c.
13054
13055 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
13056
13057         * driver.c (mono_main): Fix --with-gc=none build.
13058
13059         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
13060         (mono_spillvar_offset_float): Ditto.
13061         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
13062         hreg, not when its !global, since on ia64, there is a third category: stacked
13063         registers.      
13064
13065 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
13066
13067         * mini.c: set MonoInst->klass for load field address and a few other
13068         places.
13069
13070 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
13071
13072         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
13073
13074 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
13075
13076         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
13077         the branch opt changes.
13078
13079 2006-04-06  Dick Porter  <dick@ximian.com>
13080
13081         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
13082         
13083         * wapihandles.c (mini_wapi_seminfo): 
13084         * driver.c (mono_main): Add semaphore info option
13085
13086 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
13087
13088         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
13089         branch optimization changes. Fixes #78009.
13090
13091 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
13092
13093         * mini.c: ignore accessibility of methods in managed->native wrappers.
13094
13095 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
13096
13097         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
13098         
13099         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
13100
13101 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
13102
13103         * mini.c: Modify the branch optimizations to preserve the invariant that
13104         the entries inside the in_bb and out_bb arrays are unique.
13105         (mono_unlink_bblock): Avoid creation of new arrays.
13106
13107 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
13108
13109         * mini.c (mono_unlink_bblock): Fix regression caused by previous
13110         change (#77992).
13111
13112 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
13113
13114         * mini.c (optimize_branches): Remove the "optimizations" in
13115         the cbranch1/cbranch2 -> branch cases which were causing several
13116         problems in the past. Fixes #77986.
13117
13118 2006-03-31  Chris Toshok  <toshok@ximian.com>
13119
13120         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
13121         default optimizations :(
13122
13123 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
13124
13125         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
13126         branch.
13127
13128 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
13129
13130         * local-propagation.c: Added comments to structs and removed
13131         "Mono" prefixes from local tree mover types.
13132
13133 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
13134
13135         * Makefile.am (arch_sources): Define this for each architecture so 
13136         libmono_la_SOURCES is defined in one place.
13137
13138 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
13139
13140         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
13141         from handles/.
13142
13143 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
13144
13145         * driver.c: print the GC name supplied by configure.
13146
13147 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
13148
13149         * local-propagation.c: Added tree mover, and moved here all the
13150         local propagation code from mini.c
13151         * mini.c: Added support for treeprop, and moved all the local
13152         propagation code to local-propagation.c
13153         * mini.h: Added support for treeprop
13154         * driver.c: Added support for treeprop, enabled consprop, copyprop,
13155         treeprop, inline and deadce by default
13156         * Makefile.am: Added local-propagation.c
13157
13158 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
13159
13160         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
13161
13162 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
13163
13164         * debug-debugger.c: make it compile without the Boehm GC.
13165
13166 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
13167
13168         * mini.c: fixed issue with mismatch when an icall is registered
13169         with multiple names but same address.
13170
13171 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
13172
13173         * declsec.c, mini-exceptions.c: use write barrier to set reference
13174         fields of managed objects.
13175
13176 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
13177
13178         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
13179         (can_access_internals): Fix a warning.
13180
13181         * mini.c (print_method_from_ip): Rename this to 
13182         mono_print_method_from_ip so it gets exported.
13183
13184         * trace.c: Deal with strings inside StringBuilder's containing garbage
13185         and fix memory leaks. Fixes #77848.
13186
13187 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
13188
13189         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
13190         fixes #77787.
13191
13192 2006-03-16 Neale Ferguson <neale@sinenomine.net>
13193         
13194         * mini-s390.c: Remove OP_X86_TEST_NULL.
13195
13196 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
13197
13198         * mini.c: use the correct GetHashCode() for the moving collector.
13199
13200 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
13201
13202         * liveness.c: Regalloc spill cost tuning.
13203
13204 2006-03-15 Neale Ferguson <neale@sinenomine.net>
13205         
13206         * mini-s390x.h: Correct S390_LONG macro.
13207
13208         * mini-s390x.c: Cleanup unused code.
13209
13210 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
13211
13212         * jit-icalls.h: New file.
13213
13214         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
13215         icalls and include that instead of including jit-icalls.c.
13216
13217         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
13218         OP_X86 opcodes.
13219
13220 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
13221
13222         * mini.c: when checking for member accessibility, also check for
13223         friend assemblies and for explicit interface implementations.
13224
13225 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
13226
13227         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
13228
13229         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
13230
13231         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
13232         common cases are done first.    
13233
13234         * mini-ops.h: Only define platform specific opcodes on the given platform.
13235
13236         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
13237         branch.
13238         
13239 2006-03-14  Martin Baulig  <martin@ximian.com>
13240
13241         Revert Paolo's change from r57348:
13242
13243         * mini.h: don't use gboolean for bitfields.
13244         * mini.c: verifier changes for fields and methods accessibility.
13245
13246 2006-03-13  Neale Ferguson <neale@sinenomine.net>
13247
13248         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
13249
13250         * mini-s390x.c: Fix conv_r_un.
13251
13252         * cpu-s390, cpu-s390x.md: Fix lengths.
13253
13254 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
13255
13256         * mini.c: nested types have access to all the nesting
13257         levels, not just the enclosing types.
13258
13259 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
13260
13261         * mini.c: added a few more verification checks.
13262
13263 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
13264
13265         * liveness.c: Merge optimizations from the linear-il branch.
13266
13267 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
13268
13269         * mini-ia64.c (emit_call): Add a comment.
13270
13271         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
13272
13273         * tramp-ia64.c: Fix some warnings.
13274
13275 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
13276
13277         * mini.h: don't use gboolean for bitfields.
13278         * mini.c: verifier changes for fields and methods accessibility.
13279
13280 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
13281
13282         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
13283         lazy icall wrapper changes.
13284
13285         * dominators.c: Replace all the dominator algorithms with faster
13286         ones from the linear-il branch.
13287
13288         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
13289         the mempool.
13290
13291         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
13292         common cases are done first.
13293
13294         * mini-amd64.c: Fix some warnings.
13295
13296         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
13297         from the mempool.
13298
13299         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
13300         added code.
13301
13302         * mini.h: Add a missing prototype.
13303
13304 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
13305
13306         * mini.c: Compile icall wrappers lazily.
13307
13308         * mini-codegen.c: Use printf instead of g_print since its much faster.
13309
13310         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
13311         function.
13312
13313         * mini.c (optimize_branches): Cache the negative result from 
13314         remove_block_if_useless ().
13315
13316         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
13317         Also fix some bblock linking issues.
13318
13319         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
13320         assembly files.
13321
13322         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
13323
13324         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
13325         accessed fields first, for better cache behavior.
13326         
13327 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
13328
13329         * mini.c: speedup IList<T> array accesses.
13330
13331 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
13332
13333         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
13334         inline_costs counter. Fixes #77190.
13335
13336 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
13337
13338         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
13339         trace messages. Fixes #77706.
13340
13341 2006-03-04  Martin Baulig  <martin@ximian.com>
13342
13343         * tramp-amd64.c, tramp-x86.c
13344         (mono_debugger_create_notification_function): Use
13345         mono_global_codeman_reserve() to allocate a buffer at runtime and
13346         return it.
13347
13348         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
13349
13350         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
13351         notification function at runtime and then call `initialize' in the
13352         `MONO_DEBUGGER__debugger_info' vtable.
13353
13354 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
13355
13356         * iltests.il: Fix a visibility problem.
13357
13358 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
13359
13360         * driver.c, mini.c: add hooks for the counters API.
13361
13362 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
13363
13364         * driver.c: show disabled options.
13365
13366 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
13367
13368         * linear-scan.c: always use cost-driven selection.
13369
13370 2006-02-28  Raja R Harinath  <rharinath@novell.com>
13371
13372         * jit-icalls.c (helper_compile_generic_method): Revert change from
13373         2006-02-24.
13374
13375 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
13376
13377         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
13378
13379 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
13380
13381         * inssel.brg: style fixes, mostly to force the updated monoburg
13382         to run for people using svn.
13383
13384 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
13385
13386         * mini.c: match monoburg changes.
13387
13388 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
13389
13390         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
13391         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
13392         declaration in the header file.
13393
13394 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
13395
13396         * helpers.c: reduce relocations and mem usage.
13397
13398 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
13399
13400         * mini.h, mini-codegen.c: disable logging features if
13401         requested by configure.
13402
13403 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
13404
13405         * mini.c: tiny verifier changes.
13406
13407 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
13408
13409         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
13410         cpu-pentium.md: stack alignment changes for osx/x86,
13411         partially from Geoff Norton <gnorton@customerdna.com>.
13412
13413 2006-02-24  Raja R Harinath  <harinath@gmail.com>
13414
13415         * jit-icalls.c (helper_compile_generic_method): Update to changes
13416         in metadata/class.c.
13417
13418 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
13419         
13420         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
13421         
13422         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
13423         interface calls with large offsets.
13424
13425 2006-02-23  Raja R Harinath  <rharinath@novell.com>
13426
13427         * jit-icalls.c (helper_compile_generic_method): Document the
13428         special-case we depend on so that we can inflate the method twice
13429         with the same context with no bad side-effects.
13430
13431 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
13432
13433         * mini-x86.c, mini-amd64.c: fix for case when xen support
13434         is disabled.
13435
13436 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
13437
13438         * mini-x86.c, mini-amd64.c: generate code to access tls items
13439         in a faster way for Xen systems.
13440
13441 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
13442
13443         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
13444         updates and compilation fixes for the OSX/x86 port, mostly from
13445         Geoff Norton <gnorton@customerdna.com>.
13446
13447 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
13448
13449         * inssel.brg: faster interface call implementation
13450         to sync with the interface_offsets MonoVTable changes.
13451
13452 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
13453
13454         * mini.c: more verification checks.
13455
13456 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
13457
13458         * mini.c: added a few more verification checks.
13459
13460 2006-02-17      Neale Ferguson <neale@sinenomine.net>
13461
13462         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
13463         facility on the processor and use it if available.
13464
13465 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
13466
13467         * driver.c, aot.c, mini.c: throw exception if the IL code is
13468         invalid or unverifiable.
13469
13470 2006-02-17  Raja R Harinath  <rharinath@novell.com>
13471
13472         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
13473         m.StructField.
13474
13475 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
13476
13477         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
13478
13479 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13480
13481         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
13482         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
13483         handling of instantiated generic valuetypes.
13484
13485 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
13486
13487         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
13488         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
13489         instead.
13490
13491         * generics.2.cs: Revert the nullable reftypes tests.
13492
13493 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
13494
13495         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
13496         using __builtin_frame_address (1) as it doesn't work in the presence
13497         of optimizations. Hopefully fixes #77273.
13498
13499         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
13500         -> generics.cs change as it doesn't work with some automake versions.
13501
13502 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13503
13504         * mini.c: handle systems that sue a different way to
13505         retrieve the stack address of the current thread.
13506
13507 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
13508
13509         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
13510         it specially in the makefile.
13511
13512         * generics.2.cs: Add tests for nullable reference types.
13513
13514 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13515
13516         * mini.c: always handle the case when mono_jit_init()
13517         is called in a thread different from the main thread,
13518         confusing libgc (bug #77309).
13519
13520 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
13521
13522         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
13523
13524 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
13525
13526         * mini.c: change optimize_branches () to use a single loop
13527         and introduce a new optimization to simplify some range checks.
13528
13529 2006-02-03  Martin Baulig  <martin@ximian.com>
13530
13531         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
13532         and merged with debugger_thread_manager_add_thread().
13533         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
13534         inform the debugger about the main thread.
13535
13536 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
13537
13538         * basic.cs: Add test for div.un/rem.un constant folding.
13539
13540 2006-02-03  Neale Ferguson <neale@sinenomine.net>
13541
13542         * cpu-s390x.md: correct int_xor_imm length
13543
13544 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
13545
13546         * generics.2.cs: New test for #77442.
13547
13548         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
13549         #77442.
13550
13551 2006-02-02  Martin Baulig  <martin@ximian.com>
13552
13553         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
13554         <mono/metadata/mono-debug-debugger.h>   
13555
13556         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
13557
13558 2006-02-02  Martin Baulig  <martin@ximian.com>
13559
13560         * debug-debugger.h: New header file for debug-debugger.c.
13561
13562         * debug-debugger.c: Big API cleanup; don't run the managed Main()
13563         function is a separate thread anymore; add support for attaching.
13564
13565 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
13566
13567         * tramp-x86.c: Fix a warning.
13568
13569 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
13570
13571         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
13572         on very large methods.
13573
13574         * aot.c (load_patch_info): Fix a warning.
13575
13576 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
13577
13578         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
13579         mini-ops.h: alu membase optimizations.
13580
13581 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
13582
13583         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
13584         to speedup StringBuilder.
13585
13586 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
13587
13588         * dominators.c (mono_compute_natural_loops): Fix detection of
13589         loop body start blocks.
13590
13591         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
13592
13593 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
13594
13595         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
13596         #75145.
13597
13598 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
13599
13600         * aliasing.c: Fixed aliasing issue on 64 bit archs.
13601
13602 2006-01-25  Martin Baulig  <martin@ximian.com>
13603
13604         * debug-debugger.c: Moved the `MonoDebuggerManager' and
13605         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
13606         started to cleanup this file a little bit.
13607
13608 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
13609
13610         * mini.c: optimize a codepath frequently happening in generics code.
13611
13612 2006-01-23  Martin Baulig  <martin@ximian.com>
13613
13614         * Makefile.am: Only compile debug-debugger.c on supported platforms.
13615
13616         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
13617         functions directly.
13618
13619         * driver.c: debug-debugger.c is only available if
13620         `MONO_DEBUGGER_SUPPORTED' is defined.   
13621
13622 2006-01-23  Martin Baulig  <martin@ximian.com>
13623
13624         * debug-debugger.c: Only enable this on platforms where the Mono
13625         Debugger is working (x86 and x86_64).
13626
13627 2006-01-21  Martin Baulig  <martin@ximian.com>
13628
13629         The Mono Debugger is now using the normal `mono' instead of the
13630         `mono-debugger-mini-wrapper' when executing managed code.
13631
13632         * debug-debugger.c: New file; previously known as
13633         debugger/wrapper/wrapper.c.
13634
13635         * debug-mini.c (mono_init_debugger): Removed.
13636
13637         * driver.c (mono_main): Added new `--inside-mdb' command line
13638         argument which is used when running inside the debugger.
13639
13640 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
13641
13642         * liveness.c (mono_analyze_liveness): Remove some unused data
13643         structures.
13644
13645 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
13646
13647         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
13648
13649 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
13650
13651         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
13652         depends on implementation details of monobitset.
13653
13654         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
13655         Fixes #77271.
13656
13657 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
13658
13659         * liveness.c: Update after monobitset changes.
13660
13661 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
13662
13663         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
13664
13665 2006-01-11 Neale Ferguson <neale@sinenomine.net>
13666
13667         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
13668
13669         * mini-s390x.c: Remove warning messages.
13670
13671 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
13672
13673         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
13674
13675 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
13676
13677         * generics.2.cs: Add ldelem/stelem_any test.
13678
13679 2006-01-10 Neale Ferguson <neale@sinenomine.net>
13680
13681         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
13682
13683 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
13684
13685         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
13686         
13687 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
13688
13689         * generics.2.cs: Reenable vtype tests.
13690
13691         * inssel-x86.brg: Remove an icorrect valuetype rule.
13692
13693 2006-01-06 Neale Ferguson <neale@sinenomine.net>
13694
13695         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
13696         initial support for OP_ABS.
13697
13698 2006-01-05 Neale Ferguson <neale@sinenomine.net>
13699
13700         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
13701
13702 2006-01-05 Neale Ferguson <neale@sinenomine.net>
13703
13704         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
13705         conversion and implement LADD/LSUB.
13706
13707         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
13708         architectures.
13709
13710 2006-01-05 Neale Ferguson <neale@sinenomine.net>
13711
13712         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
13713
13714         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
13715         architectures.
13716
13717 2006-01-05 Neale Ferguson <neale@sinenomine.net>
13718
13719         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
13720         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
13721         (stack walk problem).
13722
13723 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
13724
13725         * aot.c (mono_aot_load_method): Fix a warning.
13726
13727 2006-01-03  Neale Ferguson <neale@sinenomine.net>
13728
13729         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
13730
13731 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
13732
13733         * iltests.il: Add test for #77148.
13734
13735         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
13736         #77148.
13737
13738 2006-01-03  Neale Ferguson <neale@sinenomine.net>
13739
13740         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
13741
13742 2006-01-03  Neale Ferguson <neale@sinenomine.net>
13743
13744         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
13745         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
13746
13747         * basic-long.cs: Add lconv-to-r4/r8 tests.
13748
13749 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
13750
13751         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
13752
13753         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
13754         here as on other archs.
13755
13756 2005-12-29 Neale Ferguson <neale@sinenomine.net>
13757
13758         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
13759
13760 2005-12-29 Neale Ferguson <neale@sinenomine.net>
13761
13762         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
13763         
13764         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
13765
13766         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
13767         instrument_prolog; Add memory_barrier instruction.
13768
13769 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
13770
13771         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
13772
13773 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
13774
13775         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
13776
13777         * aliasing.c inssel.brg: Fix warnings.
13778
13779         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
13780         could skip initialization of some parts of memory.
13781
13782         * mini.c mini-ia64.c: Fix warnings.
13783
13784         * inssel-sparc.brg: Add an implementation of lneg which actually works.
13785
13786 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
13787
13788         * aliasing.c (mono_build_aliasing_information): Add a workaround for
13789         a crash seen on sparc.
13790
13791         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
13792         
13793         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
13794
13795 2005-12-21 Neale Ferguson <neale@sinenomine.net>
13796
13797         * mini-ops.h: Add s390_backchain instruction
13798
13799         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
13800
13801         * cpu-s390.md: Add s390_backchain instruction
13802
13803         * mini-s390.c: Significant ABI changes
13804
13805         * mini-s390.h: Cater for zero length structures
13806
13807 2005-12-20 Neale Ferguson <neale@sinenomine.net>
13808
13809         * mini-s390.c: ABI fixes
13810
13811         * inssel-s390.brg: Remove debug statements
13812
13813         * cpu-s390.md: Fix length of ATOMIC_xx operations
13814
13815 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
13816
13817         * basic-float.cs: Add float<->long conversion tests.
13818
13819 2005-12-16 Neale Ferguson <neale@sinenomine.net>
13820
13821         * mini-s390.c: Fix LOCALLOC processing.
13822
13823         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
13824
13825 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
13826
13827         * iltests.il: Add tests for some opcodes not covered by the other
13828         tests.
13829
13830 2005-12-15 Neale Ferguson <neale@sinenomine.net>
13831
13832         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
13833         register loading for Tail processing; Correct trace output.
13834
13835         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
13836
13837         * cpu-s390.md: Correct size of jmp instruction. 
13838
13839 2005-12-13 Neale Ferguson <neale@sinenomine.net>
13840
13841         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
13842
13843 2005-12-13 Neale Ferguson <neale@sinenomine.net>
13844
13845         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
13846           Bring s390 up to current level.
13847
13848 2005-12-12  Zltan Varga  <vargaz@gmail.com>
13849
13850         * generics.2.cs: Disable the newly added tests as they do not work yet.
13851         
13852         * generics.2.cs: Add valuetype tests.
13853
13854 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
13855
13856         * basic-long.cs: Add i4->u8 test.
13857
13858         * objects.cs: Add tests for JIT intrinsic.
13859
13860         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
13861         optimizations lost by a mistake.
13862
13863 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
13864
13865         * basic-long.cs: Remove a test moved to objects.cs.
13866
13867         * arrays.cs: Add more array tests.
13868
13869 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
13870
13871         * arrays.cs: Add new tests for multi-dimensional arrays.
13872
13873 2005-12-06  Raja R Harinath  <rharinath@novell.com>
13874
13875         * Makefile.am (test_sources2): Add generics.2.cs.
13876         (EXTRA_DIST): Add test_sources2.
13877
13878 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
13879
13880         Support for boxing and unboxing nullable types as well as the
13881         isinst operation on nullables, per the CLI ammendment.
13882
13883         * inssel.brg (CEE_ISINST): Special case for nullable
13884
13885         * mini.c (handle_unbox_nullable): new method
13886         (handle_box): Special case for nullable types
13887         (mono_method_to_ir): Call handle_unbox_nullable in correct
13888         places.
13889
13890         * generics.2.cs: New test suite
13891
13892         * Makefile.am: Support for regression tests with generics.
13893
13894 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
13895
13896         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
13897         allocated to registers. Fixes #76800.
13898
13899 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
13900
13901         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
13902
13903 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
13904
13905         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
13906         of platforms.
13907
13908 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
13909
13910         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
13911         objects.cs.
13912
13913         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
13914         
13915         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
13916 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
13917
13918         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
13919         single precision before storing to a single precision location.
13920
13921 2005-11-28  Raja R Harinath  <rharinath@novell.com>
13922
13923         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
13924
13925 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
13926
13927         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
13928         correct files.
13929
13930         * basic.cs: Remove test_0_byte_compares test which was moved to
13931         objects.cs a long time ago.
13932
13933 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
13934
13935         * aliasing.c: Fixed aliasing issue on 64 bit archs.
13936
13937 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
13938
13939         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
13940         handlers are called.
13941
13942         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
13943         throwing code.
13944
13945          * mini-ia64.c: Add support for the throw->branch exception 
13946         optimization.   
13947
13948         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
13949
13950 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
13951
13952         * mini.c: Enabled "fastpath" deadce :-)
13953         
13954 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
13955
13956         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
13957         alias analysis pass to support it.
13958         * mini.h: Likewise.
13959         * ssa.c: Likewise.
13960         * liveness.c: Likewise (liveness computation can use aliasing
13961         information to be more accurate).
13962         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
13963         moreover made so that "--compile-all" uses the given optimization
13964         flags and not the default ones.
13965         * aliasing.c: Alias analysis (new file).
13966         * aliasing.h: Likewise.
13967         * Makefile.am: added "aliasing.c" and "aliasing.h".
13968         
13969 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
13970
13971         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
13972         OP_L opcodes.
13973
13974 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
13975
13976         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
13977         fp >= end_of_stack exit condition, as it is not needed, and it might
13978         become true for fp eliminated frames.
13979
13980 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
13981
13982         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
13983         coded offsets.
13984
13985 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
13986
13987         * mini-arm.c: fixed alignment of doubles/longs to match
13988         the C ABI (bug #76635).
13989
13990 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
13991
13992         * aot.c: fix compilation with --enable-minimal=aot.
13993
13994 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
13995
13996         * mini-arm.c: fixed compatibility with the new
13997         floating point emulator package for compares.
13998
13999 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
14000
14001         * mini.c : reverted sig->pinvoke changes (r51396-51397).
14002
14003 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
14004
14005         * mini-exceptions.c (print_stack_frame): Output to stderr.
14006         (mono_handle_native_sigsegv): Ditto.
14007
14008 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
14009
14010         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
14011         OP_LCONV_TO_OVF_I implementation.
14012
14013         * mini-amd64.c: Add support for the throw->branch exception 
14014         optimization.
14015
14016         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
14017         when the catch clause catches a more general exception, i.e. Object.
14018
14019 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
14020
14021         * cpu-ia64.md: Remove unused opcodes.
14022
14023         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
14024         specific defines for architectures defining USE_SIGACTION.
14025
14026         * mini-ia64.c: Fix some warnings.
14027
14028         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
14029         version seemed to skip a frame.
14030
14031 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
14032
14033         * mini.c: Clean up the usage of sig->pinvoke flag. Now
14034         only calls which are made to native code use this flag.
14035
14036 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
14037
14038         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
14039         varargs methods as well.
14040         
14041         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
14042         which have save_lmf set. Reorganize methods prologs a bit.
14043
14044         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
14045         debugger to the proper place.
14046
14047 2005-10-29  Martin Baulig  <martin@ximian.com>
14048
14049         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
14050         when running inside the debugger until the debugger has support
14051         for it.
14052
14053 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
14054
14055         * mini.h: Fix a warning.
14056
14057 2005-10-24  Miguel de Icaza  <miguel@novell.com>
14058
14059         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
14060         we expose publicly, this returns the string.
14061
14062 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
14063
14064         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
14065         with fp elimination.
14066
14067 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
14068
14069         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
14070         native stacktrace using the glibc 'backtrace' function if available.
14071
14072 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
14073
14074         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
14075
14076         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
14077         handle SIGSEGVs received while in native code.
14078
14079         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
14080         code, call mono_handle_native_sigsegv which will abort the runtime
14081         after printing some diagnostics, instead of converting it into a
14082         confusing NullReferenceException.
14083
14084 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
14085
14086         * cpu-pentium.md: Remove unused opcodes.
14087
14088 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
14089
14090         * mini-amd64.h (MonoLMF): Add rsp field.
14091
14092         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
14093         the lmf too.
14094
14095 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
14096
14097         * mini-codegen.c (get_register_spilling): Fix some warnings.
14098
14099 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
14100
14101         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
14102         elimination during exception handling. Enable fp elimination by
14103         default.
14104
14105         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
14106         elimination.
14107
14108 2005-10-16  Martin Baulig  <martin@ximian.com>
14109
14110         * mini-exceptions.c
14111         (mono_debugger_run_finally): New public method for the debugger.
14112
14113 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
14114
14115         * debug-mini.c (mono_debug_init_method): Fix warning.
14116
14117         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
14118         the 'exname' parameter const to fix some warnings.
14119
14120 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
14121
14122         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
14123         introduced by the previous patch.
14124
14125 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
14126
14127         * basic-float.cs: Add test for precision of float arithmetic.
14128
14129         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
14130         when loading/storing single values from/to memory.
14131
14132         * mini.c (mono_jit_compile_method_with_opt): Create the function
14133         pointers in the correct domain.
14134
14135 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
14136
14137         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
14138         introduced by previous patch.
14139         
14140         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
14141         when out_filter_idx is NULL.
14142
14143         * mini-exceptions.c: Don't run filter clauses twice during exception
14144         handling. Fixes #75755.
14145
14146 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
14147
14148         * aot.c: Add support for ldflda wrappers.
14149
14150         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
14151         #75902.
14152
14153 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
14154
14155         * mini.c, mini.h: do not consider exception handlers blocks when
14156         setting up interface variables.
14157
14158 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
14159
14160         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
14161
14162 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
14163
14164         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
14165         causes a regression.
14166
14167         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
14168
14169 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
14170
14171         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
14172         of the OP_P definitions.
14173
14174         * TODO: Add a proposal for dealing with the CEE/OP mess.
14175
14176         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
14177         optimizations from the x86 port.
14178
14179         * cpu-amd64.md: Ditto.
14180
14181         * basic.cs basic-long.cs: Add tests.
14182
14183 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
14184
14185         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
14186         Patrik Torstensson's implementation of my exception-handling
14187         optimization idea, when the exception object is not used
14188         (bug #62150).
14189
14190 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
14191
14192         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
14193         of the mul_imm optimizations from the old jit.
14194
14195 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
14196
14197         * mini.c, liveness.c: patch by Patrik Torstensson and
14198         Zoltan Varga to improve performance in methods with
14199         exception clauses.
14200
14201 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
14202
14203         * driver.c: Remove 'Globalization' entry from --version.
14204
14205 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
14206
14207         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
14208         there is a profiler interested in JIT events.
14209
14210         * aot.c: Load profile files produced by the AOT profiling module, and
14211         reorder methods based on the profiling info. Add a 'method_order' table
14212         to the AOT file to make mono_aot_find_jit_info work with the reordered
14213         methods.
14214
14215         * mini.h: Bump AOT file version info.
14216
14217 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
14218
14219         * mini-arm.h: work around what looks like a gcc bug when optimizations
14220         are enabled.
14221
14222 2005-09-28  Raja R Harinath  <rharinath@novell.com>
14223
14224         * Makefile.am (AM_CFLAGS): Don't use += to append inside
14225         conditionals.  Use ...
14226         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
14227
14228 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
14229
14230         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
14231         to determine the amount of memory to copy when passing valuetypes.
14232
14233         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
14234         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
14235
14236 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
14237
14238         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
14239         information about aot.
14240
14241 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
14242
14243         * *.c: Replace the use of {Enter,Leave}CriticalSection with
14244         macros. This will allow a deadlock debugger to easily be plugged
14245         in.
14246
14247 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
14248
14249         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
14250
14251 2005-09-27  Raja R Harinath  <rharinath@novell.com>
14252
14253         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
14254         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
14255         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
14256         ($(arch_built)) [CROSS_COMPILING]: Error out.
14257
14258 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
14259
14260         * aot.c: Add support for the no_special_static flag for classes.
14261
14262 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
14263
14264         * Reapply reverted patches.
14265
14266         * *: Revert r50174 as well.
14267
14268         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
14269
14270 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
14271
14272         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
14273
14274 2005-09-23  Miguel de Icaza  <miguel@novell.com>
14275
14276         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
14277         part of the SIG_HANDLER_SIGNATURE.  
14278
14279 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
14280
14281         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
14282         statistics.
14283
14284         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
14285         introduced by previous patch.
14286
14287 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
14288
14289         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
14290         saved registers too.
14291
14292         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
14293         upon the information returned by get_call_info ().
14294         
14295         * mini-x86.c (add_float): Fix stack size calculation.
14296         (mono_arch_call_opcode): Rewrite this so it works based up the
14297         information returned by get_call_info ().
14298         (mono_arch_get_this_vret_args): Ditto.
14299
14300 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
14301
14302         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
14303         in cinfo to determine the registers which need to be used.
14304
14305 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14306
14307         * driver.c (mono_main): Add --server and --desktop flags. 
14308
14309 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
14310
14311         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
14312         registers as global registers.
14313
14314         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
14315         longer needed with the new register allocator.
14316
14317         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
14318
14319         * cpu-ia64.md: Remove unused opcodes.
14320         
14321         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
14322         
14323 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
14324
14325         * cpu-amd64.md: Remove unused opcodes.
14326
14327         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
14328         needed with the new register allocator.
14329
14330         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
14331         reg-reg moves.
14332
14333 2005-09-16  Raja R Harinath  <rharinath@novell.com>
14334
14335         * Makefile.am (check-local): Don't invoke semdel-wrapper.
14336
14337 2005-09-16  Martin Baulig  <martin@ximian.com>
14338
14339         * exceptions-amd64.c
14340         (throw_exception): Don't call mono_debugger_throw_exception() if
14341         we're a rethrow - see the FIXME in the code.
14342
14343 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
14344
14345         * mini.c (mono_init_exceptions): This only works on some architectures.
14346         
14347 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
14348
14349         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
14350         on ia64.
14351
14352         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
14353
14354         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
14355         now in mini-exceptions.c.
14356
14357 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
14358
14359         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
14360         now in mini-exceptions.c.
14361
14362 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
14363
14364         * exceptions-x86.c: Applied patch from Patrik Torstensson 
14365         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
14366
14367         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
14368         code into mini-exceptions.c. Add some assertions to it.
14369
14370 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
14371
14372         * aot.c (emit_section_change): Applied patch from "The Software Team" 
14373         (<software@solmersa.com>). Fix as errors on windows.
14374
14375 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
14376
14377         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
14378         method info into the LMF.
14379
14380 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
14381         
14382         * mini-ia64.c: Add proper unwind info for method epilogs.
14383
14384         * exceptions-ia64.c: Add some code to help debugging.
14385         
14386         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
14387
14388         * mini-exceptions.c: Fix warning.
14389
14390 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
14391
14392         * mini.c: Really fix build.
14393
14394         * mini-x86.c mini-amd64.c: Fix build.
14395
14396 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
14397
14398         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
14399
14400         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
14401         some Interlocked methods as intrinsics.
14402
14403         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
14404         for Thread methods as well.
14405
14406         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
14407
14408         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
14409
14410         * mini-ia64.c mini-x86.c mini-amd64.c 
14411         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
14412         OP_MEMORY_BARRIER.
14413         
14414         * mini.c (mono_init_exceptions): Fix build breakage.
14415
14416 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
14417
14418         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
14419         of instructions. Use the new ia64_unw_op macros for emitting unwind
14420         info.
14421
14422         * mini.c (mono_init_exceptions): Initialize exception handling
14423         related trampolines at startup.
14424
14425 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
14426
14427         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
14428
14429 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
14430
14431         * mini.c: Handle type loading errors gracefully during compilation and
14432         throw the appropriate exception.
14433
14434 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
14435
14436         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
14437         for the mono binary.
14438
14439 2005-09-09  Martin Baulig  <martin@ximian.com>
14440
14441         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
14442         the release.
14443
14444 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
14445
14446         * mini-arm.h: use emulation for conv.r.un for the release.
14447
14448 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
14449
14450         * mini-arm.c, objects.cs: more fixes and tests for them.
14451
14452 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
14453
14454         * mini-arm.c: align structures to at least 4 bytes to be able
14455         to keep our current optimized memcpy.
14456
14457 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
14458
14459         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
14460
14461 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14462
14463         * mini.c: ignore SIGPIPE.
14464
14465 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
14466
14467         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
14468
14469         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
14470
14471 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
14472
14473         * mini.h: Add prototype for mono_allocate_stack_slots_full.
14474
14475 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
14476
14477         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
14478         exception handling support.
14479         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
14480         patch by Brian Koropoff <briank@marakicorp.com>).
14481
14482 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
14483
14484         * mini.c: revert another 'optimization' which breaks when
14485         items on the eval stack need to be saved at a basic block end
14486         (bug #75940).
14487
14488 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
14489
14490         * jit-icalls.c: for arrays, ensure we always provide
14491         lower bounds.
14492
14493 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
14494
14495         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
14496         
14497         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
14498
14499 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
14500
14501         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
14502         arguments in their original register.
14503
14504 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
14505
14506         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
14507         memset/memcpy.
14508
14509         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
14510         when ssapre is enabled.
14511
14512         * inssel-long.brg: Fix bug in previous patch.
14513
14514         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
14515         multiplication by a constant.
14516
14517 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
14518
14519         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
14520         icc.
14521
14522         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
14523         saving registers.
14524
14525 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
14526
14527         * inssel-arm.brg: apply changes tested by Brian Koropoff
14528         <briank@marakicorp.com>.
14529
14530 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
14531
14532         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
14533         
14534 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
14535
14536         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
14537         to the same register if dreg is just a base register.
14538         (print_ins): Improve printing of membase opcodes.
14539
14540         * inssel-x86.brg: Add optimized ldind(reg) rules.
14541
14542         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
14543
14544 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
14545
14546         * mini.c: when running under valgrind, set the stack bottom for
14547         the GC at the actual approximate stack for the app (fixes running
14548         mono with valgrind).
14549
14550 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
14551
14552         * mini.c: do no break at the first valuetype to init found
14553         (fixes bug #75791).
14554
14555 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
14556
14557         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
14558
14559 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
14560
14561         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
14562
14563 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
14564
14565         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
14566
14567 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
14568
14569         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
14570
14571         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
14572         code.
14573
14574         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
14575         code.
14576
14577         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
14578         methods.
14579
14580 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
14581
14582         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
14583
14584 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
14585
14586         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
14587         in the tail recursion optimization.
14588
14589         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
14590         debug info into the assembly file.
14591
14592         * iltests.il: Add test for filter regions.
14593
14594         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
14595         initial stack of filter regions. Fixes #75755.
14596
14597 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
14598
14599         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
14600         stack requirements.
14601
14602 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
14603
14604         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
14605         the check for an already compiled method on non-ia64 platforms.
14606         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
14607         proper domain.
14608
14609         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
14610
14611         * inssel-x86.brg: Add some optimized call rules.
14612
14613 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
14614
14615         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
14616         method here.
14617
14618         * mini.h mini-trampolines.c: Pass the trampoline argument to 
14619         mono_arch_patch_delegate_trampoline.
14620
14621         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
14622
14623         * mini-trampolines.c: Fix build.
14624
14625         * mini-amd64.h: Add delegate trampolines.
14626
14627         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
14628
14629         * inssel-amd64.brg: Add optimized call rules.
14630         
14631         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
14632
14633         * inssel-ia64.brg: Add optimized ldind(reg) rules.
14634
14635 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
14636
14637         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
14638         change.
14639
14640         * mini-ia64.c: Remove LMF fixmes.
14641
14642         * mini-ia64.h: Remove most fields from LMF.
14643
14644         * inssel-ia64.brg (stmt): Fix unaligned access errors.
14645
14646         * mini-trampolines.c: Add support for IA64 function descriptors.
14647
14648         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
14649         for IA64 function descriptors.
14650
14651 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
14652
14653         * tramp-arm.c: patch the vtable for virtual calls. Added
14654         support code to register/unregister the LMF.
14655         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
14656         more LMF work.
14657
14658 2005-08-19  Dick Porter  <dick@ximian.com>
14659
14660         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
14661         bit value if needed.
14662
14663 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
14664
14665         * mini.c (mini_get_method): Move handling of wrapper data here.
14666
14667         * mini.c (mono_method_to_ir): Add support for dynamic methods.
14668
14669         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
14670         virtual.
14671
14672         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
14673         bblock->code does not remain empty.
14674
14675 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
14676
14677         * arrays.cs: Add regression test for #75832.
14678
14679         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
14680         rules. Fixes #75832.
14681
14682         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
14683         instruction scheduling.
14684
14685 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
14686
14687         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
14688
14689 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
14690
14691         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
14692
14693         * mini-codegen.c: Fix VC build.
14694
14695         * cpu-pentium.md: Increase length of atomic_exhange_i4.
14696
14697 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14698
14699         * mini.h: fix signature for mono_register_opcode_emulation.
14700
14701 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
14702
14703         * mini.c: Get rid of most of the helper_sig_... constants using
14704         mono_create_icall_signature ().
14705
14706 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
14707
14708         * jit-icalls.c (helper_ldstr): New helper function.
14709
14710         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
14711
14712         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
14713         throw, load the string using a helper call instead of creating a string object.
14714
14715         * aot.c: Update after LDSTR changes.
14716
14717         * mini.h: Bump AOT file version.
14718         
14719         * aot.c: Save class size info into the AOT file. Print more statistics during
14720         compilation.
14721
14722         * mini.h: Bump AOT file version.
14723
14724         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
14725         ordering of disasm cases. Fixes #74957.
14726
14727 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
14728
14729         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
14730         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
14731         the generic code needed for the ARM port.
14732
14733 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
14734
14735         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
14736         inssel-arm.brg: more ARM features and fixes.
14737
14738 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
14739
14740         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
14741         ARM port work in progress.
14742
14743 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
14744
14745         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
14746
14747         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
14748
14749         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
14750
14751         * inssel.brg (mini_emit_memset): Add support for unaligned access.
14752
14753         * *-ia64.*: Ongoing IA64 work.
14754         
14755         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
14756
14757 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
14758
14759         * TODO: Remove out-of-data todo stuff.
14760
14761         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
14762         dead code.
14763
14764         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
14765
14766         * mini.h: Bump corlib version.
14767
14768 2005-07-27  Martin Baulig  <martin@ximian.com>
14769
14770         * mini-codegen.c
14771         (create_copy_ins): Added `const unsigned char *ip' argument; set
14772         `copy->cil_code' from it.
14773
14774 2005-07-27  Martin Baulig  <martin@ximian.com>
14775
14776         * mini-exceptions.c (mono_handle_exception): Don't call
14777         mono_debugger_handle_exception() for filters.
14778
14779 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
14780
14781         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
14782         as well.
14783
14784 2005-07-26  Martin Baulig  <martin@ximian.com>
14785
14786         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
14787
14788         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
14789         helper_compile_generic_method() if the method is actually virtual
14790         and non-final.
14791
14792 2005-07-26  Martin Baulig  <martin@ximian.com>
14793
14794         * mini.c
14795         (trampoline_code): Renamed to `mono_trampoline_code' and made it
14796         public; this is now accessed directly by the debugger.
14797         (mono_generic_trampoline_code): Removed.
14798
14799         * debug-mini.c
14800         (mono_debug_init_method): Also add interncalls and wrappers.
14801
14802 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
14803
14804         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
14805
14806 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
14807
14808         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
14809
14810 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
14811
14812         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
14813
14814 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
14815
14816         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
14817         getting TLS offsets on AMD64 too.
14818
14819 2005-07-20  Kornel Pal <kornelpal@hotmail.com>
14820
14821         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
14822
14823 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
14824
14825         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
14826         inssel-arm.brg, mini-arm.h: ARM port work in progress.
14827
14828 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
14829
14830         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
14831
14832         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
14833         to mini.c.
14834
14835         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
14836         mono_sparc_is_virtual_call ().
14837         
14838         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
14839
14840         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
14841         trampoline parameters.
14842
14843         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
14844         
14845         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
14846         to mono_arch_get_vcall_slot_addr.
14847
14848         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
14849         trampoline code.
14850
14851         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
14852
14853 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
14854
14855         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
14856
14857 2005-07-19  Martin Baulig  <martin@ximian.com>
14858
14859         * exceptions-amd64.c (throw_exception): Call
14860         mono_debugger_throw_exception() here like we're doing it on i386.
14861
14862 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
14863
14864         * mini-ia64.c: Add optimized TLS access support.
14865
14866 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
14867
14868         * mini-exceptions.c: Ongoing IA64 work.
14869
14870         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
14871
14872         * mini.c: Use the default optimization set when embedding. Fixes
14873         #75194.
14874
14875 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
14876
14877         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
14878         of trampolines to a separate file.
14879
14880         * mini-trampolines.c: New file.
14881
14882         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
14883         separate file.
14884         
14885         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
14886         amd64/ia64 code.
14887
14888         * mini-codegen.c: Fix cygwin build.
14889
14890 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
14891
14892         * mini.c: Add some minor changes needed by the IA64 port.
14893
14894         * *-ia64.*: Ongoing IA64 work.
14895
14896 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
14897
14898         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
14899         trampolines into arch-independent and arch-dependent parts.
14900
14901         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
14902
14903 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
14904
14905         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
14906
14907         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
14908         the xp-regalloc-branch for amd64.
14909
14910         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
14911         xp-regalloc-branch for x86.
14912
14913 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
14914
14915         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
14916
14917 2005-07-06  Martin Baulig  <martin@ximian.com>
14918
14919         * mini.c
14920         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
14921         (mono_jit_runtime_invoke): Likewise.
14922
14923 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
14924
14925         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
14926         on x86 too.
14927         
14928         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
14929         without loading their metadata. Reorganize the file format so exception handling+
14930         debug info is kept separate from normal method info. Create MonoJitInfo 
14931         structures for methods lazily.
14932
14933         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
14934         loading metadata.
14935         (x86_class_init_trampoline): Patch AOT class init trampolines too.
14936
14937         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
14938
14939         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
14940         in AOT code.
14941
14942         * mini.h: Bump AOT file version.
14943
14944 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
14945
14946         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
14947
14948 2005-07-01  Raja R Harinath  <rharinath@novell.com>
14949
14950         * Makefile.am (check-local): Call semdel-wrapper.
14951
14952 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
14953
14954         * mini-x86.c: Revert the last change as it seems to break the build..
14955
14956 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
14957
14958         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
14959         
14960         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
14961
14962 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
14963
14964         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
14965         outside of the macro, so strange stuff doesn't happen with gcc4
14966         (NEW_AOTCONST_TOKEN): Likewise.
14967
14968 2005-06-28  Martin Baulig  <martin@ximian.com>
14969
14970         * mini.c (mini_class_is_system_array): New static method; use this
14971         instead of `klass->parent == mono_defaults.array_class' everywhere
14972         since this also works for the new generic array class.
14973
14974 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
14975
14976         * inssel.brg: Remove warnings.
14977
14978 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
14979
14980         * mini-ia64.c: Ongoing IA64 work.
14981
14982         * basic-float.cs: Add float->i1 conversion test.
14983
14984         * iltests.il: Add conv.u4 test.
14985
14986 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
14987
14988         * inssel-long.brg: Fix bug caused by last change.
14989
14990 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
14991
14992         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
14993         BSDs.  Allows the x86 JIT to work on OSX86
14994
14995 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
14996
14997         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
14998         u4->i8 conversion.
14999
15000         * mini-ia64.c: Ongoing IA64 work.
15001
15002 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
15003
15004         * mini-ia64.c: Ongoing IA64 work.
15005
15006         * driver.c: Clean up jit_code_hash as well when using --regression.
15007
15008         * inssel-long.brg: Fix long->i4/u4 conversion rules.
15009
15010         * basic-long.cs: Add tests for long->u4 conversion.
15011
15012 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
15013
15014         * mini.c: Take mono_get_domainvar out of macros. This makes sure
15015         that we do not depend on undefined C behavior: the order stuff
15016         gets evaluated within an expression. Fixes mono when compiled on
15017         GCC 4.
15018
15019 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
15020
15021         * *-ia64.*: Ongoing IA64 work.
15022
15023         * aot.c: Lower memory usage while loading AOT methods.
15024
15025         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
15026
15027         * mini.h: Bump AOT file format version.
15028
15029 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
15030
15031         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
15032
15033 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
15034
15035         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
15036         not on callee assembly). Fixed some comments.
15037
15038 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
15039
15040         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
15041         it gets proper disassembly.
15042         (emit_method_info): Remove some dead code.
15043
15044         * mini.c (mini_method_compile): Allways allocate the GOT var in
15045         mono_method_to_ir for emulating opcodes.
15046
15047 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
15048
15049         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
15050         before freeing the code memory. Fixes #74990.
15051
15052         * objects.cs: Add regression test for #74992.
15053
15054         * liveness.c: Extend live ranges of arguments to the beginning of the
15055         method. Fixes #74992.
15056
15057         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
15058         so it points into the faulting instruction.
15059
15060 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
15061
15062         * jit-icalls.c (mono_imul_ovf): Add exception handling.
15063
15064         * *-ia64.*: Ongoing IA64 work.
15065
15066         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
15067
15068 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
15069
15070         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
15071
15072         * *-ia64.*: Ongoing IA64 work.
15073
15074 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
15075
15076         * basic-long.cs: Add tests for add/sub.ovf.
15077
15078         * basic.cs: Add tests for sub.ovf.
15079
15080         * *-ia64.*: Ongoing IA64 work.
15081
15082 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
15083
15084         * *-ia64.*: Ongoing IA64 work.
15085
15086         * basic.cs: Add conv.ovf.i4.un test.
15087
15088 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
15089
15090         * mini.c: (remove_block_if_useless) Fixed bug 75061.
15091         
15092 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15093
15094         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
15095
15096 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
15097
15098         * *-ia64.*: Ongoing IA64 work.
15099
15100 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15101
15102         * trace.[ch]:
15103         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
15104
15105 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
15106
15107         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
15108
15109 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
15110
15111         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
15112
15113         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
15114         of a call is callable by a near call.
15115
15116 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
15117
15118         * mini-ia64.c: Ongoing IA64 work.
15119
15120 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
15121
15122         * genmdesc.c: Make the generated array non-static.
15123
15124         * inssel-long.brg: Fix LSHR_IMM rule.
15125
15126         * *-ia64.*: Ongoing IA64 work.
15127
15128         * *-ia64.*: Ongoing IA64 work.
15129
15130 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
15131
15132         * *-ia64.*: Ongoing IA64 work.
15133
15134         * *-ia64.*: Ongoing IA64 work.
15135         
15136         * mini-ia64.c: Ongoing IA64 work.
15137
15138         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
15139
15140 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
15141
15142         * objects.cs basic-calls.cs: Move some tests to objects.cs.
15143         
15144         * objects.cs basic-long.cs: Move some tests to objects.cs.
15145
15146 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
15147
15148         * *-ia64.*: Ongoing IA64 work.
15149
15150         * iltests.il: Add a new test.
15151
15152         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
15153         newobj. Fixes #75042.
15154
15155 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
15156
15157         * *-ia64.*: Ongoing IA64 work.
15158         
15159         * *-ia64.*: Ongoing IA64 work.
15160         
15161         * *-ia64.*: Ongoing IA64 work.
15162
15163         * basic.cs objects.cs: Move tests accessing static variables as well.
15164
15165         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
15166
15167 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
15168
15169         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
15170
15171         * driver.c: Always print failed tests.
15172
15173         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
15174         frame pointer.
15175
15176         * *ia64*: Ongoing IA64 work.
15177
15178 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
15179
15180         * basic.cs: Add tests for add.ovf. Fix warnings.
15181
15182 2005-05-18  Miguel de Icaza  <miguel@novell.com>
15183
15184         * driver.c (mono_main): Avoid crash if no argument is passed to
15185         --break;  Do not use g_error, but f_printf.   And fix all other
15186         ocurrences of the same crash.
15187
15188 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
15189
15190         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
15191         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
15192         Fixes #74742.
15193
15194 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
15195
15196         * *-ia64.*: Add beginnings of IA64 backend.
15197
15198         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
15199
15200 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
15201
15202         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
15203         Fixes #74925.
15204
15205         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
15206
15207         * mini-amd64.c: Fix a warning.
15208
15209 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
15210
15211         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
15212         in float_neg. Fixes #74897.
15213
15214         * mini-amd64.c (emit_call): Fix another near call bug.
15215
15216 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
15217
15218         * declsec.c: Keep the appdomain information in the structure. Added a 
15219         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
15220         value gets overwritten).
15221         * declsec.h: Set the default MonoArray for the the stack to 6. Added
15222         an MonoAppDomain member to MonoSecurityFrame.
15223         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
15224         used in the stack walk. Now use a MonoArray which grow (double) when
15225         it gets full.
15226
15227 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
15228
15229         * mini.c: Re-enabled runtime cleanup, since running threads should
15230         now properly stop when exiting.
15231
15232 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
15233
15234         * mini-codegen.c: New file contaning the arch-independent local
15235         register allocator. Not used by any architectures yet.
15236
15237         * mini.h linear-scan.c: Merge some changes from the 
15238         mini-xp-local-regalloc branch.
15239
15240 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
15241
15242         * mini-amd64.c (emit_call): Fix calls to native functions when the
15243         runtime is compiled as a shared library. Fixes #74756.
15244
15245         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
15246         on a literal field. Fixes #74751.
15247
15248 2005-04-25  Raja R Harinath  <rharinath@novell.com>
15249
15250         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
15251
15252 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
15253
15254         * objects.cs: Add missing null casting test.
15255
15256 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
15257
15258         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
15259         in wrapper methods. Also rename 'address' variable to 'offset'.
15260
15261 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
15262
15263         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
15264         warnings.
15265         
15266         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
15267
15268         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
15269         work on windows.
15270
15271 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
15272
15273         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
15274
15275 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
15276
15277         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
15278         just the last bytes.
15279
15280 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
15281
15282         * aot.c (mono_compile_assembly): Fix warning.
15283
15284         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
15285         by the _MSC_VER stuff.
15286
15287 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
15288
15289         * inssel-long.brg: Fix #74588.
15290
15291         * cpu-amd64.md: Fix #74591.
15292
15293         * iltests.il: Add new regression tests.
15294
15295 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
15296
15297         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
15298         valuetype.
15299
15300 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
15301
15302         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
15303
15304         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
15305         from Bill Middleton <flashdict@gmail.com>.
15306
15307 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
15308
15309         * arrays.cs: Add new regression test. Fix warnings.
15310
15311 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
15312
15313         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
15314         and leakage in CKFINITE.
15315
15316         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
15317         this to a null op since it is called on amd64 too.
15318
15319         * exceptions-amd64.c (get_throw_trampoline): Align stack.
15320
15321         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
15322         body since this is not used on amd64.
15323         
15324         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
15325
15326         * mini-amd64.c: Remove obsolete fixmes.
15327
15328         * mini.c (print_method_from_ip): Fix debugging support.
15329
15330 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
15331
15332         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
15333         so that expressions that don't give much gain are not reduced.
15334         * ssapre.h: Likewise.
15335
15336 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
15337
15338         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
15339
15340         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
15341
15342         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
15343
15344 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
15345
15346         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
15347
15348         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
15349
15350 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
15351
15352         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
15353         stack touching.
15354
15355         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
15356
15357         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
15358
15359         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
15360
15361         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
15362         MONO_ARCH_USE_SIGACTION. Fixes #74252.
15363
15364         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
15365
15366         * mini-x86.c: Fix up stack overflow handling.   
15367
15368         * exceptions.cs: Add new regression test.
15369
15370 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
15371
15372         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
15373         mono_jit_thread_attach.
15374
15375         * mini.c (mono_method_to_ir): Verify called method is not abstract.
15376
15377 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
15378
15379         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
15380         avoid calling constructors using callvirt.
15381
15382         * inssel.brg: Fix #74073.
15383
15384 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
15385
15386         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
15387         compilation with non-GCC compilers.
15388         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
15389         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
15390
15391 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
15392
15393         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
15394         klass->interface_offsets (will likely fix bug#74073).
15395
15396 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
15397
15398         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
15399
15400 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
15401
15402         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
15403         to amd64_div_reg_size ().
15404         
15405         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
15406
15407 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
15408
15409         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
15410
15411 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
15412
15413         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
15414
15415 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
15416
15417         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
15418         
15419         * mini.c (mono_precompile_assembly): Load and precompile referenced
15420         assemblies as well. Fixes #74015.
15421
15422 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
15423
15424         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
15425
15426 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
15427
15428         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
15429         a lot of checks and (anyway) permissions cannot work until corlib is 
15430         loaded.
15431
15432 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
15433
15434         * mini-ppc.c: fixed ABI issue on sysv/ppc.
15435
15436 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
15437
15438         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
15439         calls (fixes bug#72824).
15440
15441 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15442
15443         * mini.c: fix tail recursion elimination (see test in bug#73936).
15444
15445 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
15446
15447         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
15448         some fp functions in sse2 mode.
15449
15450 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
15451
15452         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
15453
15454 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
15455
15456         * mini.h mini.c: Add mono_get_jit_tls_key ().
15457
15458         * mini-x86.c: Enable fast TLS support on windows.
15459
15460 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
15461
15462         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
15463         * mini.c: Check for p/invoke method when generating code. If a
15464         p/invoke method, or it's class, isn't decorated with [Suppress
15465         UnmanagedCodeSecurity] then generate code to call System.Security.
15466         UnmanagedDemand (only if the security manager is active).
15467
15468 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
15469
15470         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
15471         last change as it seems to cause strange crashes.
15472         
15473 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
15474
15475         * *.c: handle unsafe function pointers where needed.
15476
15477 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
15478
15479         * mini.c (mono_jit_free_method): Remove the fixme too.
15480
15481 2005-03-15  Miguel de Icaza  <miguel@novell.com>
15482
15483         * mini.c: As discussed, make the code actually free the delegate
15484         thunk now, to enable the debugging of delegate problems, use
15485         MONO_DEBUG=1 when running Mono. 
15486
15487         This takes also care of parts of the leaks as seen by Joe.
15488
15489 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
15490
15491         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
15492         thread_tls_offset calculation.
15493
15494 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
15495
15496         * declsec.c: Reworked linkdemand checks for icall. The previous code
15497         was using the declaration code (untrusted) and didn't work as expected
15498         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
15499         specific case.
15500
15501 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
15502
15503         * iltests.il: Add new localloc test.
15504
15505         * mini-amd64.c: Handle large stack allocations the same way as on
15506         windows if stack overflow handling is working.
15507         
15508         * mini-amd64.c: Allocate the signal stack using mmap.
15509
15510         * mini.c (sigsegv_signal_handler): Fix reading of context.
15511
15512         * mini-exceptions.c: Fix up stack overflow handling.
15513
15514         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
15515
15516         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
15517
15518         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
15519
15520         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
15521
15522         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
15523         tramp_init functions as they are no longer needed.
15524
15525 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
15526
15527         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
15528         
15529         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
15530
15531         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
15532         
15533         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
15534         support that now.
15535
15536         * mini-ops.h: Add OP_LMUL_IMM.
15537
15538         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
15539         long mul/div opcodes as intrinsic.
15540
15541         * mini-amd64.c (emit_call): Handle the case when the callee might be
15542         an AOT method.
15543
15544 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
15545
15546         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
15547         extra safe.
15548         
15549         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
15550
15551         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
15552
15553 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
15554
15555         * mini.c (mono_codegen): Don't leak here, to help people running
15556         monogrind.
15557
15558 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
15559
15560         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
15561         conversions in sse2 mode.
15562
15563         * basic-float.cs: Add regression test.
15564         
15565         * mini-amd64.c: Reenable sse2.
15566
15567 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
15568
15569         * mini-amd64.c: Disable sse2 until some regressions are fixed.
15570
15571 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
15572
15573         * driver.c: Copyright text should include 2005.
15574         
15575 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
15576
15577         * cpu-amd64.md (load_membase): Fix more max lengths.
15578
15579 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
15580
15581         * cpu-amd64.md (load_membase): Fix max length.
15582
15583         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
15584
15585         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
15586
15587         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
15588         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
15589
15590         * basic-float.cs: Add rounding regression test.
15591
15592         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
15593
15594 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
15595
15596         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
15597         structures in registers for pinvoke wrappers.
15598
15599 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
15600
15601         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
15602
15603 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
15604
15605         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
15606         wrapper to mono_jit_thread_attach.
15607
15608         * mini.c (mini_jit_thread_attach): New jit icall.
15609
15610         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
15611         native->managed wrappers.
15612
15613         * exceptions.cs: Add new regression test.
15614
15615         * mini.c (optimize_branches): Check regions in the cbranch to throw
15616         block case as well. Fixes #73242.
15617
15618 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15619
15620         * mini.c: thread safety fixes.
15621
15622 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
15623
15624         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
15625         patching stuff, since delegates use jump trampolines so there is
15626         no caller.
15627
15628         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
15629         jump trampolines.
15630         
15631         * tramp-amd64.c: Fix build.
15632
15633         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
15634         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
15635
15636         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
15637         Rename this to mono_arch....
15638         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
15639
15640         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
15641
15642         * mini-amd64.c (emit_call): If both the caller and the callee is
15643         guaranteed to have 32 bit addresses, emit a normal call.
15644
15645         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
15646
15647         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
15648         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
15649         method_ptr inside delegates.
15650
15651 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
15652
15653         * mini.c (mono_jit_free_method): Free the method info even if the native code is
15654         invalidated. Fixes #73001.
15655
15656         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
15657
15658         * mini-x86.c: Only use stdcall for pinvokes on windows.
15659
15660 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
15661
15662         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
15663         * mini-x86.c: remove unreliable __thread var offset detection,
15664         use the correct accessors and enable by default.
15665
15666 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15667
15668         * mini.c (mono_jit_free_method): Fix memory leak.
15669
15670 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
15671
15672         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
15673
15674 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
15675
15676         * cpu-amd64.md: Fix lengths of atomic opcodes.
15677
15678 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15679
15680         * driver.c: try to not imply using ICU is any good.
15681
15682 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
15683
15684         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
15685         functions as inline ops.
15686
15687         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
15688         some Interlocked functions as inline ops.
15689
15690         * mini.c (move_basic_block_to_end): Fix bug in last patch.
15691
15692         * mini.h (MonoBasicBlock): Reorganize fields a bit.
15693
15694         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
15695
15696         * mini.c: Add support for OP_NOT_TAKEN.
15697
15698         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
15699         structures in registers for pinvoke wrappers.
15700
15701         * mini-amd64.c: Fix warnings.
15702
15703 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
15704
15705         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
15706
15707         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
15708
15709         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
15710         address instead of loading the address from it.
15711
15712         * mini-x86.c: Add support for returning small structs in registers
15713         on Win32. Fixes part of #70864.
15714         
15715 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
15716
15717         * trace.c (get_token): Improve error checking.
15718
15719 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15720
15721         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
15722
15723 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
15724  
15725         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
15726         it can be reused for MonoClass.
15727         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
15728         _LINKDEMAND.
15729
15730 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
15731
15732         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
15733         instead of a MonoReflectionMethod. The method information wasn't used
15734         when displaying SecurityException details (but will be now).
15735
15736 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
15737
15738         * Makefile.am : windows build fix.
15739
15740 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15741
15742         * iltests.il: Add new regression test.
15743
15744         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
15745         #72522.
15746
15747 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
15748  
15749         * mini.c: Moved linkdemand check into helper function check_linkdemand
15750         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
15751         LDFTN, LDVIRTFTN).
15752
15753 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
15754
15755         * declsec.c: Added statistics counter for different kinds of 
15756         LinkDemands.
15757         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
15758         (and commented) declaration.
15759         * mini.c: Added statistics counter for security Demand code 
15760         generation. Added display of security statistics.
15761
15762 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
15763
15764         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
15765         Fix compilation errors under gcc-2.95.
15766
15767 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
15768
15769         * mini.c, driver.c: Use the new jit trampoline hashtable
15770
15771 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
15772
15773         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
15774
15775 2005-02-11  Martin Baulig  <martin@ximian.com>
15776
15777         * debug-mini.c (mono_debug_close_method): Free the line number array.
15778
15779 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
15780
15781         * aot.c: Break up large methods into smaller ones. Share GOT slots for
15782         icalls.
15783
15784         * mini.h: Bump AOT file format version. 
15785
15786 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
15787
15788         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
15789         APTC and P/Invoke.
15790         * declsec.h: Added macros to get/set lazyly initialized security 
15791         informations about assemblies. Added new enum for different type of
15792         possible LinkDemand violation. Added function to check LinkDemands.
15793         * mini.h: Added a field to MonoCompile to hold any security violation
15794         detected when JITting a method (so it can be thrown later).
15795         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
15796         and CEE_CALLVIRT. Added code to throw exception at the end of
15797         mini_method_compile (note: the exception is unhandled right now).
15798
15799 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15800
15801         * mini.c, jit-icalls.c: use the managed implementation of
15802         memset for initobj and memset, to avoid managed <-> unmanaged
15803         transitions.
15804
15805 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
15806
15807         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
15808         optimization if it would need a GOT var.
15809
15810         * basic.cs: Add tests for constant propagation and switch statements.
15811
15812         * ssa.c: Fix out-of-range constant propagation and switch statements.
15813
15814 2005-02-09    <vargaz@freemail.hu>
15815
15816         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
15817
15818 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
15819
15820         * cpu-amd64.md (load_membase): Fix max length of load_membase.
15821
15822 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
15823
15824         * mini.c: update to new signature of mono_class_get_allocation_ftn().
15825
15826 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
15827
15828         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
15829         arithmetic operations.
15830
15831 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
15832
15833         * mini-ppc.c: add a workaround for broken user code that
15834         DllImports vararg functions with non-vararg signatures.
15835
15836 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15837
15838         * mini.c (mono_jit_compile_method_inner): Add detection and a 
15839         meaningfull error message for assemblies written in Managed C++.
15840
15841         * tramp-amd64.c mini-amd64.h: Add support for 
15842         create_trampoline_from_token ().
15843
15844         * aot.c mini-x86.c abcremoval.c: Applied patch from
15845         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
15846
15847 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15848
15849         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
15850         which takes a MonoImage/token as parameter instead of a MonoMethod.
15851
15852         * aot.c: Use the new trampoline for initializing vtables.
15853
15854         * aot.c: Add support for ldfld/stfld_remote wrappers.
15855
15856         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
15857         rules for compare <MEM>, IMM.
15858
15859         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
15860
15861         * aot.c: Handle inherited finalizers correctly.
15862
15863 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15864
15865         * inssel.brg (stmt): Add a missing _setup_... ().
15866
15867         * aot.c: Save some parts of the class state to the AOT file and use it
15868         to recompute that state when a class is initialized.
15869
15870         * mini.c: Install AOT hooks into the runtime.
15871
15872         * mini.h: Bump AOT file format version.
15873         
15874         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
15875         Fixes #72148.
15876
15877         * iltests.il: Add new test.
15878
15879 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15880
15881         * mini.c: fix typo.
15882
15883 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
15884
15885         * mini.c: setup the statistical profiler in the thread attach
15886         callback to cope with the new single thread code.
15887
15888 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
15889
15890         * mini-ppc.c: ensure we have enough room for the profiler
15891         calls (fixed bug#72084).
15892
15893 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15894
15895         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
15896         it.
15897
15898 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
15899
15900         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
15901
15902 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
15903
15904         * ssapre.c: Fixed an issue with down safety (this allows IronPython
15905         to succesfully execute parrotbench).
15906         * ssapre.h: Likewise.
15907
15908 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
15909
15910         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
15911         variable for stores to method arguments (fixes a SSAPRE issue).
15912
15913 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15914
15915         * mini.c: handle value types in dup, fixes gen-112.cs.
15916
15917 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
15918
15919         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
15920         sequence for calls in dynamic methods to avoid thunks.
15921
15922 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15923
15924         * mini.c: correctly remove dynamic methods from the hashtable.
15925
15926 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
15927
15928         * driver.c: Disabled SSAPRE until fix the bug that appears
15929         in IronPython's parrotbench.
15930
15931 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15932
15933         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
15934
15935         * mini.c (mono_method_to_ir): Revert the previous change.
15936         
15937         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
15938         when AOT compiling.
15939
15940         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
15941         mono_jit_info_table_find () etc. when running under valgrind.
15942
15943         * inssel.brg: Fix warnings.
15944
15945         * mini-exceptions.c: Fix warnings.
15946
15947 2005-01-31  Martin Baulig  <martin@ximian.com>
15948
15949         * driver.c (compile_all_methods_thread_main): Don't try to compile
15950         generic methods or anything which has type parameters.
15951
15952 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15953
15954         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
15955
15956         * TestDriver.cs: Add --verbose flags.
15957
15958         * graph.c ssa.c: Fix 64 bit warnings.
15959         
15960         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
15961         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
15962         Fix 64 bit warnings.
15963
15964         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
15965         variable not spotted by gcc.
15966         
15967         * mini-amd64.c inssel-amd64.brg: Applied patch from  
15968         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
15969         X86_COMPARE_MEMBASE opcodes.
15970
15971         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
15972
15973 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15974
15975         * *: MonoMethod->signature might be NULL now. You *MUST* use
15976         mono_method_signature.
15977
15978 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15979
15980         * driver.c (compile_all_methods_thread_main): Compile the methods
15981         without invoking cctors.
15982
15983 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15984
15985         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
15986         * basic-calls.cs: test for the above.
15987
15988 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15989
15990         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
15991         MonoJitInfo changes.
15992
15993 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
15994
15995         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
15996         eagerly if it contains dynamic methods.
15997         
15998         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
15999
16000         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
16001         trace, it is now computed by an icall from trace_ips.
16002         
16003         * mini-exceptions.c: Fix a warning.
16004
16005 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
16006
16007         * mini-exceptions.c: don't bother getting stack trace info if
16008         it's not going to be used.
16009
16010 2005-01-27  Raja R Harinath  <rharinath@novell.com>
16011
16012         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
16013         ssapre-mini-ops.h.
16014
16015 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
16016
16017         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
16018
16019         * aot.c: Avoid calling mono_method_get_header () if not needed.
16020
16021         * mini.h: Bump AOT file format version.
16022         
16023         * mini.c (mono_emit_native_call): Allocate a GOT var here.
16024
16025         * mini.c (mono_print_tree): Print more info for calls.
16026
16027 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
16028
16029         * declsec.h: Remove warning by adding missing include for marshal.h
16030
16031 2005-01-26  Martin Baulig  <martin@ximian.com>
16032
16033         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
16034         `ip' twice.
16035
16036 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
16037
16038         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
16039         flags.
16040
16041         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
16042
16043         * aot.c (mono_compile_assembly): Fix a warning.
16044
16045 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
16046
16047         * declsec.c: Look for security attributes on the original MonoMethod 
16048         (and not the wrapped one). This fix permissions on icalls.
16049
16050 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
16051
16052         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
16053
16054         * mini.c (mono_allocate_stack_slots): Add a fixme.
16055
16056         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
16057
16058 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
16059
16060         * inssel.brg: optimize casts of sealed types (more
16061         optimizations waiting for fixes in remoting).
16062
16063 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
16064
16065         * inssel.brg (stmt): Add another dummy rule.
16066
16067         * driver.c: Fix warnings.
16068
16069         * driver.c (mono_main): If running under valgrind, instruct glib to use
16070         the system allocation functions so valgrind can track the memory
16071         allocated by the g_... functions.
16072
16073         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
16074
16075         * mini-ops.h: Add OP_DUMMY_STORE opcode.
16076
16077         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
16078
16079         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
16080         variables in try regions.
16081
16082         * mini.c (mini_method_compile): Don't disable optimizations on large
16083         methods when AOT compiling.
16084
16085         * mini.c (mono_allocate_stack_slots): New arch independent method to 
16086         allocate stack slots. Not yet used.
16087
16088 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
16089
16090         * debug-mini.c (mono_debug_close_method): Plug some leaks.
16091
16092 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
16093
16094         * mini-ppc.c: make the branch info relative as the code
16095         buffer can be reallocated.
16096
16097 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
16098
16099         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
16100         * driver.c: Removed the AOT/security restriction. Now initialize the
16101         security manager (in metadata) if --security is used.
16102         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
16103         rather than the pointer to declarative security, when AOT is used.
16104
16105 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
16106
16107         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
16108         basic blocks, reduced intrinsic exception throwing code size.
16109
16110 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16111
16112         * driver.c (mini_usage): Reorder the usage screen.
16113
16114 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
16115
16116         * mini.c (mono_resolve_patch_target): Fix warning.
16117
16118 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
16119
16120         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
16121         previous patch.
16122
16123         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
16124
16125         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
16126         breaks the amd64 build.
16127
16128         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
16129         register allocation. Fixes #71454.
16130
16131         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
16132
16133         * arrays.cs: Add new regression test.   
16134
16135 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
16136
16137         * ssapre.c: Turned usage of snprintf to GString.
16138         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
16139         (I left it on by mistake in my previous commit).
16140
16141 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
16142
16143         * mini.c, cfold.c, basic-calls.cs: preserve side effects
16144         on cond branch optimization (fixes bug# 71515).
16145
16146 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
16147
16148         * abcremoval.c: Fixed bug 71062.
16149         * abcremoval.h: Likewise.
16150
16151 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
16152
16153         * mini.c: Added a new functionality to optimize_branches, the removal
16154         of useless basic blocks, and fixed some problem in the removal of
16155         critical edges; some utility functions added for both purposes.
16156         * ssapre.c: Added complex expression support, and fixed bug 70637.
16157         * ssapre.h: Likewise.
16158         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
16159         enabled in SSAPRE.
16160         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
16161         * driver.c: Re-enabled SSAPRE.
16162
16163 2005-01-19  Martin Baulig  <martin@ximian.com>
16164
16165         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
16166         the result of mono_get_method_constrained().
16167
16168 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
16169
16170         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
16171         manager.
16172
16173 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
16174
16175         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
16176         be detected.  Fixes #59296.
16177
16178 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
16179
16180         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
16181         which can happen. Fixes #71361.
16182
16183 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
16184
16185         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
16186         manager.
16187
16188 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
16189
16190         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
16191         appdomain-unload.exe to fail.
16192         
16193         * mini.c: Fix some memory leaks.
16194
16195 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
16196
16197         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
16198         Fixed bug and sped up some codepaths.
16199
16200 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
16201
16202         * mini.c: Fix some memory leaks.
16203
16204         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
16205         conversion.
16206
16207         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
16208
16209         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
16210         #71320.
16211
16212         * iltests.il: Add regression test for #71320.
16213
16214 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
16215
16216         * mini.c (mono_codegen): Fix installation of profiler hooks.
16217
16218         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
16219
16220 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
16221
16222         * mini.h, mini.c, cfold.c: optimize access to enum
16223         readonly fields, too. Eval conditional branches if possible
16224         to perform unreachable code removal in more cases.
16225
16226 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
16227
16228         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
16229
16230         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
16231         code manager.
16232
16233         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
16234         WinXP DEP. Fixes #71244.
16235
16236 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
16237
16238         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
16239
16240 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
16241
16242         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
16243
16244 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16245
16246         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
16247         changes.
16248
16249         * mini.h: Bump AOT version.
16250
16251         * mini.h (MonoCompile): Change exvar to a hash table.
16252
16253         * mini.c: Allocate a separate exvar for each handler block.
16254
16255         * mini.c: Get rid of the computation of filter_lengths, its not needed.
16256
16257         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
16258         ex var with the pending exception and only throw if the two are equal.
16259         Fixes #68552.
16260         
16261         * exceptions.cs: Add tests for rethrow and nested catch clauses.
16262
16263         * mini-x86.c: Fix warnings.
16264
16265         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
16266         used by all the ports now.
16267
16268         * aot.c: Add write-symbols and save-temps options.
16269
16270 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
16271
16272         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
16273
16274 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
16275
16276         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
16277         operations.
16278
16279         * tramp-s390.c: Check vtable slot belongs to the domain.
16280
16281         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
16282         as per other platforms.
16283
16284         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
16285
16286 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
16287
16288         * driver.c: we don't run the Main() code in a subthread anymore.
16289
16290 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
16291
16292         * mini.c: added experimental rtc support in the statistical
16293         profiler: if the user has the permission, more accurate statistics
16294         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
16295         The MONO_RTC value must be restricted to what the linux rtc allows:
16296         power of two from 64 to 8192 Hz.
16297
16298 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
16299
16300         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
16301
16302 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
16303
16304         * mini-ppc.c: better icache flush for smp.
16305
16306 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
16307
16308         * mini-amd64.c (emit_move_return_value): Fix memory leak.
16309
16310         * mini-x86.c (get_call_info): Add the get_call_info () code from the
16311         amd64 port, not yet used.
16312
16313 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
16314
16315         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
16316         a struct type.
16317
16318 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
16319
16320         * driver.c: Added --security option to activate the security manager.
16321         Right now this will allow code generation for declarative demands and
16322         is disabled when AOT is specified.
16323         * mini.c: Add code generation for declarative security demands.
16324         * mini.h: Add mono_use_security_manager as an extern gboolean.
16325
16326 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
16327
16328         * aot.c (mono_compile_assembly): Speed up compilation a bit by
16329         emitting more dense assembly code.
16330
16331         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
16332         exception throwing stuff.
16333
16334 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
16335
16336         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
16337         dead code.
16338
16339         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
16340         left in by mistake.
16341
16342         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
16343         fixed.
16344
16345         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
16346
16347         * tramp-*.c: Only patch vtable slots if the object is in the current
16348         domain. Fixes appdomain-unload.exe.
16349
16350         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
16351         
16352         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
16353         x86 branch.
16354
16355 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16356
16357         * mini.c (reverse_branch_op): New helper function.
16358
16359         * mini.c (optimize_branches): Run the new optimization only on 
16360         platforms which support it. Also reverse all kinds of branches.
16361
16362         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
16363
16364         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
16365         a throw statement.
16366
16367         * mini.c (optimize_branches): Reverse not-equals branches if the false
16368         bblock is a throw. This happens a lot of time with argument checking in
16369         corlib.
16370
16371         * mini.c (mono_codegen): Add support for placing basic blocks after
16372         the function epilogue.
16373
16374         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
16375         function epilogue.
16376         
16377 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
16378
16379         * mini.c (setup_stat_profiler): Only set this up if the platform
16380         supports ITIMER_PROF.
16381
16382 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16383
16384         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
16385         previous patch.
16386
16387         * inssel.brg: Fix a warning.
16388
16389 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
16390
16391         * mini.c: added support for statistical profiler 
16392         (run with: --profile=default:stat).
16393
16394 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
16395
16396         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
16397
16398         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
16399
16400         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
16401         related to global registers from the amd64 port.
16402
16403 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
16404
16405         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
16406
16407         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
16408         with global registers.
16409         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
16410
16411         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
16412
16413 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
16414
16415         * debug-mini.c (encode_value): Fix off-by-one.
16416
16417         * aot.c (encode_value): Likewise.
16418
16419         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
16420
16421 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
16422
16423         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
16424         AOT.
16425
16426         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
16427         
16428         * aot.c (emit_method_info): Increase size of temp buffer.
16429
16430         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
16431         the AOT case.
16432
16433 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16434
16435         * aot.c (emit_method_info): Fix build.
16436         
16437         * aot.c: Further rework of the AOT file format to reduce the size of
16438         the method info data.
16439
16440         * mini.h: Bump AOT file format version.
16441
16442 2004-12-27  Martin Baulig  <martin@ximian.com>
16443
16444         * mini.c (mini_get_method): New static method; call
16445         mono_get_method_full() and mono_get_inflated_method().
16446         (mono_method_to_ir): Use mini_get_method() instead of
16447         mono_get_method_full(). 
16448
16449 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
16450
16451         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
16452
16453 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
16454
16455         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
16456
16457         * inssel-amd64.brg: Add some optimization rules.
16458
16459 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
16460
16461         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
16462         standard not GC'd stuff is fine.
16463
16464 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
16465
16466         * aot.c: Rework the AOT file format to get rid of most of the global
16467         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
16468
16469         * mini.h: Bump AOT file format version.
16470         
16471 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
16472
16473         * mini.h: Bump AOT file format version.
16474
16475         * aot.c (mono_aot_is_got_entry): New function to determine if an 
16476         address is inside a GOT.
16477
16478         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
16479
16480         * cpu-pentium.md: Increase the maximum size of some instructions which
16481         might involve a got access.
16482         
16483         * mini.c (get_method_from_ip): Another debug helper function.
16484
16485         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
16486         when got var accesses are created during the decompose phase.
16487
16488         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
16489
16490         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
16491         argument mini_compile_method and to MonoCompile, and use this to
16492         determine whenever a given method is compiled for AOT. This allows the
16493         other methods compiled during AOT compilation to be free of AOT stuff,
16494         so the backends does not need to add special support for them by
16495         creating a fake GOT etc.
16496
16497         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
16498         longer needed.
16499
16500 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
16501
16502         * mini.c (mono_method_to_ir): It turns out that some of the
16503         x-appdomain wrappers are lax with types, so just ignore this for
16504         all wrappers.
16505
16506         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
16507         at the vtable->klass. If it is non-shared code we can just use the
16508         vtable.
16509
16510 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
16511
16512         * mini-ppc.c: access MonoDomain from tls, too.
16513
16514 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
16515
16516         * declsec.c: Removed unused variable (and related warning ;-)
16517
16518 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
16519
16520         * iltests.il: New test for LDELEMA on an array of ref types.
16521
16522         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
16523         all ldelema's on reftypes.
16524         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
16525         it was the wrong place to put it.
16526
16527         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
16528         register to pop to make this cleaner, at the request of Paolo.
16529
16530 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
16531
16532         * mini-ops.h (OP_GETHASHCODE): New op.
16533
16534         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
16535
16536         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
16537         operation.
16538
16539         For a microbenchmark, this reduces the cost of Hashtable.get_Item
16540         by 25%.
16541         
16542         * mini-x86.c (mono_arch_output_basic_block): Rather than
16543
16544         add ebp, 4
16545
16546         Emit
16547
16548         pop edx
16549
16550         The first is 3 bytes while the second is 1. This saves 36 kb on
16551         mscorlib, quite a big saving. When bootstraping mcs, I was able to
16552         see a small boost because of icache locality.
16553
16554         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
16555
16556 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
16557
16558         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
16559         started code sharing with the generic code.
16560
16561 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
16562
16563         * mini-ppc.c, cpu-g4.md: added code for direct access to
16564         tls data slots.
16565
16566 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
16567
16568         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
16569          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
16570         to OP_TLS_GET.
16571
16572 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
16573
16574         * declsec.c|h: Added functions to cache the declarative stack modifiers
16575         in MonoJitInfo and to create a security frame from a MonoJitInfo 
16576         structure.
16577         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
16578         created. Register internal calls for System.Security.SecurityFrame::
16579         _GetSecurityFrame and _GetSecurityStack.
16580         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
16581         the definitions for the new stack walk/callback mechanism.
16582         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
16583         first security frame for LinkDemands and InheritanceDemands) and
16584         GetSecurityStack for Demands. Both use the new mono_walk_stack code
16585         from lupus.
16586         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
16587         walk initialization (lupus).
16588
16589 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
16590
16591         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
16592         idiom.
16593         (handle_loaded_temps): Do not create a temporary variable for
16594         things that we know are temps. They will never be modified.
16595         (mono_spill_call): Set MONO_INST_IS_TEMP
16596         (mono_emulate_opcode): ditto
16597         (emit_tree): ditto
16598         (mono_method_to_ir.CEE_DUP): ditto
16599
16600 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
16601
16602         * mini.c (type_to_eval_stack_type): Make this handle the void type
16603         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
16604         (emit_tree): use ip_in_bb to special case some common idioms
16605         Update all callers to pass in the IP.
16606         (mono_method_to_ir): Make CEE_CALL* do the above as well.
16607
16608         This gives us a nice 2% speedup in mcs bootstrap.
16609
16610         * mini-x86.c (peephole_pass): Peephole pass to make
16611         mov  [foo], eax
16612         push [foo]
16613
16614         into
16615
16616         mov [foo], eax
16617         push eax
16618
16619         * mini.c (ip_in_bb): new method.
16620         (mono_method_to_ir): use this method rather than doing the hash
16621         lookup ourselves.
16622
16623         * linear-scan.c (mono_linear_scan): When expiring actives, you
16624         don't need to keep around variables that expire on this
16625         instruction. This makes it so that:
16626              a = b + 1
16627         will turn into:
16628              store (ebx add (ebx, 1))
16629         which will become
16630              add ebx, 1
16631
16632 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
16633
16634         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
16635         combination to avoid doing two copies. Fix up problems with previous
16636         patch.
16637
16638         * mini.c: Fix 64 bit warnings.
16639
16640         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
16641
16642 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
16643
16644         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
16645         changes from the x86 code.
16646
16647         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
16648
16649 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
16650
16651         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
16652         throwing code to reduce its size, unify the AOT and non-aot code and 
16653         get rid of relocations in the AOT case.
16654
16655         * mini-x86.h mini.c exceptions-x86.c 
16656         (mono_arch_get_throw_corlib_exception): New arch specific function to 
16657         raise corlib exceptions which doesn't require relocations in the 
16658         caller.
16659
16660         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
16661
16662 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
16663
16664         * mini.c (mono_emit_method_call): Only allocate the got var when it is
16665         needed.
16666
16667         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
16668         in the AOT case.
16669
16670 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
16671
16672         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
16673         with add function when used from Inc/dec atomic 
16674         functions. Re-enabled optimization on x86.
16675         * mini-ops.h: renamed atomic_add functions to
16676         allow _add to match the Interlocked::Add and
16677         _add_next to match Interlocked::Inc/Dec.
16678
16679 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
16680
16681         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
16682         linking of BBs to the end BB, and enabled SSAPRE also with
16683         consprop and copyprop (which was prevented by that bug).
16684
16685 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
16686
16687         * mini-x86.c: disabling the Interlocked optimizing code. 
16688
16689 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
16690
16691         * aot.c (load_aot_module): Move reading of got_addr after the AOT
16692         file version check.
16693         
16694 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
16695
16696         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
16697         interlocked optimization due lack of support on x86, rewrote 
16698         exchange to take into account that base may be in eax.
16699         
16700         xsp works again; activated Interlocked optimizing code.
16701         
16702 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
16703
16704         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
16705
16706 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
16707
16708         * mini-ops.h: Add new opcodes.
16709
16710         * mini.h: Add new patch types. Add got_var to MonoCompile.
16711
16712         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
16713         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
16714         make it work with all kinds of patchable code.
16715
16716         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
16717         address of the GOT, and referencing entries in the GOT.
16718
16719         * mini.c: Add code to load the GOT address if needed by an opcode.
16720
16721         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
16722         independent AOT code on the x86 using an elf-style Global Offset Table.
16723
16724 2004-12-14  Raja R Harinath  <rharinath@novell.com>
16725
16726         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
16727
16728 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16729
16730         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
16731         when running xsp.
16732
16733 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
16734
16735         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
16736         of Interlocked:Increment/Decrement/Add as inline ops.
16737         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
16738
16739 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
16740
16741         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
16742         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
16743
16744 2004-12-12  Duncan Mak  <duncan@ximian.com>
16745
16746         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
16747         again. `patch_info->table_size' is no longer valid after Zoltan's
16748         commit #37636.
16749
16750 2004-12-12  Martin Baulig  <martin@ximian.com>
16751
16752         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
16753         if we are the "real" method, ie. not an inlined method inside it.
16754
16755 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
16756
16757         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
16758         before we look in the special fields table. This fixes
16759         ../tests/thread-static-init.cs.
16760
16761 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16762
16763         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
16764         for Array get_Rank and get_Length. Fixes bug #70465.
16765
16766 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
16767
16768         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
16769         separate structure to reduce the size of MonoJumpInfo.
16770
16771 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16772
16773         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
16774
16775 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
16776
16777         * mini.c (mini_get_inst_for_method): Changed to allow ports
16778         to return a MonoInst instead of opcode 
16779         (renamed mini_get_opcode_for_method to better reflect the new functionality)
16780         
16781         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
16782         Allow ports to return a created MonoInst instead of op-code, will enable
16783         new optimizations.
16784         (renamed mini_get_opcode_for_method to better reflected the functionality)
16785
16786 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
16787
16788         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
16789
16790 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16791
16792         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
16793         Fixes #69985.
16794
16795 2004-12-08  Martin Baulig  <martin@ximian.com>
16796
16797         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
16798         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
16799
16800 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16801
16802         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
16803         correctly.
16804
16805         * exceptions.cs: Disable some tests which depend on properties of x86 fp
16806         arithmetic.
16807
16808 2004-12-08  Raja R Harinath  <rharinath@novell.com>
16809
16810         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
16811
16812 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
16813
16814         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
16815         bug introduced by the previous patch.
16816
16817 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
16818
16819         * mini-ppc.c, objectc.cs: handle large structs passed by value
16820         (fixes bug #69972).
16821
16822 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
16823
16824         * mini-ppc.c: OP_ARGLIST implementation from
16825         Geoff Norton  <gnorton@customerdna.com>.
16826
16827 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
16828
16829         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
16830         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
16831
16832 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
16833
16834         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
16835
16836 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16837
16838         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
16839         support.
16840
16841 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
16842
16843         * mini-sparc.c: Zero out localled-ed memory.
16844
16845         * iltests.il: Add tests for zeroing out localloc-ed memory.
16846
16847 2004-12-04  Martin Baulig  <martin@ximian.com>
16848
16849         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
16850         mono_method_get_signature_full().       
16851
16852 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
16853
16854         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
16855         and some utility functions (always for SSAPRE), integrated SSAPRE.
16856         * mini.h: Likewise.
16857         * driver.c: Added ssapre option.
16858         * ssa.c: Small fix on OP_ARG handling.
16859         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
16860         * Makefile.am: Likewise.
16861
16862 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16863
16864         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
16865         now in the xp code.
16866
16867         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
16868         icall.
16869
16870 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16871
16872         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
16873         
16874         * cpu-s390.md : Increase instruction length of oparglist.
16875
16876         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
16877
16878 2004-11-30  Martin Baulig  <martin@ximian.com>
16879
16880         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
16881         virtual generic methods.  We call a special helper_compile_generic_method()
16882         icall to retrieve the method from the vtable, inflate and compile
16883         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
16884
16885         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
16886
16887 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
16888
16889         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
16890
16891 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
16892
16893         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
16894         Fixes #69929.
16895
16896 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
16897
16898         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
16899         platforms with PIC aot.
16900
16901 2004-11-28  Martin Baulig  <martin@ximian.com>
16902
16903         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
16904         Fixes gen-112.cs.
16905
16906 2004-11-28  Martin Baulig  <martin@ximian.com>
16907
16908         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
16909         the result of mono_type_get_underlying_type() to check whether
16910         we're byref.
16911
16912 2004-11-26  Martin Baulig  <martin@ximian.com>
16913
16914         * mini.c
16915         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
16916         in the g_assert().
16917
16918 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
16919
16920         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
16921         the same way as the other arguments so they won't get clobbered.
16922
16923         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
16924         calls through R11 since it is clobbered by the trampoline code.
16925
16926 2004-11-26  Raja R Harinath  <rharinath@novell.com>
16927
16928         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
16929         pick up in-tree mscorlib.dll.
16930
16931 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16932
16933         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
16934
16935         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
16936         runtime data/code are now stored in a table similar to the GOT in ELF. 
16937         This allows the code itself to be position independent.
16938
16939         * aot.c: Fix loading of referenced assemblies after the lazy assembly
16940         loading changes.
16941
16942         * aot.c: Attach ELF type (object/function) directives to all global
16943         symbols.
16944
16945         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
16946
16947         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
16948
16949         * mini-amd64.h: Turn on PIC AOT code.
16950
16951         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
16952         returning the offset within an OP_AOTCONST instruction where the GOT
16953         offset needs to be added.
16954
16955         * mini.h: Bump AOT file format version.
16956
16957 2004-11-25  Martin Baulig  <martin@ximian.com>
16958
16959         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
16960         uninflated generic methods.
16961
16962 2004-11-25  Martin Baulig  <martin@ximian.com>
16963
16964         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
16965
16966 2004-11-24  Martin Baulig  <martin@ximian.com>
16967
16968         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
16969         original klass (this only applies for generic instances).
16970
16971 2004-11-24  Martin Baulig  <martin@ximian.com>
16972
16973         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
16974         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
16975         that array).
16976
16977 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16978
16979         * mini.c (mono_method_to_ir): Disable inlining for methods containing
16980         localloc. Fixes #69678.
16981
16982         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
16983         
16984 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
16985
16986         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
16987         used SSE registers on pinvoke calls. Fixes #69774.
16988
16989 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
16990
16991         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
16992         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
16993
16994 2004-11-23  Raja R Harinath  <rharinath@novell.com>
16995
16996         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
16997         Refer directly to the mcs/ tree.
16998
16999 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17000
17001         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
17002         Check if a trampoline for a synchronized method is required. 
17003
17004 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
17005
17006         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
17007         with localloc if needed. Throe arithmetric exception in
17008         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
17009         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
17010
17011 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
17012
17013         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
17014         types before switching on type.  Fixes #69622.
17015
17016 2004-11-19  Raja R Harinath  <rharinath@novell.com>
17017
17018         * Makefile.am (check-local): New.  Integrate into 'make check'.
17019         (MCS,RUNTIME): Define using in-tree mono and mcs.
17020         (ILASM): New.
17021         (%.exe): Use $(ILASM).
17022
17023 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
17024
17025         * mini-ppc.c: adjust initial prolog size (bug #69691).
17026
17027 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
17028
17029         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
17030         #69664.
17031
17032 2004-11-17  Raja R Harinath  <rharinath@novell.com>
17033
17034         * Makefile.am (clean-local): Rename from 'clean'.
17035
17036 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17037
17038         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
17039         to mono_arch_is_int_overflow. 
17040         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
17041         SIGFPE events.
17042
17043 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
17044
17045         * declsec.c|h: New files to support declarative security attributes.
17046         Added function to check if a method has (applicable) security.
17047         * mini.c|h: Add check for declarative security attributes in
17048         mono_method_check_inlining.
17049         * Makefile.am: Added declsec.c and declsec.h to the build.
17050
17051 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
17052
17053         * mini.c, mini.h: update to keep dynamic code info per-domain.
17054
17055 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
17056
17057         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
17058         (mini_init): Get rid of it from here too.
17059
17060 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
17061
17062         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
17063         implemented OP_RETHROW (patch by Geoff Norton
17064         <gnorton@customerdna.com>).
17065
17066 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
17067
17068         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
17069         between appdomains.  Fixes appdomain-unload on PPC.
17070
17071 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
17072
17073         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
17074         mini-exceptions.c: handle the new wrapper types.
17075         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
17076         token value as a MonoClass* when compiling a wrapper.
17077         mono_jit_create_remoting_trampoline now takes an additional
17078         MonoRemotingTarget parameter.
17079         
17080 2004-11-10  Martin Baulig  <martin@localhost>
17081
17082         * mini.c (mono_method_to_ir): Use `generic_container->context'
17083         rather than creating a new one.
17084
17085 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17086
17087         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
17088
17089         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
17090
17091 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
17092
17093         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
17094         the experimental aot cache stuff.
17095
17096 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
17097
17098         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
17099         mini-exceptions.c: update to exception clause structure changes.
17100
17101 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
17102
17103         * exceptions-x86.c (throw_exception): Fix warnings.
17104
17105         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
17106         for OP_RETHROW.
17107
17108 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
17109
17110         * exceptions-sparc.c (get_throw_exception): Really fix this.
17111
17112 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
17113
17114         * tramp-*.c: we no longer support icalls without wrappers, so
17115         a bit of code can be removed here
17116
17117 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
17118
17119         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
17120         patch.
17121
17122         * cpu-sparc.md: Add op_rethrow.
17123
17124         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
17125
17126         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
17127
17128         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
17129         * mini-ops.h: Add OP_RETHROW.
17130
17131         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
17132
17133         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
17134
17135 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
17136         
17137         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
17138         Makes the output much easier to read
17139
17140 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
17141
17142         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
17143         prevents another huge leak when compiling with ssa. Secondly, the
17144         performance of doing this rather than freeing the lists is much
17145         better. GList does a lock every time you allocate a list link,
17146         so that it can use a memory pool. So, it is better to just use
17147         a memory pool of our own.
17148         
17149         * ssa.c, linear-scan.c: replace g_list_remove_link with
17150         g_list_delete.  The remove one does not free the GList, so we were
17151         leaking memory. On -O=all --compile-all with corlib, this cut down
17152         3 MB of allocations.
17153
17154 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
17155
17156         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
17157
17158         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
17159
17160         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
17161         into a new function mono_create_jit_trampoline ().
17162
17163 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
17164
17165         * trace.c (get_spec): Allow tracing of classes without a namespace.
17166
17167 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
17168
17169         * mini.c: Fix pointer overwrite in mini_method_compile.
17170
17171 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
17172
17173         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
17174         The darwin ABI needs some special handling for 1 and 2 byte structs
17175         Lets use lbz/lhz instead of lwz everywhere.
17176         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
17177         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
17178         Use stb/sth for the former, and put the latter always on stack instead of in
17179         argument registers.
17180
17181 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
17182
17183         * trace.c (is_filenamechar): Add '_'.
17184
17185 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
17186
17187         * mini-s390.c: Fix prolog length to allow for large trace requirements.
17188
17189         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
17190
17191 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
17192
17193         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
17194         depends on libmonogc. Fixes #68805.
17195
17196 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
17197
17198         * mini.c (mono_jit_free_method): Provide extra information for
17199         this error.  Currently this leaks, but will be turned into a
17200         developer option in the future.
17201
17202 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
17203
17204         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
17205
17206 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
17207
17208         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
17209         boundary. Fixes reading of PATCH_INFO_R4 and R8.
17210         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
17211
17212 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
17213
17214         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
17215         trampolines for AOT code.
17216
17217 2004-10-22    <vargaz@freemail.hu>
17218
17219         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
17220         constructed types. Fixes #68136.
17221
17222 2004-10-21  Martin Baulig  <martin@ximian.com>
17223
17224         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
17225         if it returns true, unwind the stack to the call instruction.
17226
17227 2004-10-21    <vargaz@freemail.hu>
17228
17229         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
17230
17231         * mini.h: Bump AOT version number.
17232
17233         * objects.cs: Add another test for unbox trampolines.
17234
17235         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
17236         valuetype methods.
17237
17238 2004-10-20    <vargaz@freemail.hu>
17239
17240         * driver.c: Add SHARED to the set of optimizations tested.
17241
17242         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
17243
17244         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
17245         used by CEE_NEWARR.
17246
17247         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
17248
17249 2004-10-20  Martin Baulig  <martin@ximian.com>
17250
17251         * mini-exceptions.c (mono_handle_exception): Call
17252         mono_debugger_handle_exception() to tell the debugger about
17253         catch/finally clauses.
17254
17255 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
17256
17257         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
17258
17259         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
17260         #68447.
17261
17262 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
17263
17264         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
17265         methods as their native size, fixed bug #57543, #57545.
17266         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
17267         This saves a temporary register and mullw call down into 1 (minor perf
17268         increase for cases like sum = sum * 5;  This use to translate into:
17269             li r11,5
17270             mullw r28,r28,r11
17271         It now translates to
17272             mulli r28,r28,5
17273
17274 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
17275
17276         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
17277         #68388.
17278
17279 2004-10-11  Martin Baulig  <martin@ximian.com>
17280
17281         * mini.c (mono_method_to_ir): If we're a generic method, get the
17282         MonoGenericContainer from our MonoMethodNormal and create a
17283         MonoGenericContext from it.
17284
17285 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
17286
17287         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
17288
17289         * basic-long.cs: Add test for checked i8->i2 cast.
17290
17291 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17292
17293         * inssel-ppc.brg: added a couple of speedup rules.
17294
17295 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
17296
17297         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
17298         to speed up rebuilds.
17299
17300 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17301
17302         * mini-s390.c: Minor fix to OP_OR_IMM.
17303
17304 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
17305
17306         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
17307         better. Fixes appdomain-unload.exe on sparc.
17308
17309 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
17310
17311         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
17312         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
17313         see bug 67324.
17314
17315 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
17316
17317         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
17318
17319 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
17320
17321         * mini.c: Always generate a field read/write wrapper for members
17322         of the class MarshalByRefObject since the actual instance could
17323         be a CBO.
17324
17325 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17326
17327         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
17328
17329 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17330
17331         * driver.c mini.h trace.c: Move the setting of the main assembly into
17332         a separate function called mono_trace_set_assembly () and call it after
17333         actually loading the main assembly. Fixes #66872.
17334
17335 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
17336
17337         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
17338         using the code manager.
17339
17340 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
17341
17342         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
17343
17344 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17345
17346         * cpu-amd64.md: Fix bug in previous patch.
17347         
17348         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
17349         #66650.
17350
17351 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
17352
17353         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
17354         mini-exceptions.c: updates for changed stack walk interface.
17355
17356 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17357
17358         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
17359
17360 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17361
17362         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
17363
17364 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17365
17366         * driver.c (mini_regression_list): Do not call mono_assembly_close 
17367         since assemblies can't be unloaded.
17368         
17369 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17370
17371         * cpu-amd64.md: Fix more instruction lengths.
17372
17373         * cpu-amd64.md: Fix lengths of some instructions.
17374
17375 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
17376
17377         * inssel.brg: Make the array ldelema check aot friendly.
17378
17379 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17380
17381         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
17382
17383         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
17384
17385 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17386
17387         * mini-x86.c: Fix build.
17388
17389         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
17390         mono_type_get_underlying_type () helper function to simplify code.
17391         
17392 2004-09-09  Martin Baulig  <martin@ximian.com>
17393
17394         * mini-amd64.c: Don't access `type->data.klass' directly, call
17395         mono_class_from_mono_type() instead since the type may be a
17396         generic instance.
17397
17398 2004-09-09  Martin Baulig  <martin@ximian.com>
17399
17400         * mini-amd64.c (get_call_info): Fix support for generic instances.
17401         (add_valuetype): Use mono_class_from_mono_type() to get the class
17402         since we can be a generic instance.
17403
17404 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
17405
17406         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
17407
17408 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
17409
17410         * liveness.c: reset spill costs on each scan: bug 62107
17411
17412 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
17413
17414         * exceptions-sparc.c (mono_arch_find_jit_info): remove
17415         unnecessary line that doesn't compile
17416
17417 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17418
17419         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
17420         trampolines, make them call an error function so people can fix their
17421         code.
17422
17423 2004-09-06  Martin Baulig  <martin@ximian.com>
17424
17425         * mini.c (mono_method_to_ir): When initializing locals, handle a
17426         generic instances like a valuetype if it's a valuetype and like a
17427         class if it's a class.
17428
17429 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17430
17431         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
17432         stack. Fixes #64674.
17433
17434         * exceptions.cs: Add test for unwinding of call arguments.
17435
17436 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
17437
17438         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
17439         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
17440         set the carry/borrow flag). The sparc and s390 implementations
17441         can now use optimized versions (and simplify the code). ppc bugfixes.
17442
17443 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17444
17445         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
17446
17447 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
17448
17449         * inssel-amd64.brg: Remove leftover 32 bit rule.
17450
17451         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
17452
17453 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
17454
17455         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
17456         mono_arch_find_jit_info functions into a new function. Fix a memory
17457         leak.
17458
17459         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
17460         refactored code.
17461         
17462 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17463
17464         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
17465         as well.
17466         
17467         * exceptions.cs: Add array size tests.
17468
17469         * mini.c: Allocate a separate icall wrapper for each arity of 
17470         mono_array_new_va. Fixes #59509.
17471
17472         * exceptions.cs: Add testcase for 64578.
17473
17474         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
17475
17476         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
17477         
17478 2004-09-02  Martin Baulig  <martin@ximian.com>
17479
17480         * mini.c (mono_method_to_ir): When initializing the locals, call
17481         handle_initobj() on the generic instance itself, not its
17482         underlying type.
17483
17484 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17485
17486         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
17487         MonoJitInfo for dynamic methods.
17488
17489         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
17490
17491         * mini.c: Add support for freeing JIT data for dynamic methods.
17492         
17493 2004-09-01  Martin Baulig  <martin@ximian.com>
17494
17495         * mini-x86.c (is_regsize_var): Added support for generic
17496         instances.
17497         (mono_arch_emit_prolog): Make this compile again, use
17498         `x86_push_imm_template (code)'.
17499
17500 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
17501
17502         * mini-x86.c: make all push_imm instructions that get
17503         patched always emit the long form
17504
17505 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
17506
17507         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
17508         in a per-domain hash.
17509
17510         * mini-amd64.c (merge_argument_class_from_type): Handle generic
17511         types.
17512
17513 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
17514
17515         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
17516         work.
17517         
17518         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
17519         work.
17520
17521         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
17522         Beginnings of SSE2 support.
17523
17524         * exceptions.cs: Add more tests for checked int<->uint casts.
17525
17526 2004-08-28  Martin Baulig  <martin@ximian.com>
17527
17528         * mini-x86.c (mono_arch_instrument_epilog): Added support for
17529         generic instances.
17530
17531         * mini.c
17532         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
17533         Handle generic instances recursively.
17534
17535 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
17536
17537         * iltests.il: test for conv.u8 on a constant
17538
17539 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
17540
17541         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
17542         LCONV_x4 (shrun_32 (membase)).
17543
17544 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
17545
17546         * inssel-x86.brg: c&p rules for push/setret of long
17547
17548 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
17549
17550         * inssel-x86.brg: c&p rules for compare (base, regvar) and
17551         compare (regvar, base)
17552
17553         * inssel-x86.brg: more burg love
17554
17555         * inssel.brg: more cleanup
17556
17557         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
17558
17559 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
17560
17561         * basic-long.cs, basic-calls.cs: new tests for optimization.
17562
17563 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
17564
17565         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
17566         patch.
17567
17568 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17569
17570         * mini-amd64.c (read_tls_offset_from_method): Add another case.
17571         
17572 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
17573
17574         * inssel.brg (mini_emit_memcpy): use 
17575         NO_UNALIGNED_ACCESS to disable memcpy optimization
17576
17577 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
17578
17579         * mini-amd64.c: Handle generic types in various places.
17580
17581         * mini.c (mono_method_to_ir): Handle generic types in init locals.
17582
17583 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
17584
17585         * mini.c (handle_box): Fix warning.
17586
17587         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
17588
17589         * mini-amd64.h: Enable the emit_state optimization.
17590
17591         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
17592
17593         * mini-amd64.c: Add some new 64 bit peephole opts.
17594
17595         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
17596
17597         * cpu-amd64.md: sreg1 of div instructions must be %rax.
17598
17599         * mini-amd64.c: Register allocator fixes.
17600
17601         * mini.c: Add an optimization to emit_state to avoid allocation of new
17602         registers on some platforms.
17603
17604 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
17605
17606         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
17607
17608         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
17609         allocation. Fixes #63085.
17610
17611         * basic-long.cs: Add new regression test.
17612
17613         * mini-amd64.c: Register allocator improvements.
17614
17615 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
17616
17617         * mini-amd64.c (read_tls_offset_from_method): Add another code
17618         sequence.
17619
17620         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
17621         instruction sequence for nullifying class init trampolines.
17622
17623         * objects.cs: Add new regalloc test.
17624
17625         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
17626
17627 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17628
17629         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
17630         
17631         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
17632         arguments.
17633
17634         * driver.c: Fix profiling after TLS changes.
17635         
17636         * driver.c (mono_main): Set mono_stats.enabled if needed.
17637
17638         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
17639         CEE_BOX.
17640
17641 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
17642
17643         * mini-x86.c: use a 1 op rather than a 2 op tls access
17644         instruction -> faster.
17645
17646 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
17647
17648         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
17649         x86 backend.
17650
17651 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
17652
17653         * exceptions-sparc.c (throw_exception): fix typo
17654
17655 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
17656
17657         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
17658         set tree->dreg correctly with tls. Allow any
17659         register to be used.
17660
17661         * mini-x86.c (read_tls_offset_from_method): add new code
17662         generation pattern seen with GCC.
17663
17664
17665 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17666
17667         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
17668         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
17669         exceptions-sparc.c: fix some performance issues in exception
17670         handling and setting of the stack trace for exceptions that were
17671         already thrown.
17672
17673 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17674
17675         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
17676         x86 backend.
17677         
17678         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
17679         registers.
17680
17681 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17682
17683         This patch inlines tls access, when possible.
17684         
17685         * mini.h: new arch functions for TLS intrinsics.
17686         All platforms updated with a stub.
17687
17688         * mini.c: use the new intrinsics
17689
17690         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
17691         arch specific intrinsic for tls variables
17692
17693 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
17694
17695         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
17696         under windows.
17697
17698 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17699
17700         * mini.c: thread local allocation
17701
17702 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
17703
17704         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
17705
17706         * Makefile.am: Link against the static version of libmonogc.
17707         
17708         * Makefile.am: Link the static versions of the convenience libraries
17709         into the mono executable.
17710
17711         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
17712
17713 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
17714
17715         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
17716         on integer overflow.
17717
17718         * mini-amd64.c: Reorganize function call code.
17719
17720         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
17721
17722 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
17723
17724         * inssel-x86.brg: use xor eax,eax.
17725         
17726         * basic.cs: new tests
17727
17728 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17729
17730         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
17731         in exception throwing code.
17732         
17733 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
17734
17735         * inssel-x86.brg: use xor esi,esi.
17736
17737 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17738
17739         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
17740         can trace methods compiled during mini_init () too.
17741
17742         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
17743         CEE_CONV_U4.
17744
17745 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
17746
17747         * Makefile.am: static link on x86 (r=zoltan)
17748
17749 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
17750
17751         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
17752         code since it causes some programs to fail.
17753
17754 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
17755
17756         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
17757
17758 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
17759
17760         * mini.c: ovfops_op_map - add STACK_OBJ case for
17761         CONV_I 
17762         * basic.cs: add test_0_pin_string as test
17763         case for above.
17764
17765 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
17766
17767         * Makefile.am: build C# if srcdir != builddir
17768
17769 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17770
17771         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
17772         fall-through blocks.
17773
17774 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17775
17776         * driver.c: enable loop by default again and include abcrem in -O=all.
17777
17778 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
17779
17780         * iltests.il: Add some localloc tests.
17781
17782         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
17783
17784         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
17785         Fixes #62574.
17786
17787         * inssel-amd64.brg: Add some optimizations.
17788
17789         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
17790         for gcc-3.4.
17791
17792         * Makefile.am: Statically link mono against libmono on AMD64.
17793         
17794         * mini-amd64.c inssel-amd64.brg: Optimizations.
17795
17796 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
17797
17798         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
17799
17800         * tramp-amd64.c: Patch calling code in trampolines.
17801
17802 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
17803
17804         * mini-amd64.c: pinvoke struct passing fixes.
17805
17806 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
17807
17808         * mini-sparc.c: redo change, make mono_arch_cpu_init call
17809         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
17810
17811 2004-08-05  Duncan Mak  <duncan@ximian.com>
17812
17813         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
17814         CEE_LDELEM_ANY.
17815
17816 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17817
17818         * mini-amd64.c (emit_move_return_value): Move return value for normal
17819         calls too.
17820
17821 2004-08-05  Martin Baulig  <martin@ximian.com>
17822
17823         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
17824         `type->type'; just modify `type' itself when dealing with enums
17825         and generic instances.
17826         (check_call_signature): Make `simple_type' a `MonoType *'.
17827
17828 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17829
17830         * mini.c: Use OP_PADD to add offsets to addresses.
17831
17832         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
17833
17834 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
17835
17836         * mini-sparc.c (mono_arch_emit_epilog): fix check
17837         for folding last op into restore instruction
17838
17839 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
17840
17841         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
17842         helper methods using the code manager.
17843         
17844         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
17845
17846         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
17847
17848 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17849         
17850         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
17851           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
17852
17853         * mini-s390.c: fix tail processing
17854
17855 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
17856
17857         * mini-ppc.c: mul.ovf.un exception name fix.
17858
17859 2004-08-03  Martin Baulig  <martin@ximian.com>
17860
17861         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
17862         instances; before jumping to `handle_enum', also modify `ptype'.
17863
17864 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
17865
17866         * cpu-sparc.md: fcall maximal length too small.
17867
17868 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
17869
17870         * mini-amd64.c mini.h: Add initial support for passing/returning 
17871         structures to/from pinvoked methods.
17872
17873 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
17874
17875         * mini-ppc.c: reg allocator fix.
17876
17877 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
17878
17879         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
17880
17881         * inssel.brg: Optimize memset on 64 bit machines.
17882
17883         * mini-amd64.c: Fix some vararg cases.
17884
17885 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17886
17887         * mini-s390.c: Corrected macro in emit_float_to_int
17888
17889         * s390-abi.cs: Tests to exercise the s390 ABI
17890
17891 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17892
17893         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
17894         caller saved regs.
17895
17896         * basic.cs: Add a test for add.ovf.un.
17897
17898 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
17899
17900         * mini-sparc.c: add case for OP_IDIV_UN
17901
17902 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17903
17904         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
17905         
17906         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
17907
17908 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
17909
17910         * basic.cs: regression tests.
17911
17912         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
17913         regressions.
17914
17915 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
17916
17917         * basic.cs: Add a new test.
17918
17919         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
17920         and AOT. Various fixes and optimizations.
17921
17922         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
17923
17924 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17925
17926         * mini-ppc.c: make sure temp regs are not used for global reg
17927         allocation.
17928
17929 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
17930
17931         * cpu-sparc.md: conv_i8 fix for 64bits
17932
17933         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
17934
17935 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
17936         
17937         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
17938         add opcode for cmp BYTE PTR [eax], imm.
17939
17940         * inssel.brg: Make memcpy and memset takes bases.
17941
17942 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
17943
17944         * *-amd64.*: More AMD64 work.
17945         
17946 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
17947
17948         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
17949         add a compare-not-equal opcode.
17950         
17951 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
17952
17953         * mini.c: Use mono_init_from_assembly instead of mono_init.
17954         
17955 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
17956
17957         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
17958
17959         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
17960
17961         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
17962
17963         * inssel.brg: 64 bit fixes.
17964
17965         * mini.h (MonoCallInst): Add some AMD64 specific data.
17966
17967         * mini.h: Add some OP_P opcodes.
17968
17969 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
17970
17971         * basic.cs: tests for 61797 and 61740
17972
17973 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
17974
17975         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
17976         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
17977
17978 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
17979
17980         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
17981
17982         * *-amd64*.*: Ongoing AMD64 work.
17983
17984 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
17985
17986         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
17987
17988         * *-amd64*: Ongoing AMD64 work.
17989
17990         * mini-arch.h: Add AMD64 support.
17991
17992         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
17993
17994         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
17995
17996         * mini-ops.h: Add new opcodes.
17997
17998         * Makefile.am: Add AMD64 support.
17999
18000         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
18001         rules into the inssel-long*.brg files.
18002
18003         * *-amd64.*: Add beginnings of AMD64 backend.
18004
18005 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
18006
18007         * mini.c (print_dfn): commenting out the code that prints
18008         the cil. With -O=deadce, this makes -v -v crash.
18009         
18010         * cpu-pentium.md: make checkthis have a length of 2
18011
18012 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
18013
18014         * mini-sparc.h: fix implementations of __builtin
18015         functions for Sun compiler for V9.
18016
18017 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
18018
18019         * mini.c: use the new stelem.ref wrapper
18020         * exceptions.cs, arrays.cs: new stelem.ref tests
18021
18022 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18023
18024         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
18025         new XSP should work with these changes).
18026
18027 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
18028         
18029         * inssel-{long32,x86,}.brg: trivial optimizations.
18030         
18031 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18032
18033         * mini.c: load value when emitting box operation in
18034         constrained calls.
18035
18036 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
18037
18038         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
18039         is one byte shorter than cmp DWORD PTR [eax], 0.
18040
18041 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
18042
18043         * inssel-ppc.brg: arguments on the stack are always
18044         relative to the stack pointer (spotted by Neale Ferguson).
18045
18046 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18047
18048         * exceptions-x86.c: delay appending the method name to the trace until
18049         after mono_jit_info_table_find is called, as this gets the real
18050         MonoMethod.
18051
18052 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
18053
18054         * aot.c: register roots
18055
18056 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
18057
18058         * aot.c : I could just use PLATFORM_WIN32 flag.
18059
18060 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
18061
18062         * aot.c : Reverting the previous fix. This time it broke linux build.
18063
18064 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
18065
18066         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
18067
18068 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
18069
18070         * mini.c (handle_stack_args): Remove some more debugging code.
18071         
18072         * mini.c (handle_stack_args): Remove debug output left in by mistake.
18073
18074         * driver.c mini.h aot.c: Allow additional options to be specified with
18075         --aot and pass them to mono_compile_assembly.
18076
18077         * aot.c: Add experimental code to AOT compile all loaded assemblies
18078         on demand and save the code into a cache in the filesystem.
18079
18080         * aot.c: Add support for more wrapper methods.
18081         
18082         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
18083         58863.
18084
18085         * cpu-*.md: Remove removed opcodes.
18086
18087         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
18088         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
18089         related icalls to marshal.c.
18090
18091 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
18092
18093         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
18094
18095         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
18096
18097         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
18098
18099 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
18100         * liveness.c: If liveness is recomputated we need to reset the information
18101         for each variable. This way, if the liveness range has been narrowed
18102         by optimizations that happened after the last computation, we can return
18103         a smaller range.
18104         
18105         For example, if you have
18106         
18107         {
18108                 int i = 0;
18109                 
18110                 // Tons of code that does not affect i
18111                 
18112                 i = foo ();
18113                 ...
18114         }
18115         
18116         i = 0 is dead code and will be removed by SSA. However, when
18117         linear scan gets to the code, i will still appear to be live
18118         throughout the entire block. This prevents good register allocation.
18119
18120 2004-07-06  Martin Baulig  <martin@ximian.com>
18121
18122         * debug-mini.c (mono_debug_init_method): Allow
18123         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
18124         (mono_debug_add_icall_wrapper): New method.
18125
18126         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
18127
18128 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
18129
18130         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
18131         optimization.
18132
18133 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
18134
18135         * aot.c (mono_aot_load_method): Fix loading of debug info.
18136
18137 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
18138
18139         * aot.c: Add logging support.
18140
18141 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
18142
18143         * mini.h: Add prototype for mono_print_method_from_ip.
18144
18145         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
18146
18147         * inssel.brg: 64 bit fixes.
18148
18149         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
18150         inssel-long32.brg.
18151
18152         * Makefile.am: Add SPARC64 support.
18153
18154 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
18155
18156         * aot.c: Fix alignment problems on 32 bit platforms.
18157
18158 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
18159
18160         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
18161         SPARC64.
18162
18163         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
18164         problems.
18165
18166         * mini.h: Bump AOT file version. Some 64 bit fixes.
18167
18168 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
18169
18170         * inssel-sparc.brg: Add new rule to avoid register moves.
18171
18172         * inssel.brg: Add ldind_to_load_membase helper function.
18173
18174 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
18175
18176         * mini.c: OffsetToStringData intrinsic.
18177         
18178 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
18179
18180         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
18181
18182         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
18183         regression tests.
18184
18185         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
18186 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
18187
18188         * mini.c: reinstated mono_compile_get_interface_var()
18189         on x86, too, since the change breaks the Gtk# build there as well.
18190
18191 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
18192
18193         * driver.c: remove loop from the default optimizations: it seems to
18194         interact badly with some of the other options (see bug #60613).
18195
18196 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
18197
18198         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
18199         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
18200
18201 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
18202
18203         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
18204         vararg-using methods.
18205
18206 2004-06-21  Martin Baulig  <martin@ximian.com>
18207
18208         * mini/mini-exceptions.c
18209         (mono_handle_exception): Added `gpointer original_ip' argument.
18210         After calling mono_unhandled_exception(), call
18211         mono_debugger_unhandled_exception() and if that returns true,
18212         restore the context and return.
18213
18214 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18215
18216         * mini-ppc.c: prefer the use of relative branches so
18217         they won't need to be patched in aot code (patch from Patrick Beard).
18218
18219 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
18220
18221         * aot.c: patch from Patrick Beard to make the output assembly
18222         more correct for the MacOSX assembler. Small tweak to
18223         generate sane images on Linux/PPC, too.
18224
18225 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
18226
18227         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
18228         case until bug #59509 is fixed (shows up in #60332).
18229
18230 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
18231
18232         * mini.c: make sure the needed wrappers are compiled, too, with
18233         precomp.
18234
18235 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
18236
18237         * driver.c: remove NPTL reference in --version output.
18238
18239 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
18240
18241         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
18242         generate valid assembly for the Mach-O assembler.
18243
18244 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
18245
18246         * driver.c: don't include abcrem in the all optimization specifier
18247         since it slows down jit compilation too much for now.
18248
18249 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
18250
18251         * mini.c: use BIGMUL only if both operands have the same signage.
18252         * iltests.il: Test for bug 60056. (errors related to signage in
18253         BIGMUL).
18254
18255         r=lupus.
18256
18257 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
18258
18259         * mini.c, aot.c: memory leak fixes.
18260
18261 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18262
18263         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
18264
18265 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
18266
18267         * Makefile.am: remove the -static hack completely, it links in
18268         statically glib as well.
18269
18270 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
18271
18272         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
18273         * exceptions.cs: make it compile with new mcs/csc.
18274
18275 2004-06-03 Massimiliano Mantione <massi@ximian.com>
18276         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
18277         and added relevant test case.
18278
18279 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
18280
18281         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
18282         regressions in gtk-sharp.
18283
18284 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
18285
18286         * exceptions.cs: New regression tests.
18287
18288         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
18289
18290 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
18291
18292         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
18293
18294 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
18295
18296         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
18297
18298         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
18299
18300 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
18301
18302         * mini.c (mono_jit_runtime_invoke): Init class in this
18303         method instead of trusting mono_jit_compile_method to
18304         do the work (because wrappers can be in object class)
18305
18306 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
18307
18308         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
18309
18310         * basic-long.cs: New regression test.
18311
18312 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
18313
18314         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
18315         and div/rem checks.
18316
18317 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
18318
18319         * Makefile.am: fix miguel's change to build mono statically against
18320         libmono (track build dependencies).
18321
18322 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18323
18324         * cfold.c: Some glib versions do not have G_MININT32.
18325
18326 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
18327
18328         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
18329         with precision of tan, atan, sin and cos, and implemented related
18330         regressions tests (fixes bug 54467, but one new problem appeared and
18331         is not fixed yet).
18332
18333 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
18334
18335         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
18336
18337         * exceptions.cs: Add test for constant folding && division by zero.
18338
18339         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
18340         since driver.c is in libmono too, so the optimization was useless.
18341
18342         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
18343         variable to driver.c so the compiler can emit more efficient code to
18344         access them.
18345
18346 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18347
18348         * Makefile.am: don't distribute generated inssel.[ch] files.
18349
18350 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
18351
18352         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
18353         into the default appdomain. Fixes #58707.
18354
18355         * jit-icalls.c: Remove the broken approximation for truncl, doing
18356         no conversion is better.
18357
18358         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
18359         Fixes #58863.
18360
18361 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
18362
18363         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
18364         of the mcrxr instruction which is not available on some processors
18365         even if it's documented to be. Implement add and sub overflow correctly
18366         (still not complete for long unsigned). Speed up icalls a bit.
18367
18368 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
18369
18370         * mini.c (mono_jit_compile_method_with_opt): Make sure that
18371         we run .cctor in the current domain instead of target_domain.
18372         
18373         Fixes bug #58558, .cctor not being called in -O=shared.
18374
18375 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18376
18377         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
18378
18379 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
18380
18381         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
18382         which can be done with an imm8, do it that way.
18383         (mono_arch_output_basic_block): ditto for a jmp
18384         (mono_arch_emit_prolog): Computate maximum offset of a label.
18385
18386 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
18387
18388         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
18389         now tries to allocate prefered physical reg's for virtual
18390         regs. This reduces the number of emited spills/loads with
18391         20-30% on our core assemblies.
18392
18393 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
18394
18395         * jit-icalls.c: truncl() is not needed and trunc() is
18396         the correct thing to do anyway (bug #58287).
18397
18398 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
18399
18400         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
18401         if available.
18402
18403 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18404
18405         * driver.c: enable loop optimizations by default.
18406
18407 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
18408
18409         * mini-x86.c: fix calc of max loop size when aligning loops start.
18410
18411 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
18412
18413         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
18414         the stack.
18415
18416 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
18417
18418         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
18419         should set carry.
18420
18421         * basic-long.cs: Add tests for add/subtract of immediates with carry.
18422
18423         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
18424         
18425         * mini.c (inline_method): Allways inline some wrappers even if the cost
18426         is too large. Fixes #58785.
18427
18428         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
18429         
18430 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
18431
18432         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
18433         (crichton@gimp.org). Beginning of support for sparc/linux.
18434
18435         * mini-sparc.c: Optimize retrieval of LMF address.
18436
18437 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
18438
18439         * exceptions-ppc.c:  handle alloca in methods with clauses.
18440
18441 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
18442
18443         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
18444
18445 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
18446
18447         * mini.c: Delegate most of the abort signal work to 
18448           mono_thread_request_interruption, which also handles Stop and Suspend
18449           states.
18450
18451 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
18452
18453         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
18454         supports the save/restore lmf opcodes.
18455
18456 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
18457
18458         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
18459         by gcc-3.4 as well.
18460
18461         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
18462
18463 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18464
18465         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
18466         methods which contain array accesses.
18467
18468         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
18469         boundaries. Fixes #58537.
18470
18471         * iltests.il: Add regression test for #58537.
18472
18473 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
18474
18475         * mini-x86.c (mono_arch_local_regalloc): Last part of
18476         fix for bug #58633 (releasing register to early).
18477
18478 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
18479
18480         * basic-long.cs: Add new regression test.
18481
18482 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
18483
18484         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
18485         register too early on the chain.
18486
18487 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
18488
18489         * mini.c (create_helper_signature): Use a helper function to reduce
18490         the code which needs to be written. Also set the calling convention of
18491         icalls on windows. Fixes #57840.
18492
18493 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
18494
18495         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
18496         exceptions-ppc.c: added helper function to get the instruction address
18497         from a signal handler context.
18498
18499 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
18500
18501         * helpers.c: use g_get_tmp_dir. Invokes happyness 
18502         from gonzalo.
18503
18504 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
18505
18506         * helpers.c: Add new env variable to pass args to objdump.
18507         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
18508
18509 2004-05-17  Radek Doulik  <rodo@ximian.com>
18510
18511         * Makefile.am (common_sources): added abcremoval.h so it get
18512         disted and daily mono packages on go-mono.com will build again
18513
18514 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
18515
18516         * abcremoval.c: Fixed coding style, added copyright header.
18517
18518         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
18519
18520         * mini.h: Added prototype for abc removal main function.
18521
18522         * build_relations_propagation_table.pl: Added copyright header.
18523
18524 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
18525
18526         * basic-long.cs: reg test for complex ceq_long bug.
18527
18528 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
18529
18530         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
18531         reg in long and clob case (bug #58343). Fixed/added comments.
18532
18533 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
18534
18535         * mini.c (mono_jit_runtime_invoke): Follow new convention
18536         of calling the invoke method with an function pointer.
18537
18538 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
18539
18540         * ChangeLog: Fix author of memory leak patch.
18541
18542 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
18543
18544         * Makefile.am: fix make dist as well...
18545
18546
18547 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
18548
18549         * cfold.c: Made so that conversions from pointer to int4 are no-ops
18550         on archs where pointers are 4 bytes long.
18551
18552         * Makefile.am: Added abcremoval.c source file.
18553
18554         * abcremoval.c: Added abcremoval.c.
18555
18556         * abcremoval.h: Added abcremoval.h.
18557
18558         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
18559
18560         * inssel.brg: Enabled bounds check removal.
18561
18562         * mini.c: Added support for abcrem optimization.
18563
18564         * mini.h: Added abcrem optimization label.
18565
18566         * driver.c: Added support for abcrem optimization.
18567
18568         * propagated_relations_table.def: Added propagated_relations_table.def.
18569
18570 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
18571
18572         * mini.c, cfold.c: fix style.
18573
18574 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18575
18576         * mini.c: handle issue with the low-level implementation of
18577         some long opcodes (bug #54209).
18578
18579 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
18580
18581         * basic.cs: test for my new cmov stuff.
18582
18583 2004-05-13      Patrik Torstensson
18584
18585         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
18586         opt and added peephole documentation.
18587
18588 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
18589
18590         * tramp-ppc.c: rewrote the generic trampoline code.
18591
18592 2004-05-11      Patrik Torstensson
18593
18594         * mini-x86.c: optimize long shl/shr asm code (one less branch)
18595
18596 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
18597
18598         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
18599
18600         * mini.h mini.c dominators.c: Applied patch from Derek Woo
18601         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
18602
18603         * mini.c: Add new icalls for AsAny marshalling.
18604
18605 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
18606
18607         * tramp-ppc.c, mini-ppc.c: more cleanups.
18608
18609 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18610
18611         * mini.c: no warnings.
18612
18613 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
18614
18615         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
18616
18617 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
18618
18619         * mini.c: In the thread abort signal handler, if the thread is in the
18620         process of being stoped, don't throw the Abort exception, just stop the
18621         thread.
18622
18623 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
18624
18625         * tramp-ppc.c: removed old code.
18626
18627 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
18628
18629         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
18630         do some simple speed optimizations on ppc.
18631
18632 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
18633
18634         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
18635         and large offsets in load/store.
18636
18637 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
18638
18639         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
18640         it causes regressions.
18641
18642 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
18643
18644         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
18645         support.
18646
18647 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18648
18649         * jit-icalls.c: remove warnings.
18650         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
18651         speedups for unsafe code.
18652
18653 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
18654
18655         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
18656
18657 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
18658
18659         * basic-calls.cs: Add new regression test.
18660
18661         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
18662         more portable.
18663
18664         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
18665
18666         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
18667         is no longer used.
18668
18669 2004-05-06      Patrik Torstensson
18670
18671         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
18672         long reg allocation in any reg (not only eax:edx) and implemented 
18673         long shl/shr ops in asm instead of helpers.
18674
18675 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
18676
18677         * mini-sparc.h: Fix warnings.
18678
18679         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
18680         stack.
18681
18682         * mini-exceptions.c (mono_handle_exception): Call the filter in a
18683         separate statement for clarity.
18684
18685         * mini-sparc.c: Update status.
18686
18687 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
18688
18689         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
18690         here.
18691
18692 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
18693
18694         * inssel-ppc.brg: another small pre-release workaround:
18695         we don't do overflow detection for long_sub_un.
18696
18697 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18698
18699         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
18700         (also works around a weird ppc bug: 57957).
18701
18702 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
18703
18704         * tramp-ppc.c: trampoline fixes.
18705
18706 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
18707
18708         * mini-ppc.c: fixed typos.
18709
18710 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18711
18712         * mini-ppc.c, exceptions-ppc.c: more code saves registers
18713         at the top of the stack. Fixed typos. Use a frame registers
18714         for all the methods with exception clauses.
18715
18716 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
18717
18718         * exceptions-ppc.c: restore fp registers.
18719
18720 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
18721
18722         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
18723         order from the stack top (moved the stack room to save the
18724         return value for trace after the param area). Fixed corruption
18725         in restoring registers on unwind.
18726
18727 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18728
18729         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
18730
18731 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
18732
18733         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
18734         and prolog/epilog for methods that use it. Allow
18735         enough param area room for varargs methods. Fix miguel's
18736         breakage in exception handling.
18737
18738 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
18739
18740         * Makefile.am: run genmdesc only on current arch.
18741
18742 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18743
18744         * exceptions-x86.c:
18745         * mini-x86.h: fix the build on windows.
18746
18747 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
18748
18749         * 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.
18750
18751         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
18752
18753         * mini-exceptions.c: New file.
18754         
18755         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
18756         Move some parts of the x86 exception handling code to an 
18757         arch-independent file so it can be shared with other ports.
18758
18759 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18760
18761         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
18762
18763 2004-04-26  David Waite  <mass@akuma.org>
18764
18765         * driver.c: remove comma from end of enumeration declaration
18766
18767 2004-04-26  Jackson Harper  <jackson@ximian.com>
18768
18769         * driver.c: parse config file before loading first assembly. This
18770         allows the user gac to be enabled/disabled. 
18771         
18772 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
18773
18774         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
18775         simpler mechanism: we do not care what is encoded initially
18776         (branch absolute or relative), we care about the code and its
18777         target.  I kept the old code for reference for now.
18778
18779         The new code tries first to determine if the jump is anywhere in
18780         the -/+32 absolute meg range, if it succeeds, it encodes using the
18781         absolute branch;  If not, it tried to find something in the
18782         relative range, if not, it uses the handle_thunk code. 
18783
18784 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
18785
18786         * exceptions-ppc.c: use the correct ip register on macosx.
18787
18788 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
18789
18790         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
18791
18792 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
18793
18794         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
18795         Raise exception on integer divide by zero by hand since the hw
18796         doesn't support it. Handle NaNs in FP compares.
18797
18798 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
18799
18800         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
18801         code reducing duplication between the platforms and enabled
18802         signal exception handling (on linux for now).
18803
18804 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
18805
18806         * exceptions-ppc.c: more macosx support.
18807
18808 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
18809
18810         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
18811
18812 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
18813
18814         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
18815
18816 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
18817
18818         * iltests.il: more tests.
18819
18820 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
18821
18822         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
18823         vars as well.
18824
18825 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18826
18827         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
18828
18829 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
18830
18831         * liveness.c: Mark variables as volatile in all basic blocks reachable
18832         from exception clauses.
18833
18834 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
18835
18836         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
18837         inlining.
18838
18839 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
18840
18841         * iltests.il, basic.cs: more tests for regalloc.
18842
18843 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
18844
18845         * iltests.il: Some tests for register allocation modifications
18846         I have locally.
18847
18848 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
18849
18850         * exceptions.cs: Add regression test for bug #56782.
18851
18852         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
18853         original stack trace if an exception is rethrown. Fixes #56782. Oh,
18854         the beauty of fixing the same thing in 5 different files...
18855
18856 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
18857
18858         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
18859         methods.
18860
18861 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
18862
18863         * mini.c: Add support for STRWLPARRAY marshalling convention.
18864
18865 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
18866
18867         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
18868         to init the context to setup the regs pointer).
18869
18870 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
18871
18872         * exceptions-ppc.c: more exceptions work.
18873
18874 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18875
18876         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
18877         not allowed.
18878
18879 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
18880
18881         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
18882         can use the memory directly.
18883
18884         * cpu-pentium.md: Update documentation from a post from Zoltan. 
18885
18886         add x86_add_membase, x86_sub_membase, x86_mul_membase
18887
18888 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
18889
18890         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
18891         GENERAL_REGS they were also hardcoded for all PPC ports.
18892
18893         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
18894
18895         Remove hard-coded limit for floating point registers, use
18896         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
18897
18898         Notice that in MacOS X calling conventions you can fit a lot more
18899         floating point values in registers, so I should update the PInvoke
18900         test to excercise the passing of floating point values on the
18901         stack (currently broken).
18902         
18903 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
18904
18905         * tramp-ppc.c (create_trampoline_code): Added
18906         JUMP_TRAMPOLINE_SIZE. 
18907         (ppc_magic_trampoline): Follow the pattern from
18908         x86_magic_trampoline: if code is set to zero, return. 
18909         (create_trampoline_code): Always pass MonoMethod to the jump
18910         trampoline, before it was passing a null.
18911         (mono_arch_create_jump_trampoline): Implement the jump stub, could
18912         share the code with mono_arch_create_jit_trampoline. 
18913
18914         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
18915         implemented.
18916         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
18917         implemented.  
18918
18919         * cpu-g4.md: Added length for jmp instruction, the worst case
18920         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
18921         for save_lmf).
18922
18923 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
18924
18925         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
18926
18927 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
18928
18929         * mini.c: Only set bblock->real_offset when adding a new bblock, and
18930         before each IL instruction.
18931
18932         * mini.c (CEE_BOX): Fix warnings.
18933
18934 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18935
18936         * mini.c: removed a few unused vars and extra whitespace.
18937
18938 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
18939
18940         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
18941         checks.
18942         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
18943         index.
18944         (OP_GETCHR): use the above
18945         (CEE_LDELEMA): use the above.
18946
18947         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
18948         version of the generic impl.
18949         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
18950         (CEE_LDELEMA): use the above.
18951
18952 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
18953
18954         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
18955         Fixes #56317.
18956
18957         * iltests.il: Added new regression test for #56317.
18958
18959 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
18960
18961         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
18962         under NetBSD. Fixes #56450.
18963
18964         * liveness.c (update_gen_kill_set): Fix previous patch.
18965
18966 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18967
18968         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
18969
18970 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
18971
18972         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
18973         ldsfld and ldsflda.
18974
18975         * inssel-sparc.brg: Add more optimizations.
18976
18977         * mini-sparc.c: Replace multiply/divide with shifts if possible.
18978
18979 2004-04-01  Martin Baulig  <martin@ximian.com>
18980
18981         * mini.c (handle_box): New static function; moved the
18982         implementation of CEE_BOX here.
18983         (mono_method_to_ir): Added `constrained_call' variable.
18984         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
18985         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
18986         mono_method_get_constrained() to get the method.
18987
18988 2004-04-01  Martin Baulig  <martin@ximian.com>
18989
18990         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
18991         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
18992         (mono_method_to_ir): We don't need these macros anymore since
18993         mono_class_get_full() already takes care of it. 
18994
18995 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18996
18997         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
18998         use @function (as doesn't accept #function here) and check the return
18999         value of system and stop if fails.
19000
19001 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19002
19003         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
19004
19005 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
19006
19007         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
19008
19009         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
19010
19011         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
19012         #56223.
19013
19014         * basic-long.cs: Add test for negation of Int64.MinValue.
19015
19016 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
19017
19018         * mini-sparc.c: Update status.
19019
19020         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
19021
19022         * exceptions-sparc.c: Fix return value in filters.
19023
19024         * inssel-sparc.brg: Fix register allocation in some rules.
19025
19026 2004-03-28  Martin Baulig  <martin@ximian.com>
19027
19028         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
19029         if neccessary.  
19030
19031 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
19032
19033         * mini-x86.c (mono_arch_patch_code): Fix warnings.
19034         
19035         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
19036         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
19037         remove unused conv_u4 opcode.
19038
19039         * mini-x86.c: Remove valgrind workaround since it slows down things
19040         even when mono is not run under valgrind.
19041
19042 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
19043
19044         * mini-sparc.c: Update status.
19045
19046         * inssel-sparc.brg: Add some optimizations.
19047
19048         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
19049         future delay slot filling. Add support for varargs, tail calls and JMP.
19050
19051         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
19052         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
19053
19054         * inssel.brg: Fix register allocation in OP_ARGLIST.
19055
19056         * inssel.brg: Fix warnings.
19057
19058 2004-03-25  Martin Baulig  <martin@ximian.com>
19059
19060         * mini.c (inflate_generic_field): Removed.
19061         (mini_get_method): Removed, use mono_get_method_full(),
19062         (mini_get_class): Removed, use mono_class_get_full().
19063         (mono_method_to_ir): Pass our generic context to
19064         mono_field_from_token().        
19065
19066 2004-03-25  Martin Baulig  <martin@ximian.com>
19067
19068         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
19069         of a `MonoMethod *'.
19070         (mini_get_method): Take a `MonoGenericContext *' instead
19071         of a `MonoMethod *'.
19072         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
19073         a new local variable called `generic_context' which holds the
19074         current `MonoGenericContext *'; use it to lookup things.
19075
19076 2004-03-24  Martin Baulig  <martin@ximian.com>
19077
19078         * mini.c (mini_get_class): New static method; if we're inside a
19079         generic instance, inflate the class if neccessary.
19080         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
19081
19082 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
19083
19084         * iltests.il: New regression test for #55976.
19085
19086         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
19087         #55976.
19088
19089 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
19090
19091         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
19092         output.
19093
19094 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
19095
19096         * liveness.c: Consider SSA stores as well as loads when making vars
19097         volatile.
19098
19099         * exceptions.cs: New regression tests for register allocation.
19100         
19101 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
19102
19103         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
19104         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
19105           domain lock only to protect puntual access to data structures.
19106           Added access lock for sighash, jit_icall_hash_name, 
19107           jit_icall_hash_addr and domain->code_mp.
19108
19109 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
19110
19111         * driver.c: Print SIGSEGV handling method.
19112
19113         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
19114
19115         * mini.c (setup_jit_tls_data): Handle case when this is called
19116         multiple times for a thread.
19117
19118         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
19119         is different from fbxx_un. Fixes #54303. Also use constants instead of
19120         magic numbers in a lot of places.
19121
19122 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
19123
19124         * exceptions.cs: Fix cctor test when --regression is used.
19125
19126 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
19127
19128         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
19129         for Linux/ppc.
19130
19131 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
19132
19133         * inssel-ppc.brg: fixed register assignments for some rules.
19134
19135 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19136
19137         * exceptions.cs: Add test for exceptions in static constructors.
19138
19139         * mini.c (mono_jit_compile_method_with_out): Move the calling of
19140         static constructors outside the domain lock. Fixes #55720.
19141
19142 2004-03-17  Martin Baulig  <martin@ximian.com>
19143
19144         * mini.c (get_generic_field_inst): Removed, this'll never happen.
19145         (inflate_generic_field): Take the `MonoMethod *' instead of the
19146         `MonoClass *' and added support for generic method.
19147         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
19148         have a `field->parent->gen_params', only inflate the field if it's
19149         an open constructed type.
19150
19151 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
19152
19153         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
19154         exception object instead of the preconstructed ones.
19155
19156 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19157
19158         * mini.c: reverted changed to sigsegv_signal_handler commited
19159         accidentally in the previous patch.
19160
19161 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19162
19163         * mini.c:
19164         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
19165         running --aot with an old assembly.
19166
19167 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
19168
19169         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
19170         point values.
19171
19172         * mini-sparc.c: Add support for v9 branches with prediction.
19173
19174 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
19175
19176         * mini.c (mini_init): #warning is GNUC only
19177
19178         * mini-sparc.h: implement __builtin_frame_address
19179         and __builtin_return_address for Sun C compiler
19180
19181 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
19182
19183         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
19184
19185 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
19186
19187         * basic-calls.cs: Add test for unaligned byref long argument passing.
19188
19189         * mini-ops.h: Add sparcv9 compare and branch instructions.
19190
19191         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
19192         v9 instructions if we have a v9 cpu.
19193
19194         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
19195         registers for global allocation.
19196
19197         * exceptions-sparc.c: Fixes.
19198         
19199 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
19200
19201         * liveness.c (mono_analyze_liveness): Optimized version.
19202
19203         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
19204
19205         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
19206         sparc work.
19207
19208         * basic-float.cs basic-calls.cs: New regression tests.
19209
19210 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
19211
19212         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
19213         sigaltstack implementation.
19214
19215         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
19216         
19217         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
19218         stuff if SIGSEGV_ON_ALTSTACK is not defined.
19219
19220 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
19221
19222         * mini.c: Fix warnings.
19223         
19224         * mini.c (mono_resolve_patch_target): New function which contains the
19225         arch independent part of the patching process.
19226
19227         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
19228         patching code to a separate function.
19229
19230 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
19231
19232         * mini.c (add_signal_handler): ifdef out on Windows
19233
19234 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
19235
19236         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
19237         cpu-sparc.md: Add exception handling support + other fixes.
19238
19239         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
19240         typed GC detection in --version.
19241
19242         * basic.cs exceptions.cs: New regression tests.
19243
19244         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
19245         the arch specific code can store data during a compilation.
19246
19247         * mini-ops.h: Add OP_SETFRET.
19248
19249         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
19250         function, register a separate icall for each arity, so the icalls can
19251         get a wrapper.
19252         
19253         * mini.c (mono_print_tree): Print negative offsets in a more readable
19254         form.
19255         
19256         * mini.c: Make signal handling work on sparc.
19257         
19258         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
19259
19260         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
19261
19262         * jit-icalls.c: Emulate truncl by aintl on solaris.
19263
19264         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
19265
19266 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
19267
19268         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
19269
19270 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
19271
19272         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
19273         a MarshalByRef type, inline a method that performs the check, taking into
19274         account that the object can be a proxy. Also implemented tow new opcodes:
19275         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
19276         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
19277         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
19278
19279 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
19280
19281         * mini-ppc.c: if a relative branch displacement is too big
19282         but it points to and area reachable with an absolute branch, 
19283         avoid the thunks.
19284
19285 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
19286
19287         * mini.c: optimize small copies in cpblk.
19288
19289 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
19290
19291         * basic-calls.cs basic-float.cs: New regression tests.
19292
19293         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
19294         negative offsets from %fp. Implement localloc. Fix local register 
19295         allocation. Fix the case when the this argument needs to be saved to
19296         the stack. Implement some missing opcodes.
19297
19298 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
19299
19300         * mini.c (mini_method_compile): Reenable global regalloc in methods
19301         with exception handlers.
19302
19303         * linear-scan.c (mono_varlist_sort): Fix warning.
19304
19305         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
19306
19307         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
19308         regalloc costs.
19309
19310         * liveness.c: Make all variables uses in exception clauses volatile, to
19311         prevent them from being allocated to registers. Fixes #42136.
19312
19313 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
19314
19315         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
19316         causes regressions.
19317
19318         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
19319         argument to mono_arch_regalloc_cost.
19320
19321         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
19322         precisely.
19323
19324 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
19325
19326         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
19327         Make the cost of allocating a variable to a register arch dependent.
19328
19329         * basic-calls.cs: Fix compilation of tests.
19330         
19331         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
19332         helper function to cut back on the number of #ifdefs needed.
19333
19334         * mini-ppc.c: Fix compilation.
19335
19336         * basic-calls.cs: New regression tests.
19337
19338         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
19339
19340         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
19341         of l0 since that is callee saved.
19342
19343         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
19344         to virtual calls.
19345
19346         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
19347         of delay instruction.
19348
19349         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
19350
19351         * mini.h (MonoCallInst): Add 'virtual' flag.
19352
19353         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
19354
19355 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
19356
19357         * *.cs: New regression tests.
19358
19359         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
19360         work.
19361
19362         * mini.c (mono_runtime_install_handlers): Fix build.
19363
19364         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
19365         'signal_stack_size' members.
19366
19367         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
19368         alternate signal stack.
19369
19370         * exceptions-x86.c: Add stack overflow handling.
19371
19372         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
19373         functions to arch independent code.
19374
19375         * mini.c (mono_print_tree): Print more detailed info for load_membase
19376         opcodes.
19377         
19378 2004-02-23  Martin Baulig  <martin@ximian.com>
19379
19380         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
19381
19382 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
19383
19384         * mini-x86.c: fixed reg allocation for div/rem.
19385
19386 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
19387
19388         * driver.c (mono_main): Report some configuratio options on --version.
19389
19390 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
19391
19392         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
19393         low in the address space. Correctly flush memory in thunks where we
19394         output native code.
19395
19396 2004-02-20  Martin Baulig  <martin@ximian.com>
19397
19398         * mini.c (mini_get_method): New static method; inflate all generic
19399         methods and methods in open generic instances.
19400         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
19401         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
19402
19403 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
19404
19405         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
19406
19407         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
19408
19409 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
19410
19411         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
19412
19413         * mini-sparc.c (flushi mono_arch_output_basic_block): make
19414         it compile using Sun's compiler.
19415
19416 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
19417
19418         * 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.
19419
19420         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
19421
19422 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
19423
19424         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
19425         code.
19426         * mini-ppc.c: handle calls outside of the allowed range with thunks
19427         allocated using the code manager.
19428         * tramp-ppc.c: use the code manager to hold generated native code.
19429         Fixed the magic trampoline to just patch vtable entries.
19430
19431 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
19432
19433         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
19434         independent file.
19435
19436 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
19437
19438         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
19439         PPC.
19440
19441         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
19442         if we have a working __thread implementation.
19443
19444         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
19445         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
19446
19447 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
19448
19449         * mini-x86.c: Fix compilation under gcc 2.
19450         
19451 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
19452
19453         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
19454         contains a call to the wrapped function.
19455
19456         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
19457         OP_<CALL>_IMM opcodes, and use them under X86.
19458         
19459         * mini.c (mono_jit_find_compiled_method): Fix warning.
19460
19461         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
19462
19463         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
19464
19465         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
19466         functionality to mini.c.
19467
19468         * mini.c (mono_create_jump_trampoline): New function to create a jump
19469         trampoline. Return a compiled method instead of a trampoline if it
19470         exists. Add a cache for jump trampolines.
19471
19472         * mini.c (mono_jit_find_compiled_method): New function to return a
19473         compiled method if it exists.
19474
19475         * mini-x86.c: Call mono_create_jump_trampoline instead of 
19476         mono_arch_create_jit_trampoline.
19477
19478         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
19479         a jump trampoline. Fixes #52092.
19480         
19481 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
19482
19483         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
19484         which is not up-to-date. Add check_corlib_version () instead.
19485
19486         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
19487         have to call it.
19488         
19489         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
19490         since newer valgrind versions do not need it.
19491
19492         * mini.c (mono_jit_compile_method_with_opt): New helper function to
19493         compile a method with a given set of optimizations.
19494
19495         * mini.c: Compile icall wrappers on-demand instead of at startup.
19496
19497         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
19498         wrapper for an icall.
19499
19500 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
19501
19502         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
19503         #54063.
19504
19505         * iltests.il: Add test for non-empty stack before switch instruction.
19506
19507 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
19508
19509         * mini.c: Add support for new stringbuilder marshalling conventions.
19510
19511         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
19512
19513 2004-02-01  Martin Baulig  <martin@ximian.com>
19514
19515         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
19516         in `ginst->mtype_argv'.
19517
19518 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
19519
19520         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
19521         facilitate grepping.
19522
19523 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
19524
19525         * mini.c: fixed buglet in initobj generic implementation for references.
19526
19527 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
19528
19529         * Makefile.am: make the version script conditional.
19530         * jit-icalls.c: handle missing truncl().
19531
19532 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
19533
19534         * exceptions.cs: Add more tests for double->int conversion.
19535
19536         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
19537         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
19538
19539 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
19540
19541         * driver.c: make --verbose --version emit an error
19542         if the loaded corlib doesn't match the runtime version.
19543
19544 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
19545
19546         * mini-ppc.h: export ppc_patch().
19547         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
19548         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
19549         on par or better than on MacOSX.
19550
19551 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
19552
19553         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
19554         mono_lookup_pinvoke_call.
19555
19556         * mini-x86.c: Under windows, the default pinvoke calling convention is
19557         stdcall. Fixes #52834.
19558
19559         * mini.c (optimize_branches): Add an upper bound to the number of
19560         iterations to prevent infinite loops on strange loops. Fixes #53003.
19561
19562 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
19563
19564         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
19565         and ISINST. Fixes #52093.
19566
19567         * objects.cs (test_0_vector_array_cast): New tests.
19568         
19569 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
19570
19571         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
19572         checking in Array.Set ().
19573
19574         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
19575         #52590.
19576
19577         * object.cs (test_0_multi_array_cast): New regression test.
19578
19579 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
19580
19581         * exceptions-ppc.c: fix build on Linux/PPC.
19582
19583 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
19584
19585         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
19586         running under valgrind.
19587         (x86_magic_trampoline): Fix build bustage.
19588
19589         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
19590         negative values as well. This is needed for the encoding of the line number
19591         info, since sometimes the line numbers are not in increasing order.
19592
19593 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
19594
19595         * cpu-pentium.md (localloc): Increase the size of the localloc 
19596         instruction since it is a loop under Win32.
19597
19598         * debug-mini.c (record_line_number): Get rid of unneccesary memory
19599         allocation.
19600
19601 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
19602
19603         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
19604         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
19605         Max Horn (max@quendi.de). Fix file names in comments.
19606
19607 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
19608
19609         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
19610         avoid stack overflow.
19611         (replace_usage): Avoid uninitialized variable warnings.
19612
19613         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
19614         and taking the address of valuetype variables.
19615
19616 2004-01-03  Patrik Torstensson
19617
19618         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
19619         for other purposes than FP later on.
19620
19621 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
19622
19623         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
19624         of tail calls.
19625
19626 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
19627
19628         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
19629
19630 2003-12-30  Patrik Torstensson <p@rxc.se>
19631
19632         * mini-x86.h: Decreased number of availiable fp regs.
19633         Solves corner cases with FP spilling.
19634
19635 2003-12-23  Patrik Torstensson <p@rxc.se>
19636
19637         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
19638         for floating point stack tracking / spilling on x86. 
19639         Fixes bug #49012.
19640         
19641         * basic-float.cs: added float mul overflow test.
19642
19643 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
19644
19645         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
19646
19647 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
19648
19649         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
19650         supports for cond branches that overflow the immediate
19651         overflow offset. mcs can compile simple programs.
19652
19653 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
19654
19655         * exceptions-ppc.c: exception handling support wip:
19656         finally handlers get run on exception.
19657
19658 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
19659
19660         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
19661         profiling.
19662
19663 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
19664
19665         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
19666         initial support for stack walking and unwinding.
19667
19668 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
19669
19670         * driver.c (mono_main): Make corlib-out-of-sync message more 
19671         descriptive. Also remove verify_corlib call.
19672
19673 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
19674
19675         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
19676         not overlap with other call's arguments, too.
19677
19678 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
19679
19680         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
19681         move to arch-specific code the choice of arch-specific
19682         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
19683         * mini.c: ensure emulation calls will not interleave
19684         with other calls.
19685
19686 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
19687
19688         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
19689         the magic trampoline stack frame is dropped before executing
19690         the new method.
19691
19692 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
19693
19694         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
19695         and integer to fp conversions. Added support for overflowing
19696         arguments on the stack. Reserve a couple more registers as temps.
19697         Added support for aot compilation (as output still needs to be
19698         tweaked, though).
19699
19700 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
19701
19702         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
19703         Don't overwrite return register in some corner cases.
19704
19705 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
19706
19707         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
19708         static constructors when AOT compiling.
19709
19710         * driver.c (mono_main): Call mono_check_corlib_version.
19711
19712 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
19713
19714         * cpu-g4.md, basic.cs: fixed div target register.
19715
19716 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
19717
19718         * mini-ppc.c, basic.cs: shl_imm fix with test.
19719
19720 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
19721
19722         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
19723         structures by value. Misc fixes.
19724         * objects.cs: more tests.
19725
19726 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
19727
19728         * mini-ppc.c: lconv.ovf.i implemented.
19729
19730 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19731
19732         * mini.c:
19733         (mini_init): don't error out if someone already called g_thread_init.
19734
19735 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
19736
19737         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
19738         to be any type per the spec. Fix abnormal memory usage when
19739         the same object is repeatedly thrown.
19740
19741 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
19742
19743         * mini.c: check for overruns in IL code.
19744
19745 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
19746
19747         * TODO: Add/remove some todo entries.
19748
19749 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
19750
19751         * driver.c (mono_main): Call mono_verify_corlib.
19752
19753 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
19754
19755         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
19756         This has been moved to mini.c
19757         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
19758         type being casted is marshalbyref it could be a proxy, so instead of
19759         emitting the type check code, emit a call to a runtime method that will
19760         perform the check by calling CanCastTo if needed.
19761
19762 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
19763
19764         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
19765         methods with large stack frames under Win32.
19766
19767 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
19768
19769         * Makefile.am: Distribute regression tests.
19770
19771         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
19772         at the end instead of inserting each variable into the sorted list.
19773
19774         * linear-scan.c (mono_varlist_sort): New helper function.
19775         
19776 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
19777
19778         * mini.c: ensure arguments and locals are within bounds.
19779
19780 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
19781
19782         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
19783         related fixes.
19784
19785 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
19786
19787         * mini.c (mono_cprop_copy_values): Fix crash.
19788
19789         * aot.c: Set verbosity back to 0.
19790         
19791 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
19792
19793         * regalloc.c: complete memory leak fix by Laurent Morichetti
19794         (l_m@pacbell.net).
19795
19796 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
19797
19798         * driver.c (main_thread_handler): Revert the previous patch.
19799
19800         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
19801         under valgrind.
19802
19803         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
19804         memory from the memory pool.
19805
19806         * driver.c (main_thread_handler): Turn on all optimizations when
19807         --aot is used.
19808
19809         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
19810         an array for better performance.
19811
19812         * regalloc.c (mono_regstate_assign): Fix memory leak.
19813
19814         * debug-mini.c (mono_debug_serialize_debug_info): New function to
19815         serialize the debug info.
19816
19817         * debug-mini.c (mono_debug_add_aot_method): New function to load the
19818         debug info from the serialized representation.
19819
19820         * aot.c: Save debug info into the generated file and load it when 
19821         loading a method.
19822
19823         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
19824
19825 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
19826
19827         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
19828         More FP-related fixes.
19829
19830 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
19831
19832         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
19833         and register allocation buglet. Hello world now runs.
19834
19835 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
19836
19837         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
19838         * tramp-ppc.c: fixed class init trampoline.
19839         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
19840
19841 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
19842
19843         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
19844         mini.c: more ppc changes/fixes.
19845
19846 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
19847
19848         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
19849         Also optimize the case when the arguments are the same in the caller 
19850         and in the callee.
19851
19852         * iltests.il: Add tests for tail calls with valuetype arguments.
19853
19854 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
19855
19856         * mini-ppc.c: fixes for struct return type.
19857
19858 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
19859
19860         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
19861         mono_spillvar_offset() to arch-specific code.
19862
19863 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
19864
19865         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
19866
19867 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
19868
19869         * exceptions-x86.c: Fix stack space leaks.
19870         
19871         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
19872         registers from the lmf if the method has save_lmf set.
19873
19874 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
19875
19876         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
19877         of icall wrappers into InvokeInDomain, since these are now per-domain.
19878
19879 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
19880
19881         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
19882         make some opcode emulation and intrinsic ops enabled/disabled 
19883         according to the architecture. More fixes.
19884
19885 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
19886
19887         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
19888
19889 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
19890
19891         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
19892         arch-specific handling for 'this' and struct return type to
19893         arch-specific code.
19894
19895 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19896
19897         * aot.c: prevent divide by zero error when reporting (it happened with
19898         Accessibility.dll).
19899
19900 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
19901
19902         * mini.h (inst_switch): Remove unused macro.
19903
19904 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19905
19906         * aot.c:
19907         (load_aot_module): free 'info->methods' and 'info' properly. No more
19908         "free(): invalid pointer blah" messages when you have an old aot
19909         compiled assembly.
19910
19911 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
19912
19913         * jit-icalls.c, mini.c: Added support for context static fields.
19914
19915 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
19916
19917         * mini.c (mono_method_blittable): Methods which set LastError are not 
19918         blittable either. Fixes #51108.
19919         
19920 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
19921
19922         * mini.c: flush icache.
19923         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
19924
19925 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
19926
19927         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
19928
19929 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
19930
19931         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
19932         safe on IA32.
19933
19934         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
19935         vararg calls.
19936
19937         * inssel.brg (CEE_MKREFANY): Fix AOT case.
19938
19939 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
19940
19941         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
19942         instruction when the result is discarded.
19943
19944         * iltests.il (test_0_div_regalloc): New regression test.
19945
19946         * arrays.cs: Fix compilation error.
19947
19948 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
19949
19950         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
19951         float rules to inssel-x86.brg: sane architectures with FP registers
19952         don't need to implement these rules.
19953
19954 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
19955
19956         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
19957
19958 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
19959
19960         * mini.h, inssel-long32.brg: fixed endianess issues in int64
19961         implementation of 32 bit systems.
19962
19963 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
19964
19965         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
19966         (Jeroen Zwartepoorte).
19967
19968 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
19969
19970         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
19971         the caller and the callee matches.
19972         
19973         * mini.c (mono_method_to_ir): Add comment.
19974
19975         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
19976         signbit is missing on some platforms.
19977
19978 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
19979
19980         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
19981
19982         * mini.c (setup_jit_tls_data): Call the new function.
19983         
19984         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
19985
19986         * mini-x86.c: Add experimental support for fast access to the lmf
19987         structure under NPTL/Linux 2.6.x.
19988
19989 2003-11-06  Martin Baulig  <martin@ximian.com>
19990
19991         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
19992         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
19993         the debugger.
19994
19995 2003-11-02  Martin Baulig  <martin@ximian.com>
19996
19997         * mini.c (inflate_generic_field): New static method.
19998         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
19999         generic instance and the field is declared in a generic type, call
20000         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
20001
20002 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
20003
20004         * mini.h mini.c (mono_method_same_domain): New function to return
20005         whenever the caller and the callee are in the same domain.
20006
20007         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
20008
20009 2003-10-30  Martin Baulig  <martin@ximian.com>
20010
20011         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
20012         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
20013         method parameters.
20014         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
20015         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
20016
20017 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
20018
20019         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
20020         propagation.
20021
20022         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
20023         object here, so it is in the correct appdomain etc.
20024
20025 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
20026
20027         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
20028         already done.
20029         (mono_method_to_ir): Avoid freeing the type created returned from
20030         mono_type_create_from_typespec, since it is put into an internal cache
20031         by the function. Fixes pointer.exe.
20032
20033         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
20034         trampolines for icalls and pinvokes as well. Fixes #33569.
20035
20036 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
20037
20038         * mini.c: Update after appdomain changes.
20039
20040         * mini.c (mono_jit_compile_method_inner): Allways compile native
20041         method wrappers in the root domain, since there can only be one
20042         instance of them, whose address is stored in method->info.
20043
20044 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
20045
20046         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
20047         environment variable. Instead detect automatically whenever running
20048         under valgrind using the magic macro RUNNING_ON_VALGRIND from
20049         valgrind.h.
20050
20051 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
20052
20053         * trace.c, trace.h: New files that implement the new trace option
20054         parsing. 
20055
20056         * driver.c: Document new --trace options.
20057
20058         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
20059         mini-x86.c: Apply:
20060
20061         -       if (mono_jit_trace_calls)
20062         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
20063
20064         * mini.h: prototypes.
20065         
20066 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
20067
20068         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
20069
20070         * mini.c inssel.brg: Implement typedefbyref opcodes.
20071
20072         * mini.c (mono_jit_compile_method): Remove unused local variable.
20073
20074         * mini.c (mono_jit_compile_method_inner): Ditto.
20075         
20076 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
20077
20078         * tramp-x86.c (x86_class_init_trampoline): Fix build.
20079         
20080         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
20081
20082 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
20083
20084         * mini.c (mono_no_aot): Remove unused global variable.
20085
20086         * mini.c: Thread safety fixes.
20087
20088 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
20089
20090         * mini.c (mono_create_class_init_trampoline): Add a lock around
20091         class_init_hash_addr.
20092
20093         * arrays.cs (test_0_newarr_emulation): Add new regression test for
20094         #30073.
20095
20096         * mini.c: Decompose the NEWARR instruction before decomposing its
20097         arguments. Fixes #30073.
20098
20099 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
20100
20101         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
20102         convention.
20103
20104 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
20105
20106         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
20107
20108         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
20109
20110         * driver.c: Add support for compiling icall wrappers to --compile.
20111
20112 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
20113
20114         * inssel.brg: The empty value in class->interface_offsets is -1, not
20115         0. Fixes #49287.
20116
20117 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
20118
20119         * objects.cs: New test for 'is' operator on an array of interfaces.
20120
20121 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
20122
20123         * tramp-ppc.c: update trampoline code to support jumps
20124         and class initialization.
20125
20126 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
20127
20128         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
20129
20130         * inssel.brg (OP_UNBOXCAST): Fix #46027.
20131
20132         * inssel.brg (OP_UNBOX): Remove unused rule.
20133
20134         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
20135         region instead of one for each method. Fixes #47813.
20136
20137 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
20138
20139         * exceptions.cs (test_0_nested_finally): New regression test for
20140         nested exception handlers.
20141
20142         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
20143
20144         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
20145
20146         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
20147         inlining.
20148
20149         * mini.c (mono_method_check_inlining): Make the inlining limit 
20150         configurable by an environment variable.
20151         
20152         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
20153
20154         * mini.h: Bump AOT file version.
20155
20156         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
20157         token, store the image along with the token, since the token might not 
20158         refer to the same image as the method containing the relocation, 
20159         because of inlining.
20160
20161 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
20162
20163         * mini.c (mono_precompile_assemblies): New function to compile
20164         all methods in all loaded assemblies.
20165
20166         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
20167
20168         * regalloc.h regalloc.c (MonoRegState): Change the type of 
20169         iassign and fassign to int*, since they can contain large negative
20170         values if the register is spilled. Also added some comments. Fixes
20171         #45817.
20172
20173         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
20174         under Win32. Fixes #42964.
20175
20176 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
20177
20178         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
20179
20180         * aot.c: Added support for AOT compiling methods which contain calls
20181         to wrappers. Currently, only remoting-invoke-with-check wrappers are
20182         handled.
20183         
20184         * driver.c (compile_all_methods): Run the compilation in a thread
20185         managed by mono. Fixes #44023.
20186
20187         * mini.c (mono_codegen): Print full method name in verbose output.
20188
20189         * mini-x86.c (mono_arch_patch_code): Fix warning.
20190         
20191         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
20192         jumps, since the method we are jumping to might be domain-specific.
20193
20194         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
20195
20196 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
20197
20198         * inssel.brg: string chars are unsigned.
20199
20200 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
20201
20202         * TODO: New todo item.
20203
20204         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
20205         which calls mono_runtime_class_init and patches the call site to
20206         avoid further calls.
20207         (mono_arch_create_class_init_trampoline): New arch specific function 
20208         to create a class init trampoline.
20209         (create_trampoline_code): Generalized so it can create
20210         class init trampolines as well.
20211
20212         * mini.c (helper_sig_class_init_trampoline): New helper variable.
20213         (mono_create_class_init_trampoline): New function to create and cache
20214         class init trampolines.
20215         (mono_find_class_init_trampoline_by_addr): New function to lookup the
20216         vtable given the address of a class init trampoline. Used by the
20217         patching process.
20218         (mono_codegen): Generate a call to a trampoline instead of
20219         mono_runtime_class_init in LDSFLD[A].
20220         (mono_codegen): Add relocations for the new trampoline.
20221         
20222         * mini.h mini-x86.c aot.c: Added a new relocation type: 
20223         MONO_PATCH_INFO_CLASS_INIT.
20224
20225         * mini.h: Bump AOT version number.
20226
20227         * aot.c: Create a copy of the loaded code instead of using the original
20228         so methods which call each other will be close in memory, improving
20229         cache behaviour.
20230         
20231         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
20232         patch since it breaks the regression tests.
20233         
20234         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
20235         for the register saving instruction sequence since the 
20236         frame_state_for function in glibc 2.3.2 don't seem to detect it.
20237
20238 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
20239
20240         * TODO: Fix todo item && remove another.
20241
20242 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
20243
20244         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
20245         previous checkin.
20246
20247         * aot.c: Moved the check for MONO_LASTAOT into the initialization
20248         function of the module.
20249
20250         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
20251         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
20252         --no-aot command line option.
20253
20254 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
20255
20256         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
20257         by Bernie Solomon (bernard@ugsolutions.com).
20258
20259         * inssel.brg: Refactor the interface offset table related code into
20260         its separate functions and add support for the AOT case.
20261
20262 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
20263
20264         * aot.c (mono_aot_get_method_inner): Fix memory leak.
20265         
20266         * aot.c: Added mono_aot_verbose variable and made all debugging
20267         output depend on the value of this variable.
20268
20269         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
20270         method_label and info_label.
20271
20272         * mini.h mini-x86.c aot.c: Added a new relocation type 
20273         MONO_PATCH_INFO_IID for klass->interface_id.
20274
20275         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
20276         the MonoJitInfo structure.
20277
20278         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
20279         a non-root appdomain in shared mode.
20280
20281 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
20282
20283         * aot.c: make aot loader less verbose. Remove free of unused variable.
20284
20285 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
20286
20287         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
20288
20289         * .cvsignore: Added *.dll.
20290
20291         * mini.c (mono_print_tree_nl): New function callable while debugging.
20292
20293         * mini.c (mono_print_code): Export this.
20294
20295         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
20296         patched code.
20297
20298 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
20299
20300         * mini.h (MonoCompile): Added 'jit_info' field.
20301
20302         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
20303         the cfg structure, since it is needed by the AOT compiler.
20304
20305         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
20306
20307         * aot.c: A major rewrite. Changes include:
20308         - save exception tables for methods which have them.
20309         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
20310         to g_module_symbol.
20311         - reworked the file format so it is now much smaller and needs
20312         fewer relocation entries.
20313         
20314 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
20315
20316         * aot.c (load_aot_module): Fix build bustage on platforms without
20317         Boehm GC.
20318
20319 2003-09-04  Martin Baulig  <martin@ximian.com>
20320
20321         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
20322
20323 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
20324
20325         * TODO: Some new optimization ideas.
20326
20327         * aot.c: Move AOT module loading logic here from mono_assembly_open.
20328
20329         * aot.c: Save the optimization flags used to compile the code into
20330         the AOT module.
20331
20332         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
20333         support emitting domain specific code.
20334         
20335         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
20336         no longer domain neutral. It can be made domain neutral by compiling 
20337         with --optimize=shared.
20338
20339         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
20340         between appdomains.
20341
20342         * driver.c mini.h mini.c: New --no-aot debugging option which disables
20343         loading of AOT code.
20344
20345         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
20346         
20347         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
20348         if there is no domain neutrality information.
20349
20350 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
20351
20352         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
20353         format version into the generated library.
20354
20355         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
20356         callee method into the caller since one of them could be shared.
20357
20358         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
20359         system exceptions from AOT code now works.
20360
20361         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
20362         method if it is domain neutral and the callee is not.
20363
20364         * graph.c (cfg_emit_one_loop_level): Fix warning.
20365
20366 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
20367
20368         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
20369         last checkin.
20370
20371 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
20372
20373         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
20374         is needed  by code which is executed before mono_runtime_init ().
20375         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
20376         
20377         * mini.c (mono_thread_abort): Fix warning.
20378         (mono_jit_compile_method): Call static constructor in the AOT case too.
20379
20380         * aot.c (mono_compile_assembly): Fix warning.
20381
20382 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20383
20384         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
20385
20386 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
20387
20388         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
20389
20390         * cpu-pentium.md: Fix the length of call opcodes so they include the
20391         ESP restoring instruction. Fixes #47968.
20392
20393 2003-08-28  Martin Baulig  <martin@ximian.com>
20394
20395         * mini-x86.c (mono_arch_call_opcode): Added support for
20396         MONO_TYPE_GENERICINST.
20397
20398         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
20399
20400 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
20401
20402         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
20403         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
20404
20405         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
20406         metadata_section.
20407
20408 2003-08-26  Martin Baulig  <martin@ximian.com>
20409
20410         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
20411         when reporting an error, set this to the actual error location.
20412         (mono_method_to_ir): Report the correct error location if
20413         get_basic_blocks() returned an error.
20414
20415 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
20416
20417         * mini.c (mono_type_blittable): OBJECT is not blittable.
20418         (mono_method_blittable): Methods which have marshalling descriptors
20419         are not blittable either. Fixes #47842.
20420
20421 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
20422
20423         * driver.c mini.c: Use an environment variable instead of a global 
20424         variable. Also fix the build.
20425
20426         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
20427         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
20428         reporting this. 
20429
20430         * driver.c mini.c: Added --with-valgrind option to turn off some
20431         code which prevents mono from running under valgrind.
20432
20433         * mini.c (mono_emit_call_args): Fixed warning.
20434
20435         * mini.c (mono_emulate_opcode): Fixed warning.
20436
20437 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
20438
20439         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
20440         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
20441         regalloc.c, regalloc.h: specify available registers in arch-specific
20442         code and support floats in the regallocator (patch by Laurent Morichetti 
20443         <l_m@pacbell.net>)
20444
20445 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
20446
20447         * mini.c: mono_thread_current() can be called only after
20448         mono_runtime_init(): rearrange code to not call it early on.
20449
20450 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
20451
20452         * mini.c: allocate jump tables in the code mempools.
20453
20454 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20455
20456         * mini.c, mini.h: make sure per-thread data allocated by the jit is
20457         freed.
20458
20459 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
20460
20461         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
20462         12 to 16.  This fixes bug #47453.
20463
20464
20465 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
20466
20467         * mini-ppc.c: fixed indexed load and unsigned compares.
20468
20469 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
20470
20471         * mini.c: reenabled installation of handler for
20472           thread abort signal.
20473
20474 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
20475
20476         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
20477         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
20478         until it's fixed and actually useful.
20479
20480 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
20481
20482         * inssel-long32.brg: couple more opcodes implemented.
20483
20484 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
20485         
20486         * mini-sparc.c: Even more opcodes implemeted.
20487
20488 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
20489
20490         * mini-sparc.c: More opcodes implemented.
20491
20492 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
20493
20494         * mini-sparc.c: More opcodes implemented.
20495
20496 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
20497
20498         * inssel-sparc.brg: Add some needed rules.  Direct
20499         copy from PPC.
20500         * Makefile.am: Use inssel-sparc.brg
20501         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
20502         an assert happy for now.
20503
20504 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
20505
20506         * mini-sparc.c: Fixed compile errors.
20507         * exceptions-sparc.c: Same.  We now produce a mono binary 
20508         on sparc-linux.  Yea.
20509
20510 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
20511
20512         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
20513         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
20514         They compile, but do not work.
20515
20516 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
20517
20518         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
20519         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
20520         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
20521         (ct@gentoo.org).
20522
20523 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
20524
20525         * mini.c: more opcodes implemented and better support for generics.
20526
20527 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
20528
20529         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
20530         * mini.c, mini.h: first cut at generics support: some new instructions 
20531         added and changed the behaviour of some of the existing ones.
20532
20533 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
20534
20535         * mini.c: Removed definition of metadata_shared mutex here.
20536
20537 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
20538
20539         * mini-x86.c: make vararg calls work for instance methods.
20540
20541 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
20542
20543         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
20544         returns the arguments in a separte list, now.
20545
20546 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
20547
20548         * aot.c, mini.c: updates for array type representation changes.
20549
20550 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
20551
20552         * mini.c: register function to perform jit shutdown.
20553
20554 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
20555
20556         * mini.c: use a faster allocator if possible.
20557
20558 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
20559
20560         * aot.c: some cleanups and portability changes.
20561
20562 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
20563
20564         * mini.c: use faster allocation for CEE_BOX if possible.
20565
20566 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
20567
20568         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
20569         Moved inlined mempcy code to its own function so that is can be
20570         reused. Added an inline memset function as well (optimized initobj).
20571         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
20572
20573 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
20574
20575         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
20576
20577 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
20578
20579         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
20580         arch code can setup the cpu for CLR execution, if needed.
20581         We use it on x86 to set the precision of FP operations.
20582
20583 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
20584
20585         * mini.c: disable some optimizations if we can guess they'll cost too
20586         much for a given method.
20587
20588 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
20589
20590         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
20591         
20592 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
20593         * mini.h mini.c mini-x86.c: Added instruction level coverage 
20594         info collection support.
20595
20596 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
20597
20598         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
20599         is now implemented in the profiling API. Get rid of a couple of
20600         unnecessary global variables.
20601
20602 2003-06-15  Nick Drochak <ndrochak@gol.com>
20603
20604         * basic-long.cs: tests for negative values for bigmul, and unsigned.
20605         * cpu-g4.md: add op_bigmul and op_bigmul_un
20606         * cpu_pentium.md: add op_bigmul_un
20607         * inssel-long32.brg: add rule for unsigned bigmul
20608         * mini-ops.h: define OP_BIGMUL_UN
20609         * mini-x86.c: THE BUG: handle (un)signed properly
20610         * mini.c: choose unsigned opcode if needed.
20611         This set of patches fixes bug #44291
20612
20613 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
20614
20615         * mini.c (optimize_branches): improved to handle all kinds of
20616         conditional branches.
20617
20618 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
20619
20620         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
20621         don't raise exceptions.
20622
20623 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
20624
20625         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
20626         to arch-specific files.
20627
20628 2003-06-09  Martin Baulig  <martin@ximian.com>
20629
20630         * Makefile.am (libs): Added $(LIBGC_LIBS).
20631
20632 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
20633
20634         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
20635         and OP_ATAN (fixes bug#44293).
20636
20637 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
20638
20639         * Makefile.am, mini-x86.c: rename cpu description array to
20640         pentium_desc, since some compilers define the 'pentium' preprocessor
20641         symbol.
20642
20643 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
20644
20645         * mini.c (mini_select_instructions): add explicit branch if the
20646         following block is not the false target of a conditional branch -
20647         we need this with any optimization that reorder or remove bblocks
20648
20649         * mini.c (optimize_branches): bug fixes
20650
20651 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
20652
20653         * mini.c (mono_method_to_ir): inline static readonly fields
20654
20655         * ssa.c (fold_tree): start cfold support for long (very simple
20656         cases only)
20657
20658         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
20659
20660 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
20661
20662         * inssel.brg: fixed memcpy (bug #44219).
20663
20664 2003-06-05  Dick Porter  <dick@ximian.com>
20665
20666         * driver.c: Set the glib log levels to not abort if g_message
20667         recurses.
20668
20669         g_set_prgname() has to happen before mini_init() so that the
20670         process handle gets the info.
20671         
20672 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
20673
20674         * driver.c: add intrins to the default optimizations to get wider
20675         exposure.
20676
20677 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
20678
20679         * mini.h: some large basic blocks will overflow a 16-bit
20680         integers for symbolic registers.
20681
20682 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
20683
20684         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
20685         (mono_arch_output_basic_block): fix bug 43499 
20686
20687 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
20688
20689         * mini.c: kill duplicated definition of mono_debug_format.
20690
20691 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
20692
20693         * mini-x86.c, arrays.cs: fixed register allocation bug.
20694
20695 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
20696
20697         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
20698
20699         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
20700
20701 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20702
20703         * mini.c:
20704         (print_method_from_ip): also print source location information if
20705         available.
20706
20707 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
20708
20709         * mini.c (mono_find_block_region): bug fix in region code
20710         (mini_method_compile): enable removing unreachable code again, but
20711         only in methods without exception clauses.
20712
20713 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
20714
20715         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
20716         Implemented arglist opcode and handling of TypedReference type.
20717         Fixed x86 call convention when a structure is returned.
20718         Minimal support for calling static vararg methods.
20719
20720 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
20721
20722         * mini.c (mini_method_compile):  always remove unreachable code,
20723         because the code in them may be inconsistent  (access to dead
20724         variables for example).
20725
20726 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
20727
20728         * driver.c, debug-mini.c: warning fixes.
20729
20730 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
20731
20732         * Makefile.am, jit.h, mini.h: install header for embedding mono.
20733
20734 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
20735
20736         * mini.c: thread-static fields are registered in mono_class_vtable(),
20737         so ensure the function is called before checking for them.
20738
20739 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
20740
20741         * mini.c (optimize_branches): fix for bug 43586
20742
20743         * jit-icalls.c (mono_llmult_ovf): added an additional check for
20744         overflow (fixes Bug #43639)
20745
20746 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20747
20748         * mini.c, objects.cs: allow the use of stobj for primitive types.
20749
20750 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20751
20752         * mini.c: be less strict about argument checking until we support
20753         running the verifier.
20754
20755 2003-05-27  Nick Drochak <ndrochak@gol.com>
20756
20757         * basic-long.cs: tests for (ulong)int * (ulong)int also
20758         * mini.c: use the same trick for (ulong)int * (ulong)int
20759
20760 2003-05-27  Nick Drochak <ndrochak@gol.com>
20761
20762         * basic-long.cs: add regression test for (long)int * (long)int
20763         * cpu-pentium.md: add op_bigmul specification
20764         * inssel-long32.brg: add OP_BIGMUL rule
20765         * mini-ops.h: add OP_BIGMUL
20766         * mini-x86.c: register allocator: handle case where src1 needs to be
20767         in EAX.
20768         * mini.c: substitute special BIGMUL opcode in the tree for 
20769         (long)int * (long)int
20770
20771 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
20772
20773         * jit-icalls.c: call the type ctor on field access if needed.
20774
20775 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
20776
20777         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
20778         to a method (including results of ldelema, bug#43207).
20779
20780 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
20781
20782         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
20783         colors to show exception handler blocks.
20784
20785         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
20786         (fix for pinvoke7.cs).
20787
20788 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20789
20790         * mini.h, mini.c: ensure correct initialization order for types that
20791         require it. Prepare for lazy compilation of jit icall wrappers.
20792         Provide a name for opcode emulation to reduce unneeded mallocing.
20793
20794 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
20795
20796         * mini-x86.c: better register restoring code and profiling
20797         support for tail calls.
20798
20799 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20800
20801         * mini.h, driver.c: prepare for leaf methods optimization.
20802
20803 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
20804
20805         * mini.c: get targets of branches before converting a method.
20806
20807 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
20808
20809         * mini.c (optimize_branches): added some experimental code (disbaled) 
20810
20811 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
20812
20813         * mini.c (optimize_branches): fix branch to branch optimization 
20814
20815         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
20816
20817         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
20818
20819         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
20820
20821         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
20822         if needed.
20823
20824 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
20825
20826         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
20827         enable use of interface variables again.
20828
20829         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
20830         I1 to registers because there is no simply way to sign extend 8bit
20831         quantities in caller saved registers on x86.
20832
20833         * inssel-float.brg: set costs of some rules to 2 so
20834         that monobure always select the arch. specific ones if supplied,
20835         regardless of the order we pass the files to monoburg.
20836
20837 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
20838
20839         * mini.c, mini-x86.c: since the magic trampoline for jumps
20840         can't patch the code directly, we do it as soon as the
20841         method gets compiled.
20842
20843 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
20844
20845         * mini-x86.c, mini.h: introduce a new patching method
20846         to support CEE_JMP and tail calls.
20847         * mini.c: obey tail.call. Don't precompile methods target
20848         of CEE_JMP.
20849         * tramp-x86.c: new trampoline code to handle methods
20850         reached through a jump.
20851
20852 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
20853
20854         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
20855         bit values to registers
20856
20857 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
20858
20859         * mini.c (mono_compile_get_interface_var): share interface
20860         variables if possible.
20861
20862 2003-05-16  Martin Baulig  <martin@ximian.com>
20863
20864         * debug-mini.c (mono_init_debugger): New function to initialize
20865         the debugger.  This is not in the debugger since it needs to
20866         access some of mini's internals.
20867
20868 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
20869
20870         * mini.c (mono_method_to_ir): inlining fixes/cleanups
20871
20872 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
20873
20874         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
20875         for value type handling.
20876
20877 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
20878
20879         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
20880         (mono_method_check_inlining): enable inlining of all kinds of wrappers
20881
20882 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
20883
20884         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
20885           the constructor through a proxy.
20886
20887 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
20888
20889         * jit-icalls.c, inssel.brg: fixes to array element address
20890         calculations.
20891
20892 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
20893
20894         * mini-x86.c (is_regsize_var): allocate pointer to registers
20895
20896 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
20897
20898         * driver.c: fixed typo, added intrins to the set of optimizations
20899         tested with regressions.
20900
20901 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
20902
20903         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
20904         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
20905         test case.
20906
20907 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
20908
20909         * inssel.brg: remove some common pop instructions without side effects
20910
20911 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
20912
20913         * inssel-x86.brg: fixed thinko in int to double conversions.
20914
20915 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
20916
20917         * mini.c, jit-icalls.c: added runtime thread-static variable support.
20918
20919 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
20920
20921         * inssel-long32.brg: two more missing instructions.
20922
20923 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
20924
20925         * mini.c (mono_emit_call_args): set the cil_code for all arguments
20926         if not already set.
20927
20928 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
20929
20930         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
20931         correctly.
20932
20933         * basic-float.cs: Added tests for negative zero.
20934
20935 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
20936
20937         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
20938         a couple of missing operations for long casts, with test cases.
20939
20940 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20941
20942         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
20943
20944 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
20945
20946         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
20947         code size estimation.
20948
20949 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
20950
20951         * mini.c (mono_jit_create_remoting_trampoline): make it work with
20952         abstract methods (fix bug 42542)
20953
20954         * aot.c: add ability to handle array types
20955         
20956 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
20957
20958         * mini.c: Call the _specific versions of the object allocation
20959         functions if possible.
20960
20961 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
20962
20963         * driver.c: call setlocale ().
20964
20965 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
20966
20967         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
20968         windows build.
20969
20970 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
20971
20972         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
20973
20974         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
20975         wrappers (fix bug 42122)
20976
20977 2003-05-04  Martin Baulig  <martin@ximian.com>
20978
20979         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
20980
20981         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
20982         s/mini_set_defaults/mono_set_defaults/g.
20983
20984 2003-05-04  Martin Baulig  <martin@ximian.com>
20985
20986         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
20987
20988 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
20989
20990         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
20991         (reported by Don Roberts).
20992
20993 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
20994
20995         * mini.c: temporarily work around two bugs for this release.
20996
20997 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
20998
20999         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
21000         that contains -export-dynamic and it makes using the ld script
21001         useless.
21002         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
21003
21004 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
21005
21006         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
21007         specific cpu.
21008
21009 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
21010
21011         * mini.c: make sure leave calls all the needed finally blocks,
21012         even when the target jumps out of multiple exception clauses.
21013
21014 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
21015
21016         * ldscript, Makefile.am: add linker script to reduce the number of
21017         exported symbols (should also fix the issues with libwine defining
21018         some of the same symbols in io-layer).
21019
21020 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
21021
21022         * driver.c (mini_main): Avoid assertion when no file name is given on 
21023         the command line.
21024
21025 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
21026
21027         * driver.c: added --version/-V command line option.
21028         Added the inline optimization in the regression tests.
21029
21030 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
21031
21032         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
21033         to the type in the method signature (fixes bug#42134).
21034
21035 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
21036
21037         * mini.c: when inlining, check this is not null only when needed (bug #42135).
21038
21039 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
21040
21041         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
21042
21043 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21044
21045         * driver.c: fixed bug #42100.
21046
21047 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
21048
21049         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
21050
21051 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
21052
21053         * mini.c: moved most of the code required to do inlining to its own
21054         function so it can be reused. Inline also ctors if appropriate.
21055
21056 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
21057
21058         * Makefile.am: Link with -export-dynamic so shared libs loaded by
21059         the runtime can call mono API functions.
21060
21061 2003-04-27  Martin Baulig  <martin@ximian.com>
21062
21063         * debug-mini.c (mono_debug_init_method): Added
21064         `guint32 breakpoint_id' argument; if the method has a breakpoint,
21065         send a notification to the debugger.
21066
21067         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
21068         running in the Mono Debugger, just pass the breakpoint number to
21069         mono_debug_init_method().
21070
21071         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
21072
21073 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
21074
21075         * mini.c: allow some more unsafe compares.
21076
21077 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
21078
21079         * mini-x86.c, Makefile.am: make distcheck works (partially from
21080         a patch by Richard Lee <r.h.lee@attbi.com>).
21081         * regset.c, regset.h: removed, they are unused.
21082
21083 2003-04-25  Dick Porter  <dick@ximian.com>
21084
21085         * driver.c: Usage reports the name as 'mono' not 'mini'
21086         * exceptions-x86.c: Build and run on freebsd
21087
21088 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
21089
21090         * Makefile.am: install the program with the 'mono' name and
21091         the library as libmono instead of mini and libmini.
21092
21093 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
21094
21095         * driver.c: provide the APIs for the embedding interface of the old jit.
21096
21097 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
21098
21099         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
21100
21101 2003-04-23  Martin Baulig  <martin@ximian.com>
21102
21103         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
21104
21105         * driver.c: Added `--debug' command line argument to enable
21106         debugging support.
21107
21108 2003-04-23  Martin Baulig  <martin@ximian.com>
21109
21110         * debug.[ch]: Removed.  The code is now in
21111         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
21112
21113         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
21114         last six months.
21115
21116 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
21117
21118         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
21119
21120 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21121
21122         * mini.c:
21123         (mini_cleanup): moved mono_runtime_cleanup call after the call to
21124         mono_domain_finalize.
21125         (mini_method_compile): use mono_method_profile* if the the option is
21126         enabled.
21127
21128 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
21129
21130         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
21131         methods with their wrapper.
21132
21133         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
21134         methods with their wrapper.
21135
21136         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
21137         their wrapper.
21138
21139         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
21140         wrapper.
21141
21142         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
21143         methods.
21144
21145 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
21146
21147         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
21148
21149 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
21150
21151         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
21152         of the mempool. This is slightly faster and uses less memory
21153
21154 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
21155
21156         * mini.c: avoid O(n) allocation for variables.
21157
21158 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
21159
21160         * mini.c: handle items on the stack after inlining methods.
21161
21162 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
21163
21164         * mini.c: make the method->opcode optimization dependent
21165         on MONO_OPT_INSTRINS and do it lazily.
21166
21167 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
21168
21169         * driver.c: print overall results at the end of regression run.
21170
21171 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
21172
21173         * inssel.brg: don't overwrite symbolic registers.
21174
21175 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
21176
21177         * inssel-x86.brg: fix conversion from long to float.
21178
21179 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
21180
21181         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
21182
21183 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
21184
21185         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
21186
21187         * driver.c: Added --print-vtable option as in the old JIT.
21188
21189 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
21190
21191         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
21192
21193 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
21194
21195         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
21196
21197 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
21198
21199         * mini.c regalloc.c regalloc.h: Fix memory leak.
21200
21201 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
21202
21203         * aot.c (mono_aot_get_method): register all used strings
21204
21205 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
21206
21207         * mini.c: always intern strings references with ldstr at compile time.
21208
21209 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
21210
21211         * Makefile.am: add BUILT_SOURCES.
21212
21213 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
21214
21215         * driver.c: give a better error message when the assembly to execute
21216         doesn't have an entry point.
21217
21218 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
21219
21220         * Makefile.am: added hack for automake
21221
21222         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
21223         correct sematics.
21224
21225         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
21226
21227 22003-04-07  Martin Baulig  <martin@ximian.com>
21228
21229         * Makefile.am: Added Makefile.am.
21230
21231         * debugger-main.c: Removed, this is now in the debugger where it
21232         belongs.
21233
21234         * mini.pc.in: Call this package `mini' for the moment.
21235
21236
21237
21238
21239
21240
21241
21242
21243
21244
21245
21246
21247
21248
21249