20da30b9fa0f075017873ab2ea2c29ed4179203f
[mono.git] / mono / mini / ChangeLog
1 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2
3         * mini-trampolines.c: Use mono_arch_get_this_arg_from_call () to avoid the slow
4         mono_get_generic_context_from_code () call.
5
6         * mini-<ARCH>.c: Get rid of mono_arch_find_this_arg (), it is no longer used.
7
8 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
9
10         * aot-runtime.c (decode_klass_ref): Don't call mono_class_init (), its not
11         needed.
12
13 2009-12-24  Sebastien Pouliot  <sebastien@ximian.com>
14
15         * method-to-ir.c (mono_method_to_ir): Avoid SIGSEGV when
16         mono_method_get_signature returns NULL. Fix #567084
17
18 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
19
20         * aot-runtime.c (find_extra_method): Call mono_aot_wrapper_name only once,
21         instead of once for each module.
22
23 2009-12-22  Zoltan Varga  <vargaz@gmail.com>
24
25         * debugger-agent.c (ss_start): Implement step over for the last sequence
26         point in methods.
27
28         * mini.c (mono_save_seq_point_info): Don't link sequence points which don't
29         have the STEP_LOC flag set.
30
31         * aot-runtime.c (decode_klass_ref): Avoid a crash if a decode_klass_ref () call
32         fails. Fixes #566689.
33
34 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
35
36         * mini.c (mono_add_seq_point): New helper function.
37         (mono_save_seq_point_info): New function to save sequence point info, extracted
38         from mini_method_compile ().
39
40         * mini-<ARCH>.c: Call mono_add_seq_point to remember sequence points.
41
42         * mini.h (MonoSeqPointInfo): New structure containing information about
43         the sequence points of a JITted method.
44         (MonoBasicBlock): Add 'seq_points' and 'last_seq_point' fields. Remove unused
45         'bucket' field.
46
47         * mini.c debugger-agent.c aot-compiler.c aot-runtime.c: Change the way sequence
48         point information is stored, use a MonoSeqPointInfo structure instead of a
49         GPtrArray. For each seq point, compute a list of successor seq points.
50
51         * debugger-agent.c: Use the successor list to implement step-over more
52         efficiently: instead of single stepping until a different line/IL offset is
53         reached, place breakpoints into all successor seq points.
54
55         * mini.h: Bump AOT file format version.
56
57 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
58
59         * Makefile.am (AM_CFLAGS): Include LLVM_CFLAGS.
60
61         * mini-llvm.c: Avoid defining the __STDC_... macros if already defined.
62
63 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
64
65         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): Fix the cross-compiler
66         build.
67
68 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
69
70         * mini-x86.c (mono_arch_get_argument_info): Allocate memory for CallInfo using
71         alloca as g_malloc is not signal safe.
72
73 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
74
75         * tramp-x86.c (mono_arch_patch_callsite): Fix the call to
76         VALGRIND_DISCARD_TRANSLATIONS.
77
78         * *.c: Include mono/utils/memcheck.h, and remove #ifdef HAVE_VALGRIND_MEMCHECK_H
79         checks, they are no longer needed.
80
81         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): New helper function to set
82         a function into a sigctx which can handle function pointers.
83
84         * mini-ppc.c: Implement soft debugger support on ppc64.
85
86         * mini-ppc.c: Implement soft debugger support.
87
88 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
89
90         * mini-llvm.c: Handle OP_LADD_OVF_UN. Place all alloca's into the entry bb.
91
92 2009-12-17  Marek Habersack  <mhabersack@novell.com>
93
94         * mini.c (mono_get_runtime_build_info): include Mono version in
95         the returned value.
96
97         * driver.c (mono_main): VERSION is now included in the string
98         returned from mono_get_runtime_build_info()
99
100 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
101
102         * method-to-ir.c (mono_method_to_ir): Add support for CALLI with unmanaged
103         signatures. Fixes #565143.
104
105         * jit-icalls.c (mono_get_native_calli_wrapper): New JIT icall.
106
107 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
108
109         * aot-compiler.c (arch_emit_autoreg): Align code to 4 in the ppc case.
110
111 2009-12-16 Rodrigo Kumpera  <rkumpera@novell.com>
112
113         * mini-x86.h: Forgot to add a 0x to MONO_ARCH_MAX_FRAME_SIZE define
114         making max stack 10x smaller.
115
116 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
117
118         * mini.c (mono_resolve_patch_target): Comment out an assert which could be hit.
119
120 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
121
122         * method-to-ir.c (mini_emit_memcpy): Assert if size is too big.
123
124 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
125
126         * mini-x86.c (mono_arch_allocate_vars): Fail compilation if the frame size is
127         bigger than MONO_ARCH_MAX_FRAME_SIZE.
128
129         * mini-x86.c (mono_arch_emit_prolog): Handle huge frames.
130
131         * mini-x86.h: Define MONO_ARCH_MAX_FRAME_SIZE to be 1Mb.
132
133         * mini-amd64.c / mini-amd64.h: Same fixes as of above.
134
135         * mini.c (mini_method_compile): Check if mono_arch_allocate_vars failed
136         the compilation.
137
138 2009-12-14  Miguel de Icaza  <miguel@novell.com>
139
140         * method-to-ir.c (mono_method_to_ir): CEE_UNUSUED opcodes now
141         raise an invalid program exception.   
142
143         For other opcodes that we might not handle use a g_warning and
144         raise the exception.   Beats termination.
145
146         Fixes #561724
147
148 2009-12-14  Zoltan Varga  <vargaz@gmail.com>
149
150         * method-to-ir.c (mono_emit_rgctx_method_call_full): Fix a warning.
151
152         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix the LLVM support
153         by merging the LLVM and !MAP_32BIT cases.
154
155 2009-12-13 Jonathan Chambers <joncham@gmail.com>
156
157         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Handle a NULL
158         sigctx being passed in, as we have no CONTEXT available in the APC.
159
160         (mono_debugger_agent_cleanup): Use explicit cond wait implementation
161         for now.
162
163         Code contributed under MIT/X11 license.
164
165 2009-12-13  Zoltan Varga  <vargaz@gmail.com>
166
167         * method-to-ir.c mini-llvm.c: Fix support for monitor enter/exit trampolines
168         in the LLVM backend on AMD64.
169
170         * aot-runtime.c (decode_eh_frame): Initialize the clauses from the info in the
171         FDE.
172
173         * unwind.c (mono_unwind_decode_fde): Implement decoding of a couple more formats.
174
175         * mini-llvm.c: Export mono_personality for AOT.
176
177         * mini.c (mini_method_compile): Fix some problems with llvm+aot+clauses.
178
179         * mini-ops.h (OP_IMPLICIT_EXCEPTION): New opcode marking the place where an
180         implicit exception can occur.
181
182         * ir-emit.h (MONO_EMIT_NEW_IMPLICIT_EXCEPTION): New macro to emit an
183         OP_IMPLICIT_EXCEPTION instruction.
184
185         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): New macro.
186
187         * method-to-ir.c: Use MONO_EMIT_NEW_CHECK_THIS in a few places.
188
189         * mini-llvm.c: Handle OP_IMPLICIT_EXCEPTION by disabling llvm if it occurs
190         inside a protected block.
191
192         * mini-llvm.c: Revert the last change, the signature of monitor entry/exit
193         trampolines doesn't include the argument.
194
195         * mini-llvm.c (mono_llvm_emit_method): Enable calls to monitor entry/exit
196         trampolines on amd64.
197
198         * mini-amd64.h (MONO_ARCH_MONITOR_OBJECT_REG): Use MONO_AMD64_ARG_REG1 instead
199         of RDI.
200
201         * mini.c (mini_method_compile): Add some comments as to why LLVM is currently
202         disabled for methods with clauses.
203
204         * mini-llvm.c: Enable support for catch clauses.
205
206         * mini-exceptions.c (mono_resume_unwind): New function to resume unwinding at the
207         end of an LLVM compiled finally clause.
208         (mono_handle_exception_internal): Save the exception handling state in TLS
209         before calling an LLVM compiled finally clause, so mono_resume_unwind () can
210         resume unwinding from that point.
211
212         * unwind.c (mono_unwind_get_ops_from_fde): Rename this to
213         mono_unwind_decode_fde, decode the Language Specific Data Area (LSDA) too,
214         to obtain the addresses of the exception handling regions.
215
216         * mini-llvm.c: Add beginnings of support for exception handling, currently only
217         finally clauses are supported.
218
219         * mini.c (mini_method_compile): Add support for LLVM code with exception
220         handlers.
221
222 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
223
224         * mini-llvm.c (mono_llvm_emit_method): Allocate the 'pindexes' array with the
225         proper size.
226
227 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
228
229         * debugger-agent.c: Encode the this argument of vtype methods as a struct, not
230         as a primitive type.
231
232 2009-12-11  Zoltan Varga  <vargaz@gmail.com>
233
234         * driver.c: Applied patch from Matt McClellan (matt@mc-c.net). Add a check
235         for 2 parameter sched_setaffinity in older glibc versions. Fixes
236         #564000.
237
238 2009-12-11  Marek Habersack  <mhabersack@novell.com>
239
240         * method-to-ir.c (mini_redirect_call): do not redirect the
241         InternalAllocateStr internal call if string profiling is enabled.
242
243 2009-12-10  Zoltan Varga  <vargaz@gmail.com>
244
245         * aot-compiler.c (add_wrappers): Avoid generating synchronized wrappers for
246         generic methods.
247
248         * unwind.h: Rename this to mini-unwind.h to avoid conflicts with the gcc
249         unwind.h header file.
250
251         * tramp-x86.c (mono_arch_patch_callsite): Patch the code when using valgrind,
252         newer valgrind versions seems to handle this fine.
253
254 2009-12-09  Zoltan Varga  <vargaz@gmail.com>
255
256         * debugger-agent.c (start_runtime_invoke): Fix a crash if this is called
257         on the debugger thread.
258
259 2009-12-08  Zoltan Varga  <vargaz@gmail.com>
260
261         * mini-llvm.c (mono_llvm_emit_method): Add more SIMD opcodes.
262
263         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
264
265         * mini-codegen.c (mono_local_regalloc): Allow non-call opcodes with cloc:c.
266
267         * cpu-<ARCH>.md: Make call_handler clob:c.
268
269         * mini.c: Reenable SSA for methods with clauses.
270
271         * mini.c (mini_method_compile): Disable SSA for now for methods with clauses,
272         as it causes failures on x86.
273
274 2009-12-08  Sebastien Pouliot  <sebastien@ximian.com>
275
276         * driver.c: Fail gracefully with --compile-all if mono_method_signature
277         returns NULL (e.g. a bad assembly).
278
279 2009-12-08  Geoff Norton  <gnorton@novell.com>
280
281         * debugger-agent.c:  Refactor the mono_runtime_invoke guarding against
282         stepping out into native code.  There were issues with nested invokes
283         like .cctors.
284
285 2009-12-07  Zoltan Varga  <vargaz@gmail.com>
286
287         * mini.c (mini_method_compile): Do the disable_llvm checks early
288         and avoid the LLVM compile pass if the checks fail.
289
290         * mini.c ssa.c abcremoval.c: Enable SSA for methods with exception clauses.
291
292         * mini-llvm.c: Put our methods/globals into the 'llvm.used' array, so the
293         LLVM optimizations don't try to remove them.
294
295         * aot-compiler.c (emit_llvm_file): Save the result of opt into a
296         different file so the original remains.
297
298 2009-12-06  Zoltan Varga  <vargaz@gmail.com>
299
300         * mini-llvm.c mini.c: Fix alignment issues with SIMD vars.
301
302         * aot-runtime.c (decode_arm_exidx): Handle most descriptors created by gas.
303
304         * aot-runtime.c (decode_arm_exidx): Refactor this into two functions, add
305         support for non-inline unwind descriptors.
306
307 2009-12-07  Geoff Norton  <gnorton@novell.com>
308
309         * debugger-agent.c:  Darwin can colesce signals, so we need to handle
310         the interrupt_count slightly differently.  Native threads were never
311         marked as resumed.
312
313 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
314
315         * aot-runtime.c (decode_arm_exidx): New function to initialize a MonoJitInfo
316         based on the contents of the ARM .exidx section. Not yet used since llvm doesn't
317         yet generate this info.
318
319         * mini-llvm.c: Fix the conversion of call results if they are unsigned.
320
321         * debugger-agent.c (buffer_add_value): Treat I/U as a valuetype, so the
322         client can distinguish between intptrs and longs.
323
324 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
325
326         * aot-compiler.c (emit_trampoline): Emit the trampoline info into the global
327         blob.
328
329         * aot-runtime.c (load_function): Update after the change above.
330
331         * mini.h: Bump AOT file format version.
332
333         * method-to-ir.c (mono_method_to_ir): Disallow the delegate optimization
334         if the delegate class is dynamic.
335
336         * method-to-ir.c (handle_delegate_ctor): Allow the method_code optimization
337         in gshared code too using the new rgctx info type
338         MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
339
340 2009-12-04  Geoff Norton  <gnorton@novell.com>
341
342         * debugger-agent.c: When doing a func-eval invoke on a suspended runtime,
343         we need to track the original suspend count so the thread properly
344         wakes up in resume_thread.
345
346 2009-12-04  Zoltan Varga  <vargaz@gmail.com>
347
348         * method-to-ir.c (handle_delegate_ctor): Add support for using this from gshared
349         code.
350
351         * generics.cs: Add a test.
352
353         * method-to-ir.c (emit_get_rgctx_method): Make this work even if context_used
354         is 0. Simplify a lot of code using this.
355
356         * mini-trampolines.c (mono_delegate_trampoline): Call
357         mono_create_static_rgctx_trampoline () before saving the final address in
358         delegate->method_code, to avoid calling it each time a delegate is first called.
359
360         * method-to-ir.c (mono_method_to_ir): Allow fast delegate creation for methods
361         which need static rgctx trampolines.
362
363         * mini-trampolines.c (mono_create_static_rgctx_trampoline): Use a cache
364         keyed on the method+addr pair, since addr could be either the method addr or
365         an unbox trampoline in the AOT case. Fixes #560246.
366
367 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
368
369         * mini.c (mini_method_compile): Call handle_exception_clauses () in the same
370         place it was called before too.
371
372 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
373
374         * mini.c (mono_jit_runtime_invoke): Avoid the call to mono_class_setup_vtable ()
375         if no security manager is present, to speed up the AOT case. Call
376         mono_class_vtable () full with raise_on_error == TRUE instead.
377
378 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
379
380         * mini.c (mini_method_compile): Call handle_exception_clauses earlier so
381         the local optimization passes can take its result into account. Fixes
382         #559876.
383
384         * exceptions.cs: Add a test.
385
386 2009-01-24  Steven Munroe  <munroesj@us.ibm.com>
387
388         This patch is contributed under the terms of the MIT/X11 license
389
390         * cpu-ppc64.md (load_memindex): Add loadi8_memindex.
391
392 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
393
394         * mini.h (MonoInst): Remove unused 'ssa_op' field.
395
396         * debugger-agent.c: Rework the handling of stack traces of running threads to
397         avoid crashes if compute_frames () tries to walk the stack of running thread.
398
399         * mini.c (mono_print_method_from_ip): Use mini_jit_info_table_find.
400
401         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): Set frame->lmf.
402
403         * mini.h (StackFrameInfo): Add an 'lmf' field.
404
405 2009-12-02  Zoltan Varga  <vargaz@gmail.com>
406
407         * debugger-agent.c (suspend_current): Always set really_suspended.
408
409         * debugger-agent.c (clear_event_request): Clear method entry/exit requests too.
410
411         * exceptions-x86.c (mono_arch_get_restore_context): Restore EAX too.
412
413 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
414
415         * debugger-agent.c (vm_commands): Don't allow invokes on threads which are not
416         really suspended.
417
418 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
419
420         * cpu-ppc64.md (store_memindex): Add storei8_memindex.
421
422 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
423
424         * mini-trampolines.c: Fix MSVC build.
425
426 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
427
428         * mini-trampolines.c: Check for mono_method_get_vtable_slot failures.
429
430 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
431
432         * mini-arm.c (mono_arch_lowering_pass): Fix an assert which is hit when
433         the instruction following an OP_FCOMPARE is optimized away.
434
435 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
436
437         * aot-compiler.c (arch_emit_autoreg): Extract the auto-registration code from
438         emit_autoreg () into this arch-specific function.
439
440         * aot-compiler.c (emit_exception_debug_info): Don't emit the length of the
441         code, it is no longer needed.
442
443         * aot-runtime.c (decode_exception_debug_info): Don't read the code length.
444
445         * mini.h: Bump AOT file format version.
446
447         * aot-runtime.c (mono_aot_find_jit_info): Compute the length of the method
448         using the sorted_code_offsets array, instead of reading it from the
449         exception debug info.
450         (load_method): Call mono_aot_find_jit_info instead of
451         decode_exception_debug_info ().
452
453         * aot-compiler.c (emit_exception_debug_info): Emit whenever the method was
454         LLVM compiled as a flag.
455
456 2009-11-29  Zoltan Varga  <vargaz@gmail.com>
457
458         * debugger-agent.c (resume_thread): Fix a warning.
459
460         * aot-compiler.c: Add an option to set the number of static rgctx trampolines
461         generated.
462
463 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
464
465         * aot-compiler.c aot-runtime.c: Get rid of a few global symbols, move their
466         contents to MonoAotFileInfo.
467
468 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
469
470         * aot-compiler.c aot-runtime.c: Reorganize the AOT file format once again.
471         Put all binary data into a giant blob, similarly to the way .net assemblies
472         store binary data. Emit offset tables in a compact form to reduce their size.
473
474         * mini.h: Bump AOT file format version.
475
476         * aot-compiler.c (emit_globals_table): Use temp_prefix instead of .L in a few
477         places.
478
479         * aot-compiler.c (emit_globals_table): Emit a hash table for the globals, to
480         avoid linear searches at runtime.
481
482         * aot-runtime.c (find_symbol): Update this to use the hash.
483
484         * mini.h: Bump AOT file format version.
485
486 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
487
488         * aot-compiler.c (emit_klass_info): Save whenever the class has a generic
489         container.
490
491         * aot-runtime.c (decode_cached_class_info): Set the is_generic_container field
492         too.
493
494         * aot-compiler.c (mono_compile_assembly): Add a 'stats' option to print out
495         the distribution of got slot types.
496
497         * mini.h (MonoDebugOptions): Add 'explicit_null_checks' option.
498
499         * method-to-ir.c: Add support for generating explicit null checks.
500
501 2009-11-25  Zoltan Varga  <vargaz@gmail.com>
502
503         * debugger-agent.c (vm_commands): Implement EXIT by invoking Environment.Exit ()
504         on a random thread if possible.
505
506         * aot-runtime.c (mono_aot_plt_resolve): Clean up the handling of function
507         descriptors a bit, add comments, handle RGCTX_FETCH/GENERIC_CLASS_INIT_TRAMPOLINE
508         correctly.
509
510         * exceptions-ppc.c (mono_arch_find_jit_info_ext): Use mgreg_t as the type of
511         regs. Pass the real size of the regs array to mono_unwind_frame ().
512
513         * unwind.c (mono_unwind_frame): Remove an incorrect assert, add more correct
514         ones instead.
515
516 2009-11-24  Geoff Norton  <gnorton@novell.com>
517
518         * mini-darwin.c: Work around apple bug rdar://7209349  See
519         http://openradar.appspot.com/7209349 for details.  Synopsis,
520         CoreFoundation SIGTRAP's if you dlopen it off the main thread if its
521         never been initialized before.
522
523 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
524
525         * tramp-arm.c: Use blx instead of mov pc, reg to improve support for thumb.
526
527         * mini-arm.c (mono_arm_thumb_supported): New helper function.
528
529 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
530
531         * cfold.c (mono_constant_fold_ins): Fix a problem in the previous change,
532         OP_SHL_IMM is not 32 bit.
533
534 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
535
536         * aot-compiler.c (encode_patch): Fix the encoding of R8 on big-endian systems.
537
538 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
539
540         * aot-compiler.c: Avoid infinite recursion when generic virtual recursion is
541         encountered.
542
543         * debugger-agent.c (resume_vm): Signal the suspend_cond even if suspend_count
544         > 0 since some threads can resume if their resume_count is > 0.
545         (invoke_method): Avoid reading freed memory.
546
547         * debugger-agent.c (process_suspend): Extract the suspend code from
548         process_single_step_inner () to a separate function. Rework the code to prevent
549         races between this function and thread interrupts.
550
551         * debugger-agent.c (suspend_current): Check the resume_count field instead
552         of resume_one so suspends+resumes during single threaded invokes work
553         correctly.
554
555 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
556
557         * aot-compiler.c (emit_llvm_file): Enable some llvm optimizations which seem
558         to make the generated code smaller.
559
560         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Add a code
561         sequence generated by recent LLVM versions.
562
563         * mini-llvm.c: Add support for a few simple cases which weren't supported
564         before.
565
566         * mini-trampolines.c (mono_magic_trampoline): Don't call
567         mono_arch_get_vcall_slot () when llvm is enabled.
568
569         * aot-compiler.c (emit_llvm_file): Add code to run the 'opt' llvm tool.
570
571         * mini-trampolines.c (mono_magic_trampoline): Extract the bulk of this function
572         into a new function called common_call_trampoline () which is used by the
573         llvm vcall trampoline as well.
574
575         * debugger-agent.c: Implement single threaded invokes.
576
577         * debugger-agent.c: Revert change which broke the agent on linux.
578
579         * method-to-ir.c (inline_method): Prevent infinite recursion. Fixes
580         #557606.
581
582         * generics.cs: Add a test.
583
584 2009-11-22  Zoltan Varga  <vargaz@gmail.com>
585
586         * debugger-agent.c: Fix the cygwin build.
587
588 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
589
590         * cprop.c: Remove this unused file.
591
592 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
593
594         * cfold.c (mono_constant_fold_ins): Fix constant folding of shr_imm. Fixes
595         #557262.
596
597         * basic.cs: Add a test.
598
599 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
600
601         * method-to-ir.c (mono_method_to_ir): Use mono_use_llvm instead of ENABLE_LLVM
602         in one more place.
603
604 2009-11-20  Zoltan Varga  <vargaz@gmail.com>
605
606         * mini.c mini-trampolines.c driver.c: Add a 'mono_use_llvm' flag to control
607         whenever the runtime uses LLVM code. Add a '--llvm' command line option to set
608         it. Use this flag to control llvm related code paths instead of #ifdef
609         ENABLE_LLVM, so a runtime configured without --enable-llvm can use LLVM compiled
610         AOT code.
611
612         * aot-runtime.c aot-compiler.c: Add a 'flag' field to MonoAotFileInfo.
613
614         * mini.h: Bump AOT file format version.
615
616         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline_full): These
617         receive their argument in MONO_ARCH_VTABLE_REG, not in the first argument reg.
618
619         * debugger-agent.c (create_event_list): Fix a crash if an empty assembly list
620         was used as an assembly filter.
621
622 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
623
624         * unwind.c: Fix support for ppc.
625
626         * exceptions-ppc.c (mono_arch_find_jit_info): Change this to use dwarf frame
627         unwind info. Change to the mono_arch_find_jit_info_ext () interface.
628
629 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
630
631         * mini-ppc.c (mono_arch_emit_prolog): Fix a copy-paste error to fix the ppc64
632         port.
633         (mono_arch_cpu_init): Don't set cpu_hw_flags to 0 at the end, this was somehow
634         added by the ps3 changes.
635
636 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
637
638         * mini-gc.c: Resurrect this, so at least it compiles.
639
640         * debugger-agent.c (assembly_commands): Implement GET_NAME command.
641
642 2009-11-18  Zoltan Varga  <vargaz@gmail.com>
643
644         * debugger-agent.c (mono_debugger_agent_handle_exception): Pass a MonoJitInfo to
645         create_event_list () so assembly filters can be used.
646
647         * exceptions-ppc.c (mono_arch_find_jit_info): Fix the restoration of registers
648         from the LMF.
649
650 2009-11-17  Zoltan Varga  <vargaz@gmail.com>
651
652         * debugger-agent.c (mono_debugger_agent_breakpoint_hit): Fix a warning.
653         (mono_debugger_agent_thread_interrupt): Make this return FALSE if the agent
654         is disabled.
655
656         * aot-compiler.c (add_generic_instances): Emit instances of common generic
657         classes for char/bool too.
658
659         * debugger-agent.c (DebuggerTlsData): Honor the DISABLE_SOFT_DEBUG option.
660
661         * debugger-agent.c (DebuggerTlsData): Add a 'really_suspended' flag, not yet
662         used.
663
664         * debugger-agent.c: Add some definitions to make backporting to 2.6 easier.
665         Fix warnings.
666
667 2009-11-15  Andreas Faerber  <andreas.faerber@web.de>
668
669         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Signature fix.
670         
671         Code contributed under MIT/X11 license.
672
673 2009-11-14  Zoltan Varga  <vargaz@gmail.com>
674
675         (mono_debugger_agent_thread_interrupt): Save the context so stacktraces for
676         threads in native code work.
677
678         * debugger-agent.c: Pass the 'flags' argument to VM_INVOKE_METHOD earlier in
679         the parameter list, so it can be acted upon by vm_commands (). Bump protocol
680         version.
681
682 2009-11-13 Jonathan Chambers <joncham@gmail.com>
683
684         * debugger-agent.c: Implementation for Windows platform.
685
686         * mini-x86.c: Add support for Windows. Use mono-* synchronization
687         primitives. Use SEH to implement breakpoints and single stepping.
688
689         * mini-x86.h: Enable soft debugger on Windows.
690
691         Code contributed under MIT/X11 license.
692
693 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
694
695         * mini-amd64.c (emit_call_body): Disable usage of near calls when running
696         under XEN. Fixes #522894.
697
698         * patch-info.h: Add LLVM_IMT_TRAMPOLINE.
699
700         * mini-llvm.c aot-compiler.c aot-runtime.c mini.c: Add support for making
701         interface calls in LLVM AOT code.
702
703         * aot-compiler.c mini-llvm.c: Abort llvm compilation if a non-encodable patch
704         is found.
705
706         * mini-llvm.c: Add support for OP_VPHI.
707
708         * objects.cs: Add a test.
709
710 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
711
712         * debugger-agent.c (mono_debugger_agent_single_step_event): Avoid a crash if
713         this is called on the debugger thread.
714
715 2009-11-12  Zoltan Varga  <vargaz@gmail.com>
716
717         * mini-llvm.c: Add soft-float support.
718
719         * method-to-ir.c (mono_decompose_soft_float): Restart after decomposing an
720         FCALL which returns an R4.
721
722         * driver.c (mono_main): Add a missing '\n'.
723
724         * mini-trampolines.c (mono_create_llvm_imt_trampoline): Fix the build on
725         platforms which doesn't support the LLVM IMT trampoline.
726
727 2009-11-11  Zoltan Varga  <vargaz@gmail.com>
728
729         * mini-llvm.c (mono_llvm_emit_method): Fix LOCALLOC.
730
731         * mini-llvm-cpp.cpp: Update to latest LLVM SVN.
732
733         * mini-llvm.c (mono_llvm_emit_method): Avoid creating plt entries for
734         virtual calls.
735
736         * aot-runtime.c: Don't define HAVE_DL_ITERATE_PHDR, configure now does that.
737
738 2009-11-10  Zoltan Varga  <vargaz@gmail.com>
739
740         * aot-compiler.c aot-runtime.c: Change how mono_arch_find_jit_info () works.
741         Instead of emitting a method_order table, sort the contents of the code_offsets
742         table and do a binary search in the sorted table. The previous approach doesn't
743         work with LLVM which emits methods in a arbitrary order.
744
745         * aot-runtime.c: Add support for creating MonoJitInfo structures by searching
746         in the .eh_frame section in ELF files.
747
748         * mini.h: Bump corlib file format version.
749
750         * mini-llvm.c aot-compiler.c: Add support for AOT to the LLVM back end.
751
752         * exceptions-arm.c (mono_arch_get_call_filter_full): Update after the
753         LDMIA->LDM macro name change.
754
755 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
756
757         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Fix and enable this for
758         x86.
759
760         * mini-llvm-cpp.cpp (JITMemoryManager): Fix compilation with LLVM 2.7
761         SVN.
762
763         * aot-compiler.c: Ditto.
764
765         * mini-arm.c (mono_arch_allocate_vars): Fix the previous change by passing
766         &align to mini_type_stack_size_full ().
767
768         * mini-arm.c (mono_arch_emit_prolog): Implement support for varargs.
769
770         * mini-ops.h: Add documentation for the OP_ARGLIST opcode.
771
772 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
773
774         * mini-arm.c: Compute the stack space used by arguments using
775         mini_type_stack_size_full ().
776
777 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
778
779         * optflags-def.h: Remove dead TREEPROP optimization.
780
781 2009-11-08  Rodrigo Kumpera  <rkumpera@novell.com>
782
783         * mini-ppc.h: Make mono compiler under FreeBSD/ppc64. 
784
785         Patch by Justin Hibbits <chmeeedalf@gmail.com>.
786
787 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
788
789         * driver.c (mono_jit_parse_options): New public API function to parse options
790         as done by the runtime executable.
791
792         * debugger-agent.c (buffer_add_cattrs): Fix reading an uninitialized variable
793         when handling named arguments.
794
795 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
796
797         * mini-arm.c: Implement support for returning vtypes in registers, fix support
798         for passing small vtypes in registers, make the CallInfo structures more
799         similar to the code on the other platforms.
800
801         * mini-arm.c (mono_arch_allocate_vars): Align small vtypes to 4 bytes too since
802         the code in the prolog requires it.
803
804 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
805
806         * mini-arm.c debugger-agent.c: Android changes from Koushik K. Dutta
807         (koush@koushikdutta.com).
808
809         * mini-arm.c (handle_thunk): Add a domain argument to control the domain
810         where the thunk memory should be allocated from. Fixes appdomain unloading
811         on arm.
812
813 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
814
815         * mini-arm.c exceptions-arm.c: Make ctx->regs map directly to the 16 hardware
816         registers, instead of r4..r11,ip,lr. Make restore_context () restore r0..r3 too.
817
818 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
819
820         * mini-amd64.c (mono_arch_output_basic_block): Don't allow OP_SEQ_POINT in
821         AOT, as it is not implemented yet.
822
823         * mini-x86.c (mono_arch_output_basic_block): Ditto.
824
825 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
826
827         * debugger-agent.c: Fix windows build.
828
829 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
830
831         * debugger-agent.c (debugger_thread): Call mono_set_is_debugger_attached ()
832         after the client connects/disconnects.
833
834         * debugger-agent.c: Add an 'onthrow' option to start the debugger agent
835         when an exception of a given type is thrown.
836
837         * debugger-agent.c: Add a 'onuncaught' option to start the debugger agent
838         only on an uncaught exception.
839
840         * mini-exceptions.c: Notify the debugger agent on an uncaught exception.
841
842         * debugger-agent.c: Add a 'launch' option.
843
844 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
845
846         * debugger-agent.c: Add a 'timeout' option.
847
848 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
849
850         * debugger-agent.c: Implement the 'server' and 'suspend' options supported by
851         the JDWP agent.
852
853 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
854
855         * debugger-agent.c (set_breakpoint): Emit a log message.
856
857 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
858
859         * mini-arm.c: Fix the arm build.
860
861 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
862
863         * aot-compiler.c: don't leak the value returned from
864         mono_type_full_name().
865
866 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
867
868         * debugger-agent.c: defer including mono-mutex.h until we know the
869         agent is supported.
870
871 2009-11-04 Jonathan Chambers <joncham@gmail.com>
872
873         * debugger-agent.c: Changes to build on windows. Use mono-mutex instead
874         of pthreads directly.
875
876         * mini.c (mono_sigfpe_signal_handler): Changed signature of Windows
877         exception handlers. Pass info argument.
878
879         * mini.h: Adjust signatures of soft debugger functions to pass void*
880         instead of siginfo_t. Adjust SIG_HANDLER_SIGNATURE on Windows.
881
882         * mini-amd64.c (mono_arch_is_single_step_event): Adjust signature to pass void*
883         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
884         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
885         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
886
887         * mini-amd64.h: Adjust MonoW32ExceptionHandler signature.
888
889         * mini-x86.c (mono_arch_is_single_step_event): Adjust signature to pass void*
890         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
891         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
892         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
893
894         * mini-x86.h: Adjust MonoW32ExceptionHandler signature.
895
896         * exceptions-x86.c: Adjust W32_SEH_HANDLE_EX for new signature.
897
898         * exceptions-amd64.c: Adjust W32_SEH_HANDLE_EX for new signature.
899
900         * mono-semaphore.h: Skeleton implementation for Windows.
901
902         Code contributed under MIT/X11 license.
903
904 2009-11-04 Jonathan Chambers <joncham@gmail.com>
905
906         * simd-intrinsics.c (simd_intrinsic_emit_setter): Unfix my fix.
907
908         Code contributed under MIT/X11 license.
909
910 2009-11-04 Jonathan Chambers <joncham@gmail.com>
911
912         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix windows build.
913
914         Code contributed under MIT/X11 license.
915
916 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
917
918         * aot-compiler.c (mono_save_xdebug_info): Bump the threshold for flushing
919         debug info to 100 because 10 still slows down gdb too much.
920
921         * method-to-ir.c (mono_method_to_ir): Avoid rethrowing thread abort exceptions
922         inside runtime invoke wrappers. This avoids the need to call ResetAbort () on
923         them in the wrappers.
924
925 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
926
927         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
928
929         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix a warning.
930
931         * aot-runtime.c (mono_aot_get_method): Refactor some code into a new helper
932         function mono_aot_get_array_helper_from_wrapper ().
933
934         * aot-compiler.c (add_generic_class): Refactor the code a bit, really emit
935         array helper methods.
936
937 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
938
939         * simd-intrinsics.c (load_simd_vreg): Add extra argument to signal if
940         the value was loaded from memory.
941
942         * simd-intrinsics.c (simd_intrinsic_emit_setter): Store back to memory if
943         the value was loader from there.
944
945         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Fail correctly for Shuffle
946         without constant swizzle.
947
948 2009-11-02 Jonathan Chambers <joncham@gmail.com>
949
950         * mini-amd64.c: Put soft debugger functions behind a
951         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
952
953         * mini-amd64.h: disable the soft debugger in windows.
954
955         Code contributed under MIT/X11 license.
956
957 2009-11-02 Jonathan Chambers <joncham@gmail.com>
958
959         * mini-x86.c: Put soft debugger functions behind a
960         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
961
962         Code contributed under MIT/X11 license.
963
964 2009-11-02 Jonathan Chambers <joncham@gmail.com>
965
966         * exceptions-x86.c (win32_handle_stack_overflow): Fix parameters
967         to mono_arch_find_jit_info_ext.
968
969         Code contributed under MIT/X11 license.
970
971 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
972
973         * debugger-agent.c: Include netinet/in.h to fix the bsd build.
974
975         * debugger-agent.c: Add support for filtering events by assemblies.
976
977         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Return false if
978         the agent is not enabled.
979
980 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
981
982         * exceptions-x86.c: hopefully last change to fix the windows build.
983         This one courtesy of Jonathan Chambers.
984
985 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
986
987         * debugger-agent.c: remove unused function.
988
989 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
990
991         * debugger-agent.c: add #ifdefs for a few header files.
992         * mini-x86.h: disable the soft debugger in windows.
993         Step 1 of 2 to make this compile on windows with gcc.
994
995 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
996
997         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Comment this out for now
998         as it breaks the build.
999
1000 2009-07-01  Zoltan Varga  <vargaz@gmail.com>
1001
1002         Merge the soft debugger branch.
1003
1004         * debugger-agent.h debugger-agent.c: New files containing the soft
1005         mode debugger module.
1006
1007         * method-to-ir.c (mono_method_to_ir): Generate OP_SEQ_POINT opcodes
1008         at the appropriate locations.
1009
1010         * mini-<ARCH>.c (mono_arch_output_basic_block): Handle OP_SEQ_POINT
1011         opcode.
1012
1013         * mini-<ARCH>.c: Add new arch-specific functions to set/clear breakpoints,
1014         enable/disable single stepping.
1015
1016         * exceptions-<ARCH>.c (mono_arch_find_jit_info_ext): New stack unwinding api
1017         which returns all information in a StackFrameInfo structure, and can handle the
1018         LMF frames added by the debugger.
1019
1020         * mini-<ARCH>.h (MonoLMFExt): New structure containing additional information
1021         about an LMF frame.
1022
1023         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): New stack
1024         walker function which works on a specific thread and passes a StackFrameInfo
1025         structure to its callback.
1026
1027         * mini.c (mini_init): Initialize the debugger agent.
1028
1029         * aot-compiler.c aot-runtime.c: Add soft-debug support.
1030
1031         * mini-ops.h: Add OP_SEQ_POINT opcode.
1032
1033         * driver.c (mono_main): Add new '--debugger-agent' option for passing
1034         arguments to the debugger agent.
1035
1036 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1037
1038         * mini.c (mini_method_compile): Disable llvm for methods with an lmf here to
1039         speed things up.
1040
1041         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOCALLOC.
1042
1043         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Implement this for x86.
1044
1045         * mini.c (mini_init): Avoid using the IMT trampoline in the LLVM case.
1046
1047         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add a static rgctx trampoline
1048         if needed.
1049         (mono_create_llvm_imt_trampoline): New function to create a trampoline which
1050         sets the IMT argument and makes a virtual call.
1051
1052         * mini-llvm.c: Enable interface calls using the llvm imt trampoline.
1053
1054 2009-11-01  Zoltan Varga  <vargaz@gmail.com>
1055
1056         * Makefile.am (llvm_sources): Enable the llvm option since it no longer breaks
1057         the windows build.
1058
1059 2009-10-30  Zoltan Varga  <vargaz@gmail.com>
1060
1061         * mini.c (mini_cleanup): Call profiler shutdown before shutting down the
1062         runtime. Fixes #551228.
1063
1064 2009-10-29  Zoltan Varga  <vargaz@gmail.com>
1065
1066         * mini-x86.c (mono_arch_output_basic_block): Fix % 1. Fixes #550970.
1067
1068         * basic.cs: Add a test.
1069
1070         * method-to-ir.c (mono_method_to_ir): Use EMIT_NEW_LOAD_MEMBASE_TYPE to
1071         load vtypes instead if OP_LOADV_MEMBASE in the implementation of
1072         CONSTRAINED. Fixes #550964.
1073
1074         * generics.cs: Add a test.
1075
1076 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1077
1078         * mini-posix.c (add_signal_handler): Use
1079         mono_gc_get_suspend_signal() instead of GC_get_suspend_signal().
1080
1081 2009-10-28 Jerry Maine <crashfourit@gmail.com>
1082
1083         Contributed under the terms of the MIT/X11 license by
1084         Jerry Maine <crashfourit@gail.com>.
1085
1086         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
1087         sse4a for simd intrinsics.
1088
1089         * mini-amd64.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
1090         sse4a for simd intrinsics.
1091
1092 2009-10-27  Zoltan Varga  <vargaz@gmail.com>
1093
1094         * ir-emit.h method-to-ir.c: Change a few _IMM macros to assign to inst_imm
1095         instead of inst_p1 which is not the same on ILP32 platforms.
1096
1097 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1098
1099         * mini-ppc.c (mono_arch_emit_prolog): Load the current got address,
1100         not the mscorlib one before calling mono_get_lmf_addr.
1101
1102         * tramp-ppc.c (mono_arch_create_trampoline_code_full): Fix the storing
1103         of the ip to the LMF.
1104
1105         * method-to-ir.c (mono_method_to_ir): Fix the handling of the
1106         immediate in the op->op_imm optimization.
1107
1108         * mini-ppc.c: Add a 'vtregs' field to ArgInfo to make the code easier to
1109         understand. VTypes now work, but are not abi compliant, as they are
1110         split into 4 byte parts instead of 8.
1111         (emit_memcpy): Fix the unrolled case to work on the PS3.
1112
1113         * mini-ppc.c (get_delegate_invoke_impl): Fix this for the PS3.
1114
1115         * aot-compiler.c (mono_compile_assembly): Make the autoreg option
1116         the default when static linking.
1117
1118         * mini-ppc.c (mono_arch_emit_prolog): Fix handling of I8 arguments.
1119
1120         * aot-compiler.c: Add an autoreg option to automatically register
1121         statically linked aot modules using ELF .ctors.
1122
1123         * genmdesc.pl: Add __ppc64__ to allowed defines.
1124
1125 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1126
1127         * mini-posix.c (add_signal_handler): Delay the GC suspend signal while
1128         executing a SIGSEGV handler on an altstack, since libgc can't handle that.
1129
1130 2009-10-24  Mark Probst  <mark.probst@gmail.com>
1131
1132         * exceptions-x86.c (mono_arch_find_jit_info): Fix build.
1133
1134 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1135
1136         * mini-exceptions.c (mini_jit_info_table_find): Add an 'out_domain' argument
1137         which will contain the domain where the method was found.
1138
1139         * exceptions-<ARCH>.c mini-exceptions.c: Update callers of
1140         mini_jit_info_table_find ().
1141
1142         * aot-compiler.c (xdebug_end_emit): Remove so stray debug code.
1143
1144         * branch-opts.c (mono_if_conversion): Avoid running deadce if it is disabled.
1145
1146 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1147
1148         * mini-x86.c (mono_arch_emit_prolog): Disable aot for methods with save_lmf
1149         set, its not supported yet.
1150
1151 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1152
1153         * aot-runtime.c (mono_aot_get_method): Avoid asserting if a array generic
1154         iface wrapper is not found.
1155         (mono_aot_get_method): Ditto for GetGenericValueImpl.
1156
1157 2009-10-21  Zoltan Varga  <vargaz@gmail.com>
1158
1159         * aot-runtime.c (mono_aot_get_method): Fix support for the IList<T> wrappers,
1160         which have a different name.
1161
1162         * aot-runtime.c (mono_aot_get_method): Special case the array generic iface
1163         wrappers and Array.GetGenericValueImpl ().
1164
1165         * aot-compiler.c: Avoid emitting some wrappers which are not needed anymore
1166         because of the change above.
1167
1168         * generics.cs: Add a test for full aot + generic array ifaces.
1169
1170 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1171
1172         * aot-compiler.c (emit_plt): Remove duplicate 'debug_sym' variable 
1173         that hides the previous one.
1174
1175 2009-10-18  Zoltan Varga  <vargaz@gmail.com>
1176
1177         * aot-compiler.c (can_marshal_struct): Allow some System.dll structs to be
1178         marshalled. Fixes #541623.
1179
1180 2009-10-16  Zoltan Varga  <vargaz@gmail.com>
1181
1182         * aot-compiler.c (emit_extra_methods): Remove some asserts which are not needed.
1183
1184 2009-10-15  Zoltan Varga  <vargaz@gmail.com>
1185
1186         * mini.c (mono_op_imm_to_op): Handle OP_AND/OR/XOR_IMM.
1187
1188 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1189
1190         * mini-posix.c (sigprof_signal_handler):
1191         Implemented support for building stat call chans in different ways.
1192
1193 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1194
1195         * mini-exceptions.c (mono_find_jit_info):
1196         Also check that a jit info has been found (fixes a profiler crash).
1197
1198 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1199
1200         * mini.c (mono_codegen):
1201         Call mono_profiler_code_buffer_new with correct code address.
1202
1203 2009-10-14  Zoltan Varga  <vargaz@gmail.com>
1204
1205         * driver.c (mono_main): Change the date in the copyright.
1206
1207 2009-10-14  Mark Probst  <mark.probst@gmail.com>
1208
1209         * method-to-ir.c (mono_method_to_ir): Don't use a managed array
1210         allocator in shared generic code for open classes, because we
1211         can't get those classes' vtables.  We need to make managed
1212         allocators not depend on the vtable at compile-time to solve this.
1213
1214 2009-10-13  Martin Baulig  <martin@ximian.com>
1215
1216         * debug-mini.c (mono_debugger_trampoline_compiled): Add
1217         `const guint8 *trampoline' argument; send both the old and the new
1218         notification.
1219
1220 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1221
1222         * aot-compiler.c (add_wrappers): Add a runtime invoke wrapper which is used by
1223         mono_runtime_capture_context () without calling mono_runtime_invoke ().
1224         (can_marshal_struct): Skip structures with auto layout.
1225
1226         * tramp-arm.c (GEN_TRAMP_SIZE): Increase this by 4.
1227
1228 2009-10-02  Zoltan Varga  <vargaz@gmail.com>
1229
1230         * mini-sparc.c (mono_arch_emit_setret): Emit long return values using OP_LMOVE.
1231         (mono_arch_create_vars): Instead of allocating a stack slot by hand, allocate
1232         a variable to hold the stack slot used by the int<->float conversion opcodes.
1233
1234         * mini-sparc.c (mono_arch_build_imt_thunk): Implement support for fail_tramp.
1235
1236 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1237
1238         * aot-compiler.c (add_generic_class): Only add GetGenericValueImpl wrappers
1239         when using full-aot.
1240
1241 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1242
1243         * aot-compiler.c (add_generic_class): Add an instance of GenericComparer<T> for
1244         each instance of Comparer<T>.
1245
1246         * generics.cs: Add a new test.
1247
1248 2009-10-09  Zoltan Varga  <vargaz@gmail.com>
1249
1250         * driver.c (parse_debug_options): Add a 'gdb' option.
1251
1252         * mini.c (mini_parse_debug_options): Add a 'gdb' option.
1253
1254         * image-writer.c: Add support for emitting the image into a memory buffer.
1255
1256         * dwarfwriter.c: Add support for sharing one IL file between multiple images.
1257
1258         * aot-compiler.c: Add support for registering debug info with GDB using the
1259         new JIT debugging interface in GDB 7.0. It can be turned on by setting
1260         MONO_XDEBUG to 'gdb'.
1261
1262 2009-10-10  Zoltan Varga  <vargaz@gmail.com>
1263
1264         * aot-compiler.c (mono_save_trampoline_xdebug_info): Implement this for the
1265         gdb mode.
1266
1267 2009-10-11  Zoltan Varga  <vargaz@gmail.com>
1268
1269         * aot-compiler.c (mono_save_xdebug_info): Emit a symbol for the method which
1270         can be used to set breakpoints in gdb.
1271
1272         * image-writer.c (bin_writer_emit_writeout): Add support for setting the text
1273         segment to an absolute address.
1274
1275 2009-10-13  Mark Probst  <mark.probst@gmail.com>
1276
1277         * method-to-ir.c: Use the managed array allocator method if
1278         available.
1279
1280 2009-10-13  Bill Holmes  <billholmes54@gmail.com>
1281
1282         * aot-compiler.c : Fix the MSVC builds
1283
1284         Code is contributed under MIT/X11 license.
1285
1286 2009-10-13  Zoltan Varga  <vargaz@gmail.com>
1287
1288         * aot-compiler.c (mono_save_xdebug_info): Group methods into groups of 10 to
1289         avoid registering 1 symbol file per method with gdb.
1290
1291 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1292
1293         * mini-sparc.c: Fix the handling of enums with base type long.
1294
1295         * mini-sparc.c (mono_arch_output_basic_block): Fix IREM_UN_IMM.
1296
1297         * mini-sparc.c (mono_arch_allocate_vars): Use mono_class_from_mono_type ()
1298         instead of using type->data.klass as the later doesn't work with generics.
1299
1300 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1301
1302         * method-to-ir.c, mini.h, mini-alpha.c, mini-amd64.c, mini-arm.c,
1303         mini-hppa.c, mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c,
1304         mini-s390x.c, mini-sparc.c, mini-x86.c: Thread.get_CurrentThread
1305         works differently now and we don't handle it in the JIT anymore.
1306
1307         * mini.c, mini-exceptions.c, mini-posix.c, debug-debugger.c,
1308         debug-mini.c, tramp-amd64.c, tramp-x86.c: Changes resulting from
1309         the Thread class split.
1310
1311 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1312
1313         * driver.c: Don't run tests with the obsolete treeprop optimization.
1314
1315         * mini-sparc.c (mono_arch_create_vars): Make the component vars of a long ret
1316         variable volatile. Fixes #541577.
1317
1318         * basic-calls.cs: Add a new test.
1319
1320         * basic-long.cs: Remove tests which are now in basic-calls.cs.
1321
1322 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1323
1324         * dwarfwriter.c (emit_debug_info_end): Disable this as it doesn't seem to
1325         work/required with recent iphone sdk versions.
1326
1327         * aot-compiler.c (add_wrappers): Generate PtrToStructure wrappers for more
1328         structures.
1329
1330         * decompose.c (mono_decompose_vtype_opts): Avoid reading uninitialized memory
1331         in the VCALL decomposition code.
1332
1333 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1334
1335         * mini-ia64.c (mono_arch_output_basic_block): Fix ISHR/ISHR_IMM.
1336
1337         * basic.cs: Add a test.
1338
1339         * mini-ia64.c (mono_arch_build_imt_thunk): Implement support the virtual
1340         generic invokes.
1341
1342         * mini-exceptions.c (mini_jit_info_table_find): New helper function which
1343         searches all the domains of the current thread.
1344
1345         * exceptions-<ARCH>.c: Use it. Fixes #539394.
1346
1347 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1348
1349         * exceptions-arm.c (mono_arm_throw_exception): Set ctx->ebp to fp instead of sp
1350         so catching exceptions thrown in the same method works. Fixes exception17.exe.
1351
1352         * tramp-arm.c (mono_arch_create_trampoline_code_full): Store NULL into lmf->method
1353         for non-jit trampolines.
1354
1355         * mini.c (mono_jit_runtime_invoke): Allow string ctors with dyn runtime invoke.
1356
1357         * aot-compiler.c (add_wrappers): Ditto.
1358
1359         * mini-arm.c: Implement support for passing vtypes and floats, and increase
1360         the size of the param area used by dyn_call to 6 which covers the majority of
1361         methods.
1362
1363         * mini.c aot-compiler.c: Allow dyn_call for string methods except ctors.
1364
1365         * mini-arm.c: Implement support for passing/receiving
1366         longs and receiving floats in the dyn_call code.
1367
1368         * mini-amd64.c: Implement support for receiving vtypes in registers in
1369         the dyn_call code.
1370
1371         * mini.c mini-amd64.c: Implement partial support for passing vtypes in
1372         the dyn_call code.
1373
1374 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1375
1376         * mini-arm.c (get_call_info): Return more precise information in
1377         ArgInfo->regtype.
1378         (dyn_call_supported): Use the information in CallInfo.
1379
1380         * mini-arm.c: Enable support for returning vtypes in the dyn_call code.
1381
1382         * mini.c mini-amd64.c: Enable support for returning vtypes in the dyn_call
1383         code.
1384
1385         * mini-arm.c: Update after the dyn_call api changes.
1386
1387         * mini.c (mini_create_jit_domain_info): Register a destructor function
1388         for the runtime_invoke_hash.
1389
1390         * mini-amd64.c (mono_arch_get_dyn_call_args): Rename this to
1391         'mono_arch_dyn_call_start'. Pass the pointer to the return value buffer to
1392         this function.
1393         (mono_arch_get_dyn_call_ret): Rename this to 'mono_arch_dyn_call_finish'.
1394         (dyn_call_supported): Simplify this by using get_call_info ().
1395         (mono_arch_dyn_call_free): New destructor function.
1396
1397         * generics.cs: Remove a printf.
1398
1399         * method-to-ir.c (mono_method_to_ir): Allocate some param area for DYN_CALL.
1400
1401         * mini-arm.c: Add support for enum return values and passing a few arguments
1402         on the stack.
1403         
1404         * mini.c (mono_jit_runtime_invoke): Add support for enum return values to
1405         dyn invoke.
1406
1407         * mini-amd64.c (mono_arch_get_dyn_call_ret): Ditto.
1408
1409         * aot-compiler.c (add_wrappers): Add a few restrictions for the use of
1410         the dynamic invoke wrappers.
1411
1412         * mini-arm.c: Implement OP_DYN_CALL for arm.
1413
1414         * aot-compiler.c (add_wrappers): Avoid aot-ing runtime invoke wrappers
1415         supported by the dynamic runtime invoke wrapper.
1416
1417         * aot-compiler.c aot-runtime.c: Add support for encoding the dynamic
1418         runtime invoke wrapper.
1419
1420         * mini.c (mono_jit_runtime_invoke): Use the dynamic runtime invoke wrappers
1421         if possible when running with full-aot.
1422
1423         * mini-ops.h: Add OP_DYN_CALL opcode.
1424
1425         * mini-amd64.c method-to-ir.c: Add infrastructure for making method calls
1426         with dynamic arguments lists similar to libffi.
1427
1428 2009-09-19  Zoltan Varga  <vargaz@gmail.com>
1429
1430         * method-to-ir.c: Fix the previous change on 64 bit platforms.
1431         
1432         * method-to-ir.c: Applied patch from Rodrigo Kumpera. Allow an i8 argument
1433         to NEWARR.
1434
1435         * iltests.il.in: Add a new test.
1436         
1437 2009-09-18  Zoltan Varga  <vargaz@gmail.com>
1438
1439         * aot-compiler.c (add_generic_instances): Add more instances of
1440         GenericEqualityComparer.
1441
1442 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1443
1444         * mini.c: Add asserts for mono_class_vtable calls that are not meant to fail.
1445
1446 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1447
1448         * method-to-ir.c: Handle failures from mono_class_vtable. Added some
1449         comments on some functions that now can fail.
1450
1451 2009-09-17  Andrew Jorgensen  <ajorgensen@novell.com>
1452
1453         * Makefile.am: Add Info.plist to EXTRA_DIST
1454
1455 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1456
1457         * method-to-ir.c (mono_method_to_ir): Allow AOT for CEE_LDTOKEN in
1458         static synchronized wrappers. Fixes #539500.
1459
1460 2009-09-14  Rodrigo Kumpera  <rkumpera@novell.com>
1461
1462         * jit-icalls.c (mono_class_static_field_address): handle vtable failure
1463         properly.
1464
1465 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1466
1467         * mini-exceptions.c (mono_handle_exception_internal): Store the computed
1468         lmf before calling filter clauses as well. Fixes #539550.
1469
1470         * exceptions.cs: Add a test.
1471         
1472 2009-09-14  Zoltan Varga  <vargaz@gmail.com>
1473
1474         * aot-compiler.c (add_generic_class): Add instances of
1475         Array.GetGenericValueImpl as well.
1476
1477         * Makefile.am (fullaotcheck): Copy and aot more assemblies so linq
1478         can be tested too.
1479
1480         * generics.cs: Add a fullaot linq test.
1481
1482 2009-09-10  Zoltan Varga  <vargaz@gmail.com>
1483
1484         * aot-compiler.c (arch_emit_static_rgctx_trampoline): Don't clobber argument
1485         reg r1 on arm.
1486
1487 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1488
1489         * mini-trampolines.c (mono_delegate_trampoline) : Call
1490           mono_cominterop_get_invoke if the delegate target object
1491           is a COM object.
1492
1493         Code is contributed under MIT/X11 license.
1494
1495 2009-09-09  Sebastien Pouliot  <sebastien@ximian.com>
1496
1497         * method-to-ir.c: For CoreCLR throw a SecurityException if an 
1498         internal call is defined outside platform code. Reduce code 
1499         duplication with existing [Method|Field]AccessException
1500
1501 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1502
1503         * mini-x86.c (mono_arch_emit_call): Don't reduce stack usage by 4
1504         if the return value is a small struct passed on regs.
1505
1506 2009-09-09  Zoltan Varga  <vargaz@gmail.com>
1507
1508         * cpu-arm.md mini-arm.c: Remove unused opcodes.
1509
1510         * mini-codegen.c: Enable the cpu description validation for arm.
1511
1512 2009-09-08  Zoltan Varga  <vargaz@gmail.com>
1513
1514         * basic-calls.cs: Move the test_0_float_load_and_store_with_big_offset ()
1515         test which depends on structs to objects.cs.
1516         
1517         * basic-calls.cs: Remove calls to Console.WriteLine and throws, since those
1518         require object model related stuff working.
1519
1520         * cpu-x86.md mini-x86.c: Remove more unused opcodes.
1521
1522         * mini-ops.h: Fix OP_BIGMUL instruction descriptions.
1523
1524         * mini-codegen.c (mono_local_regalloc): Validate the cpu description 
1525         against the instruction metadata in mini-ops.h. amd64 only for now.
1526
1527         * mini-ops.h: Fix some instruction descriptions.
1528
1529         * mini-ops.h mini-x86.c mini-amd64.c cpu-<ARCH>.md: Remove some
1530         unused instructions.
1531
1532 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
1533
1534         * exceptions.cs: Add a new test.
1535
1536 2009-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
1537
1538         * mini-x86.c (needs_stack_frame): OSX requires full frames to keep proper alignment.
1539
1540 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
1541
1542         * mini-llvm.c (mono_llvm_emit_method): Add a few more missing casts,
1543         skip empty phi opcodes.
1544         
1545         * mini-llvm.c (mono_llvm_emit_method): Handle unsigned volatile variables
1546         correctly by zero extending after loads. Skip methods containing calls
1547         to the monitor enter/exit trampolines.
1548
1549         * tramp-x86.c (mono_arch_create_trampoline_code): Align the stack
1550         when calling mono_thread_force_interruption_checkpoint ().
1551
1552         * mini.c (mini_method_compile): Disable llvm when AOT compiling.
1553
1554         * tramp-amd64.c (mono_arch_patch_callsite): Add support for 32 bit ->
1555         64 bit thunks.
1556         (mono_arch_nullify_class_init_trampoline): Read 'buf' instead of 'code'.
1557
1558         * mini-llvm.c (mono_llvm_emit_method): Add a few missing conversions so a 
1559         bootstrap could run.
1560
1561 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1562
1563         * mini.c (mini_init): Set callbacks.get_runtime_build_info ().
1564
1565 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1566
1567         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass the start
1568         of the method to
1569         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
1570         LLVM might be very short.
1571
1572         * mini-x86.c (mono_arch_output_basic_block): Maintain stack alignment
1573         in OP_THROW/RETHROW.
1574
1575         * exceptions-x86.c: Rewrite the throw trampolines so they maintain stack
1576         alignment on osx.
1577
1578 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1579
1580         * mini-amd64.c (mono_arch_get_vcall_slot): Pass the start of the method to
1581         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
1582         LLVM might be very short.
1583
1584 2009-09-01  Zoltan Varga  <vargaz@gmail.com>
1585
1586         * exceptions-x86.c (throw_exception): Fix the previous change by substracting
1587         the alignment for the value of sp.
1588
1589 2009-09-01  Geoff Norton  <gnorton@novell.com>
1590
1591         * mini.c (mono_get_lmf_addr): Fix jit_thread_attach for native to 
1592         managed wrappers in full aot.
1593
1594 2009-08-31  Zoltan Varga  <vargaz@gmail.com>
1595
1596         * exceptions-x86.c (get_throw_exception): Align the stack on osx.
1597
1598 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1599
1600         * mini-llvm-cpp.cpp mini-llvm.c: Update to latest llvm api.
1601
1602 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
1603
1604         * aot-compiler.c (emit_exception_debug_info): Emit ei->flags too.
1605
1606         * aot-runtime.c (decode_exception_debug_info): Decode ei->flags from the
1607         saved info.
1608
1609         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
1610
1611         * aot-runtime.c aot-compiler.c: Emit exception causes fully so we don't
1612         depend on the info MonoMethodHeader which could be missing in IL stripped
1613         assemblies.
1614
1615 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * mini-arm.c (add_general): Fix the passing of 64 bit values on darwin, where
1618         they are only 4 byte aligned.
1619
1620 2009-08-21  Zoltan Varga  <vargaz@gmail.com>
1621
1622         * mini-arm.c (mono_arch_allocate_vars): Use FP as the frame pointer as
1623         was done previously, since using SP causes too many problems.
1624
1625         * exceptions-arm.c: Fix the handling of sp/fp so unwinding through
1626         frames without a frame pointer works.
1627
1628         * mini-arm.c (mono_arch_get_global_int_regs): Avoid using V5 as a
1629         global register in methods with calls, since the calls can go through
1630         a static rgctx trampoline which doesn't save it.
1631
1632 2009-08-19  Zoltan Varga  <vargaz@gmail.com>
1633
1634         * mini-arm.c (mono_arch_context_get_int_reg): Handle SP as well.
1635
1636 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1637
1638         * aot-compiler.c (add_generic_instances): Fix the net 1.1 build.
1639
1640 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1641
1642         * method-to-ir.c: Fix warnings for uninitialized variables.
1643
1644 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1645
1646         * mini-exceptions.c:
1647         * aot-compiler.c: Fix printf warnings.
1648
1649 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1650
1651         * aot-compiler.c (add_generic_instances): Add string[] wrapper methods.
1652         Add GetGenericValueImpl<string>.
1653         
1654         * aot-compiler.c (add_generic_instances): Add instances of
1655         GenericEqualityComparer<T> for primitive types. Only emit the array
1656         wrappers into the mscorlib image.
1657
1658 2009-08-15  Zoltan Varga  <vargaz@gmail.com>
1659
1660         * aot-runtime.c (load_method): Rename 'aot_module' -> 'amodule'. Allocate
1661         the methods_loaded array using amodule->info->nmethods.
1662
1663         * mini.h (MonoAotFileInfo): Add an 'nmethods' field.
1664         (MONO_AOT_FILE_VERSION): Bump this.
1665
1666         * aot-compiler.c: Emit more generic instances allowing some parts of linq
1667         to work.
1668
1669         * aot-runtime.c (mono_aot_get_unwind_info): Handle the case when the
1670         MonoJitInfo doesn't belong to its methods aot image.
1671
1672 2009-08-14  Zoltan Varga  <vargaz@gmail.com>
1673
1674         * mini-arm.c (mono_arch_allocate_vars): Use SP as the default frame reg.
1675
1676         * mini-arm.c: Fix warnings.
1677         
1678         * mini-arm.c (mono_arm_emit_load_imm): Only emit a movt if needed.
1679
1680         * mini-arm.c (mono_arm_emit_load_imm): Use movt/movw if the cpu
1681         supports it.
1682
1683 2009-08-12  Zoltan Varga  <vargaz@gmail.com>
1684
1685         * aot-compiler.c (arch_emit_imt_thunk): Rework the arm code to
1686         avoid clobbering IP.
1687
1688         * mini-trampolines.c (mono_magic_trampoline): Allocate a local to
1689         hold the trampoline argument, so its initial value is available during
1690         debugging.
1691
1692 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1693
1694         * exceptions-arm.c:
1695         * exceptions-hppa.c:
1696         * mini.c:
1697         * exceptions-s390x.c:
1698         * exceptions-mips.c:
1699         * exceptions-ppc.c:
1700         * exceptions-sparc.c:
1701         * exceptions-alpha.c:
1702         * aot-runtime.c:
1703         * mini-trampolines.c:
1704         * exceptions-x86.c:
1705         * exceptions-s390.c: add and use #define's instead of sizeof()
1706         for MonoJitInfo and MonoJitInfoTable.
1707
1708 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1709
1710         * tramp-arm.c:
1711         * tramp-amd64.c:
1712         * tramp-ppc.c:
1713         * tramp-x86.c: use a #define instead of sizeof() for a few
1714         structures that use a zero-length array.
1715
1716 2009-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
1717
1718         * method-to-ir.c (mono_method_to_ir/CEE_CONSTRAINED_): Handle the
1719         case when the method is dynamic. Fixes #529238.
1720
1721 2009-08-06  Zoltan Varga  <vargaz@gmail.com>
1722
1723         * mini.c (mono_jit_compile_method_inner): Throw an exception instead
1724         of asserting when a method is JIT compiled in full-aot mode.
1725
1726 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
1727         
1728         Contributed under the terms of the MIT/X11 license by
1729         Jerry Maine <crashfourit@gail.com>.
1730         
1731         * fixed wrong dates in changelog.
1732
1733 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
1734         
1735         Contributed under the terms of the MIT/X11 license by
1736         Jerry Maine <crashfourit@gail.com>.
1737
1738         * basic-simd.cs: added test for packed double square root.
1739         * cpu-amd64.md: added opcode info for packed double square root.
1740         * cpu-x86.md: added opcode info for packed double square root.
1741         * mini-ops.h: added IR opcode for packed double square root.
1742         * mini-x86.c: added IR to native translation code for packed double square root.
1743         * mini-amd64.c: removed todo for packed double square root.
1744         * simd-intrinsics.c: added method to IR opcode converstion for
1745         packed double square root.
1746
1747 2009-08-03 Jerry Maine <crashfourit@gmail.com>
1748
1749         Contributed under the terms of the MIT/X11 license by
1750         Jerry Maine <crashfourit@gail.com>.
1751
1752         * mini-amd64.c: Added a change to help tell the difference as 
1753         to what perpose the xmm register is being used--mainly to help
1754         with debuging.
1755         * mini-amd64.h: Changed callee regs to use 15 out of 16 
1756         (one used for special cases) xmm registers for both fp
1757         and simd ops. Added define to turn on new feature in the regalloc
1758         that allows fp and simd ops to share the xmm regs happily.
1759         * codegen.c: Added code to detect for which perpose an xmm reg is
1760         being used (fp or simd) and to translate back and forth to the
1761         correct logical reg bank (fp or simd) for 'spill load's.
1762
1763 2009-08-03 Jerry Maine <crashfourit@gmail.com>
1764
1765         Contributed under the terms of the MIT/X11 license by
1766         Jerry Maine <crashfourit@gail.com>.
1767
1768         * basic-simd.cs: Added tests for stressing the regalloc when running with
1769         16 simd regs and when simd and fp ops share the same reg bank.
1770
1771 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1772
1773         * method-to-ir.c (mini_emit_stobj): If we call mono_value_copy()
1774         in shared generic code, we might have to look up the class in the
1775         RGCTX.  If we use the class directly, compute its GC descriptor.
1776
1777 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1778
1779         * mini.c (mono_jit_runtime_invoke): Fix a warning.
1780
1781 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1782
1783         * mini.c (mono_jit_runtime_invoke): Initialize the class and
1784         check for errors. Fixed the case when the class with the Main
1785         method is broken.
1786
1787 2009-07-31 Jerry Maine <crashfourit@gmail.com>
1788
1789         Contributed under the terms of the MIT/X11 license by
1790         Jerry Maine <crashfourit@gail.com>.
1791
1792         * cpu-amd64.md: Fixed simple bug in machine discrition file.
1793
1794 2009-07-31  Zoltan Varga  <vargaz@gmail.com>
1795
1796         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_IREM_UN_IMM.
1797
1798 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
1799
1800         * method-to-ir.c: Fix naming of stelem and ldelem.
1801
1802 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
1803
1804         * driver.c (main_thread_handler): Check that the assembly loaded
1805         matches the filename when doing AOT.
1806
1807 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1808
1809         * mini.c: get_ip_from_sigctx installer has been removed, so don't
1810         call it anymore.
1811
1812         * mini-x86.h, mini-amd64.h, mini-ppc.h: UCONTEXT macros moved (to
1813         utils/mono-sigcontext.h).
1814
1815         * exceptions-amd64.c: Use the UCONTEXT_GREGS macro instead of an
1816         #ifdef.
1817
1818 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
1819
1820         * mini.c (mono_codegen):
1821         Call profiler hook to keep track of method code buffers.
1822
1823 2009-07-27  Mark Probst  <mark.probst@gmail.com>
1824
1825         * method-to-ir.c: Invoke write barriers for the
1826         Interlocked.(Compare)Exchange JIT intrinsics.
1827
1828 2009-07-26  Raja R Harinath  <harinath@hurrynot.org>
1829
1830         * Makefile.am (version.h): Fix issues when built out of tree.
1831         Remove some redundant 'grep's piped through 'sed's.
1832
1833 Fri Jul 24 17:28:37 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
1834
1835         This patch is contributed under the terms of the MIT/X11 license
1836
1837         * mini-ppc.c (mono_arch_output_basic_block):
1838         (OP_STOREI1_MEMBASE_REG): Handle 32-bit offsets combining addis
1839         for bits 32-47 with signed load/store diplacements for bits
1840         48-63.  Use prefered base/offset order for indexed form.
1841         (OP_STOREI2_MEMBASE_REG, OP_STORE_MEMBASE_REG): Same.
1842         (OP_LOAD_MEMBASE, OP_LOADI4_MEMBASE, OP_LOADU4_MEMBASE,
1843         OP_LOADI1_MEMBASE, OP_LOADU1_MEMBASE, OP_LOADU2_MEMBASE,
1844         OP_LOADI2_MEMBASE): Same.
1845         (OP_STORER8_MEMBASE_REG, OP_LOADR8_MEMBASE,
1846         OP_STORER4_MEMBASE_REG, OP_LOADR4_MEMBASE): Same.
1847         (OP_STOREI1_MEMINDEX): Use prefered base/offset order for
1848         indexed form.
1849         (OP_STOREI2_MEMINDEX, OP_STORE_MEMINDEX): Same.
1850         (OP_LOAD_MEMINDEX, OP_LOADI4_MEMINDEX, OP_LOADU4_MEMINDEX,
1851         OP_LOADU2_MEMINDEX, OP_LOADI2_MEMINDEX, OP_LOADU1_MEMINDEX,
1852         OP_LOADI1_MEMINDEX): Same
1853         (OP_LOADR4_MEMINDEX, OP_LOADR8_MEMINDEX, OP_STORER4_MEMINDEX,
1854         OP_STORER8_MEMINDEX): Same
1855         (OP_JMP): Use addis/addi sequence for int cfg->stack_usage
1856         computations.
1857         (mono_arch_emit_prolog): Handle 32-bit offsets combining addis
1858         for bits 32-47 with signed load/store diplacements for bits
1859         48-63.  Use prefered base/offset order for indexed form.
1860
1861 Fri Jul 24 16:57:12 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
1862
1863 This patch is contributed under the terms of the MIT/X11 license
1864
1865         * mini-ppc.c: Define PPC_MOVE_FPR_GPR and PPC_ISA_64.
1866         (mono_arch_get_vcall_slot): Fx pointer to int cast warning.
1867         (mono_arch_decompose_opts): Make OP_ICONV_TO_R4 and
1868         OP_ICONV_TO_R8 decompose conditional on !PPC_ISA_64.
1869         (mono_arch_output_basic_block) [OP_JMP]: Use ppc_load32 for
1870         cfg->stack_usage to avoid size warnings.
1871         (mono_arch_output_basic_block) [__mono_ppc64__]: Replace
1872         store/load sequence with mffgpr if PPC_MOVE_FPR_GPR is true.
1873         (mono_arch_output_basic_block) [!__mono_ppc64__]: For
1874         OP_ICONV_TO_R4 or OP_ICONV_TO_R8 and PPC_ISA_64 use fcfid
1875         to convert.
1876         (mono_arch_emit_prolog): Move mono_emit_unwind_op_def_cfa 
1877         after code varible is initialized.
1878         Add g_assert ppc_is_imm16 for ainfo->offset. Handle
1879         ainfo->size == 8 when ainfo->offset !ppc_is_imm16.
1880         (mono_arch_emit_epilog): 
1881         Move Use ppc_load32 for cfg->stack_usage to avoid size
1882         warnings.
1883
1884 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1885
1886         * method-to-ir.c: The write barrier doesn't do the store anymore,
1887         so we have always to emit it.  Also, emit the wbarrier after the
1888         store.
1889
1890 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
1891
1892         * mini-arm.c (mono_arch_get_delegate_invoke_impls): Add a trampoline
1893         for argument count 3 too.
1894
1895 2009-07-23  Zoltan Varga  <vargaz@gmail.com>
1896
1897         * mini.c (mono_jit_compile_method_with_opt): Add an 'ex' argument to let
1898         the caller handle the exceptions.
1899         (mono_jit_runtime_invoke): Handle exceptions thrown while compiling the
1900         method. Fixes #524498.
1901
1902 2009-07-22  Geoff Norton  <gnorton@novell.com>
1903
1904         * mini-exceptions.c: Fix build on ia64.
1905
1906 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1907
1908         * mini-exceptions.c (ves_icall_get_frame_info): Use write
1909         barriers.
1910
1911 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
1912
1913         * mini-arm.c (mono_arch_emit_prolog): Fix thread attaching in aot
1914         code.
1915
1916 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
1917
1918         * basic-simd.cs (Main): Pass args to the test driver.
1919
1920 2009-07-20  Geoff Norton  <gnorton@novell.com>
1921
1922         * mini-x86.h: Fix the x86 version guards to use Apple's
1923         properly defined macros.
1924
1925 2009-07-20  Geoff Norton  <gnorton@novell.com>
1926
1927         * mini-x86.c: Fix --trace on darwin-x86 and other systems which require
1928         aligned access.
1929
1930 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
1931
1932         * mini.c (mono_jit_runtime_invoke): Speed this up by adding a hash to
1933         MonoJitDomainInfo which maps MonoMethod's to a structure containing all
1934         the information which is needed for invokes, so only one locking+hash table
1935         lookup is needed.
1936
1937         * aot-compiler.c: Add a 'tool-prefix' option to be used when cross-compiling.
1938         
1939         * aot-compiler.c (add_generic_instances): Emit instances of 
1940         GenericComparer<T> for primitive types.
1941
1942 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
1943
1944         * mini-posix.c: Fix linux build.
1945
1946 2009-07-19  Geoff Norton  <gnorton@novell.com>
1947
1948         * mini.h: Add prototypes for mono_runtime_syscall_fork and
1949         mono_gdb_render_native_backtraces
1950         * mini-darwin.c: Apple's syscall(SYS_fork) is very weird on x86,
1951         so we implement the sane semantics to the runtime here
1952         (mono_gdb_render_native_backtraces).  Apple also uses an ancient gdb
1953         so we need to call it differently (mono_gdb_render_native_backtraces)
1954         * mini-posix.c: Move the old semantics from mini.c to the prototypes
1955         here for default implementations.
1956         * mini.c: Refactor mono_handle_native_sigsegv so that we can properly
1957         support Apple's weird syscall (SYS_fork) implementation and not busy
1958         loop in abort() on native crashes on OSX anymore.
1959
1960 2009-07-18  Zoltan Varga  <vargaz@gmail.com>
1961
1962         * aot-runtime.c (load_method): Change the handling of the
1963         MONO_LASTAOT env variable so MONO_LASTAOT=0 means that no aot methods
1964         are used.
1965
1966         * mini.c (mono_patch_info_equal): Really fix the handling of RGCTX_FETCH.
1967
1968 2009-07-17  Zoltan Varga  <vargaz@gmail.com>
1969
1970         * mini.c (mono_patch_info_equal): Revert the last change for now as it
1971         seems to break the aot tests.
1972         
1973         * mini.c (mono_patch_info_equal): Fix the handling of 
1974         MONO_PATCH_INFO_RGCTX_FETCH.
1975
1976 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
1977
1978         * unwind.c: Use TARGET_AMD64 instead of __x86_64__.
1979
1980         * mini.c (mono_patch_info_hash): Fix the handling of 
1981         MONO_PATCH_INFO_INTERNAL_METHOD.
1982         (mono_patch_info_equal): Ditto.
1983
1984 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
1985
1986         * mini-llvm.c (mono_llvm_emit_method): Use module instead of ctx->module
1987         in a few places.
1988         
1989         * mini-llvm.c: Add some infrastructure for AOT support.
1990
1991 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
1992
1993         * mini-llvm-cpp.c: Update to the latest llvm api.
1994         
1995         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Set the EnablePrettyStackTrace
1996         option to false to prevent llvm from installing signal handlers which
1997         trip up the gc.
1998         
1999 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2000
2001         * cpu-x86.md:
2002         * cpu-amd64.md: Revert previous change as those instructions
2003         take 2 separate arguments. Remember to read the arch docs more
2004         carefully next time.
2005
2006 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
2007
2008         * mini-llvm-cpp.cpp (mono_llvm_build_alloca): Update to latest llvm api.
2009
2010 Wed Jul 15 17:20:27 CEST 2009 Paolo Molaro <lupus@ximian.com>
2011
2012         * mini-ppc.c: exploit multiple load/store units if available (rest of
2013         the change from Steven Munroe (<munroesj@us.ibm.com>) first patch at 
2014         http://bugzilla.novell.com/show_bug.cgi?id=487846).
2015
2016 Wed Jul 15 16:24:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2017
2018         * mini-ppc.c: integrate most of Steven Munroe (<munroesj@us.ibm.com>)
2019         first patch at http://bugzilla.novell.com/show_bug.cgi?id=487846.
2020
2021 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2022
2023         * cpu-x86.md: Fix missing clobbering from trancendental simd
2024         ops.
2025
2026         * cpu-amd64.md: Same.
2027
2028 2009-07-14 Jerry Maine <crashfourit@gmail.com>
2029
2030         Contributed under the terms of the MIT/X11 license by
2031         Jerry Maine <crashfourit@gail.com>.
2032
2033         * basic-simd.cs: Added tests for single and doulble indexers.
2034
2035         * cpu-amd64.md: Added simd opcode information.
2036
2037         * mini-amd64.c: Added IR to native simd generation code.
2038         Added simd register names and function that returns them.
2039
2040         * mini-amd64.h: Added marcos to turn on simd code compilation in
2041         amd64. Added max simd register count marco. Added caller/callee
2042         register mask marcos. Added marcos to use simd register bank.
2043
2044         * mini.h: Added helper marco for shufling dwords and simple
2045         floats.
2046
2047 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2048
2049         * mini-llvm-cpp.cpp: Update to latest llvm SVN api.
2050
2051         * Makefile.am (mono_LDADD): Pass LLVM_LDFLAGS to the linked.
2052
2053         * unwind.c (mono_unwind_get_ops_from_fde): Make this return
2054         the length of the native code as well.
2055
2056         * basic-simd.cs: Add a test for #521662.
2057
2058 Mon Jul 13 17:58:50 CEST 2009 Paolo Molaro <lupus@ximian.com>
2059
2060         * mini-ppc.c: fixed bug introduced by Steven's TLS changes.
2061
2062 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2063
2064         * mini.c: Register function for getting the IP from a signal
2065         context with metadata.
2066
2067 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2068
2069         * method-to-ir.c (mono_method_to_ir): When calling a gshared method,
2070         call a generic class init trampoline if needed. Fixes #519336.
2071
2072         * generics.cs: Add a test.
2073         
2074 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2075
2076         * method-to-ir.c: When doing a call which might be remote from
2077         shared generic code to other shared code with open type arguments,
2078         get the remoting invoke wrapper from the RGCTX and do an indirect
2079         call to it.
2080
2081 2009-07-03  Zoltan Varga  <vargaz@gmail.com>
2082
2083         * mini-trampolines.c (get_unbox_trampoline): Add an rgctx trampoline
2084         after the unbox trampoline in the full-aot case.
2085
2086 2009-07-02  jonas echterhoff <jonas@unity3d.com>
2087         
2088         * mini.c: Move initialization of jit_mutex before debugger initialization
2089         
2090         to avoid crashes.
2091         
2092         
2093         * Info.plist: added Info.plist and link flag to enable the mono executable
2094         to access other processes. Requires codesigning of the executable to work.
2095         
2096         * mdb-debug-info32-darwin.s: The same as mdb-debug-info32.s, changed to 
2097         
2098         compile on OS X.
2099         
2100
2101 2009-06-30  Zoltan Varga  <vargaz@gmail.com>
2102
2103         * driver.c (mini_regression): Handle loading errors. Fixes #508869.
2104
2105 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * mini-exceptions.c (get_generic_context_from_stack_frame): Fix the case
2108         when the generic instance is an instantiation of a subclass of the
2109         methods class. Fixes #517166.
2110
2111 2009-06-26  Zoltan Varga  <vargaz@gmail.com>
2112
2113         * mini-amd64.c (mono_arch_emit_prolog): Fix thread attaching in AOTed
2114         code.
2115
2116         * mini.c (mono_jit_thread_attach): Allow domain to be NULL for calls from
2117         AOTed code.
2118
2119         * CMakeLists.txt: Add minimal support for installation.
2120
2121 2009-06-25  Zoltan Varga  <vargaz@gmail.com>
2122
2123         * aot-compiler.c (emit_and_reloc_code): Factor out the code to
2124         determine whenever a method is directly callable to a separate function.
2125
2126         * mini-<ARCH>.c tramp-<ARCH>.c: Remove needless casts and add new
2127         needed ones as a result of the previous change.
2128
2129         * mini-<ARCH>.c tramp-<ARCH>.c: Use mgreg_t* as the
2130         type of register arrays.
2131
2132         * mini-trampolines.c tramp-<ARCH>.c aot-runtime.c: Use mgreg_t* as the
2133         type of register arrays.
2134
2135 2009-06-24  Jerry Maine  <crashfourit@gmail.com>
2136         
2137         Contributed under the terms of the MIT/X11 license by
2138         Jerry Maine <crashfourit@gail.com>.
2139
2140         * mini-amd64.c: Added code to convert simd IR to native amd64 sse.
2141
2142 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2143
2144         * aot-compiler.c (emit_plt): Define debug labels for most plt entries.
2145
2146 2009-06-24  Neale Ferguson <neale@sinenomine.net>
2147
2148         * mini-s390x.c: Correct LCONV_TO_Ix and ICONV_TO_Ix routines. Fix leave_method
2149         dump of structure return value. Fix some formatting.
2150         * cpu-s390x.md: Fix lengths of instruction sequences.
2151         * mini-s390.c: Minor formatting changes.
2152
2153 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2154
2155         * mini-x86.h: Applied patch from Romain Tartiere (romain@blogreen.org).
2156         Use sigaction on freebsd as well.
2157
2158 2009-06-23  Zoltan Varga  <vargaz@gmail.com>
2159
2160         * mini.h: Don't define MONO_ARCH_HAVE_TLS_GET to 0, as some code
2161         uses #ifdef on it.
2162         
2163         * mini.c (mini_init): Revert a change which breaks cross-compilation.
2164
2165 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2166
2167         * mini-ppc.c, cpu-ppc.md: Enable TLS on Darwin/G4.
2168
2169 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2170
2171         * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
2172
2173 2009-06-20  Martin Baulig  <martin@ximian.com>
2174
2175         * debug-mini.c
2176         (MonoDebuggerThreadFlags): New enum typedef.
2177         (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
2178         (mono_debugger_thread_created): Added `gpointer func' argument;
2179         initialize the new `thread_flags' field.
2180
2181 2009-06-18  Martin Baulig  <martin@ximian.com>
2182
2183         * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
2184         (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
2185
2186         * debug-debugger.c
2187         (mini_debugger_set_attach_ok): New function; sets the attach-ok
2188         flag in `MONO_DEBUGGER__info.runtime_info'.
2189
2190         * driver.c
2191         (mono_main): Call mini_debugger_set_attach_ok() if generics
2192         sharing is disabled.
2193
2194 2009-06-22  Zoltan Varga  <vargaz@gmail.com>
2195
2196         * aot-compiler.c (add_wrappers): Fix a warning.
2197
2198         * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
2199         the ppc load/store macro changes.
2200
2201 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2202
2203         * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
2204
2205         * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
2206         not just the got symbol.
2207
2208         * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
2209         on ppc.
2210
2211         * aot-compiler.c unwind.c: Add infrastructure for unwind support on
2212         ppc.
2213         
2214         * aot-compiler.c: Remove some fixmes.
2215
2216         * driver.c (mono_main): Print a helpful message when cross-compiling.
2217
2218         * mini.c (mini_init): Disable signal handlers when cross-compiling.
2219
2220         * method-to-ir.c (initialize_array_data): Do the optimization if the
2221         target byte order is little endian, instead of the host byte order.
2222
2223         * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
2224         wrappers into the mscorlib image, Emit a unique plt symbol for each
2225         image, emit symbols for plt entries.
2226
2227         * image-writer.c (img_writer_emit_symbol_size): New function to emit
2228         a .size directive.
2229         
2230 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
2231
2232         * aot-compiler.c (add_wrappers): Avoid calling 
2233         mono_marshal_get_type_info () since it can assert for some types.
2234
2235         * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of 
2236         ldtoken are used inside wrappers.
2237
2238         * helpers.c: Add support for prefixing tools with the arch name.
2239
2240         * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
2241         quantities when using ilp32.
2242
2243         * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
2244         spill slots. Use sizeof(mgreg_t) for the spill slot size.
2245
2246         * image-writer.c: Use .long on ilp32.
2247
2248         * aot-compiler.c: Use 32 bit loads on ilp32.
2249         
2250 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2251
2252         * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
2253
2254         * mini-ops.h: Use TARGET_POWERPC define for consistency.
2255
2256         * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
2257
2258         * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the 
2259         second got slot of every aot image.
2260         
2261         * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
2262         aot on platforms with function pointers.
2263
2264         * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
2265         support for aot/full aot on ppc/ppc64.
2266         
2267         * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
2268         arguments which are needed on ppc.
2269
2270         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
2271         argument.
2272
2273         * mini-trampolines.c aot-runtime.c: Update after the above changes.
2274         
2275         * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
2276
2277         * regalloc2.c (BITS_PER_CHUNK): Ditto.  
2278
2279         * aot-compiler.c (emit_got_info): Fix reading unused memory.
2280
2281         * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
2282
2283 2009-06-17  Geoff Norton  <gnorton@novell.com>
2284
2285         * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
2286
2287 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2288
2289         * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
2290         to control whenever the dwarf writer is in xdebug or aot mode.
2291         (emit_class_dwarf_info): Use a separate abbrev for structures without
2292         children.
2293
2294         * aot-compiler.c: Pass the appending parameter to 
2295         mono_dwarf_writer_create ().
2296
2297         * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
2298         falls through to its next bblock. Fixes #513931.
2299
2300         * iltests.il: Add a test.
2301
2302         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
2303         infor even if emit_line is FALSE, as the apple linker seems to require it.
2304
2305         * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
2306
2307         * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
2308         gcc does.
2309         (emit_fde): Ditto.
2310
2311 2009-06-15  Zoltan Varga  <vargaz@gmail.com>
2312
2313         * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
2314         mips build.
2315
2316 2009-06-13  Zoltan Varga  <vargaz@gmail.com>
2317
2318         * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and 
2319         'has_call_handler' fields.
2320
2321         * method-to-ir.c (mono_method_to_ir): Set them if needed.
2322
2323         * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
2324         first bblock if not needed. Fixes #512790.
2325         
2326 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2327
2328         * aot-compiler.c (mono_compile_assembly): Fix a warning.
2329         
2330         * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
2331         wrappers.
2332
2333         * aot-runtime.c (mono_aot_get_method): Use the original method's code for
2334         remoting-invoke-with-check wrappers, which are not needed when running with
2335         full-aot, since it doesn't support remoting.
2336         
2337 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2338
2339         * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
2340
2341         * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
2342         method info, it is not used anymore.
2343
2344         * mini.h: Bump AOT file format version.
2345         
2346         * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
2347         word smaller.
2348
2349         * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
2350         change above.
2351         
2352         * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
2353
2354         * mini.h: Bump AOT file format version.
2355         
2356 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2357
2358         * image-writer.c (asm_writer_emit_symbol_diff): Disable the 
2359         TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
2360         iphone.
2361
2362         * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
2363         of CKFINITE and FBGE for VFP.
2364
2365 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
2366
2367         * aot-compiler.c: Don't align code to 16 bytes on arm.
2368         
2369         * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
2370         before the methods they belong to.
2371
2372         * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
2373         the full-aot case if possible, since the trampoline will be called right 
2374         away.
2375
2376         * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
2377         trampolines to 1024 after the change above.
2378
2379         * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
2380         trampoline to save 8 bytes per trampoline.
2381
2382         * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
2383         change above.
2384
2385 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
2388
2389 2009-06-08  Martin Baulig  <martin@ximian.com>
2390
2391         * debug-mini.c
2392         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
2393         (_mono_debugger_throw_exception): Don't make this static.
2394         (_mono_debugger_unhandled_exception): Likewise.
2395         (mono_debugger_handle_exception): Moved to mini-exceptions.c
2396
2397         * debug-mini.c
2398         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
2399         (_mono_debugger_throw_exception): Add function prototype.
2400         (_mono_debugger_unhandled_exception): Likewise.
2401
2402         * mini-exceptions.c
2403         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
2404         arg; return the first exception handler if the exception is caught
2405         and we're running inside the debugger.
2406         (mono_debugger_handle_exception): Moved here from debug-mini.c;
2407         improve exception handle inside runtime-invoke, check whether the
2408         exception is actually caught in the method being invoked and not
2409         by the runtime-invoke-wrapper.
2410
2411 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
2412
2413         * image-writer.c: Improve support for the osx assembler.
2414
2415         * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
2416         support them.
2417
2418 2009-06-08  Martin Baulig  <martin@ximian.com>
2419
2420         * debug-mini.c
2421         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
2422         (_mono_debugger_throw_exception): Don't make this static.
2423         (_mono_debugger_unhandled_exception): Likewise.
2424         (mono_debugger_handle_exception): Moved to mini-exceptions.c
2425
2426         * debug-mini.c
2427         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
2428         (_mono_debugger_throw_exception): Add function prototype.
2429         (_mono_debugger_unhandled_exception): Likewise.
2430
2431         * mini-exceptions.c
2432         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
2433         arg; return the first exception handler if the exception is caught
2434         and we're running inside the debugger.
2435         (mono_debugger_handle_exception): Moved here from debug-mini.c;
2436         improve exception handle inside runtime-invoke, check whether the
2437         exception is actually caught in the method being invoked and not
2438         by the runtime-invoke-wrapper.
2439
2440 2009-06-07  Zoltan Varga  <vargaz@gmail.com>
2441
2442         * image-writer.c (append_subsection): Don't align subsections of the
2443         debug_line section as a workaround.
2444
2445         * dwarfwriter.c: Emit line number info in the AOT case as well.
2446
2447 2009-06-06  Steven Munroe  <munroesj@us.ibm.com>
2448
2449         This patch is contributed under the terms of the MIT/X11 license
2450
2451        * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
2452        code_len <= code_size
2453
2454 2009-06-06  Zoltan Varga  <vargaz@gmail.com>
2455
2456         * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
2457
2458 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2459
2460         * aot-compiler.c aot-runtime.c: Delete references to static rgctx
2461         invoke wrappers, we now use trampolines instead.
2462
2463 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2464
2465         * mini-darwin.c: The exception thread must not be registered with
2466         the GC.
2467
2468 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2469
2470         * mini-gc.c: Disable the code because it makes SGen crash.
2471
2472 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
2473
2474         * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
2475         instead of asserting.
2476
2477 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2478
2479         * aot-compiler.c (mono_compile_assembly): Move the creation of the
2480         output file after the code has been compiled.
2481
2482 2009-05-30  Zoltan Varga  <vargaz@gmail.com>
2483
2484         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
2485
2486 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2487
2488         * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
2489         entries distinction to simplify the code.
2490
2491         * mini.h: Bump AOT file format version.
2492         
2493 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
2494
2495         * objects.cs: Fix the signature of one of the tests.
2496
2497         * mini.c (mini_create_ftnptr): New helper function, moved here from
2498         object.c.
2499         (mini_get_addr_from_ftnptr): Ditto.
2500         (mini_init): Install the new helpers.
2501
2502 2009-05-28  Martin Baulig  <martin@ximian.com>
2503
2504         Correctly initialize the debugger when embedding Mono.
2505
2506         * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
2507         `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
2508         see documentation in mini_debug_running_inside_mdb().
2509
2510         * debug-debugger.c
2511         (mini_debug_running_inside_mdb): New function to check whether
2512         we're running inside mdb.
2513
2514         * mini.c (mini_init): Call mini_debugger_init() if we're running
2515         inside the debugger.
2516
2517         * driver.c (mono_main): Moved the call to mini_debugger_init()
2518         into mini_init() to make this work when embedding Mono.
2519
2520         * debug-debugger.c (mini_debugger_init): Warn about duplicate
2521         calls to mini_debugger_init().
2522
2523         * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
2524         mono_debugger_main() -> mini_debugger_main() and put them inside a
2525         `MONO_DEBUGGER_SUPPORTED' conditional.
2526
2527 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
2528
2529         * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
2530         this is no longer in use.
2531         * mini.h: Same.
2532
2533 2009-05-26  Zoltan Varga  <vargaz@gmail.com>
2534
2535         * mini-sparc.c (add_outarg_load): Fix the sparc build.
2536
2537         * aot-compiler.c (emit_method_code): Always write out C style symbols for
2538         methods.
2539
2540 2009-05-27  Martin Baulig  <martin@ximian.com>
2541
2542 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2543
2544         * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
2545         long_conv_to_r_un to 64 bits.
2546
2547         * cpu-x86.md: Increase the instruction size due to the changes.
2548
2549         * iltests.il.in: Add regression test.
2550
2551         Fixes #467201.
2552
2553 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2554
2555         * objects.cs: Move the previous test from basic.cs to here.
2556
2557 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2558
2559         * basic.cs: Add regression test for #506915.
2560
2561 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2562
2563         * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
2564         optimization we must check the bb of the first byte of stobj as
2565         it's the only one set in cil_offset_to_bb.
2566
2567         Fixes #506915.  
2568
2569 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
2570
2571         * image-writer.c: Fix pointer directive on ppc64.
2572
2573 2009-05-24  Zoltan Varga  <vargaz@gmail.com>
2574
2575         * image-writer.c (asm_writer_emit_section_change): Avoid using
2576         .bss subsections on ppc too.
2577
2578 2009-05-23  Zoltan Varga  <vargaz@gmail.com>
2579
2580         * image-writer.c: Fix the definition of TARGET_ASM_....
2581         
2582         * image-writer.c: Fix the emission of assembler directives in the last
2583         change.
2584
2585         * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
2586         exception throwing code to accomodate ppc64.
2587
2588         * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
2589         size to work on ppc64 too.
2590
2591         * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
2592         too.
2593
2594         * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
2595         the assembler dialect instead of using platform specific defines.
2596
2597 2009-05-22  Geoff Norton  <gnorton@novell.com>
2598
2599         * mini-arm.c (get_call_info): If a structure is split between the stack
2600         and argument registers, we should not advance the stack pointer by the entire
2601         native size, but just by the amount that spilled.
2602
2603 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
2604
2605         * mini-arm.c (get_call_info): Handle structures with alignment requirements
2606         correctly.
2607
2608 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2609
2610         * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
2611         wrappers normally.
2612         
2613         * aot-compiler.c (add_extra_method): Fix up the collection of extra
2614         methods so wrapper don't get added twice.
2615         (add_generic_instances): Don't add methods of arrays.
2616
2617         * generics.cs: Mark one test as !FULLAOT.
2618
2619 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2620
2621         * mini-x86.c (emit_move_return_value): Remove unused vars.
2622
2623 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2624
2625         * mini-x86.c (mono_arch_emit_call): The decompose code now supports
2626         decomposing 8 bytes structs into a LCALL.
2627
2628         * mini-x86.c (emit_move_return_value): We no longer push the vtype
2629         pointer for where to store the returned regs.
2630
2631         * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
2632         state the concern.
2633
2634         Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
2635
2636 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2637
2638         * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
2639         without getenv.
2640
2641 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2642
2643         * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
2644
2645         * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
2646         generics.
2647
2648 2009-05-20 Rodrigo Kumpera  <rkumpera@novell.com>
2649
2650         * local-propagation.c (mono_local_cprop): Avoid local propagation
2651         across paired add/sub if the first instruction dest reg is it's
2652         source reg. For example:
2653
2654         int_add_imm R12 <- R12 [1] clobbers: 1
2655         int_sub_imm R42 <- R12 [1] clobbers: 1
2656
2657         The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
2658         maintain the math identify.
2659
2660         Fixes #505375.
2661
2662 2009-05-20  Andreia Gaita  <avidigal@novell.com>
2663
2664         * Makefile.am: avoid going on the network just to get the revision,
2665         use git log instead
2666
2667 2009-05-19  Massimiliano Mantione  <massi@ximian.com>
2668
2669         Fixed estimate for short branches on amd64 (they were off mark, and
2670         enabling call prolog-epilog instrumentations caused assertions).
2671         * mini.h (struct MonoBasicBlock): added max_length field to hold the
2672         estimate for the maximum length of this basic block.
2673         * mini-amd64.c:
2674         - mono_arch_emit_prolog: compute max_length for each basic block
2675           (instead of max_offset), and inflate size estimate also for entry bb
2676           in case of code instrumentation.
2677         - mono_arch_output_basic_block: get rid of "cpos" (the current
2678           estimated "position" in the code), and always use "offset" instead,
2679           which is accurate; at the beginning of the function quickly recompute
2680           max_offset for all the remaining blocks, starting from the current
2681           cfg->code_len (which is correct, and not estimated) and using the
2682           estimated block lengths computed previously.
2683
2684 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
2685
2686         * exceptions-ppc.c: Remove the caching from the trampoline creation 
2687         functions, it is already done in the caller.
2688
2689         * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
2690
2691         * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add 
2692         MONO_ARCH_GSHARED_SUPPORTED define.
2693
2694         * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
2695
2696         * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
2697         function.
2698
2699 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
2700
2701         * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the 
2702         call to mono_marshal_get_rgctx_invoke ().
2703
2704         * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
2705         mono_marshal_get_static_rgctx_invoke (), all platforms which support
2706         gshared use the static rgctx trampolines now.
2707         
2708         * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
2709         platform supports it.
2710
2711 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2712
2713         * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
2714
2715         * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
2716
2717 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2718
2719         * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
2720
2721         * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
2722         for ppc.
2723
2724 2009-05-15  Massimiliano Mantione  <massi@ximian.com>
2725
2726         Made it possible for mono_arch_instrument_epilog to preserve
2727         argument registers, otherwise instrumenting the "epilogue" before
2728         a tail call would clobber them.
2729         * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
2730         if like mono_arch_instrument_epilog but with an additional parameter
2731         that states if argument registers must be preserved.
2732         * mini.c: implemented mono_arch_instrument_epilog as a call to
2733         mono_arch_instrument_epilog_full without asking to preserve argument
2734         registers (this makes the existing code work as usual).
2735         * mini-amd64.c:
2736         - mono_arch_instrument_epilog: add parameter to transform it into
2737         mono_arch_instrument_epilog_full, and preserve argument registers
2738         when required.
2739         - mono_arch_output_basic_block, OP_TAILCALL case: call
2740         mono_arch_instrument_epilog_full.
2741         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
2742         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
2743         only transformed mono_arch_instrument_epilog into
2744         mono_arch_instrument_epilog_full.
2745
2746 2009-05-15  Geoff Norton  <gnorton@novell.com>
2747
2748         * mini-darwin.c: This works on arm now.
2749
2750 2009-05-14  Geoff Norton  <gnorton@novell.com>
2751
2752         * jit.h, driver.c: Allow full-aot to be decided programatically by the
2753         embedding api.
2754
2755 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2756
2757         * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
2758         label names.
2759
2760         * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
2761         wrappers during full aot mode correctly.
2762
2763         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
2764         methods correctly.
2765
2766         * aot-compiler.c (mono_aot_method_hash): Use our internal version of
2767         mono_metadata_type_hash ().
2768
2769 2009-05-14  Massimiliano Mantione  <massi@ximian.com>
2770
2771         * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
2772         mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
2773         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
2774         Removed MONO_INST_BRLABEL from the instruction flags, and the
2775         remaining code that used it, because we do not support branches inside
2776         basic blocks (and branch target labels) anymore.
2777         * Makefile.am: As part of the above cleanup, remove reference to
2778         BURG files which don't exist anymore.
2779
2780 2009-05-14  Zoltan Varga  <vargaz@gmail.com>
2781
2782         * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
2783         osx.
2784
2785         * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
2786         to use mono_arch_throw_corlib_exception.
2787
2788         * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use 
2789         mono_arch_throw_corlib_exception for throwing corlib exceptions.
2790
2791         * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
2792         domain mempool.
2793
2794         * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
2795
2796         * aot-compiler.c: Emit a local symbol prefixed with the assembly name 
2797         for the got to make debugging easier and to avoid confusing it with the
2798         system got.
2799         
2800         * aot-compiler.c (emit_method_code): Emit a C style symbol for each
2801         method so a breakpoint can be set when using gdb.
2802
2803 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
2804
2805         * aot-compiler.c (mono_aot_method_hash): Implement this properly based
2806         on mono_method_get_imt_slot ().
2807
2808         * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
2809         num_decodes variables.
2810
2811         * aot-compiler.c (mono_aot_method_hash): Revert part of the last
2812         change as it doesn't seem to work.
2813         
2814         * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
2815         wrappers.
2816
2817 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
2818
2819         * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill 
2820         MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
2821
2822         * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
2823         builder when using full aot.
2824
2825         * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
2826         here, it is already handled.
2827         
2828         * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
2829         correctly for IMT.
2830
2831         * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
2832
2833         * mini-arm.h: Enable IMT for full aot.
2834         
2835         * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
2836         arch doesn't support it.
2837
2838         * mini.c (mini_init): Don't disable IMT for full aot if the
2839         architecture supports it.
2840
2841         * mini.h (MonoAotTrampoline): New enum containing the different types
2842         of 'numerous' trampolines.
2843         (MONO_AOT_FILE_VERSION): Bump this.
2844
2845         * aot-compiler.c aot-runtime.c: Unify the handling of specific and
2846         static rgctx trampolines. Add support for full-aot IMT thunks.
2847
2848         * mini-amd64.h: Enable IMT for full aot.
2849
2850         * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
2851         to exclude tests belonging to a category.
2852
2853         * generics.cs: Mark some tests with a !FULLAOT category.
2854
2855         * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
2856         generics tests.
2857
2858 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * aot-compiler.c (emit_and_reloc_code): Move the implementation of
2861         MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
2862         (emit_plt): Fix a warning.
2863
2864 2009-05-10  Zoltan Varga  <vargaz@gmail.com>
2865
2866         * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
2867         back into aot-compiler.c to a place where the other functions shared by
2868         the runtime and aot compiler are.
2869         
2870         * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
2871         as done previously, instead of in MonoAotFileInfo, since pointers might have
2872         alignment requirements.
2873
2874         * mini.h: Bump AOT file format version.
2875
2876 2009-05-10  Miguel de Icaza  <miguel@novell.com>
2877
2878         * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
2879         that is used at runtime from the aot-compiler.c, this makes it
2880         work on setups that remove the AOT compiler from the output
2881         image. 
2882
2883 2009-05-09  Zoltan Varga  <vargaz@gmail.com>
2884
2885         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
2886         PPC.
2887
2888         * mini-ppc.h: Enable static rgctx trampolines for ppc.
2889
2890         * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
2891
2892         * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific 
2893         stuff to mono_arch_decompose_long_opts ().
2894         (mono_decompose_opcode): Remove some dead code.
2895
2896 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
2897
2898         * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
2899         cmethod can be null for quite a some reasons.
2900
2901 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
2902
2903         * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
2904
2905 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
2906
2907         * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
2908
2909 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
2910
2911         * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
2912         (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
2913         whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
2914         calls returning structures by addr on amd64.
2915
2916         * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
2917
2918         * iltests.il.in: Restructure the tail call tests a bit.
2919         
2920 2009-05-07  Zoltan Varga  <vargaz@gmail.com>
2921
2922         * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
2923         for virtual methods too.
2924
2925 2009-05-06  Raja R Harinath  <harinath@hurrynot.org>
2926
2927         * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
2928         due to regression in verifying System.dll.
2929
2930 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
2931
2932         * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
2933         in dynamic methods.
2934
2935         * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
2936         instances.
2937
2938         * aot-compiler.c aot-runtime.c: Use our own hash function instead of
2939         g_str_hash () which can change.
2940
2941         * driver.c (mini_regression): Disable optimizations not supported by
2942         the cpu. Fixes #500019.
2943
2944         * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
2945         build.
2946
2947 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
2948
2949         * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
2950         to the latest LLVM code.
2951
2952 2009-05-05  Zoltan Varga  <vargaz@gmail.com>
2953
2954         * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
2955
2956 2009-05-04  Zoltan Varga  <vargaz@gmail.com>
2957
2958         * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on 
2959         x86/amd64.
2960
2961         * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
2962         no longer saving offsets, so just save the patch types along with the other
2963         info.
2964         * aot-runtime.c (load_patch_info): Update after the changes to 
2965         encode_patch_list ().
2966         (decode_got_entry): Removed, merged into load_patch_info ().
2967         (is_shared_got_patch): Removed, call the same function from
2968         aot-compiler.c.
2969
2970         * mini.h: Bump aot file format version.
2971         
2972         * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
2973         half-finished no-dlsym code.
2974
2975         * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
2976         option.
2977
2978         * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the 
2979         MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
2980
2981 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
2982
2983         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
2984         buffer length to work with AOT code.
2985
2986         * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
2987         ldfld/stfld opcodes.
2988
2989         * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
2990         as it is not used.
2991
2992         * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
2993
2994         * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
2995
2996         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
2997         LLVM API.
2998
2999         * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
3000         if needed. Don't decompose long operations when using llvm.
3001
3002 2009-05-01  Zoltan Varga  <vargaz@gmail.com>
3003
3004         * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
3005         PAGESIZE constant.
3006
3007         * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
3008
3009 2009-05-03  Martin Baulig  <martin@ximian.com>
3010
3011         * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
3012         mono_debugger_insert_method_breakpoint() since the class init
3013         handler we're inserting at the top of the method already gives us
3014         a notification.
3015
3016 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3017
3018         * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
3019         to mono_arch_decompose_long_opts () for x86 and arm.
3020
3021 2009-04-29  Zoltan Varga  <vargaz@gmail.com>
3022
3023         * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
3024         TARGET_AMD64 here.
3025
3026 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3027
3028         * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
3029         JIT code.
3030
3031 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
3032
3033         * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
3034         number of trampolines used in full-aot mode.
3035
3036         * aot-compiler.c: Add an ntrampolines option to set the number of 
3037         trampolines emitted in full-aot mode.
3038
3039 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3040
3041         * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
3042         a volatile load. Get rid of get_tempname (), llvm assigns names
3043         automatically.
3044
3045         * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
3046         builder function.
3047
3048         * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
3049         a value.
3050
3051         * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
3052         level 1.
3053
3054         * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
3055         to the same register as a fixed sreg2. Fixes #497271.
3056
3057         * iltests.il.in: Add a new test.
3058
3059 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
3060
3061         * mini-amd64.c: Use moves instead of pushes for passing arguments on the
3062         stack, since pushes complicate exception handling.
3063
3064         * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
3065         the stack if they are passed using moves.
3066
3067         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
3068
3069         * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
3070         when using llvm.
3071
3072         * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the 
3073         icalls themselves. Convert arguments of FCOMPARE. Convert the destination
3074         of FMOVE if it is an R4.
3075
3076 2009-04-25  Zoltan Varga  <vargaz@gmail.com>
3077
3078         * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
3079
3080         * mini.h (LLVMCallInfo): New structure to store calling convention 
3081         information for the LLVM back end similar to the CallInfo structures in 
3082         the back-ends.
3083
3084         * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
3085         call information in a format usable by LLVM.
3086         (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
3087
3088         * method-to-ir.c (mono_emit_call_args): Emit calls using 
3089         mono_llvm_emit_call () when compiling using LLVM.
3090
3091         * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
3092         comments to all functions. Fix memory leaks. Add a public init/cleanup
3093         function.
3094
3095         * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
3096
3097         * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
3098         mono_array_new_va () jit icall.
3099         
3100 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
3101
3102         * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
3103         multiple machine description files to be specified.
3104         * mini-ops.h: fixes for cross-compilation.
3105
3106 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3107
3108         * aot-runtime.c (make_writable): Use mono_mprotect to simplify
3109         some porting work.
3110
3111 2009-04-22  Zoltan Varga  <vargaz@gmail.com>
3112
3113         * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
3114         to prevent asserts in various passes. Fixes #497220.
3115
3116 2009-04-21  Zoltan Varga  <vargaz@gmail.com>
3117
3118         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
3119         a racy assert.
3120
3121         * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
3122         table to avoid duplicates.
3123
3124         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3125         
3126         * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
3127         option is used.
3128
3129 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3130
3131         * mini.c (mini_method_verify): Fail fulltrust code if the exception
3132         is for method or field access.
3133
3134 2009-04-20  Zoltan Varga  <vargaz@gmail.com>
3135
3136         * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
3137         a Value to stdout.
3138
3139         * mini-llvm.c (mono_llvm_emit_method): Use it.
3140         
3141         * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
3142         (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
3143         on volatile values.
3144
3145         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for 
3146         synchronized methods.
3147
3148         * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
3149
3150         * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
3151
3152         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
3153         OP_LOADI8_MEM.
3154
3155         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
3156         allowing some options to be set dynamically.
3157
3158 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3159
3160         * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
3161         unconditional branch.
3162
3163         * mini.h (MonoTrampolineType): Add new trampoline type 
3164         'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
3165         compiled code.
3166
3167         * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline 
3168         function.
3169
3170         * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
3171         creation function.
3172
3173         * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
3174         is enabled. Instead, use the llvm vcall trampoline.
3175         
3176         * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
3177
3178         * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
3179         
3180         * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
3181         functions.
3182
3183         * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of 
3184         MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
3185
3186         * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
3187         OP_IA64_CSET opcode.
3188
3189         * mini.c: Fix a warning.
3190
3191         * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
3192         THROW to the appropriate llvm type.
3193
3194 2009-04-18  Zoltan Varga  <vargaz@gmail.com>
3195
3196         * mini.c (mini_method_compile): Add statistics for methods JITted
3197         with/without LLVM.
3198
3199 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
3200
3201         * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
3202         OP_IA64_CMP_<cond>_IMM opcodes.
3203
3204 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
3205
3206         * mini-llvm.c (emit_cond_system_exception): Implement throwing of
3207         corlib exceptions.
3208
3209         * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
3210         correctly.
3211
3212         * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
3213         GENERICINST.
3214
3215 2009-04-17  Atsushi Enomoto  <atsushi@ximian.com>
3216
3217         * mini-exceptions.c : add thread id to EXCEPTION trace message.
3218
3219 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
3220
3221         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
3222         support.
3223
3224         * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
3225         rgctx invoke trampolines for x86.
3226
3227         * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
3228         indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
3229         (mono_arch_get_vcall_slot): Simplify this.
3230
3231 2009-04-16  Zoltan Varga  <vargaz@gmail.com>
3232
3233         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
3234         mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
3235
3236 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3237
3238         * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx 
3239         trampolines for ARM. Add full-aot support for delegate invokes for ARM.
3240
3241         * mini-trampolines.c (mono_magic_trampoline): Fix the build.
3242
3243         * liveness.c (visit_bb): Remove a needless assert.
3244
3245 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
3246
3247         * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
3248         full aot support to the arch specific code.
3249
3250         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
3251
3252         * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
3253
3254         * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
3255         
3256         * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
3257         collect information about the delegate invoke impl trampolines.
3258
3259         * mini.h (MonoAotTrampInfo): New structure collecting the information needed
3260         to save trampolines during full-aot mode.
3261
3262         * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
3263         creation function which returns a trampoline which sets the rgctx
3264         argument.
3265         (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
3266         wrapper if possible.
3267         (mono_delegate_trampoline): Ditto.
3268
3269         * mini.c (mono_jit_runtime_invoke): Ditto.
3270
3271         * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
3272         
3273         * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
3274
3275         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3276         
3277 2009-04-12  Zoltan Varga  <vargaz@gmail.com>
3278
3279         * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
3280         just setting the opcode to OP_NOP.
3281
3282 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
3283
3284         * mini.c (mini_method_compile): Put the last change inside an 
3285         #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
3286         
3287         * mini.c (mini_method_compile): Disable sharing of stack slots/registers
3288         and extend live ranges to cover the whole method when using xdb.
3289
3290         * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
3291         do it in the trampolines.
3292
3293         * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
3294         needed.
3295
3296         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
3297         
3298         * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
3299         call code in full-aot mode since IMT is disabled there.
3300         (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
3301         new JIT no longer has that restriction.
3302
3303         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3304
3305         * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
3306         a more compact format.
3307         (mono_aot_wrapper_name): New function to return a unique name for a
3308         wrapper method, also used by the AOT runtime.
3309
3310         * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
3311         aot-compiler.c.
3312
3313         * aot-compiler.c (add_generic_class): Add the helper methods from T[]
3314         when a ICollection<T> etc is encountered.
3315         (add_generic_instances): Process method arguments/locals too.
3316         (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
3317         trampoline names.
3318
3319         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
3320         
3321 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
3322
3323         * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
3324
3325         * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
3326
3327         * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
3328         representing the result of the decomposition. Nullify instructions
3329         instead of setting them to OP_NOP since nops can't have registers
3330         set.
3331
3332 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
3333
3334         * aot-compiler.c (mono_compile_assembly): Split this huge function into
3335         smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
3336         info. Strip 'mapping symbols' on ARM.
3337
3338         * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
3339         
3340         * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
3341         this with the native genmdesc.
3342
3343 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
3344
3345         * aot-runtime.c:  Fixing the MSVC build.
3346
3347         Code is contributed under MIT/X11 license.
3348
3349 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
3350
3351         * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since 
3352         JITted code depends on it.
3353
3354 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3355
3356         * aot-compiler.c: Use new MonoGenericParam accessors.
3357
3358 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3359
3360         Reduce memory usage and improve correctness wrt MonoGenericParam
3361         * aot-runtime.c (decode_klass_ref): Simplify generic parameter
3362         handing.  Avoid allocating MonoGenericParams, but use the ones in
3363         the container itself.
3364
3365 2009-04-07  Miguel de Icaza  <miguel@novell.com>
3366
3367         * tasklets.c: Return exceptions in the out argument.
3368
3369 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
3370
3371         * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
3372         opcode. Use pointer types in more places instead of casting them to 
3373         integers.
3374
3375         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
3376         optimizations.
3377         (mono_llvm_optimize_method): New helper function to optimize a method.
3378
3379         * method-to-ir.c (mono_emit_widen_call_res): Extract the call result 
3380         widening code so it could be called from more places.
3381         (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
3382         code paths in the call opcodes.
3383
3384 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
3385
3386         * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
3387
3388 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
3389
3390         * dwarfwriter.c: Use _ to separate class name 
3391         components as gdb can't handle '.'. Represent reference variables
3392         as 'class <NAME>&'.
3393         
3394         * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
3395
3396         * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
3397         
3398         * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
3399
3400         * gc-test.cs: New file with GC stack marking tests.
3401         
3402         * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
3403         negative numbers for vfp.
3404
3405         * basic-float.cs: Add a test.
3406         
3407 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
3408
3409         * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
3410
3411 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
3412
3413         * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
3414         part of tasklet/continuation support.
3415
3416 2009-04-05  Zoltan Varga  <vargaz@gmail.com>
3417
3418         * mini-llvm.c (mono_llvm_emit_method): Move the handling of
3419         amd64 opcodes inside an ifdef.
3420
3421         * dwarfwriter.c: Emit inheritance information for classes, emit fields
3422         of complex types.
3423         
3424         * dwarfwriter.c (emit_type): Emit the class info for classes.
3425
3426 2009-04-04  Zoltan Varga  <vargaz@gmail.com>
3427
3428         * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
3429
3430         * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
3431
3432         * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
3433
3434         * ssa.c (mono_ssa_compute): Fix some memory leaks.
3435
3436 2009-04-03  Zoltan Varga  <vargaz@gmail.com>
3437
3438         * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
3439
3440         * mini-llvm.c: Update comments.
3441
3442         * mini.h (COMPILE_LLVM): New macro.
3443
3444         * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
3445
3446         * ssa.c (mono_ssa_compute): Ditto.
3447         
3448         * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
3449         the unwind ops from a DWARF FDE.
3450
3451         * mini-llvm.c: Implement generation of unwind info for LLVM compiled
3452         methods by extracting the dwarf unwind ops from the unwind info generated
3453         by LLVM.
3454         
3455         * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
3456         calls.
3457
3458         * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
3459         addressing modes.
3460
3461 2009-04-02  Zoltan Varga  <vargaz@gmail.com>
3462
3463         * Makefile.am (llvm_sources): Enable this.
3464
3465         * mini.c (mini_method_compile): Add support for compiling with LLVM, 
3466         failing back to the JIT if something cannot be handled.
3467
3468         * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
3469         compiling with LLVM.
3470
3471         * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
3472         compiling with LLVM.
3473
3474         * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when 
3475         compiling with LLVM.
3476
3477         * mini-ops.h: Add a few opcodes needed by LLVM.
3478
3479         * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
3480         has no unwind info.
3481
3482         * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
3483         backend.
3484
3485         * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
3486
3487         * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
3488
3489 2009-04-01  Mark Probst  <mark.probst@gmail.com>
3490
3491         * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
3492         ridiculously large methods.
3493
3494 2009-03-31  Martin Baulig  <martin@ximian.com>
3495
3496         * debug-debugger.c (debugger_remove_breakpoint): Call
3497         mono_debugger_remove_class_init_callback ().
3498
3499 2009-03-31  Zoltan Varga  <vargaz@gmail.com>
3500
3501         * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
3502         right before emitting code, not at the start.
3503
3504         * mini.c (mono_postprocess_patches): Extract this into a separate function
3505         from mono_codegen ().
3506
3507         * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
3508         byref types correctly.
3509
3510 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
3511
3512         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
3513         by the last change.
3514
3515 2009-03-29  Zoltan Varga  <vargaz@gmail.com>
3516
3517         * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before 
3518         indirect calls, this avoids problems where get_vcall_slot () would get
3519         confused by the native code for the instruction preceeding the call.
3520         (mono_arch_get_vcall_slot): Simplify this.
3521         (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
3522
3523         * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
3524         register allocator now seems to depend on them instead of the data in
3525         cpu-<ARCH>.md.
3526
3527         * mini.c (mini_method_compile): Throw the correct type of exception if
3528         mono_method_get_header () fails because of a loading error.
3529
3530 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
3531
3532         * mini.c (mini_method_compile): Clear the loader error if the method
3533         header cannot be decoded.
3534
3535         * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual 
3536         interface methods on proxies correctly.
3537
3538         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
3539         this argument for vtype methods. Add precise liveness info for arguments.
3540
3541         * mini-codegen.c (mono_print_ins_index): Print the vreg of the
3542         LIVERANGE_START/END opcodes.
3543
3544         * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
3545         for arguments and values in registers.
3546
3547 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
3548
3549         * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
3550         return a valuetype. Fixes #487518.
3551
3552         * iltests.il: Add a test.
3553         
3554         * aot-compiler.c: Use mono_thread_create () to create helper threads.
3555
3556         * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
3557         closed over a null reference correctly.
3558
3559 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3560
3561         * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
3562
3563 2009-03-25  Mark Probst  <mark.probst@gmail.com>
3564
3565         * mini-codegen.c (mono_local_regalloc): Don't let sregs get
3566         allocated to the same registers as fixed sregs.
3567
3568 2009-03-24  Mark Probst  <mark.probst@gmail.com>
3569
3570         * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
3571         ATOMIC_CAS_IMM ops.
3572
3573         * method-to-ir.c: Handle more cases for
3574         Interlocked.CompareExchange.
3575
3576         * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
3577         mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
3578         ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
3579
3580 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
3581
3582         * aot-runtime.c (decode_method_ref): Fix a warning.
3583
3584         * unwind.c (mono_unwind_frame): Ditto.  
3585
3586 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
3587
3588         * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
3589         (mono_compile_assembly): Enable the binary writer for full-aot as well.
3590
3591         * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
3592         fix the handling of large values in the ALU_PC_G0_NC relocation.
3593
3594 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
3595
3596         * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
3597
3598 2009-03-22  Mark Probst  <mark.probst@gmail.com>
3599
3600         * method-to-ir.c (mono_spill_global_vars): Support for ternary
3601         ops.
3602
3603 2009-03-22  Mark Probst  <mark.probst@gmail.com>
3604
3605         * method-to-ir.c: MINI_OP3 needs a comma.
3606
3607         * method-to-ir.c, mini.h, mini.c: Remove
3608         mono_init_op_sreg_counts ().
3609
3610 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
3611
3612         * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
3613         OP_JMP.
3614         
3615         * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
3616         assertion.
3617
3618         * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
3619
3620         * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
3621         code somewhat.
3622
3623 2009-03-21  Mark Probst  <mark.probst@gmail.com>
3624
3625         * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
3626         liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
3627         mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
3628         operations.
3629
3630 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
3631
3632         * driver.c: Change location of gc_wrapper.h.
3633
3634         * method-to-ir.c (mono_find_block_region): Handle try clauses nested
3635         inside finally clauses correctly. Fixes #485721.
3636
3637         * mini.c (mono_find_spvar_for_region): This needs to handle try regions
3638         after the change above.
3639
3640         * exceptions.cs: Add a test.
3641         
3642 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3643
3644         * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
3645
3646         * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
3647         into cfg->used_int_regs, it is not needed with the dwarf unwinder.
3648         (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
3649
3650         * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
3651         the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
3652
3653 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
3654
3655         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
3656         Simplify logic for ensure_method_is_allowed_to_call_method. 
3657         Handle wrappers on callers.
3658
3659 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3660
3661         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
3662         them don't run yet.
3663
3664         * basic-simd.cs: Fix the names of some test methods.
3665
3666 2009-03-18  Geoff Norton  <gnorton@novell.com>
3667
3668         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
3669
3670 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
3671
3672         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
3673
3674 2009-03-17  Jb Evain  <jbevain@novell.com>
3675
3676         * driver.c: remove now uneeded call to mono_gc_base_init before
3677         mono_profiler_load.
3678
3679 2009-03-17  Jb Evain  <jbevain@novell.com>
3680
3681         * dwarfwriter.c (token_handler): handle more cases.
3682
3683 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
3684
3685         * method-to-ir.c: Remove more dead code (that was required only
3686         because of method_is_safe). Fix compiler warnings.
3687
3688 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
3689
3690         * method-to-ir.c: Remove unneeded/useless method_is_safe
3691         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
3692
3693 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3694
3695         * mini.c (mini_method_compile): Print the method been compiled with
3696         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
3697         for people not familiar with the runtime.
3698
3699 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
3700
3701         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
3702         a managed object which is later put into a GList. Return its class instead.
3703
3704         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
3705         stack slots when using sgen.
3706
3707 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
3708
3709         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
3710
3711 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
3712
3713         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
3714         > so it works on the first vreg as well.
3715
3716 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
3717
3718         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
3719         trigger randomly.
3720
3721         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
3722         
3723         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
3724         implement GArray.
3725
3726 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
3727
3728         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
3729         native->IL offset mapping.
3730
3731 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
3732
3733         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
3734
3735         * basic.cs: Add a test.
3736
3737 2009-03-11  Mark Probst  <mark.probst@gmail.com>
3738
3739         * mini-x86.c (mono_arch_output_basic_block): Use different
3740         registers in case the ones we want to overwrite are used by the
3741         other operand.  Fixes regression in #480807.
3742
3743 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
3744
3745         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
3746
3747         * dwarfwriter.c (emit_line_number_info): The line number info for
3748         IL code was off by one. Fix that.
3749
3750         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
3751         stack.
3752
3753 2009-03-09  Mark Probst  <mark.probst@gmail.com>
3754
3755         Contributed under the terms of the MIT/X11 license by Steven
3756         Munroe <munroesj@us.ibm.com>.
3757
3758         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
3759         Fixes #483462.
3760
3761 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
3762
3763         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
3764         as well.
3765
3766 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
3767
3768         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
3769         the delegate ctor handling code. Fixes #482638.
3770         
3771         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
3772         #481458.
3773
3774         * iltests.il.in: Add a test.
3775         
3776         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
3777         mini-posix.c.
3778
3779 2009-03-05  Mark Probst  <mark.probst@gmail.com>
3780
3781         * mini-trampolines.c (mono_create_jump_trampoline): If the method
3782         is shared generic code, return the trampoline, even if the method
3783         has already been compiled.  Fixes #479763.
3784
3785         * mini.c, mini.h: New function
3786         mono_jit_find_compiled_method_with_jit_info() which is the same as
3787         mono_jit_find_compiled_method() but also returns the jit info.
3788
3789 2009-03-05  Mark Probst  <mark.probst@gmail.com>
3790
3791         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
3792         for methods which actually have one.  For all other methods, make
3793         sure the this argument var is live the whole method.
3794
3795         * mini.c (mini_method_compile): Every shared method has a
3796         this/vtable/mrgctx info.  Fixes #480807.
3797
3798 2009-03-05  Mark Probst  <mark.probst@gmail.com>
3799
3800         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
3801         generic/imt thunks where some entries branch through the vtable,
3802         while other entries branch directly.
3803
3804 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
3805
3806         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
3807
3808         * mini-windows.c: Ditto.
3809         
3810         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
3811         ctors.
3812
3813 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
3814
3815         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
3816         down an assert.
3817
3818 2009-03-04  Mark Probst  <mark.probst@gmail.com>
3819
3820         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
3821         #481403.
3822
3823 2009-03-04  Mark Probst  <mark.probst@gmail.com>
3824
3825         * exceptions-x86.c: Include debug-mini.h - fixes build.
3826
3827 2009-03-04  Martin Baulig  <martin@ximian.com>
3828
3829         * debug-mini.c: Clean up the exception API and add documentation.
3830         (mono_debugger_handle_exception): New public method; this is
3831         called when throwing an exception or encountering an unhandled one.
3832         (mono_debugger_call_exception_handler): Formerly known as
3833         mono_debugger_handle_exception(); this is used to tell the
3834         debugger that we're about to invoke an exception handler.
3835
3836 2009-03-04  Martin Baulig  <martin@ximian.com>
3837
3838         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
3839         ../metadata/mono-debug-debugger.c; save and reset exception state.
3840
3841 2009-03-02  Martin Baulig  <martin@ximian.com>
3842
3843         * debug-mini.c: Moved the debugger exception handling here from
3844         ../metadata/mono-debug-debugger.c.
3845
3846         * debug-mini.h
3847         (MonoDebuggerExceptionAction): New exception typedef.
3848
3849         * debug-mini.c
3850         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
3851
3852         * exceptions-amd64.c
3853         (mono_amd64_throw_exception): Use the new debugger exception
3854         handling code.
3855
3856         * mini-exceptions.c
3857         (mono_handle_exception_internal): Don't call
3858         mono_debugger_unhandled_exception() here.
3859
3860 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
3861
3862         * mini.c aot-compiler.c: Update after the changes to 
3863         mono_marshal_get_runtime_invoke ().
3864
3865         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
3866         Virtual generic methods might not have method->slot set, work around
3867         that.
3868
3869         * generics.cs: Add a test.
3870
3871 2009-03-02  Geoff Norton  <gnorton@novell.com>
3872
3873         * mini.c:
3874         * driver.c: Allow signal chaining of SIGFPE as well.
3875
3876 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
3877
3878         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
3879         this since it now receives the method not its generic context in the
3880         IMT reg.
3881
3882         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
3883         generic/imt thunks where some entries branch through the vtable, while
3884         other entries branch directly.
3885
3886         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
3887
3888         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
3889         support for interface methods as well.
3890
3891         * mini-trampolines.c: Add support for virtual generic methods in interfaces
3892         using the normal IMT thunks.
3893
3894         generics.cs: Add new tests.
3895         
3896         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
3897         the generic inst to the generic imt thunks. This fixes AOT support, 
3898         improves consistency with the normal IMT thunks, and makes it easier to
3899         add support for interface generic virtual methods later.
3900
3901         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
3902         
3903 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
3904
3905         * driver.c (mono_set_signal_chaining): New public API function to enable
3906         signal chaining on POSIX platforms.
3907
3908         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
3909         (si@lindenlab.com) to implement signal chaining. The original patch was
3910         contributed under the MIT X/11 license:
3911         https://bugzilla.novell.com/show_bug.cgi?id=318894
3912
3913 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
3914
3915         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
3916         too until it can be made to run on amd64.
3917
3918 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
3919
3920         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
3921         to  get_generic_context_from_code () + get_call_info () if possible.
3922
3923 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
3924
3925         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
3926         suspend-on-sigsegv functionality.
3927
3928         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
3929         to suspend when a native SIGSEGV is received. This is useful for debugging
3930         crashes which don't happen under gdb, since a live process contains more
3931         information than a core file.
3932
3933         * mini-exceptions.c (mono_print_thread_dump): Use 
3934         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
3935
3936         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
3937
3938         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
3939         
3940         * basic-float.cs: Disable the tests which currently fail on amd64.
3941
3942         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
3943         value to mono_arch_patch_callsite () to fix crashes.
3944         
3945         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
3946
3947 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
3948
3949         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
3950         nop code by patching the call address to point to the nullified class init
3951         trampoline, as the former does not seem to be safe on SMP machines.
3952
3953 2009-02-23  Mark Probst  <mark.probst@gmail.com>
3954
3955         * mini-ops.h: Fix the argument types for a few x86 opcodes where
3956         they were wrong.
3957
3958 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
3959
3960         * basic-float.cs basic-calls.cs: Fix warnings.
3961
3962 2009-02-22  Mark Probst  <mark.probst@gmail.com>
3963
3964         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
3965         correct frame pointer in the LMF.  Should fix #478394.
3966
3967 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
3968
3969         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
3970
3971         * image-writer.c: Make the binary writer less verbose.
3972
3973 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
3974
3975         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
3976         are called from runtime invoke wrappers.
3977
3978 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
3979
3980         * cpu-ppc.md (store_memindex): Increase the size of this.
3981
3982 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
3983
3984         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
3985
3986         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
3987
3988         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
3989         OP_LCONV_TO_R_UN.
3990
3991         Last fix for of #467201.
3992
3993
3994 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
3995
3996         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
3997
3998         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
3999         and long_conv_to_r8_2:
4000
4001         Fixed part of #467201.
4002
4003 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4004
4005         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4006
4007         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
4008         conversion to 32 bits.
4009
4010         * cpu-x86.md: Increase the size of int_conv_to_r4.
4011
4012         * basic-float.cs: Add a test for this.
4013
4014         Fixed part of #467201.
4015
4016 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4017
4018         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4019
4020         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
4021         conversion to 64 bits.
4022
4023         * basic-float.cs: Add a test for this.
4024
4025         Fixed part of #467201.
4026
4027 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4028
4029         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4030
4031         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
4032         This behavior is compatible with MS.
4033
4034         * iltest.il.in: Add a test for this.
4035
4036         Fixed part of #467201.
4037
4038 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4039
4040         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4041
4042         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
4043         change the precision of the value.
4044
4045         * cpu-x86.md: Define len for float_conv_to_r4.
4046
4047         * basic-float.cs: Add a test for this.
4048
4049         Fixed part of #467201.
4050
4051 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4052
4053         * mini.c: Adjust locking order to the new semantics where the loader lock
4054         comes first.
4055
4056 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
4057
4058         * aot-runtime.c:
4059         * mini-amd64.c:
4060         * mini-arm.c:
4061         * mini-ia64.c:
4062         * mini-mips.c:
4063         * mini-ppc.c:
4064         * mini-sparc.c:
4065         * mini-trampolines.c:
4066         * mini-x86.c:
4067         * mini.c:
4068         * tramp-alpha.c:
4069         * tramp-amd64.c:
4070         * tramp-arm.c:
4071         * tramp-hppa.c:
4072         * tramp-ia64.c:
4073         * tramp-mips.c:
4074         * tramp-ppc.c:
4075         * tramp-s390.c:
4076         * tramp-s390x.c:
4077         * tramp-sparc.c:
4078         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
4079
4080 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4081
4082         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
4083         as it is incorrect.
4084
4085 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4086
4087         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
4088         for cctors if needed.
4089
4090 2009-02-17  Mark Probst  <mark.probst@gmail.com>
4091
4092         * mini-ppc.c: Fix build on Darwin.
4093
4094 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4095
4096         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
4097         version instead of 3 as valgrind doesn't like version 3.
4098
4099         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
4100
4101         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
4102         usable for hashing methods.
4103         (emit_extra_methods): Use the new hash to avoid putting every method in the
4104         same hash bucket.
4105
4106         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
4107
4108         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
4109         whenever a method ref could match a method.
4110         
4111         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
4112         test to fail.
4113         
4114         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
4115         methods refs.
4116
4117         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
4118
4119         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
4120         the encoding buffer.
4121
4122         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
4123         mono_method_get_header () on inflated methods as an optimization.
4124
4125 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4126
4127         * ssa.c (fold_ins): Fix another crash if the instruction following the
4128         switch was optimized away.
4129
4130 2009-02-16  Mark Probst  <mark.probst@gmail.com>
4131
4132         Contributed under the terms of the MIT/X11 license by Steven
4133         Munroe <munroesj@us.ibm.com>.
4134
4135         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
4136
4137 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4138
4139         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
4140         around the mono_domain_alloc calls, it is now done by the functions
4141         themselves.
4142
4143         * aot-compiler.c (compile_method): Only add wrappers referenced by
4144         the method if compiling with full AOT.
4145         (mono_compile_assembly): Error out if --aot=full is specified on
4146         a platform where it is not supported.
4147
4148         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
4149         on ARM too.
4150
4151         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
4152         AOT support.
4153
4154         * aot-runtime.c (load_named_code): Handle 
4155         mono_arm_throw_exception_by_token.
4156
4157         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
4158
4159         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
4160         unaligned.
4161
4162         * Makefile.am (fullaotcheck): Exit if a test fails.
4163
4164         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
4165         on ARM.
4166         (mono_compile_assembly): Handle the assembler failing.
4167
4168         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
4169         accepting subsections of .bss.
4170
4171         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
4172         was optimized away.
4173
4174         * aot-compiler.c: Remove some unused includes.
4175         
4176         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
4177         now in MonoImageWriter.
4178
4179         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
4180         code sequence which matches a non-virtual call. Fixes #472654.
4181
4182 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
4183
4184         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
4185         xdebug code.
4186         
4187         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
4188         use the image/dwarf writers directly.
4189
4190         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
4191         field.
4192
4193         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
4194         MonoDwarfWriter.
4195
4196         * image-writer.h: Fix some typos.
4197
4198         * dwarfwriter.h dwarfwriter.c: New files.
4199         
4200         * aot-compiler.c: Extract the DWARF info writing functionality into a 
4201         separate module.
4202
4203         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
4204         argument to return unwind info.
4205
4206         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
4207
4208         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
4209         
4210         * aot-runtime.c (decode_method_ref): Add a case for 
4211         MONO_AOT_METHODREF_WRAPPER_NAME.
4212
4213         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
4214         for AOT.
4215
4216         * aot-compiler.c (encode_method_ref): Use the new constants.
4217
4218         * aot-runtime.c (decode_method_ref): Ditto.
4219
4220         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
4221         be compiled, not the icall itself.
4222
4223 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
4224
4225         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
4226         using decode_method_ref ().
4227
4228         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
4229         convert it to an in32. Fixes #475859.
4230
4231         * arrays.cs: Add a test.
4232
4233 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
4234
4235         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
4236         OP_LCONV_TO_U2.
4237
4238         * basic-long.cs: Add a test.
4239
4240 2009-02-12  Mark Probst  <mark.probst@gmail.com>
4241
4242         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
4243         remove the frame pointer in leaf methods which don't receive any
4244         arguments, don't throw exceptions and don't do dynamic stack
4245         allocations.
4246
4247 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
4248
4249         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
4250         the fail_tramp changes. Hopefully fixes #475132.
4251
4252 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
4253
4254         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
4255         instead of mono_metadata_signature_dup_full.
4256
4257 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
4258
4259         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
4260         for processing jump tables. Fixes #473787.
4261
4262 2009-02-11  Mark Probst  <mark.probst@gmail.com>
4263
4264         * mini-generic-sharing.c: mini_method_get_context() just calls
4265         mono_method_get_context_general() now.
4266
4267         * mini.c, mini.h: Moved get_object_generic_inst(),
4268         construct_object_context_for_method() and
4269         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
4270
4271 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
4272
4273         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
4274         basic block fell through to its successor bblock without a branch. Fixes
4275         #474718.
4276
4277         * iltests.il.in: Add a test.
4278         
4279         * aot-compiler.c (encode_method_ref): Encode methods of array types.
4280         (can_encode_patch): We can now handle arrays of generic parameters and
4281         array methods.
4282
4283         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
4284
4285         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
4286         the AOT file to avoid some #ifdefs in aot-runtime.c
4287
4288         * mini.h: Bump AOT file format version.
4289
4290 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4291
4292         * Makefile.am (fullaotcheck): Make this run the tests.
4293
4294         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
4295
4296 2009-02-10  Mark Probst  <mark.probst@gmail.com>
4297
4298         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
4299         individually.  Fixes #473482.
4300
4301 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4302
4303         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4304
4305 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
4306
4307         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
4308         (mono_compile_assembly): Hush compile warnings about
4309         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
4310         code path.
4311
4312 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4313
4314         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
4315
4316         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
4317
4318         * aot-compiler.c: Fix arm support.
4319
4320         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
4321         img_writer_emit_unset_mode () function.
4322
4323         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
4324         (mono_unwind_get_dwarf_pc_reg): Ditto.
4325
4326         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
4327         Move almost all platform specific code to a set of arch_ functions, 
4328         and document them to ease porting.
4329         
4330         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
4331
4332         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
4333
4334         * aot-compiler.c: Extract the image writing functionality into a separate
4335         module to reduce the size of this file.
4336
4337 2009-02-09  Geoff Norton  <gnorton@novell.com>
4338
4339         * mini-s390.c: Fix the signature of emit_sig_cookie.
4340
4341 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
4342
4343         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
4344
4345         * aot-runtime.c (is_shared_got_patch): Ditto.
4346
4347         * aot-runtime.c (load_named_code): Cope with the fact that 
4348         decode_got_entry () won't decode the patch fully if its corresponding got
4349         entry is already filled.
4350         
4351         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
4352         Initialize *ji.
4353         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
4354
4355         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
4356         as the moving pointer instead of 'buf' for consistency with the rest of the
4357         codebase.
4358         (mono_arch_create_monitor_exit_trampoline): Ditto.
4359
4360         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
4361         generic_class_init trampolines.
4362         (add_generic_class): Extract some code from add_generic_instances () into a
4363         separate function so it can be called from other places too.
4364         (compile_method): Call add_generic_class () for the classes of inflated methods
4365         referenced by the method.
4366         (can_encode_patch): Allow references to generic parameters.
4367
4368         * aot-runtime.c: Add support the patches required by the new trampolines.
4369         
4370         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
4371         support.
4372
4373         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
4374         full-aot support.
4375
4376         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
4377         this from get_throw_pending_exception, make the signature full aot compatible.
4378
4379         * Makefile.am (fullaotcheck): New target to run full-aot tests.
4380
4381         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
4382
4383         * exceptions.cs: Add a test.
4384
4385 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4386
4387         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
4388         use the DWARF_DATA_ALIGN constant instead.
4389
4390         * exception-<ARCH>.c: Update after the above change.
4391
4392         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
4393         dwarf unwinder.
4394
4395         * mini-arm.c: Enable the dwarf unwinder.
4396
4397         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
4398         instead of mono_class_setup_vtable ().
4399
4400 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4401
4402         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
4403         dwarf unwinder.
4404
4405         * mini-x86.h: Enable the dwarf unwinder.
4406
4407 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
4408
4409         Fix mcs/tests/test-7.cs
4410         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
4411         2009-02-03.
4412
4413 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4414
4415         * mini.c (print_jit_stats): Remove some unused statistics.
4416
4417 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4418
4419         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
4420
4421 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4422
4423         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
4424         the method we get from mono_object_get_virtual_method() because
4425         that function does it properly, now.
4426
4427 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4428
4429         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
4430         opcodes. Fixes #472775.
4431
4432 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4433
4434         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
4435         fact that mono_find_jit_info() sometimes returns the context
4436         corresponding to the jit info in new_ctx.  Fixes #472600.
4437
4438 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4439
4440         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
4441         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
4442         klass->enum_basetype directly.
4443
4444         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
4445         enum subtypes.
4446
4447         * unwind.c: Avoid 0 sized arrays.
4448
4449 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4450
4451         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
4452         size on systems with 64k pages. Fixes #471389.
4453
4454 2009-02-04  Mark Probst  <mark.probst@gmail.com>
4455
4456         Contributed under the terms of the MIT/X11 license by Steven
4457         Munroe <munroesj@us.ibm.com>.
4458
4459         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
4460         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
4461         necessary.
4462
4463 2009-02-04  Mark Probst  <mark.probst@gmail.com>
4464
4465         Contributed under the terms of the MIT/X11 license by Steven
4466         Munroe <munroesj@us.ibm.com>.
4467
4468         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
4469         comparison fix.
4470
4471         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
4472         The trampoline can be longer on PPC64.
4473
4474 2009-02-04  Mark Probst  <mark.probst@gmail.com>
4475
4476         Contributed under the terms of the MIT/X11 license by Steven
4477         Munroe <munroesj@us.ibm.com>.
4478
4479         * mini-ppc.c: Compiler warning fixes and trivial code
4480         simplifications.
4481
4482 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4483
4484         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
4485         ins->dreg which could be a hardware register, not a vreg.
4486
4487         * aot-compiler.c (emit_method_dwarf_info): Ditto.
4488         
4489         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
4490         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
4491
4492         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
4493         
4494         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
4495         ->dreg, that is not the vreg we are looking for.
4496
4497         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
4498
4499         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
4500         LIVERANGE_END.
4501
4502         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
4503         strange crashes.
4504
4505 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
4506
4507         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
4508
4509         * aot-compiler.c (emit_line_number_info): Fix line number emission when
4510         the line diff is 0.
4511
4512         * aot-compiler.c: Add xdebug support on x86.
4513
4514         * unwind.c: Add x86 support.
4515         
4516         * aot-compiler.c (emit_exception_debug_info): Control the emission of
4517         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
4518
4519         * mini.c (mini_method_compile): Ditto.
4520         
4521         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
4522         the variable index.
4523
4524         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
4525         which mimic .push_section/.pop_section in GAS.
4526         
4527         * aot-compiler.c: Emit precise live range information for variables.
4528
4529         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
4530
4531         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
4532         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
4533         them.
4534
4535         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
4536         the live ranges of variables.
4537
4538         * mini.h (struct MonoMethodVar): Add two fields containing the live range
4539         of the variable in terms of native offsets.
4540
4541 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
4542
4543         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
4544         
4545 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4546
4547         Contributed under the terms of the MIT/X11 license by Steven
4548         Munroe <munroesj@us.ibm.com>.
4549
4550         * exceptions-ppc.c (restore_regs_from_context): Correct operand
4551         order (offset then base reg) for ppc_load_multiple_regs.
4552         (emit_save_saved_regs) Correct operand order for
4553         ppc_store_multiple_regs.
4554         (mono_arch_get_call_filter): Correct operand order for
4555         ppc_load_multiple_regs.
4556
4557         * mini-ppc.c (emit_memcpy): Fix operand order for
4558         ppc_load_reg_update and ppc_store_reg_update.
4559         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
4560         (mono_arch_emit_epilog): Correct operand order for
4561         ppc_load_multiple_regs.
4562
4563         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
4564         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
4565
4566 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4567
4568         * cpu-ppc64.md: Fixed storer4_memindex length.
4569
4570 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
4571
4572         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
4573         line number info.
4574         
4575         * aot-compiler.c (emit_line_number_info): Optimize this.
4576
4577 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
4578
4579         * aot-compiler.c: Disassemble tokens in the IL disassembly.
4580         
4581         * aot-compiler.c: Add debug info for methods without debug info by
4582         emitting an IL file and having the line number info referencing that file.
4583
4584         * aot-compiler.c: Optimize the size of the generated line number info.
4585
4586         * aot-compiler.c: Emit line number info in xdebug mode.
4587
4588         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
4589         million arguments.
4590
4591 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
4592
4593         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
4594
4595         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
4596         is used.
4597
4598 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
4599
4600         * basic-calls.cs: Test for the weird crash found on arm.
4601         
4602 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
4603
4604         * cpu-arm.md: Increase the size of storer8_membase_reg and
4605         loadr8_membase_reg to 24 bytes to accomodate the extra add.
4606
4607         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
4608         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
4609         reg to LR otherwise we'll be loading/storing from just the offset.
4610
4611 2009-01-30  Miguel de Icaza  <miguel@novell.com>
4612
4613         Question: if we are storing gint32's inside the "*native_offset",
4614         should we change the signature to "gint32 *native_offset" to
4615         ensure that we do not have type definition problems?
4616         
4617         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
4618         an int * as this is what the other function expects, causes
4619         problems with Freescale's compiler that defined int32_t to be a
4620         long and makes int incompatible 
4621
4622 2009-01-30  Miguel de Icaza  <miguel@novell.com>
4623
4624         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
4625         filename conflict with bjam.
4626
4627 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
4628
4629         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
4630         as it might use decomposed ops.
4631
4632 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
4633
4634         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
4635
4636         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
4637         is defined.
4638
4639         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
4640
4641         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
4642         offsets.
4643
4644         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
4645         way registers are stored in MonoContext on arm.
4646
4647         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
4648         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
4649
4650         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
4651
4652         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
4653
4654         * mini.c (mini_init): Register mono_isfinite.
4655
4656         * jit-icalls.c (mono_isfinite): New jit icall.
4657
4658         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
4659         
4660         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
4661         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
4662         the parent frame.
4663
4664 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
4665
4666         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
4667         separate frame and stack pointers, so we must use FP to find the register
4668         spill area.
4669         The FP reg is retrieved from the MonoContext::regs array.
4670
4671 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
4672
4673         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
4674         as FPA requires it.
4675
4676 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
4677
4678         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
4679         return R4 and R8 when not running under softfloat.
4680
4681         Fixes basic-calls.exe
4682
4683 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
4684
4685         * mini-arm.c: Implement some overflow opcodes.
4686
4687 2009-01-29  Miguel de Icaza  <miguel@novell.com>
4688
4689         * ssa.c: handle another alloca.h
4690
4691         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
4692         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
4693         MONO_ARCH_USE_SIGACTION. 
4694
4695         * aot-runtime.c, mini-exceptions.c: Replace platform define with
4696         capability defines.
4697
4698         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
4699
4700         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
4701         PPC targets as sigaction does not exist on all platforms, define
4702         this on a per-platform basis.
4703
4704         Instead of erroring out if the platform is not defined, include
4705         mini-ppc-os.h, and expect that the OS specific setting provides
4706         the required information.   
4707
4708 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
4709
4710         * aot-compiler.c: Fix --enable-minimal=aot.
4711
4712 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
4713
4714         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
4715         previous change.
4716
4717 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
4718
4719         * exceptions-arm.c: Fix warnings.
4720
4721         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
4722         ARM.
4723
4724         * mini-x86.c: Fix --enable-minimal=jit build.
4725
4726         * mini.c: Really fix --enable-minimal=jit build.
4727         
4728         * mini.c (construct_object_context_for_method): Move this outside
4729         the DISABLE_JIT block to fix the --enable-minimal=jit build.
4730
4731         "Backported" of r124984 from 2.0 branch.
4732         
4733         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
4734
4735         "Backport" of r124977 + r124978 from 2.0 branch.
4736         
4737         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
4738         to avoid calling mono_exception_from_token () from the throw trampoline.
4739         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
4740         for throwing corlib exceptions, this fixes full-aot support for corlib
4741         exceptions.
4742
4743         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
4744
4745 2009-01-29  Miguel de Icaza  <miguel@novell.com>
4746
4747         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
4748         part of the changes to split the code in mini into operating
4749         system specific files.
4750
4751         This patch was done by copying mini.c to the respective files to
4752         preserve SVN history.
4753
4754 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
4755
4756         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
4757
4758 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
4759
4760         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
4761         remoting-invoke-with-check wrappers of shared methods.
4762
4763         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
4764
4765 2009-01-27  Mark Probst  <mark.probst@gmail.com>
4766
4767         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
4768         optimization if the top of stack is the last instruction in the
4769         bblock.  Otherwise it might have been used after its definition.
4770         Fixes #469742.
4771
4772 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
4773
4774         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
4775         method as well when get_vcall_slot () fails to match a code sequence.
4776
4777         * mini-arm.c: Fix the android build, which doesn't have
4778         __aeabi_read_tp.
4779
4780 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
4781
4782         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
4783         the s390x build.
4784
4785 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
4786
4787         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
4788
4789 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
4790
4791         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
4792         and put its id into jinfo->used_regs. This is only used on amd64,
4793         which is currently the only platform generating unwind info.
4794
4795         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
4796         the dwarf unwinder. This is required to correctly handle async exceptions
4797         like thread abort and stack overflows, which can happen while a method
4798         is in the middle of its prolog or epilog.
4799         
4800         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
4801         the unwind info belonging to an AOTed method.
4802
4803         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
4804         into cfg->unwind_ops.
4805         
4806         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
4807
4808         * mini.c (mini_init): Call mono_unwind_init ().
4809         (mini_cleanup): Call mono_unwind_cleanup ().
4810
4811         * unwind.c: Add functions for managing a set of unwind info entries, allowing
4812         unwind info to be shared between methods.
4813
4814         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
4815         saved in the LMF.
4816
4817         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
4818         get_throw_pending_exception () to avoid initialization races.
4819
4820         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
4821         mono_arch_exceptions_init () function.
4822
4823         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
4824
4825 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
4826
4827         * mini.c (mono_get_domain_intrinsic): New helper function.
4828         (mono_get_thread_intrinsic): Ditto.
4829
4830         * mini-arm.c mini-ia64.c: Use the new helper functions.
4831         
4832         * method-to-ir.c (mono_method_to_ir): Fix the comment for
4833         the last constrained_call change, since it is needed in the non-AOT
4834         case as well.
4835
4836         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
4837         
4838         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
4839         mono_get_lmf_addr () on arm eabi linux.
4840
4841 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
4842
4843         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
4844         code sequence which matches a non-virtual call.
4845
4846 2009-01-23  Mark Probst  <mark.probst@gmail.com>
4847
4848         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
4849         stack pointer (r1).
4850
4851 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
4852
4853         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
4854         runtime-invoke wrappers, since they are also shared based on signature.
4855
4856 2009-01-22  Mark Probst  <mark.probst@gmail.com>
4857
4858         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
4859         info from the (correct) context.
4860
4861 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
4862
4863         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
4864         
4865         * unwind.c (mono_unwind_frame): New function to unwind through a frame
4866         using dwarf unwinding info. Not yet used.
4867
4868         * mini.c (mini_init): When using xdebug, disable freeing of domains.
4869
4870 2009-01-21  Mark Probst  <mark.probst@gmail.com>
4871
4872         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
4873         descriptors.
4874
4875         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
4876         special case and handle mono_arch_delegate_invoke_impl() returning
4877         function descriptors.
4878
4879         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
4880         trampolines return function descriptors, too.
4881
4882 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
4883
4884         * method-to-ir.c (handle_alloc): Avoid generic instances in the
4885         out_of_line optimization.
4886
4887 2009-01-21  Martin Baulig  <martin@ximian.com>
4888
4889         * mini.h
4890         (MonoCompile): Added `disable_deadce_vars' to disable removing
4891         unused variables.
4892
4893         * mini.c
4894         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
4895         inside the debugger.
4896
4897         * liveness.c (mono_analyze_liveness): Don't remove any unused
4898         variables if `cfg->disable_deadce_vars' is set.
4899
4900 2009-01-21  Mark Probst  <mark.probst@gmail.com>
4901
4902         * method-to-ir.c: Only apply exception constructor optimization if
4903         the the method actually belongs to an exception class.  Fixes
4904         #467456.
4905
4906 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
4907
4908         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
4909         change inside a #ifdef __mono_ppc64__.
4910
4911         * aot-compiler.c (compile_method): Remove the previous limitation.
4912
4913         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
4914         on type variables in AOTed code.
4915         
4916         * aot-compiler.c (compile_method): Skip generic methods having type 
4917         constraints on their generic parameters.
4918
4919         * aot-compiler.c (compile_method): Check for methods which cannot be
4920         encoded inside RGCTX_FETCH patches as well.
4921
4922         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
4923         build.
4924
4925 2009-01-20  Mark Probst  <mark.probst@gmail.com>
4926
4927         * method-to-ir.c: Force the vtable variable in shared generic code
4928         for the case that they might show up on a stack trace where they
4929         are needed.
4930
4931         * mini-exceptions.c: Save and use generic sharing info as well as
4932         IP in stack traces to resolve shared generic instantiations.
4933
4934 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
4935
4936         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
4937         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
4938
4939 2009-01-20  Mark Probst  <mark.probst@gmail.com>
4940
4941         * method-to-ir.c: Do generic sharing for array constructors.
4942
4943 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
4944
4945         * mini-exceptions.c (mono_print_thread_dump): Add information
4946         about the thread state using wapi_current_thread_desc.
4947
4948 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
4949
4950         * basic-simd.cs: Tests for the new constructors. 
4951
4952 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
4953
4954         * mini-ops.h: Added OP_EXPAND_*
4955
4956         * cpu-x86.md: Same.
4957
4958         * mini-x86.c (mono_arch_output_basic_block): Same.
4959         
4960         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
4961
4962 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
4963
4964         * iltests.il.in: Add a test for #467385.
4965
4966 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4967
4968         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
4969         thread been cleaned up is not the same currently in execution.
4970
4971         Fixes appdomain-unload crashes on windows, osx and linux variants
4972         without the __thread keyword.
4973
4974 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
4975
4976         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
4977         (koush@koushikdutta.com). Implement this for android.
4978
4979         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
4980         begins with a digit.
4981
4982         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
4983         mono_marshal_get_write_barrier ().
4984
4985 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4986
4987         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
4988         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
4989         that pass them on a register pair.
4990
4991         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
4992         test was crashing due to that.
4993
4994 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
4995
4996         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
4997         trampoline code. Include ucontext.h only if available.
4998
4999 2009-01-15  Mark Probst  <mark.probst@gmail.com>
5000
5001         * mini.c: mono_domain_lookup_shared_generic() takes an open method
5002         and doesn't check whether it's sharable, like it was before
5003         removing the shared generics hash.  This brings IronPython
5004         performance back to what it was before that change.
5005
5006 2009-01-14  Mark Probst  <mark.probst@gmail.com>
5007
5008         * method-to-ir.c: Handle delegate invocation optimization earlier,
5009         otherwise it would be handled (much more slowly) by the
5010         final/sealed optimization.
5011
5012 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5013
5014         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
5015         domain is not set. Fixes #465864.
5016
5017 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5018
5019         * method-to-ir.c: Don't stop sharing of generic methods with catch
5020         clauses - we already handle those.
5021
5022 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5023
5024         * mini.c, mini.h: lookup_generic_method() is now
5025         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
5026         making the shared_generics_hash obsolete.
5027
5028 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5029
5030         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
5031         use the red zone.  Make room on the stack first and then use it,
5032         not the other way around.
5033
5034 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5035
5036         * mini.c (mini_init): Call mono_xdebug_init ().
5037
5038         * aot-compiler.c (mono_xdebug_init): Make this non-static.
5039
5040 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
5041
5042         * TestDriver.cs: Add an --iter argument to run tests multiple times.
5043
5044         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
5045         trampolines.
5046
5047         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
5048         debug+unwind info for trampolines.
5049
5050         * mini.c (mono_create_unwind_op): New helper function.
5051
5052         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
5053
5054 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
5055
5056         * aot-compiler.c: Fix the build.
5057
5058 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5059
5060         * Makefile.am: Update dtrace-prelink.sh location.
5061
5062 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
5063
5064         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
5065         optimization. Fixes #464520.
5066
5067 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
5068
5069         * mini-amd64.c : Adding code to save/restore non-volatile registers
5070            on Winx64.
5071
5072         * exceptions-amd64.c : Adding code to save/restore non-volatile 
5073           registers on Winx64.
5074
5075         Contributed under MIT/X11 license.
5076
5077 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
5078
5079         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
5080         __GNUC_MINOR__ which can break when the major version changes.
5081
5082 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
5083
5084         * basic-simd.cs: Add tests for usage of the sizeof opcode.
5085
5086 2009-01-07  Geoff Norton  <gnorton@novell.com>
5087
5088         * helpers.c:  Allow mono -v -v -v to work on darwin.
5089
5090 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
5091
5092         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
5093           pattern. 
5094
5095         Contributed under MIT/X11 license.
5096
5097 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
5098
5099         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
5100         instead of directly accessing type->data.klass. Fixes #462016.
5101         (mono_allocate_stack_slots_full): Ditto.
5102
5103         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
5104         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
5105
5106         * aot-compiler.c (emit_plt): Fix ARM build.
5107
5108 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
5109
5110         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
5111         
5112         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
5113         change.
5114
5115         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
5116         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
5117         #463357.
5118
5119         * iltests.il.in: Add a regression test.
5120
5121 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5122
5123         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
5124
5125 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5126
5127         * basic-simd.cs: Add a regression test for #462457.
5128
5129 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5130
5131         * mini-ops.h: Add a definition of XPHI.
5132
5133         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
5134
5135         * ssa.c (op_phi_to_move): Handle XPHI.
5136
5137         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
5138
5139         Fixes #462457
5140
5141 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5142
5143         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
5144
5145 2008-12-31  Geoff Norton  <gnorton@novell.com>
5146
5147         * mini-ppc.c: The prolog size allocated can be too small for darwin
5148         ppc32 under certain circumstances.  Also fix a small logic bug.
5149
5150 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
5151
5152         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
5153         while loading AOT methods.
5154
5155         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
5156         since only the former is nulled out after a successful cast. This prevents
5157         crashes with rethrown exceptions when using --debug=casts.
5158
5159 2008-12-24  Mark Probst  <mark.probst@gmail.com>
5160
5161         * mini.h: New macro for checking whether a method is final,
5162         i.e. whether the method or its class is marked final.
5163
5164         * method-to-ir.c: Use the new macro for all final-checks
5165         consistently.  Fixes the crash in the System.ServiceModel tests.
5166
5167 2008-12-23  Mark Probst  <mark.probst@gmail.com>
5168
5169         * mini-exceptions.c (get_exception_catch_class): Corrected another
5170         overly strict assertion.
5171
5172 2008-12-23  Mark Probst  <mark.probst@gmail.com>
5173
5174         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
5175         Clobbering it is not allowed because the caller might use it as
5176         the vtable register in the interface call.
5177
5178 2008-12-19  Mark Probst  <mark.probst@gmail.com>
5179
5180         * mini-exceptions.c (get_exception_catch_class): Corrected an
5181         overly strict assertion.
5182
5183 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
5184         
5185         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
5186
5187         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
5188
5189         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
5190
5191         * cpu-mips.md: correct lengths for certain long_ opcodes.
5192
5193         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
5194
5195         * 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().
5196         
5197 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
5198
5199         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
5200         
5201 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
5202         
5203         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
5204         
5205 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
5206
5207         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
5208         next basic block.
5209         
5210 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
5211
5212         * 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
5213
5214         * 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)
5215         
5216 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
5217         
5218         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
5219         
5220 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
5221
5222         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
5223         gshared code. Fixes #458947.
5224
5225         * generics.cs: Add a test.
5226
5227 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
5228         
5229         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5230         
5231         * mini-mips.c: first pass n32 code generation.
5232
5233         * mini-mips.h: datatypes and defines for n32 support.
5234
5235         * exceptions-mips.c: first pass n32 code generation.
5236         
5237         * tramp-mips.c: first pass n32 code generation.
5238         
5239         * cpu-mips.md: add long_ opcodes.
5240         
5241 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
5242
5243         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5244
5245         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5246         
5247         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5248         
5249         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5250
5251         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5252
5253         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5254
5255         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5256
5257         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5258
5259         * helpers.c: for mips/n32, don't pass -mips32 to objdump
5260
5261 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
5262
5263         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
5264
5265 2008-12-12  Andres G. Aragoneses  <aaragoneses@novell.com>
5266
5267         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
5268
5269 2008-12-12  Mark Probst  <mark.probst@gmail.com>
5270
5271         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
5272         descriptors for helper functions directly in front of the code.
5273
5274 2008-12-11  Mark Probst  <mark.probst@gmail.com>
5275
5276         * method-to-ir.c: Removed an unnecessary assertion.
5277
5278 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5279
5280         * method-to-ir.c: Merge SGEN changes from the old JIT.
5281
5282 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5283
5284         * driver.c (compile_all_methods_thread_main): Handle failure of
5285         mono_get_method ().
5286
5287 2008-12-10  Mark Probst  <mark.probst@gmail.com>
5288
5289         * mini-ppc.c: Merged with mini-ppc64.c.
5290
5291         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
5292
5293         * Makefile.am: Use the same sources for PPC and PPC64.
5294
5295         * mini-ppc64.c: Removed.
5296
5297 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
5298
5299         * branch-opts.c (remove_block_if_useless): Extract fall through detection
5300         code to mono_bb_is_fall_through.
5301         
5302         * branch-opts.c (mono_remove_critical_edges): Same.
5303
5304 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
5305
5306         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
5307         expect that an OP_BR_REG will be there.
5308
5309 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
5310
5311         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
5312         for the many branch ops. The original check miss OP_BR_REG.
5313
5314         Fixes #457574.
5315         
5316 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
5317
5318         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
5319
5320 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5321
5322         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
5323         while holding the aot lock.
5324
5325 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
5326
5327         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
5328         
5329 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5330
5331         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
5332           to release all runtime callable wrappers held by the runtime.
5333
5334         Contributed under MIT/X11 license.
5335
5336 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5337
5338         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
5339           for Winx64.
5340
5341         Contributed under MIT/X11 license.
5342
5343 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5344
5345         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
5346         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
5347
5348 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
5349
5350         * cpu-mips.md: fix ckfinite length
5351
5352         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
5353         (mono_arch_lowering_pass): cleanup, rearrange for clarity
5354         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
5355         
5356 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
5357
5358         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
5359         
5360 2008-12-08  Geoff Norton  <gnorton@novell.com>
5361
5362         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
5363         size by 8 bytes as well.
5364
5365 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5366
5367         * basic-simd.cs: Fix method names for Vector16b.
5368         
5369 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5370
5371         * basic-simd.cs: Fix method names for Vector16sb.
5372
5373 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5374
5375         * basic-simd.cs: Fix method names for Vector8us.
5376         
5377 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5378
5379         * basic-simd.cs: Fix method names for Vector8s.
5380         
5381 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5382
5383         * basic-simd.cs: Fix method names for Vector4ui.
5384
5385 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5386
5387         * basic-simd.cs: Fix method names for Vector2l.
5388
5389 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5390
5391         * basic-simd.cs: Fix method names for Vector2d.
5392
5393 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5394
5395         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
5396         that are extension methods.
5397
5398 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5399
5400         * basic-simd.cs: Fix method names for Vector4f.
5401
5402 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
5403
5404         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
5405         as such. Fixes #456669.
5406
5407 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
5408
5409         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
5410         
5411 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
5412
5413         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
5414         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
5415         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
5416         (mips_adjust_stackframe): handle FP spills
5417                 
5418         * mini-ops.h: add mips_mtc1_s2
5419         
5420         * cpu-mips.md: add mips_mtc1_s2
5421         
5422 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
5423
5424         * unwind.c: New file, move the unwind info encoding functions here from
5425         aot-compiler.c, so they could be used at runtime too.
5426
5427 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
5428
5429         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
5430         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
5431         
5432 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
5433
5434         * mini-mips.c: cleanup warnings
5435         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
5436         (mips_adjust_stackframe): handle case of taking the address of stack locals
5437         
5438 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
5439
5440         * aot-compiler.c: Implement a few functions missing from the asm writer.
5441         (emit_method_code): Only write symbols for methods when using the bin
5442         writer, since the assembler can't deal with the characters in our method
5443         names.
5444
5445         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
5446
5447         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
5448         call.
5449
5450         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
5451         a bit to also restore %rax.
5452
5453 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5454
5455         * mini-ppc.c: Some simple merges from mini-ppc64.c.
5456
5457 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
5458
5459         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
5460         arguments.
5461
5462 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5463
5464         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
5465
5466         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
5467         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
5468
5469         * exceptions-ppc64.c: Removed.
5470
5471         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
5472
5473 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5474
5475         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
5476         tramp-ppc64.c.
5477
5478         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
5479
5480         * tramp-ppc64.c: Removed.
5481
5482 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
5483
5484         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
5485         the TYPESPEC table.
5486
5487 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5488
5489         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
5490
5491         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
5492         mini-ppc.h instead of mini-ppc64.h.
5493
5494         * mini-ppc64.h: Removed.
5495
5496 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5497
5498         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
5499         
5500         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
5501         
5502 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5503
5504         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
5505         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
5506         code easier.
5507
5508 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5509
5510         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
5511
5512 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5513
5514         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
5515
5516 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5517
5518         * basic-simd.cs: Tests for operator == and != on Vector4f.
5519
5520 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5521
5522         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
5523
5524         * simd-intrinsics.c: Kill useless enum.
5525
5526 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5527
5528         * cpu-mips.md: add long_conv_to_ovf_i4_2
5529         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
5530
5531 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5532
5533         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
5534         
5535         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
5536
5537 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5538
5539         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
5540         
5541 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
5542
5543         * basic-simd.cs: Add tests for new methods.
5544
5545 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
5546
5547         * simd-intrinsics.c: Add support for operator == and !=
5548         on Vector4(u)i.
5549
5550         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
5551
5552 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
5553
5554         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
5555
5556 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
5557
5558         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
5559
5560         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
5561         MONO_PATCH_INFO_ICALL_ADDR.
5562
5563         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
5564
5565         * aot-compiler.c: Resurrect full-aot support.
5566
5567 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5568
5569         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
5570         
5571 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5572
5573         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
5574         
5575 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
5576
5577         * basic-simd.cs: Fix tests to work under ppc.
5578         Remove tests for methods that will be removed.
5579
5580 2008-12-03  Mark Probst  <mark.probst@gmail.com>
5581
5582         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
5583         generic type (via a typedef or typeref) correctly.
5584
5585 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
5586
5587         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
5588         diagnose an assertion failure.
5589
5590 2008-12-02  Mark Probst  <mark.probst@gmail.com>
5591
5592         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
5593         Fix trampoline size.
5594
5595         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
5596         conversion opcodes are implemented natively instead via emulation.
5597
5598 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
5599
5600         * cpu-mips.md: remove mips_xori
5601
5602         * mini-ops.h:  remove mips_xori
5603
5604         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
5605
5606         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
5607         
5608         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
5609         
5610 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
5611
5612         * cpu-mips.md: fix instruction lengths.
5613
5614         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
5615
5616         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
5617
5618         * mini-ops.h: fix slti / sltiu op profiles.
5619         
5620 2008-12-02  Martin Baulig  <martin@ximian.com>
5621
5622         * method-to-ir.c (mono_method_to_ir): Disable debugging
5623         information for the init locals block to make the debugger stop
5624         after all locals have been initalized.
5625
5626 2008-12-02  Martin Baulig  <martin@ximian.com>
5627
5628         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
5629         running inside the debugger.
5630
5631 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
5632
5633         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
5634         is enabled.
5635
5636         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
5637         alu->alu imm optimization which only shows if deadce is disabled.
5638
5639         * aot-compiler.c: Rename the function names for the binary and asm writers
5640         so they can coexist in the same process. Rework the xdebug code to use the
5641         asm writer. This avoids the need to call into the runtime to dump the
5642         debugging info. Add more debugging info for types.
5643
5644         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
5645
5646         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
5647         cpu description tables, they can't occur in cpu-<ARCH>.md.
5648
5649         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
5650         the stack in CEE_LDFLDA. Fixes #450542.
5651
5652         * generics.cs: Add a new test.
5653
5654 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
5655
5656         * mini-ops.h: updated MIPS opcodes
5657         * mini-mips.c: decompose long opts
5658         * mini-mips.h: decompose long opts
5659         
5660 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
5661
5662         * cpu-mips.md: fix length on int_rem_un
5663         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
5664         
5665 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
5666
5667         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
5668
5669         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
5670
5671 2008-11-29  Martin Baulig  <martin@ximian.com>
5672
5673         * mini-exceptions.c (mono_handle_native_sigsegv): Check
5674         mono_debug_using_mono_debugger() in addition to the
5675         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
5676
5677 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
5678
5679         * mini-ops.h: updated more MIPS opcodes
5680         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
5681         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
5682         
5683 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5684
5685         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
5686
5687 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
5688
5689         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
5690         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
5691         * mini-ops.h: correct selected mips opcode entries
5692         
5693 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5694
5695         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
5696         make them work.
5697
5698 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5699
5700         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
5701
5702 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
5703
5704         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
5705         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
5706         * mini-mips.h: disable IMT
5707         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
5708         
5709 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5710
5711         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
5712
5713 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5714
5715         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
5716
5717 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
5718
5719         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
5720         consistency.
5721
5722 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
5723
5724         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
5725         for Set/GetVector aligned versions.
5726
5727 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
5728
5729         * basic-simd.cs: Add tests for Get/SetVector.
5730
5731 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5732
5733         * mini.c: Removed g_slist_append_mempool().  Now in
5734         metadata/mempool.c.
5735
5736 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
5737
5738         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
5739         size properly and make the bounds check optional.
5740
5741         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
5742         for SetVector and IsAligned.
5743
5744 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
5745
5746         * mini.c: Remove unused mono_normalize_opcodes () function.
5747
5748 2008-11-26  Mark Probst  <mark.probst@gmail.com>
5749
5750         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
5751         using the new atomic add ops now.
5752
5753         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
5754         add.
5755
5756 2008-11-26  Mark Probst  <mark.probst@gmail.com>
5757
5758         * mini-ppc64.c: Several fixes.
5759
5760 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
5761
5762         * cpu-mips.md: added jump_table
5763         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
5764
5765 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
5766
5767         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
5768
5769 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
5770
5771         * mini-ops.h: corrected a handful of MIPS opcodes.
5772
5773 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
5774
5775         * aot-compiler.c: MIPS to use ELF writer
5776
5777 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
5778
5779         * mini-codegen.c: remove MIPS specific assert.
5780
5781 2008-11-25  Mark Probst  <mark.probst@gmail.com>
5782
5783         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
5784         fixes.  PPC64 now passes most of the runtime regressions.
5785
5786 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
5787
5788         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
5789         volatile intervals a bit.
5790
5791 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5792
5793         * basic-long.cs: New test case.
5794
5795 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
5796
5797         * mini.c (mini_method_compile): Disable globalra for large methods for 
5798         now.
5799
5800         * regalloc2.c (order_moves): Add fp support.
5801
5802         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
5803         source bblock ends with an OP_BR_REG.
5804
5805         * ratests.cs: Add a new test.
5806
5807 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5808
5809         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
5810         sharing.  PPC64 now passes generics.exe.
5811
5812 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5813
5814         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
5815
5816 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
5817
5818         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
5819         memory when mono_jit_info_table_find () can't find the method in the
5820         LMF case.
5821
5822         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
5823         AOTed code too.
5824         
5825         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
5826         writer too.
5827
5828 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5829
5830         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
5831         Several fixes.  PPC64 now runs exceptions.exe and
5832         devirtualization.exe.
5833
5834 2008-11-22  Mark Probst  <mark.probst@gmail.com>
5835
5836         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
5837         arrays.exe and basic-math.exe.
5838
5839 2008-11-22  Mark Probst  <mark.probst@gmail.com>
5840
5841         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
5842         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
5843
5844 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
5845
5846         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
5847
5848 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
5849
5850         * method-to-ir.c: Move bounds checking macros to ir-emit.h
5851
5852         * ir-emit.h: Move macros from method-to-ir.c to here.
5853
5854 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
5855
5856         * mini-ops.h: Correct the long simd ops to use LREG.
5857
5858 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
5859
5860         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
5861         
5862         * mini-ops.h: Correct the dreg type of a few long opcodes.
5863
5864         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
5865         Add netbsd support.
5866
5867 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
5868
5869         * mini-ppc.c: remove negative stack references in epilog
5870         for platforms that don't support the red zone.
5871
5872 2008-11-21  Mark Probst  <mark.probst@gmail.com>
5873
5874         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
5875         point regs.  Now PPC64 passes basic-calls.exe.
5876
5877 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5878
5879         * basic-simd.cs: Add tests for accessors of Vector2l.
5880
5881 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5882
5883         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
5884
5885         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
5886         
5887         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
5888
5889 2008-11-21  Mark Probst  <mark.probst@gmail.com>
5890
5891         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
5892         PPC64 passes basic-long.exe.
5893
5894 2008-11-20  Mark Probst  <mark.probst@gmail.com>
5895
5896         * decompose.c: Decompose carry and overflow add on PPC64 like on
5897         other 64 bit archs.  Don't decompose sub at all on PPC64.
5898
5899         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
5900         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
5901         basic-long.exe.
5902
5903 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5904
5905         * basic-simd.cs: Add tests for accessors of Vector2d.
5906
5907 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5908
5909         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
5910
5911         * cpu-x86.md: Same.
5912
5913         * mini-x86.c (mono_arch_output_basic_block): Same.
5914         
5915         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
5916
5917 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5918
5919         * basic-simd.cs: Add tests for accessors of Vector4f.
5920
5921 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5922
5923         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
5924
5925         * cpu-x86.md: Same.
5926
5927         * mini-x86.c (mono_arch_output_basic_block): Same.
5928         
5929         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
5930
5931 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5932
5933         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
5934
5935 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5936
5937         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
5938
5939         * cpu-x86.md: Same.
5940
5941         * mini-x86.c (mono_arch_output_basic_block): Same.
5942         
5943         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
5944
5945 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5946
5947         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
5948
5949 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5950
5951         * simd-intrinsics.c: Enable setters for Vector16sb.
5952
5953 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
5954
5955         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
5956
5957         * cpu-x86.md: Same.
5958
5959         * mini-x86.c (mono_arch_output_basic_block): Same.
5960         
5961         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
5962
5963 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
5964
5965         * simd-intrinsics.c: Implement setter for Vector8us.
5966
5967 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
5968
5969         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
5970         for dead variables.
5971
5972 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
5973
5974         * mini-ppc.c: remove references to the red zone in the prolog
5975         (for systems that don't support it).
5976
5977 2008-11-19  Mark Probst  <mark.probst@gmail.com>
5978
5979         * cpu-ppc64.md: Fixed a few instruction lengths.
5980
5981         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
5982         now.
5983
5984 2008-11-19  Mark Probst  <mark.probst@gmail.com>
5985
5986         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
5987         basic.exe now.
5988
5989 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
5990
5991         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
5992
5993 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
5994
5995         * mini-ops.h: Added OP_INSERT_I2.
5996
5997         * cpu-x86.md: Same.
5998
5999         * mini-x86.c (mono_arch_output_basic_block): Same.
6000         
6001         * simd-intrinsics.c: Implement setter for Vector8s.
6002
6003         * simd-methods.h: Add the names of get setters of Vector8s.
6004
6005 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6006
6007         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
6008         
6009         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
6010         parameters.
6011
6012         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
6013
6014 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6015
6016         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
6017         for PPC64.  An empty program runs now.
6018
6019 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6020
6021         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
6022
6023         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
6024         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
6025         info for JITted code is emitted into a shared library, loadable into gdb.
6026
6027 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6028
6029         * Makefile.am: Changes to build PPC64.
6030
6031         * mini-arch.h: Include mini-ppc64.h on PPC64.
6032
6033 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6034
6035         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
6036         in PPC code up to r119147.
6037
6038 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6039
6040         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
6041         cpu-ppc64.md: Changes for PPC64.
6042
6043         Based on code submitted by andreas.faerber@web.de at
6044         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
6045         X11/MIT license.
6046
6047 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6048
6049         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
6050         cpu-ppc64.md: Copied from the corresponding PPC files from
6051         r118846.
6052
6053 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
6054
6055         * mini-ops.h: Added OP_ROUND.
6056
6057         * cpu-x86.md: Added round.
6058
6059         * mini-x86.c: Added support for intrinsicing Math.Round (double).
6060
6061         * basic-math.cs: Added test_0_round to test rounding.
6062
6063         Contributed under MIT/X11 license.
6064
6065 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6066
6067         * aot-compiler.c : Fix the Winx64 build.
6068
6069         Contributed under MIT/X11 license.
6070
6071 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
6072
6073         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
6074         in OP_EXTRACT_R8 to avoid possible stack corruption.
6075
6076 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
6077
6078         * mini-ops.h: Added OP_EXTRACT_R8/I8.
6079
6080         * cpu-x86.md: Added extract_r8.
6081
6082         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
6083         
6084         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
6085         a couple of OP_EXTRACT_I4.
6086
6087         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
6088
6089         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
6090
6091 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
6092
6093         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
6094         and not 4.1. 
6095
6096 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
6097
6098         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
6099         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
6100
6101         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
6102         are not needed any more.
6103
6104         * mini.h: Remove the unused INS_LIST macros.
6105
6106         * mini.c (mini_method_compile): Remove a disable globalra case which is no
6107         longer needed.
6108
6109         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
6110         ir-emit.h.
6111
6112         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
6113         mono_alloc_ireg () instead.
6114
6115         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
6116         macros.
6117
6118         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
6119         on amd64.
6120
6121         * aot-runtime.c (load_aot_module): Disable AOT when running under
6122         CAS.
6123
6124         * mini-amd64.h: Change the monitor fastpath defines to check for
6125         !PLATFORM_WIN32 so they work on *bsd too.
6126
6127         * mini.h mini.c mini-hhpa.c: Remove more unused code.
6128
6129         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
6130
6131         * mini.h (MonoCompile): Remove new_ir flag.
6132
6133         * regalloc.h regalloc.c: Remove unused code.
6134
6135         * cpu-*.md: Remove more unused opcodes.
6136
6137         * simple-cee-ops.h simple-mini-ops.h: Removed.
6138
6139         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
6140         
6141 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
6142
6143         * aliasing.h: Removed.
6144
6145         * *.c: Remove references to aliasing.h and inssel.h.
6146
6147         * mini.c: Remove additional unused functions.
6148
6149         * mini-ops.h cpu-*.md: Remove unused opcodes.
6150
6151 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
6152
6153         Remove the old JIT code.
6154
6155         * inssel*.brg: Removed.
6156
6157         * ssa.c abcremoval.c aliasing.c: Removed.
6158
6159         * ssa2.c: Renamed to ssa.c.
6160
6161         * abcremoval2.c: Renamed to abcremoval.c.
6162
6163         * *.c: Removed all !cfg->new_ir code.
6164
6165         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
6166         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
6167
6168         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
6169         
6170 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
6171
6172         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
6173         to simplify the code and cut back on the number of global symbols in the AOT
6174         file.
6175         
6176         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
6177
6178 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
6179
6180         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
6181         with the got/got_info tables.
6182
6183         * mini.h: Bump AOT file format version.
6184         
6185         * unwind.h: New file, contains definitions for stack unwinding.
6186
6187         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
6188         to cfg->unwind_ops.
6189         
6190         * aot-compiler.c: Generalize the emitting of unwind information to use the
6191         information in cfg->unwind_ops.
6192
6193         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
6194
6195         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
6196         AOT method frames. Enable writing symbols for methods by default.
6197
6198 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
6199
6200         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
6201         and make it work with vectors of element sizes 1, 2 and 4.
6202
6203         * simd-intrinsics.c: Enable getter for all vectors with element size
6204         1, 2 or 4.
6205
6206         * simd-methods.h: Add the names of other getters.
6207
6208         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
6209
6210         * cpu-x86.md: Same.
6211
6212         * mini-x86.c: Same.
6213
6214 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
6215
6216         * mini-ppc.h: portability fix.
6217
6218 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
6219
6220         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
6221         buggy and will overwrite it.
6222
6223 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6224
6225         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
6226         Use it to emit local symbols for all methods so AOTed methods show up with
6227         their full name in gdb/valgrind output.
6228
6229 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6230
6231         * mini-ppc.c: portability fixes.
6232
6233 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6234
6235         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
6236         entries out of the if (!generic_shared...) code so it is always done.
6237         (mono_class_init_trampoline): Do the patching when running under valgrind
6238         too, newer versions of valgrind have no problems with it.
6239
6240 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
6241
6242         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
6243         further sections.
6244
6245 2008-11-13  Mark Probst  <mark.probst@gmail.com>
6246
6247         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
6248         filters.
6249
6250 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6251
6252         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
6253
6254 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6255
6256         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
6257
6258         * cpu-x86.md: Same.
6259
6260         * mini-x86.c: Same.
6261
6262         * simd-intrinsics.c: Same.
6263
6264 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6265
6266         * simd-intrinsics.c: Enable constructor intrinsics for all types.
6267
6268 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6269
6270         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
6271         to work with more Vector types.
6272
6273 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6274
6275         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
6276         store the elemens directly instead of using and intermediate.
6277
6278 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
6279
6280         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
6281
6282         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
6283         to preserve %eax for aot plt trampolines.
6284
6285         * aot-compiler.c (compile_method): Don't skip synchronized methods.
6286         (encode_method_ref): Flag synchronized methods so they won't go through
6287         the AOT trampoline.
6288
6289         * aot-compiler.c: Additional work to support AOTing synchronized methods/
6290         wrappers.
6291
6292         * cpu-ia64.md (jmp): Increase max length.
6293
6294 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
6295
6296         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
6297         open generic classes.
6298
6299         * aot-compiler.c: Enable the ELF writer on ELF platforms.
6300
6301         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
6302         box+brtrue optimization since it causes test failures on x86.
6303
6304 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
6307
6308         * cpu-x86.md: Same.
6309
6310         * mini-x86.c: Same.
6311
6312         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
6313         for simd ctor values. 
6314
6315         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
6316         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
6317
6318 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
6319
6320         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
6321         LogicalRightShift.
6322
6323         * simd-instrincs.c: Same.
6324
6325         * basic-simd.cs: Same.
6326
6327 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
6328
6329         * ratests.cs: Add more tests.
6330
6331         * regalloc2.c (add_spill_code): Handle more corner cases.
6332
6333 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
6334
6335         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
6336         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
6337         both the source an destination of an instruction.
6338
6339 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
6340
6341         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
6342         wapihandles.c: more portability changes.
6343
6344 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
6345
6346         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
6347         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
6348         safe to execute in a signal handler and the kernel provides better
6349         the info in /proc/self/smaps. Avoid the assert on sigaction during
6350         cleanup.
6351
6352 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
6353
6354         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
6355         do the bblock linking hack if it is actually needed.
6356
6357         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
6358         up linking.
6359
6360         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
6361         crash problem is fixed.
6362
6363         * branch-opts.c (mono_remove_critical_edges): Link up newly added
6364         bblocks.
6365
6366         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
6367         for catch clauses.
6368         (mini_method_compile): Set the starting value of next_vreg to 
6369         MAX_IREGS + MAX_FREGS when using globalra.
6370
6371         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
6372         filter clauses with BB_EXCEPTION_HANDLER.
6373
6374         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
6375
6376 2008-11-10  Mark Probst  <mark.probst@gmail.com>
6377
6378         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
6379         space for stdcall.  Fixes regressions on Win32.
6380
6381 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
6382
6383         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
6384         bblocks.
6385         (linear_scan): Remove an assert which doesn't seem to be needed.
6386
6387         * local-propagation.c (mono_local_deadce): Avoid a call to
6388         MONO_DELETE_INS which would screw up the instruction linking.
6389
6390         * mini.c (mono_decompose_op_imm): Make this work with globalra.
6391
6392         * regalloc2.c: Upgrade to work the current JIT code.
6393
6394 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
6395
6396         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
6397         case.
6398
6399         * aot-runtime.c: Remove some dead code.
6400
6401         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
6402         consistency.
6403         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
6404
6405         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
6406         trampolines using sscanf since atoi doesn't work on large unsigned values.
6407
6408         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
6409         Initialize code_size.
6410
6411 2008-11-08  Mark Probst  <mark.probst@gmail.com>
6412
6413         * method-to-ir.c (mini_emit_inst_for_method): Make
6414         Interlocked.CompareExchange work for Int arguments on 32 bit
6415         archs, as well.
6416
6417 2008-11-07  Mark Probst  <mark.probst@gmail.com>
6418
6419         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
6420
6421 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
6422
6423         * main.c Fix MSVC build.
6424
6425         Contributed under MIT/X11 license.
6426
6427 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6428
6429         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
6430         alignment larger than 8 bytes are aligned correctly, too.
6431
6432         * mini.c: Honor the min_align field of MonoClass when laying out
6433         the stack.
6434
6435 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
6436
6437         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
6438
6439         * aot-compiler.c (emit_plt): Fix a warning.
6440         
6441         * aot-compiler.c: Implement ARM support in the binary writer.
6442
6443 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
6444
6445         * basic-simd.cs: Add test for getter with byref arg.
6446         Fix the naming of a few tests.
6447         Add missing checks to a test.
6448
6449 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
6450
6451         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
6452
6453         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
6454         most of the full-aot support for monitor enter/exit trampolines.
6455
6456         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
6457         enter/exit trampoline creation functions.
6458
6459         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
6460         make dist.
6461
6462 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
6463
6464         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
6465         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
6466         implement the needed functionality without adding crap to the runtime.
6467
6468 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
6469
6470         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
6471         non-x86 builds.
6472
6473         * mini.c (mono_build_date): New global version holding the build date in
6474         string format.
6475         
6476         * Makefile.am (buildver.c): Generate a file containing the build date.
6477
6478         * main.c: Set the build date from the generated file.
6479
6480         * mini.c (mono_get_runtime_build_info): New helper function returning build
6481         information in a string format.
6482         
6483         * driver.c (mono_main): Print the build date in --version.
6484
6485         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
6486         file when the bind-to-runtime-version option is used.
6487
6488 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
6489
6490         * simd-intrinsics.c: Fix bug when using getters and byref args. 
6491
6492 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
6493
6494         * simd-methods.h: Rename prefetch methods.
6495
6496         * simd-intrinsics.c: Same.      
6497
6498 2008-11-05  Mark Probst  <mark.probst@gmail.com>
6499
6500         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
6501         sizes.
6502
6503 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6504
6505         * aot-compiler.c: Use the bundled elf header files instead of depending on
6506         the system one.
6507         
6508         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
6509         mempool.
6510
6511         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
6512         on every call.
6513
6514 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
6515
6516         * cpu-x86.md: Add store nta ops.
6517
6518         * mini-ops.h: Same.
6519
6520         * mini-x86.c: Same.
6521
6522         * mini.h: Add an enum for simd prefetch modes.
6523
6524         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
6525         of store. Use the changed code to support store nta.
6526
6527         * simd-intrinsics.c: Add prefetch ops for all vector types.
6528
6529 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6530
6531         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
6532         threads.
6533         
6534         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
6535         names.
6536
6537         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
6538         trampolines.
6539
6540 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6541
6542         * mini-x86.c: Fixed commit.
6543
6544 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6545
6546         * aot-compiler.c (emit_plt): Align the plt section only on x86.
6547
6548 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6549
6550         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
6551         and MONITOR_EXIT, for the ASM fastpaths.
6552
6553         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
6554         available.
6555
6556         * mini.c, patch-info.h: Signature and patch infos for
6557         Monitor.Enter/Exit trampolines.
6558
6559         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
6560
6561         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
6562         Monitor.Enter/Exit ASM fastpath for Linux.
6563
6564 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6565
6566         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
6567
6568         * objects.cs: Add a new test.
6569         
6570         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
6571
6572         * aot-runtime.c (load_method): Run class initialization in the PLT case even
6573         if MONO_LOG_LEVEL is set.
6574
6575         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
6576
6577         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
6578
6579         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
6580         
6581         * aot-compiler.c: Change the relocation code to use virtual addresses instead
6582         of file offsets. Align the sections belonging to the data segment to 
6583         PAGESIZE.
6584
6585 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
6586
6587         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
6588         elf.h. Port it to amd64.
6589
6590 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
6591
6592         * driver.c: Enable SIMD by default.
6593
6594 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
6595
6596         * cpu-x86.md: Add prefetch op.
6597
6598         * mini-ops.h: Same.
6599
6600         * mini-x86.c: Same.
6601
6602         * mini.h: Add an enum for simd prefetch modes.
6603
6604         * simd-methods.h: Add prefetch function names.
6605
6606         * simd-intrinsics.c: Add prefetch ops for all vector types.
6607
6608 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
6609
6610         * aot-compiler.c (emit_bytes): Speed this up a little.
6611
6612 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6613
6614         * aot-compiler.c: Add JIT time etc. statistics.
6615         
6616         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
6617
6618         * mini.h (MonoCompile): Add 'got_offset' field.
6619
6620         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
6621         method_got_offsets array.
6622
6623         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
6624         wrappers.
6625
6626         * aot-compiler.c (compile_method): Add generic method instances referenced
6627         by the method to the list of methods to be compiled, this is required so if
6628         A<T> references B<T>, and another assembly references A<int>, then it will
6629         also get a copy of B<int>.
6630
6631         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
6632         when checking for monitor enter/exit.
6633
6634 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6635
6636         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
6637         for Monitor.Enter and Monitor.Exit if enabled.
6638
6639         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
6640         Solaris.
6641
6642 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
6643
6644         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
6645         of an OP_MOVE. Fixes #440046.
6646
6647         * basic-long.cs: Add a new test.
6648
6649 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
6650
6651         * mini.h: Add synchronization note for the managed counter-part.
6652
6653         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
6654         returns the simd caps of the current cpu.
6655
6656 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
6657
6658         * basic-simd.cs: Remove Console.WriteLine.
6659
6660 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6661
6662         * basic-simd.cs: New tests for Vector2ul.
6663
6664 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6665
6666         * simd-intrinsics.c: Add new vector type Vector2ul.
6667
6668 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6669
6670         * basic-simd.cs: New tests for Vector2l.
6671
6672 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6673
6674         * cpu-x86.md: Add long version of most packed int ops.
6675
6676         * mini-ops.h: Same.
6677
6678         * mini-x86.h: Same.
6679
6680         * simd-intrinsics.c: Add new vector type Vector2l.
6681
6682 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6683
6684         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
6685
6686         * simd-methods.h: Remove SN_op_BitwiseXor.
6687
6688 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
6689
6690         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
6691         alignment.
6692
6693 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6694
6695         * basic-simd.cs: Test for Vector2d.
6696
6697         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
6698         value.
6699
6700 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6701
6702         * cpu-x86.md: Add double version of all packed float ops.
6703
6704         * mini-ops.h: Same.
6705
6706         * mini-x86.h: Same.
6707
6708         * simd-intrinsics.c: Add new vector type Vector2d.
6709
6710         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
6711
6712         * simd-methods.h: Add Duplicate.
6713
6714 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6715
6716         * basic-simd.cs: Test for packing with signed saturation.
6717
6718 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
6719
6720         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
6721         found in the TYPESPEC table.
6722
6723 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6724
6725         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
6726         too.
6727
6728         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
6729
6730         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
6731         instead of the RVA, since the RVA can be changed by tools like the cil 
6732         stripper.
6733
6734         * method-to-ir.c (mono_method_to_ir2): Ditto.
6735
6736         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
6737         (deserialize_variable): Ditto.
6738
6739 2008-10-25  Martin Baulig  <martin@ximian.com>
6740
6741         * debug-mini.c (write_variable): Use
6742         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
6743
6744 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6745
6746         * cpu-x86.md: Add unsigned variants of packd and packw.
6747
6748         * mini-ops.h: Same.
6749
6750         * mini-x86.h: Emit the right instruction for packd and packw.
6751         Add unsigned variants of packd and packw.
6752
6753         * simd-intrinsics.c: Packd and packw were used in place of their
6754         unsigned variants. Change that.
6755         Add intrinsics for (Signed)PackWithSignedSaturation.
6756
6757         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
6758
6759 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6760
6761         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
6762
6763 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6764
6765         * mini-ops.h: Remove dword packed add/sub with saturation ops.
6766
6767         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
6768
6769         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
6770         sse instructions.
6771
6772         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
6773
6774 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6775
6776         * method-to-ir.c, mini.c: Special casing for the synchronized
6777         wrapper for the ldtoken+GetTypeFromHandle case.
6778
6779 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
6780
6781         * mini.c (mono_replace_ins): Move this to branch-opts.c.
6782
6783         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
6784         created/split bblocks.
6785
6786 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6787
6788         * mini-ops.h: Add packed signed mul high.
6789         
6790         * cpu-x86.md: Same.
6791
6792         * mini-x86.c (mono_arch_output_basic_block): Same.
6793
6794         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
6795
6796         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
6797
6798 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6799
6800         * basic-simd.cs: Tests for Vector16sb.
6801
6802 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
6803
6804         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
6805
6806 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6807
6808         * mini-ops.h: Add packed signed min, max and compare greater.
6809         
6810         * cpu-x86.md: Same.
6811
6812         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
6813         saturation.
6814
6815         * simd-methods.h: Add CompareGreaterThan.
6816
6817         * simd-methods.h: Remove CompareEquals.
6818
6819         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
6820
6821         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
6822
6823         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
6824         CompareEqual.
6825
6826 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6827
6828         * basic-simd.cs: Fix tests due to change in the API.
6829
6830 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6831
6832         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
6833
6834 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
6835
6836         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
6837
6838         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
6839         inst_offset as this has invalid values for LDADDR.
6840
6841 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
6842
6843         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
6844
6845         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
6846
6847 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6848
6849         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
6850         for accessing field->data.
6851
6852 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
6853
6854         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
6855
6856 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
6857
6858         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
6859
6860         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
6861
6862 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6863
6864         * dominators.c (mono_compute_natural_loops): Allocate GList enties
6865         from the cfg mempool.
6866
6867 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
6868
6869         * basic-simd.cs: Tests for new methods in Vector8us.
6870
6871 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
6872
6873         * mini-ops.h: Add multiply and store high.
6874         
6875         * cpu-x86.md: Same.
6876
6877         * mini-x86.c (mono_arch_output_basic_block): Same.
6878
6879         * simd-methods.h: Same.
6880
6881         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
6882         and CompareEqual.
6883
6884 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6885
6886         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
6887         mono_class_setup_vtable ().
6888
6889         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
6890         mono_class_get_vtable_entry () for accessing klass->vtable.
6891
6892         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
6893
6894         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
6895         found.
6896
6897         * method-to-ir.c (mono_save_token_info): Don't save references made from
6898         wrappers.
6899
6900         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
6901         of generic instances.
6902
6903         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
6904
6905 2008-10-19  Mark Probst  <mark.probst@gmail.com>
6906
6907         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
6908         OP_JMP depends on the method signature.  Calculate it properly.
6909
6910 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6911         
6912         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
6913         called directly.
6914
6915         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
6916         instances.
6917         (emit_extra_methods): Add another table mapping method indexes to 
6918         offsets in the extra_method_info table.
6919
6920         * mini.h: Bump AOT file format version.
6921         
6922         * aot-runtime.c: Merge most of the code from mono_aot_get_method
6923         and mono_aot_get_method_from_token () into one function.
6924
6925 2008-10-19  Mark Probst  <mark.probst@gmail.com>
6926
6927         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
6928         separate counter.
6929
6930 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
6931
6932         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
6933         methods.
6934
6935         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
6936         disable_aot.
6937
6938         * mini.c (mono_patch_info_equal): Compare the generic context as well.
6939
6940         * mini.h: Bump aot file format version.
6941
6942         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
6943         AOT file can contain native code for methods which are not in the METHOD
6944         table. Generate code for non-sharable generic instances of generic methods
6945         found in the METHODSPEC table.
6946         
6947         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
6948         encoding generic type handles.
6949
6950         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
6951         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
6952
6953         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
6954         macros + MONO_ADD_INS.
6955
6956         * mini.c (mono_jump_info_token_new2): New function which takes a generic
6957         context as well.
6958
6959         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
6960
6961         * mini.h: Bump aot file format version.
6962
6963         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
6964
6965 2008-10-17  Mark Probst  <mark.probst@gmail.com>
6966
6967         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
6968         platforms, with definable stack alignment value.  Set to 16 now
6969         for all platforms.
6970
6971         * mini.c, mini.h, driver.c: Command line option for disabling
6972         stack alignment.
6973
6974 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
6975
6976         * basic-simd.cs: Tests for new methods in Vector4ui.
6977
6978 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
6979
6980         * mini-ops.h: Add packed int shuffle.
6981         
6982         * cpu-x86.md: Same.
6983
6984         * mini-x86.c (mono_arch_output_basic_block): Same.
6985
6986         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
6987         extract mask, max, min, shuffle.
6988
6989         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
6990
6991 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
6992
6993         * basic-simd.cs: Tests for new methods in Vector8us.
6994
6995 2008-10-17  Mark Probst  <mark.probst@gmail.com>
6996
6997         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
6998         RuntimeTypeHandle, not a TypedReference.
6999
7000 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
7001
7002         * simd-intrinsics.c: remove relocations.
7003
7004 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
7005
7006         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
7007         optimizations from the x86 backend.
7008
7009 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
7010
7011         * simd-methods.h, simd-intrinsics.c: debloat method names and
7012         prepare for no relocations.
7013
7014 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7015
7016         * mini-ops.h: Add packed min/equal and sum of absolute differences.
7017         
7018         * cpu-x86.md: Same.
7019
7020         * mini-x86.c (mono_arch_output_basic_block): Same.
7021
7022         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
7023         extract mask, max, min and sum of absolute differences.
7024
7025         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
7026         method name.
7027
7028 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7029
7030         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
7031         Renamed one test for consistency.
7032
7033 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7034
7035         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
7036         fix to the code that deal with other blocks.
7037
7038 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7039
7040         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
7041
7042 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7043
7044         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
7045         that deals with vreg interference. Explicitly check for OP_LDADDR to be
7046         able to process the source reg.
7047
7048 2008-10-16  Martin Baulig  <martin@ximian.com>
7049
7050         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
7051
7052         * inssel.brg: Add `OP_HARD_NOP'.
7053
7054         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
7055
7056         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
7057         `OP_HARD_NOP' instruction when running inside the debugger.
7058
7059         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
7060         `OP_HARD_NOP' instruction when running inside the debugger.
7061
7062 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7063
7064         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
7065         now works. The issue with the regalloc tripping up no longer
7066         happens.
7067
7068         * simd-intrinsics.c (load_simd_vreg): Same.
7069
7070 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7071         
7072         * basic-simd.cs: Tests for new Vector8ui methods.
7073
7074 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7075
7076         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
7077         only for type. This fixes crashes where MonoInst::klass is checked
7078         for ops of type != VTYPE or OBJ.
7079
7080         * simd-intrinsics.c (load_simd_vreg): Same.
7081
7082 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7083
7084         * mini-ops.h: Add ops for packed shuffle/max/avg and
7085         extract mask.
7086         
7087         * cpu-x86.md: Same.
7088
7089         * mini-x86.c (mono_arch_output_basic_block): Same.
7090
7091         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
7092         extract mask.
7093
7094         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
7095         to emit extract mask op.
7096
7097         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
7098         to emit word shuffles.
7099
7100 2008-10-15  Mark Probst  <mark.probst@gmail.com>
7101
7102         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
7103         the largest alignment needed by a variable, but at least
7104         sizeof(gpointer).
7105
7106 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7107
7108         * basic-simd.cs: Tests for the fixes in the last commit.
7109
7110 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7111
7112         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
7113         no longer handles STACK_PTR input.
7114
7115         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
7116
7117         * simd-intrinsics.c (load_simd_vreg): New function that works like 
7118         get_simd_vreg   but handles STACK_PTR input.
7119
7120         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
7121         as the input can be an arbitrary pointer.
7122
7123         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
7124         LDADDR local optimization directly otherwise use a store op.
7125
7126 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7127
7128         * basic-simd.cs: Tests for dup low and dup high.
7129
7130 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7131
7132         * mini-ops.h: Add dup low and dup high ops.
7133         
7134         * cpu-x86.md: Same.
7135
7136         * mini-x86.c (mono_arch_output_basic_block): Same.
7137
7138         * simd-intrinsics.c (vector4f_intrinsics): Same.
7139
7140 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
7141
7142         * basic-simd.cs: Tests for recently added functionality.
7143
7144 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
7145
7146         * mini-ops.h: Add remaining sse1 fp ops.
7147         
7148         * cpu-x86.md: Add remaining sse1 fp ops.
7149
7150         * mini-x86.c (mono_arch_output_basic_block): Same.
7151
7152         * mini.h: Add enum for simd FP compare conditions.
7153
7154         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
7155
7156         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
7157         so the backed can generate the appropriate op.
7158
7159 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
7160         This patch squeese one more byte from the SimdIntrinsc struct.
7161
7162         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
7163         a a shift amount intead of simply or'ing it.
7164
7165         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
7166
7167         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
7168         byte so we can have an aditional flags field without increasing struct size.
7169
7170         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
7171         against the simd_supported_versions bitmask.
7172
7173         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
7174
7175 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
7176
7177         * mini.c: remove rawbuffer code (the only use here is unsafe because
7178         it takes locks during signal handling and the kernel now provides much
7179         better info in proc/pid/smaps these days).
7180
7181 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7182
7183         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
7184         OP_X86_PUSH_OBJ. Fixes #434620.
7185
7186         * objects.cs: Add a test.
7187         
7188 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
7189
7190         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
7191         that the packuswb/packusdw don't work with unsigned numbers for what
7192         would be negative numbers in signed format.
7193
7194         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
7195         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
7196
7197         * mini-ops.h: Add doubleword forms of many ops and packing ones.
7198
7199         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
7200
7201         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
7202
7203         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
7204
7205         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
7206         add more ops.
7207
7208         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
7209         version as the enum in mini.h.
7210
7211         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
7212         for sse3 ops, check the simd_version field if present. This way the code
7213         works with all versions of sse.
7214
7215 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7216
7217         * simd-intrinsics.c: Fixed intrinsic name typo.
7218
7219         * mini.h: Added missing simd exported function.
7220
7221         * basic-simd.cs: Added tests for Vector4ui.
7222         Fixed broken test for Vector16b.
7223
7224 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7225
7226         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
7227         the max length to 64.
7228
7229 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7230
7231         * method-to-ir.c: Only do the fast virtual generic method call for
7232         non-wrapper methods.
7233
7234         * mini.h, mini-trampolines.c: The new generic virtual remoting
7235         trampoline handles virtual method calls via the vtable (as done by
7236         the fast virtual generic method calls) to remoting proxies.
7237
7238         * mini.c (mono_jit_create_remoting_trampoline): For generic
7239         methods reate a generic virtual remoting trampoline.
7240
7241         * mini-amd64.h: Enable fast virtual generic method calls again.
7242
7243 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7244
7245         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
7246         restore registers when doing tail calls.
7247
7248 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7249
7250         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
7251         Vector4ui.
7252
7253 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7254
7255         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
7256
7257 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7258
7259         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
7260
7261 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7262
7263         * basic-simd.cs: Retrofit for API changes.
7264
7265 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7266
7267         * mini-ppc.c: Handle integer stack arguments for tail calls.
7268
7269 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7270
7271         * optflags-def.h: Removed sse3 optimization.
7272
7273         * driver.c: Same.
7274
7275         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
7276         sse3.
7277
7278         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
7279
7280         * mini.h: Added enumeration with simd versions.
7281
7282         * simd-intrinsics.c (emit_intrinsics): Use the new static var
7283         for detecting SSE3.
7284
7285         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
7286
7287         * mini.c (mini_init): Call mono_simd_intrinsics_init.
7288
7289 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7290
7291         * basic-simd.cs: Added tests for Vector8u and Vector16u.
7292
7293         * basic-simd.cs: Fixed test naming.
7294
7295 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7296
7297         * mini-ops.h: Added ops for packed and saturated math, shifts
7298         and packing/unpacking.
7299
7300         * cpu-x86.md: Added descriptors for the above ops.
7301
7302         * mini-x86.c: Added code to emmit the above ops.
7303
7304         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
7305
7306 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7307
7308         * aot-compiler.c (compile_method): Enable AOT for generic code.
7309
7310         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
7311
7312 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
7313
7314         * mini.c: add a workaround for a common screwup that ends up blamed
7315         to mono (other processes blocking signal delivery).
7316
7317 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7318
7319         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
7320         in the LDFLD/STFLD opcodes. Fixes #432673.
7321
7322         * iltests.il.in: Add a new test.
7323
7324 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
7325
7326         * mini-arm.c: attach the thread in unmanaged->managed transitions
7327         using delegates (bug #433148).
7328
7329 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
7330
7331        * basic-simd.cs: Use new ShuffleSel constants.
7332
7333 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
7334
7335         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
7336
7337         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
7338         only disable simd intrinsics if no sse2 is detected.
7339
7340         * optflags-def.h: Added sse3.
7341
7342         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
7343         is disabled.
7344
7345 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7346
7347         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
7348         when adding delegate-invoke wrappers.
7349
7350 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7351
7352         * Makefile.am: Reenable the simd tests.
7353
7354 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7355
7356         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
7357           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
7358           other vreg is allocated to that hreg.
7359
7360         Contributed under MIT/X11 license.
7361
7362 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7363
7364         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
7365         yet checked in.
7366
7367 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
7368
7369         * basic-simd.cs: New test suite for SIMD intrinsics.
7370
7371         * Makefile.am: Added new tests.
7372
7373 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
7374
7375         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
7376
7377         * mini-ops.h: Same.
7378
7379         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
7380
7381         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
7382         using SSE2 aware opcodes.
7383
7384         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
7385         is enabled, this code path is only reachable if conversion ops are emmited after
7386         mono_method_to_ir.
7387
7388         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
7389
7390         This optimization saves 6 bytes per conversion against the old version.
7391
7392 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7393
7394         * aot-compiler.c (compile_method): Don't skip methods referencing 
7395         generic methods without a corresponding entry in token_info_hash, since
7396         encode_method_ref () can handle all generic methods now.
7397
7398         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
7399         generic context is set.
7400         
7401         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
7402         generic sharing of LDTOKEN.
7403
7404 2008-10-06  Mark Probst  <mark.probst@gmail.com>
7405
7406         * mini-amd64.h: Temporarily disabled fast virtual generic method
7407         calls because it breaks the System.Runtime.Remoting tests.
7408
7409 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7410
7411         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
7412
7413         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
7414         so inlining actually works.
7415         (check_inline_caller_method_name_limit): Ditto.
7416
7417 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
7418
7419         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
7420         64 bit safety (from Olaf Hering and Andreas Farber).
7421
7422 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7423         
7424         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
7425         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
7426         unused virtual call support code.
7427
7428         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
7429         
7430         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
7431         which can't use aot trampolines.
7432         (decode_patch): Don't create aot trampolines for methods which can't use
7433         them.
7434
7435         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
7436         use aot trampolines.
7437
7438         * mini.h: Bump AOT image format version.
7439         
7440 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
7441
7442         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
7443         to save_token_info () since cmethod is inflated for constrained calls.
7444
7445         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
7446
7447 2008-10-04  Andreas Farber  <andreas.faerber@web.de>
7448
7449         * Makefile.am: Add build rules for ppc64.
7450         This avoids the build failing at pedump with unresolved symbols
7451         due to lack of arch_sources. Instead it will now fail earlier
7452         due to lack of cpu-ppc64.md.
7453
7454         Contributed under MIT/X11 license.
7455
7456 2008-10-04  Mark Probst  <mark.probst@gmail.com>
7457
7458         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
7459         tail calls.
7460
7461         * iltests.il.in: Add test case for tail call with many arguments.
7462
7463 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7464
7465         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
7466         to the fast virtual generic method code until the aot case is fixed.
7467
7468 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7469
7470         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
7471
7472 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7473
7474         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
7475         thunks.
7476
7477 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7478         
7479         * simd-intrinsics.c: Forgot to add this one.
7480
7481         * mini-codegen.c: Fix macro in case SIMD is not supported.
7482
7483 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7484         
7485         This patch land initial JIT support for simd intrinsics.
7486
7487         * mini-x86.h: Added new define to make --enable_minimal work on x86.
7488
7489         * Makefile.am: Added simd-intrinsics.c
7490
7491         * simd-intrinsics.c: New file with simd instrinsic related
7492         code.
7493
7494         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
7495
7496         * cpu-x86.md: Add simd related instructions.
7497
7498         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
7499
7500         * driver.c: Added two new --regression variants.
7501
7502         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
7503
7504         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
7505
7506         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
7507         extract some complicated logic to helper functions.
7508
7509         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
7510
7511         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
7512
7513         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
7514         the specialized simplification pass.
7515
7516         * method-to-ir.c (mono_spill_global_vars): Use new macro.
7517
7518         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
7519
7520         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
7521         table.
7522
7523         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
7524         if MONO_ARCH_NEED_SIMD_BANK is defined.
7525
7526         * mini-ops.h: Added the new simd ops.
7527
7528         * mini-x86.c: Added mono_arch_xregname.
7529
7530         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
7531
7532         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
7533
7534         * mini-x86.h: Define simd related MONO_ARCH macros.
7535
7536         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
7537
7538         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
7539
7540         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
7541         MONO_CLASS_IS_SIMD to deal with simd related IR.
7542
7543         * mini.h (MonoInst): Added spill_var to the backend union.
7544
7545         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
7546
7547         * mini.h: Added forward declarations of the new simd fuctions.
7548
7549         * optflags-def.h: Added new optimization names SIMD.
7550
7551         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
7552
7553         * regalloc.h: Added support for working with 3 register banks.
7554
7555         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
7556
7557         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
7558
7559 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
7560
7561         * mini-exceptions.c: remove 64 bit related ifdef clutter.
7562
7563 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7564
7565         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
7566         instead of one on 64 bit systems.
7567
7568         * method-to-ir.c: Remove unused includes.
7569
7570 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
7571
7572         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
7573         cfg->used_int_regs, since the two are different on arm.
7574
7575 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7576
7577         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
7578         mono_method_get_vtable_index() to get the vtable index.
7579
7580 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7581
7582         * method-to-ir.c (mono_method_to_ir2): Don't create native
7583         wrappers for array methods, because they're never called (and if
7584         they were called they wouldn't work).
7585
7586 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7587
7588         * method-to-ir.c (mono_method_to_ir2): Array methods are
7589         special-cased and must not be invoked indirectly via the (M)RGCTX
7590         when generic sharing is turned on.  Fixes #431413.
7591
7592 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7593
7594         * method-to-ir.c: When generic sharing is active, call
7595         non-interface virtual generic methods via the standard trampoline.
7596
7597         * mini-trampolines.c: Handle virtual generic shared methods.
7598
7599         * mini.h, mini-x86.c, mini-x86.h: New argument for
7600         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
7601         method thunks and which is the trampoline to call if the lookup
7602         fails.  Enable the virtual generic method thunk for x86.
7603
7604         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
7605         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
7606         argument but assert that it's NULL, because these archs don't yet
7607         implement the virtual generic method thunk.  Changes in the IMT
7608         thunk data structures.
7609
7610 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7611
7612         * aot-compiler.c (emit_globals): Avoid invalid characters in
7613         the static linking symbol.
7614
7615         * objects.cs: Add a test for the range check optimization. Fix warnings.
7616
7617         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
7618         optimization from the current JIT.
7619
7620         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
7621         later in decompose_array_access_opts () to allow more optimizations.
7622
7623         * method-to-ir.c (mono_handle_soft_float): Rename this to 
7624         mono_decompose_soft_float () for consistency.
7625
7626         * mini-ops.h: Fix arguments of OP_STRLEN.
7627
7628         * method-to-ir.c (save_cast_details): Extract the cast details saving code
7629         into a separate function.
7630         (reset_cast_details): Ditto.
7631         (handle_unbox): Save cast details. Fixes #431254.
7632
7633         * method-to-ir.c: Remove some obsolete FIXMEs.
7634
7635 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7636
7637         * ir-emit.h (alloc_dreg): Write a warning before crashing.
7638
7639 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7640
7641         * mini-codegen.c: More work on macros to make them
7642         ready for multiple regbanks.
7643
7644 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7645
7646         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
7647
7648         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
7649
7650 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7651
7652         * mini-codegen.c (mono_spillvar_offset): Proper support for
7653         multiple regbanks.
7654
7655 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
7656
7657         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
7658         the stack overflow changes.
7659
7660 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7661
7662         * mini-codegen.c: Make all bank macros depend on reg_bank.
7663
7664         * mini-codegen.c (mono_local_regalloc): Make free mask
7665         initialization regbank aware.
7666
7667 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7668
7669         * mini-codegen.c (mono_local_regalloc): Extract callee
7670         mask selection to a function and make it regbank aware.
7671
7672 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7673
7674         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
7675         code to deal with many regbanks.
7676
7677 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
7678
7679         * mini-codegen.c: More fp->regbank changes.
7680
7681 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
7682
7683         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
7684         of a hardcoded constant.
7685
7686 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
7687
7688         * method-to-ir.c (type_from_stack_type): Fix typo.
7689
7690 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7691
7692         * mini-ia64.c (emit_move_return_value): Convert float return values to
7693         double.
7694
7695         * objects.cs: Add a new test.
7696         
7697         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
7698         VARARG methods to fix an assert later.
7699
7700         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
7701         end so it at least compiles.
7702
7703 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
7704
7705         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
7706
7707 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
7708
7709         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
7710         optimization to a new function (emit_optimized_ldloca_ir) and enable
7711         it for both ldloca and ldloca_s.
7712
7713 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
7714
7715         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
7716         gshared CASTCLASS code.
7717
7718         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
7719         amd64, where the libc stack unwinder encounters stack frames referring to
7720         native code in unmapped memory.
7721
7722         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
7723         sharing.
7724
7725         * generics.cs: Add new test.
7726
7727 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7728
7729         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
7730         add a check that one of the ARM_FPU_ constants is defined.
7731
7732         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
7733         
7734         * mini-exceptions.c: Fix build on non-altstack platforms.
7735
7736         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
7737         sharing of vtypes.
7738
7739         * ir-emit.h: Add a comment to NEW_PCONST.
7740
7741         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
7742
7743         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
7744
7745         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
7746         after the changes to MonoJitDomainInfo.
7747
7748 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7749
7750         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
7751
7752 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7753
7754         * mini-ppc.c: Compiler warning fixes.
7755
7756 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7757
7758         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
7759         for pinvokes.
7760
7761 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7762
7763         * exceptions-ppc.c, mini-ppc.h: Compile
7764         mono_arch_handle_altstack_exception() on Darwin, too.
7765
7766 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7767
7768         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
7769         work on archs which don't have generic sharing implemented, only
7770         without the vtable_arg.
7771
7772 2008-09-26  Mark Probst  <mark.probst@gmail.com>
7773
7774         * mini.c: Added comment explaining why delegate ctor icall
7775         wrappers are compiled.
7776
7777 2008-09-26  Mark Probst  <mark.probst@gmail.com>
7778
7779         * mini.c: Don't produce trampolines to delegate ctor icall
7780         wrappers but compile them upfront.
7781
7782 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7783
7784         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
7785         runtime-set function when going back to managed code. Currently this
7786         is used to set back the protection on the soft ovf pages and/or to
7787         throw the stack overflow exception that happened in unmanaged code.
7788
7789 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7790
7791         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
7792         runtime-set function when going back to managed code. Currently this
7793         is used to set back the protection on the soft ovf pages and/or to
7794         throw the stack overflow exception that happened in unmanaged code.
7795
7796 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
7797
7798         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
7799         the support code for restoring stack protection after stack overflows
7800         that happen in unmanaged code. Don't set the exec permission on the
7801         soft overflow area.
7802
7803 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
7804
7805         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
7806         delegate->method_ptr is set. Fixes #428054.
7807
7808 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7809
7810         * tests.cs: Rename to ratests.cs.
7811
7812         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
7813         emit_get_rgctx_... functions.
7814
7815 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7816
7817         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
7818
7819 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7820
7821         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
7822         before asserting that method is sharable.
7823
7824 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7825
7826         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
7827         whether method needs a static RGCTX wrapper used instead of
7828         complex conditions.
7829
7830         * generic-sharing.c, mini.h: A few functions moved to
7831         metadata/generic-sharing.c.
7832
7833 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7834
7835         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
7836         Generic code sharing for value types, which essentially means
7837         treating value type methods like static methods.  The RGCTX is
7838         passed in the same way.
7839
7840 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7841
7842         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
7843         opcode when creating multi-dimensional arrays of open types.
7844
7845         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
7846         open generic types.
7847
7848         * generics.cs: Add a test.
7849
7850         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
7851
7852 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7853
7854         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
7855
7856         * mini.c (mini_method_compile): Set it when running under the debugger. 
7857
7858         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
7859         vreg optimization if the flag is set.
7860
7861         * driver.c (mono_main): Add --attach= option to pass options to
7862         the attach agent.
7863
7864         * mini.c (sigquit_signal_handler): Start the attach agent.
7865
7866         * ssapre.c: Disable this to save space since it is not yet ported to
7867         linear IR.
7868
7869         * regalloc2.c: Disable this to save space.
7870
7871         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
7872
7873 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7874
7875         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
7876         the -v option useful again.
7877
7878 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7879
7880         * mini-amd64.c (mono_arch_output_basic_block): Add support for
7881         --break-at-bb.
7882
7883         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
7884         arrays of arrays. Fixes #428406.
7885
7886         * method-to-ir.c (mini_emit_castclass): Ditto.
7887
7888         * objects.cs: Add new test.
7889         
7890 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
7891
7892         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
7893         was wrong at it choked against target_type_is_incompatible for byref types.
7894
7895 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
7896
7897         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
7898         places.
7899
7900 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
7901
7902         * mini-exceptions.c: update a few more exceptions-related counters.
7903
7904 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7905
7906         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
7907         new functions to allocate from persistent mempools.
7908
7909 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
7910
7911         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
7912         multiple register banks in the future.
7913
7914         * mini-codegen.c (mono_local_regalloc): Fix a warning.
7915
7916 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
7917
7918         * mini.c (type_to_eval_stack_type): Remove duplicated function.
7919
7920         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
7921
7922         * mini.h: Export type_to_eval_stack_type.
7923
7924         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
7925         is only ins->klass of byref types.
7926
7927 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7928
7929         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
7930         (mini_emit_memcpy2): Ditto.
7931
7932         * mini-amd64.c: Fix a warning.
7933
7934 2008-09-21  Mark Probst  <mark.probst@gmail.com>
7935
7936         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
7937         linking.
7938
7939 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
7940
7941         * method-to-ir.c: Extract stloc micro-optimization to a
7942         function and apply it to all cases.
7943
7944 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7945
7946         * method-to-ir.c: Don't fail generic code sharing in cases we
7947         already support.
7948
7949 2008-09-18  Mark Probst  <mark.probst@gmail.com>
7950
7951         * mini-ppc.c: Handle structs in tailcalls on Darwin.
7952
7953 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7954
7955         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
7956         implementation.
7957
7958 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
7959
7960         * trace.c: make tracing more useful and correct, with per-thread
7961         id and indent info.
7962
7963 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7964
7965         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
7966         doing a method call and the argument is an R4.
7967
7968 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
7969
7970         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
7971         generic methods.
7972
7973 2008-09-13  Mark Probst  <mark.probst@gmail.com>
7974
7975         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
7976
7977 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
7978
7979         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
7980         (MONO_JUMP_TABLE_FROM_INS): Ditto.
7981
7982 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
7983
7984         * driver.c: Add a --agent argument (not supported yet) to load managed
7985         agent assemblies before loading the main assembly, similarly to how the
7986         Java VM handles agents.
7987
7988 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7989
7990         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
7991         function to do stack layout of local variables.
7992
7993 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7994
7995         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
7996         calculation.
7997
7998 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
7999
8000         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
8001         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
8002         JIT if DISABLE_JIT is defined.
8003
8004         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
8005         defined.
8006
8007 2008-09-10  Mark Probst  <mark.probst@gmail.com>
8008
8009         * iltests.il.in: Disable the fconv test on PPC (the result is
8010         undefined according to ECMA).
8011
8012 2008-09-10  Mark Probst  <mark.probst@gmail.com>
8013
8014         * iltests.il.in: Enable tail call tests for PPC.
8015
8016         * mini.h: Add variable for storing incoming valuetype argument
8017         addresses for tail calls.
8018
8019         * mini-ppc.c: Implement valuetype arguments and return values for
8020         tailcalls on Linux.
8021
8022 2008-09-09  Mark Probst  <mark.probst@gmail.com>
8023
8024         * mini-ppc.c: Partially implement tail calls (struct arguments and
8025         return values not supported).
8026
8027         * method-to-ir.c: Enable tail calls on PPC.
8028
8029 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
8030
8031         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
8032         runtime-invoke wrappers to work around the problem of them getting
8033         assigned to a random class.
8034
8035         * aot-runtime.c (mono_aot_get_method): Ditto.
8036         
8037 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
8038
8039         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
8040         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
8041
8042 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8043
8044         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
8045         until they're implemented properly.
8046
8047         * exceptions-ppc.c: Use arch-independent exception-handling code
8048         instead of custom one.
8049
8050         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
8051         for Linear IR.
8052
8053         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
8054
8055         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
8056         applies when __powerpc__ is defined.
8057
8058 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
8059
8060         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
8061         methods to their code to avoid computing the full name of wrappers and
8062         doing a lookup in a string hash table.
8063
8064 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
8065
8066         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
8067         we identify bblocks before method_to_ir () is ran.
8068
8069         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
8070         Also avoid optimizing branches pointing to themselves.
8071
8072         * mini.c (mini_method_compile): Ditto. Fixes #422947.
8073
8074 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
8075
8076         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
8077
8078 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
8079
8080         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
8081         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
8082         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
8083         'buf'.
8084
8085         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
8086         jumped to the same entry in plt_jump_table.
8087
8088 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
8089
8090         * method-to-ir.c (initialize_array_data): Handle field with RVA from
8091         dynamic images.
8092
8093 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8094
8095         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
8096         other assignment can be if converted. Saves 1.5% on corlib size and fixes
8097         #421807.
8098
8099 2008-08-29  Geoff Norton  <gnorton@novell.com>
8100
8101         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
8102         segment, and doesn't properly handle .space as .text.  Fixes
8103         AOT Mach/ARM
8104
8105 2008-08-29  Geoff Norton  <gnorton@novell.com>
8106
8107         * mini.c: Disable the mach exception handler when running on 
8108         ARM
8109
8110 2008-08-29  Geoff Norton  <gnorton@novell.com>
8111
8112         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
8113         globals on Darwin/ARM
8114
8115 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8116
8117         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
8118         since too many things depend on it. Instead, call 
8119         mono_runtime_set_no_exec ().
8120         
8121         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
8122         the new JIT.
8123
8124         * aot-compiler.c: Add an 'asm-only' AOT option.
8125
8126         * mini.c: Avoid initializing the runtime when doing AOT compilation.
8127                 
8128         * aot-compiler.c (compile_method): Disable gshared support for now as it
8129         doesn't yet work.
8130
8131 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
8132
8133         * mini-amd64.h : Fix a compiler warning.
8134
8135         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
8136           Changed to use a callback function to retrieve the unwind info.
8137           This avoids problems observed when code blocks were removed by
8138           unloading an app domain.
8139
8140         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
8141           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
8142           to work properly.
8143
8144         Contributed under MIT/X11 license.
8145
8146 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
8147
8148         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
8149           case to keep the stack aligned to 8.
8150
8151         Contributed under MIT/X11 license.
8152
8153 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
8154
8155         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
8156         avoid repeated linear searches.
8157
8158 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8159
8160         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
8161         methods it can't handle.
8162         
8163         * aot-compiler.c (add_method): Avoid adding a method twice.
8164         (add_wrappers): Add runtime invoke wrappers for all methods.
8165
8166         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
8167         function to create an aot-compatible version of this trampoline.
8168
8169         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
8170
8171 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8172
8173         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
8174
8175         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
8176         with a generic sharing failure.
8177
8178         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
8179
8180         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
8181         CEE_RETHROW. Fixes #419634.
8182
8183         * mini.c (mono_method_to_ir): Ditto.
8184
8185         * exceptions.cs: Add a new test.
8186         
8187         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
8188         to mono_type_stack_size_internal () since some callers might not pass in
8189         an rgctx.
8190
8191         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
8192         instrument_prolog. Fixes #419878.
8193
8194         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
8195         doubles in soft float mode volatile.
8196
8197 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8198
8199         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
8200
8201         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
8202         to handle soft float correctly.
8203
8204         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
8205         the fast path.
8206
8207         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
8208
8209         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
8210         to sp, since the generics catch code requires it.
8211
8212         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
8213         copying.
8214
8215         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
8216         mono_arch_emit_imt_argument ().
8217
8218         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
8219
8220         * mini-arm.c tramp-arm.c: Generic sharing updates.
8221
8222 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8223
8224         * mini-arm.c: Fix the arm build.
8225
8226         * generic-sharing.c (mini_type_get_underlying_type): New helper function
8227         handling enums, generic instances and generic sharing.
8228         (mini_type_stack_size_full): Ditto.
8229
8230         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
8231         
8232         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
8233
8234         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
8235
8236         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
8237         trampolines.
8238
8239         * mini-arm.c: Various small generic sharing changes.
8240
8241         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
8242         this for x86.
8243         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
8244         custom code.
8245
8246         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
8247         helper function to return a generic class init trampoline.
8248
8249         * method-to-ir.c mini.c: Use it.
8250         
8251         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
8252         arch-specfic function to return a generic class init trampoline.
8253
8254         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
8255         the GENERIC_CLASS_INIT custom code.
8256
8257         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
8258         a fatal error, not a sharing failure.
8259
8260         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
8261         needed.
8262
8263         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
8264         trampoline argument from MONO_ARCH_VTABLE_REG.
8265
8266         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
8267         order of the arguments to the C trampoline: pass 'slot' as the trampoline
8268         argument, and pass the vtable in VTABLE_REG.
8269
8270         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
8271         order of the arguments to the C trampoline: pass 'slot' as the trampoline
8272         argument, and pass the vtable in VTABLE_REG.
8273         (mono_arch_create_trampoline_code_full): Remove some special casing for
8274         the rgctx fetch trampoline.
8275
8276         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
8277         Fixes #419273.
8278
8279         * iltests.il: Add a test for it.
8280
8281 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8282
8283         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
8284
8285         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
8286         no longer needed.
8287
8288         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
8289         use mono_jit_info_table_find () to avoid recursion.
8290         (mono_delegate_trampoline): Add a sync wrapper here.
8291
8292         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
8293         here.
8294
8295         * mini.c (mono_method_to_ir): Ditto.
8296         
8297         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
8298         add_sync_wrapper argument. Don't add a sync wrapper here.
8299         (mono_create_jump_trampoline): Don't add a sync wrapper here.
8300
8301         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
8302         
8303 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8304
8305         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
8306           of nonvolatile registers back from MonoContext to CONTEXT.
8307
8308         Contributed under MIT/X11 license.
8309
8310 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8311
8312         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
8313           arguments on Winx64 there are only 4 argument registers.  For this
8314           logic to work the last argument must be pulled from the stack.  
8315
8316         Contributed under MIT/X11 license.
8317
8318 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8319
8320         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
8321
8322         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
8323         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
8324         encode/decode_method_ref ().
8325
8326         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
8327
8328         * aot-runtime.c (decode_patch): Ditto.  
8329
8330         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
8331         MONO_PATCH_INFO_METHOD.
8332
8333         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
8334         MonoGenericJitInfo.
8335
8336         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
8337         MonoGenericJitInfo.
8338
8339         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
8340
8341         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
8342         one from the caller.
8343
8344         * aot-runtime.c (decode_generic_inst): New function to decode and
8345         return a interned generic inst.
8346         (decode_klass_ref): Use it.
8347         (decode_method_ref): Ditto.
8348
8349         * aot-compiler.c (emit_exception_debug_info): Save 
8350         jinfo->has_generic_jit_info too.
8351
8352 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
8353
8354         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
8355
8356         * iltests.il.in: Add a test for fconv_to_i.
8357
8358         * liveness.c: Disable the liveness2 pass for now to save space.
8359
8360         * regalloc2.c: Include mempool-internals.h to fix warnings.
8361
8362         * aot-compiler.c (encode_method_ref): Encode the context of generic
8363         instance methods.
8364
8365         * aot-runtime.c (decode_method_ref): Inflate generic methods using
8366         the context saved in the aot file.
8367
8368         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
8369
8370         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
8371
8372         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
8373         volatile so they won't be optimized away.
8374
8375 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
8376
8377         * ssa.c:
8378         * ssa2.c:
8379         * mini.c:
8380         * regalloc2.c:
8381         * dominators.c: Remove duplicated functions that now are in
8382         mempool-internals.h.
8383
8384 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
8385
8386         * aot-compiler.c: Fix warnings.
8387
8388         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
8389
8390         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
8391
8392         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
8393         as the patch type.
8394
8395         * mini.c (mono_resolve_patch_target): Ditto.
8396         
8397         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
8398         (encode_klass_ref): Add support for encoding VARs/MVARs.
8399
8400         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
8401
8402         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
8403         the handling of the got entries into a separate 'decode_got_entry' function.
8404         Add support for RGCTX_FETCH.
8405
8406         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
8407         clobbered by the trampoline code.
8408
8409         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
8410         not clobbered by the indirect calling code.
8411
8412 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
8413
8414         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
8415         to fix the build.
8416
8417 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
8418
8419         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
8420         signature using the compilation mempool otherwise we would leak it.
8421
8422 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
8423
8424         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
8425         mono_emit_abs_call ().
8426
8427         * patch-info.h: Add GENERIC_CLASS_INIT.
8428
8429         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
8430
8431         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
8432         as their target as a near call.
8433
8434         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
8435         ABS handling code.
8436         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
8437
8438         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
8439         call to a runtime function described by a patch.
8440
8441         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
8442         mono_emit_abs_call, this has the advantage that the ABS handling code in
8443         mono_codegen () can handle them both, and can handle other stuff in the
8444         future without additional code.
8445
8446         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
8447         entry.
8448         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
8449         abs addresses.
8450
8451         * mini.h: Add missing bblock related prototypes.
8452
8453         * mini.h (MonoCompile): Remove unused reverse_inst_list and
8454         reverse_inst_list_len fields.
8455
8456         * mini.c: Refactor this file a bit by moving branch optimizations to 
8457         branch-opts.c.
8458
8459         * method-to-ir.c: Merge generic sharing changes missed earlier.
8460
8461         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
8462
8463         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
8464         shared patches. Process METHODCONST as a shared patch.
8465
8466         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
8467         as it crashes on the 2.0 mscorlib.
8468
8469         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
8470         to cause crashes.
8471         
8472         * aot-compiler.c: Use is_plt_patch () in a few additional places.
8473         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
8474         by IMT.
8475
8476         * aot-compiler.c: Reorganize the got handling code to be a bit more
8477         understandable.
8478
8479 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
8480
8481         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
8482         mono_patch_info_equals/hash, and use it to massively simplify
8483         get_plt_index ().
8484
8485         * mini.c (mono_patch_info_hash): Simplify this and add support for
8486         more patch types.
8487
8488         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
8489
8490         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
8491         handling code, since an offset is not enough to identify a trampoline.
8492
8493         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
8494
8495 2008-08-17  Mark Probst  <mark.probst@gmail.com>
8496
8497         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
8498
8499         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
8500
8501         * mini-ops.h: Argument and result types for OVF_CARRY ops.
8502
8503         * decompose.c: PPC decompositions for various ops.
8504
8505         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
8506
8507 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
8508
8509         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
8510         call the generic trampoline code using a call, instead of a jump, to
8511         remove some special casing from the generic trampoline code.
8512
8513         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
8514         (mono_codegen): Ditto.
8515
8516         * aot-compiler.c aot-runtime.c: Ditto.
8517
8518         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
8519
8520         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
8521         helper function to find the offset corresponding to a lazy fetch trampoline.
8522
8523         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
8524         when doing generic sharing.
8525
8526         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
8527         places.
8528         
8529         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
8530         mini-trampolines.c to be with the other trampoline creation functions.
8531
8532         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
8533         as it is equal to method->signature in most cases, add a 
8534         mono_emit_method_call_full variant which takes a signature and an imt
8535         argument as well.
8536
8537 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8538
8539         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
8540         to this function, since it could be computed easily from the method 
8541         argument.
8542         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
8543         more.
8544
8545         * method-to-ir.c mini.c: Remove references to 
8546         compile_generic_method_wo_context.
8547
8548         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
8549         generic method calls.
8550         
8551         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
8552         dimensional non-szarrays.
8553
8554         * mini.c (mini_init): Register mono_array_new_1.
8555
8556         * jit-icalls.c (mono_array_new_1): New jit icall.
8557
8558         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
8559         pointing to the method.
8560
8561         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
8562         method addresses belonging to METHOD_JUMP patches in the 
8563         jump_target_got_slot_hash.
8564         (mono_aot_load_method): Ditto.
8565
8566         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
8567         METHOD_JUMP patches.
8568
8569         * mini.c (mini_create_jit_domain_info): New helper function which 
8570         initializes/frees domain->runtime_info.
8571         (mini_free_jit_domain_info): Ditto.
8572         (mini_init): Install the domain hook functions with the runtime.
8573
8574         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
8575         information maintained by the JIT.
8576
8577         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
8578         insertion into jump_table_hash into mono_codegen (), also implement proper
8579         locking.
8580
8581         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
8582         tail calls, it is already done by the aot code.
8583         
8584         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
8585         mechanism on amd64.
8586
8587         * iltests.il.in: Make the jmp test a bit more complex.
8588
8589         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
8590         generic instances which doesn't have a token.
8591
8592         * aot-runtime.c (decode_method_ref): Ditto.
8593         
8594         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
8595         can handle this case now.
8596         (handle_box): Ditto.
8597
8598 2008-08-15  Geoff Norton  <gnorton@novell.com>
8599
8600         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
8601         debugging check.
8602
8603 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8604
8605         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
8606         calling generic methods.
8607
8608         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
8609
8610         * aot-runtime.c (decode_patch_info): Ditto.
8611
8612         * mini.c (mono_resolve_patch_target): Ditto.
8613         
8614         * patch-info.h: Add METHOD_RGCTX.
8615
8616         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
8617
8618 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
8619
8620         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
8621         arguments in registers.
8622
8623         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
8624         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
8625
8626         * mini.c (mini_method_compile): Abort aot compilation for generic
8627         methods if generic sharing is disabled.
8628         
8629         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
8630         an mrgctx.
8631
8632         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
8633         requiring an mrgctx.
8634
8635         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
8636         store instructions when converting a vcall to a normal call.
8637
8638         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
8639         mono_arch_find_jit_info.
8640
8641 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
8642
8643         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
8644         avoid calling mono_method_full_name () for every method even if the
8645         env var is not set.
8646         (check_inline_caller_method_name_limit): Ditto.
8647
8648 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8649
8650         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
8651         assemblies in one run.
8652
8653         * aot-compiler.c (mono_compile_assembly): Only print out a count of
8654         skipped methods if it is not 0.
8655
8656         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
8657
8658 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
8659
8660         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
8661           MONO_ARCH_HAVE_UNWIND_TABLE.
8662
8663         Contributed under MIT/X11 license.
8664
8665 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
8666
8667         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
8668           from default optimizaton list on Winx64.
8669
8670         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
8671
8672         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
8673           the LMF from the MonoJitTlsData structure.
8674
8675         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
8676
8677         Contributed under MIT/X11 license.
8678
8679 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8680
8681         * mini.c (sigsegv_signal_handler): Fix the build.
8682
8683         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
8684         assembly->aot_module.
8685
8686         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
8687         hash table. This simplifies and speeds up a lot of code, and fixes support
8688         for .netmodules.
8689
8690         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
8691         with the runtime.
8692
8693         * mini-exceptions.c: Ditto.
8694         
8695         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
8696         'native_offset' argument, since these are computed in the 
8697         mono_find_jit_info () function.
8698
8699         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
8700         is used by exceptions-ppc.c.
8701
8702         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
8703         mono_arch_find_jit_info ().
8704         
8705         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
8706         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
8707         generic code in mini-exceptions.c.
8708
8709 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
8710
8711         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
8712
8713         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
8714         
8715         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
8716         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
8717         called while holding the loader lock. Fixes #415608.
8718         (mono_aot_get_method_from_token_inner): Ditto.
8719
8720 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
8721
8722         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
8723         to reduce differences between this and the generic implementation in
8724         mini-exceptions.c.
8725         (ves_icall_get_frame_info): Ditto.
8726
8727         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
8728
8729         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
8730         longer neccesarry.
8731
8732         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
8733         mono_arch_get_call_filter () and make it non-static, for consistency with the
8734         other architectures.
8735
8736 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
8737
8738         * mini.c:
8739         * local-propagation.c:
8740         * mini-x86.c: Correct the name of arch defines.
8741
8742 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
8743
8744         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
8745         NO_EMULATE_LONG_SHIFT_OPS define.
8746
8747 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8748
8749         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
8750         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
8751
8752         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
8753         MACH fixes. Merged from the 2.0 branch.
8754
8755         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
8756
8757         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
8758         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
8759
8760         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
8761
8762         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
8763         mono_marshal_get_native_wrapper () signature changes.
8764
8765 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
8766
8767         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
8768         conversion bug under arm.
8769
8770 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
8771
8772         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
8773
8774         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
8775         with overflow checking.
8776
8777 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8778
8779         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
8780         to the genmdesc.pl file
8781
8782 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
8783
8784         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
8785         arg_array in the soft-float versions of the LOAD/STORE macros.
8786
8787         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
8788         implementation.
8789
8790         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
8791
8792 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
8793
8794         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
8795         a float HFA. Fixes #413621.
8796
8797 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
8798
8799         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
8800         frame_size to args_size. Fixes build.
8801
8802 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
8803
8804         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
8805         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
8806
8807         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
8808         the stack are not unaligned. Fixes #413247.
8809         
8810 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8811
8812         * mini.c: update jitted methods performance counters.
8813
8814 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
8815
8816         * mini-exceptions.c: increase the exceptions thrown performance
8817         counter in mono_handle_exception ().
8818
8819 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8820
8821         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
8822         can work with netmodules.
8823
8824 2008-07-28  Geoff Norton  <gnorton@novell.com>
8825
8826         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
8827         regression tests.
8828
8829 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
8830
8831         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
8832         correct place.
8833
8834 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
8835
8836         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
8837           The float param registers and other param registers must be the 
8838           same index on Windows x64.
8839
8840         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
8841           ArgValuetypeAddrInIReg argument case.  Setting the argument
8842           op to OP_VTARG_ADDR (OP_REGOFFSET)).
8843
8844         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
8845           variable computed above as the copy length for arguments of storage
8846           type ArgValuetypeAddrInIReg.
8847
8848         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
8849           ArgValuetypeAddrInIReg argument case.  This case will rely on
8850           mono_arch_emit_outarg_vt to emit the correct code later in the process.
8851
8852         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
8853           a 32 byte stack allocation for all calls.  We will omit the adjustment for
8854           jump and tail call instructoins as they do not follow the typical call behavior.
8855
8856         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
8857           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
8858           local variable and pass the local variable by reference to the called method.
8859
8860         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
8861           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
8862           of a struct is passed in a register it must be saved with the other
8863           volatile argument on the stack.
8864
8865         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
8866           frame pointer the stack adjustment value must be saved to the unwind 
8867           info structure.
8868
8869         Contributed under MIT/X11 license.
8870
8871 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
8872
8873         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
8874         which got lost in the merge.
8875
8876 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8877
8878         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
8879         build.
8880
8881         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
8882         
8883         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
8884         icalls, since they won't be patched.
8885
8886         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
8887         different code sequence when running under valgrind to prevent some valgrind
8888         errors.
8889
8890         * iltests.il.in: Add new regression test.
8891
8892         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
8893         end with a throw.
8894
8895         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
8896         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
8897
8898         * iltests.il.in: Add new test.
8899
8900         * aot-compiler.c: Fix some warnings.
8901
8902         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
8903         Fixes #412494.
8904
8905 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8906
8907         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
8908         (mini_usage_jitdeveloper): Add a missing --wapi option.
8909
8910 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
8911
8912         * mini-codegen.c: Simplify the is_fp macros.
8913         (free_up_ireg): Remove, use free_up_reg instead.
8914         (free_up_reg): Fix the fp case.
8915
8916 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
8917
8918         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
8919         lowered earlier.
8920
8921         * exceptions-x86.c: Merge some changes which seemed to have got lost
8922         in the linear-ir merge.
8923
8924         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
8925
8926         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
8927         long vreg volatile even if the variable was already created.
8928
8929         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
8930         volatile variables.
8931
8932 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
8933
8934         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
8935
8936         * mini.c (mono_jit_compile_method_inner): Add support for 
8937         MONO_EXCEPTION_BAD_IMAGE.
8938
8939         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
8940         mini_method_get_context () returns NULL. Fixes #356531.
8941
8942         * mini.c (mono_method_to_ir): Ditto.
8943         
8944         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
8945         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
8946
8947 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
8948
8949         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
8950         in the LDFTN implementation.
8951
8952 2008-07-25  Mark Probst  <mark.probst@gmail.com>
8953
8954         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
8955         code, patch calls to icalls, too, even if they're not in the
8956         shared generic code hash.  Fixes #411962.
8957
8958 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
8959
8960         * cpu-x86.md: Increase the length of the fcall opcodes.
8961
8962         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
8963         calls returning floats.
8964
8965         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
8966         on NEWARR.
8967         
8968         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
8969         missed earlier.
8970
8971         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
8972         into the domain->method_code_hash.
8973
8974         * aot-compiler.c: Fix win32 build.
8975
8976         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
8977         
8978         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
8979         gshared NEWARR implementation.
8980
8981         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
8982
8983         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
8984         can be used outside of method_to_ir.
8985
8986         * mini.h (MonoCompile): Add arg_types field.
8987
8988         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
8989         
8990         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
8991         the values of the local arg_array and param_types array.
8992
8993 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8994
8995         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
8996         got accesses might only get generated later when NEWOBJ is decomposed.
8997         
8998         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
8999         looking up the native code of the target method when a delegate is called
9000         for the first time.
9001
9002         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
9003         optimization.
9004
9005         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
9006
9007         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
9008         AOT work on platforms without a working dlsym implementation.
9009
9010         * mini.h: Bump AOT image format version.
9011         
9012 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9013
9014         * mini-exceptions.c: Free a MonoType with
9015         mono_metadata_free_type() instead of g_free().
9016
9017         * aot-runtime.c: Free a MonoType.
9018
9019 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9020
9021         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
9022         optimization.
9023
9024         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
9025         fp stack on x86.
9026
9027 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
9028         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
9029         profiler hook.
9030
9031 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9032
9033         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
9034         NEWOBJ calls on valuetypes.
9035
9036         * iltests.il.in: Add new test.
9037
9038         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
9039
9040 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9041
9042         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
9043         is no longer needed.
9044
9045         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
9046         non register sized integer arguments.
9047         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
9048         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
9049         emit_memcpy2 ().
9050
9051         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
9052         CEE_MONO_RETOBJ.
9053         
9054         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
9055         two a binop with different sized arguments is emitted.
9056
9057         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
9058         instruction in the ins==NULL case.
9059
9060 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9061
9062         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
9063
9064         * mini-x86.c: Fix osx build.
9065
9066         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
9067         opcodes as well.
9068
9069         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
9070         instruction for non int sized variables.
9071
9072         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
9073         implementation.
9074
9075 2008-07-23  Robert Jordan  <robertj@gmx.net>
9076
9077         * method-to-ir.c: Fix MSVC build.
9078
9079 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9080
9081         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
9082         a non int sized type, widen it to an int since newer versions of gcc seem to
9083         generate code which needs this.
9084
9085         * ssa2.c abcremoval2.c: Fix warnings.
9086
9087         * *: Merge the Linear IR branch.
9088
9089         The original branch is at trunk/branches/vargaz/mini-linear-il, and
9090         the ChangeLog file there describes all the changes done over the years. 
9091         Further documentation can be found at www.mono-project.com/Linear_IL.
9092
9093 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
9094
9095         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
9096           The float param registers and other param registers must be the 
9097           same index on Windows x64.
9098
9099         Contributed under MIT/X11 license.
9100
9101 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
9102
9103         * mini.c: Make the previous fix GC safe.
9104
9105 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
9106
9107         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
9108
9109 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
9110
9111         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
9112           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
9113           ArgValuetypeAddrInIReg instead.
9114
9115         Contributed under MIT/X11 license.
9116
9117 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * mini-codegen.c (get_register_spilling): Fix a warning.
9120
9121 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
9122
9123         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
9124         for types which the initialization fails. Raises the provided exception
9125         at the right stop after cleanup.
9126
9127 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
9128
9129         * aot-compiler.c: Free most of the memory allocated during compilation.
9130
9131         * mini.c (mini_parse_debug_options): Fix a leak.
9132         
9133         * mini.c (mini_method_compile): Don't add the method to the jit info tables
9134         during aot compilation.
9135
9136 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
9137
9138         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
9139         it has too much register pressure.
9140
9141 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9142
9143         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
9144
9145 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9146
9147         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
9148         on x86.
9149
9150         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
9151         on amd64 similar to the way it is done on arm.
9152
9153         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
9154
9155         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
9156         consistency, normalize error messages, avoid loading aot-only modules in
9157         normal mode.
9158
9159         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
9160         for consistency.
9161
9162         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
9163
9164 2008-07-11  Martin Baulig  <martin@ximian.com>
9165
9166         * debug-debugger.h
9167         (MonoDebuggerInfo): Add `interruption_request'.
9168
9169 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9170
9171         * aot-compiler.c (emit_plt): Remove some dead code.
9172
9173         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
9174
9175         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
9176         return the plt info offset belonging to a given plt entry.
9177
9178         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
9179         mono_aot_get_plt_info_offset.
9180         
9181         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
9182         similar to the amd64 code by makeing jumps through a separate jump table 
9183         instead of embedding the jump addresses into the code.
9184
9185 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
9186
9187         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
9188         method.
9189
9190 2008-07-10  Martin Baulig  <martin@ximian.com>
9191
9192         * mini.c (mini_method_compile): Disable generics sharing when
9193         running in the debugger.
9194
9195 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
9196
9197         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
9198
9199         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
9200         the local register allocator from running out of registers on x86 when 
9201         using aot.
9202
9203 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
9204
9205         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
9206         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
9207         C4146.
9208
9209         Contributed under MIT/X11 license.
9210
9211 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
9212
9213         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
9214         speed up the assembler.
9215
9216 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
9217
9218         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
9219         support.
9220
9221         * mini.c: Move the soft float handling macros a bit earlier, add 
9222         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
9223         place.
9224
9225         * mini.h: Add prototype for mono_arch_fixup_jinfo.
9226
9227         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
9228         read-only to help catch code allocation requests.
9229         
9230         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
9231         and turn it off when using --aot-only or when compiling with --aot=full.
9232
9233         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
9234         jump table for switches from the normal domain mempool, not the code
9235         manager.
9236
9237         * mini-trampolines.c (get_unbox_trampoline): New function to return an
9238         unbox trampoline which handles aot-only mode too.
9239
9240         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
9241         an AOTed unbox trampoline.
9242
9243         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
9244
9245 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
9246
9247         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
9248         ""
9249
9250         Contributed under MIT/X11 license.
9251
9252 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
9253
9254         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
9255           the unwind information for the method at the end of the allocated block.
9256           
9257         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
9258           MonoCompileArch to hold the unwind info for SEH on Winx64
9259         
9260         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
9261           frame pointer info for the method being compiled.
9262           
9263         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
9264           the call to mono_exception_from_token.
9265           
9266         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
9267           storing the method prolog information in a format that the Winx64 SEH can understand.  This
9268           information is stored a the end of the method block because it is all 32-bit offset based.
9269
9270         Contributed under MIT/X11 license.
9271
9272 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
9273
9274         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
9275
9276         * wapihandles.c: Fix warnings.
9277
9278         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
9279         mode.
9280
9281         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
9282         mono_jit_compile_method in aot-only mode since that calls the type 
9283         initializer.
9284         
9285         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
9286         get_delegate_invoke_impl in aot-only mode.
9287
9288         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
9289
9290 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
9291
9292         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
9293
9294         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
9295         is on by default.
9296
9297         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
9298
9299         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
9300         init trampoline from the AOT file as well.
9301
9302         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
9303         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
9304         code.
9305
9306         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
9307         mono_init.
9308
9309         * exceptions-amd64.c: Add _full variants for the remaining exception code
9310         creation functions as well, allow emission of relocatable code, remove
9311         caching since that is now done by the caller.
9312
9313         * mini-exceptions.c: Add _full variants for the remaining exception code
9314         creation functions as well, add aot-only support.
9315
9316         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
9317         if we can determine a proper token for them.
9318         (add_wrappers): Add a few more wrappers.
9319         (emit_method_code): Remove some dead code.
9320         (emit_trampolines): Emit exception code too.
9321
9322         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
9323
9324         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
9325         mono_array_new_va which avoids varargs.
9326
9327         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
9328
9329         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
9330         mono_arch_create_specific_trampoline () in all places.
9331
9332         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
9333         a bit so it can be used for other things as well.
9334         
9335         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
9336         on demand as well.
9337
9338         * exceptions-amd64.c: Rename the caching from the exception code creation
9339         functions, it is done by the caller instead.
9340         
9341         * exceptions-amd64.c: Change the signature of the exception code creation 
9342         functions to allow the creation of relocatable code later.
9343
9344         * mini-exceptions.c: Add a set of functions to query the various 
9345         runtime-generated exception functions.
9346
9347         * mini.c mini-exceptions.c: Use the newly added functions instead of the
9348         mono_arch_.. () functions.
9349         
9350 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9351
9352         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
9353
9354         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
9355
9356         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
9357         (mini_get_vtable_trampoline): Ditto.
9358
9359         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
9360         code in the AOT case by returning the code size and a list of relocations to
9361         the caller.
9362
9363         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
9364
9365 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9366
9367         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
9368           clean the stack.
9369
9370         Contributed under MIT/X11 license.
9371
9372 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9373
9374         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
9375         so the buffer size can be computed correctly. Fixes #404735.
9376
9377         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
9378         normally as cfg->debug_info is already freed.
9379
9380 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9381
9382         * mini-amd64.c: For calls returning vtypes in registers, don't store
9383         the return address on the stack, instead allocate a separate local for
9384         it. Fixes #404729.
9385
9386 2008-07-05  Mark Probst  <mark.probst@gmail.com>
9387
9388         * mini-trampolines.c, mini.h: Add an argument to
9389         mono_create_jit_trampoline_in_domain() for turning off the adding
9390         of the sync wrapper.
9391
9392         * mini.c: Use the JIT trampoline without sync instead of
9393         ldftn_nosync in static RGCTX invoke wrappers so that the call can
9394         be patched.
9395
9396 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9397
9398         * driver.c: Turn on GSHARED optimization by default.
9399
9400 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
9401
9402         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
9403         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
9404
9405         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
9406         create a variant of the generic trampoline code callable from AOTed trampolines.
9407
9408         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
9409         trampoline code callable from AOTed trampolines.
9410
9411         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
9412
9413 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9414
9415         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
9416         pass-through manner.
9417
9418         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
9419         and don't fail sharing for them anymore.
9420
9421         * mini-exceptions.c: Handle exceptions in shared generic methods.
9422
9423         * generic-sharing.c: When checking the context of a generic
9424         method, also check its class's context.  Don't treat wrappers as
9425         sharable.
9426
9427         * mini-trampolines.c: Some code factored out to
9428         metadata/generic-sharing.c.  Handle the MRGCTX case.
9429
9430         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
9431         we must deal with the method being of another instantiation of the
9432         class.  Add static rgctx invoke wrappers to generic methods.
9433
9434 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9435
9436         * mini.c: Provide all jit infos of generic shared methods with a
9437         generic jit info.
9438
9439         * mini-exceptions.c: Handle the new situation that a generic info
9440         might be available, but not info about the this/vtable/mrgctx
9441         variable.
9442
9443 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9444
9445         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
9446         generic methods.
9447
9448 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
9449
9450         * dominators.c (check_dominance_frontier): Fix a warning.
9451
9452         * mini.h: Add some missing prototypes.
9453
9454         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
9455
9456         * driver.c (mono_jit_init_version): Correct the comments since the first
9457         argument should be the name of the root domain, not a filename.
9458
9459         * aot-runtime.c (make_writable): Error out if this is called while running
9460         with --aot-only.
9461         (load_aot_module): Ditto.
9462
9463         * aot-compiler.c: Really fix the computation of method indexes.
9464
9465         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
9466         optimizations as this is no longer called frequently.
9467
9468         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
9469         method and the invoke impl code and pass it to the delegate trampoline instead of
9470         just the delegate class.
9471
9472 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9473
9474         * aot-compiler.c: Fixup the computation of method indexes.
9475         (add_wrappers): Create the base methods of the runtime invoke wrappers using
9476         the method builder infrastructure.
9477
9478         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
9479         has no header.
9480
9481         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
9482         mode, load the method right away instead of creating a trampoline.
9483
9484         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
9485
9486         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
9487         some checks a bit.
9488
9489 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9490
9491         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
9492         (mono_aot_load_method): Use method_index instead of method->token.
9493
9494         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
9495         can handle icalls etc. properly.
9496
9497         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
9498
9499         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
9500
9501         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
9502         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
9503         JIT_ICALL_ADDR patch type.
9504
9505         * patch-info.h: Add JIT_ICALL_ADDR patch type.
9506
9507         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
9508         request flag.
9509         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
9510
9511         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
9512
9513 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9514
9515         * mini.c: Use domain->jit_code_hash_lock for controlling access to
9516         domain->jit_code_hash.
9517
9518 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9519
9520         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
9521
9522 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9523
9524         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
9525         get_this_arg_from_call, let it compute it when needed.
9526
9527         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
9528         gsctx from code only when needed.
9529
9530         * mini-trampolines.c (get_generic_context): Rename this to 
9531         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
9532         it can be called by the arch backends.
9533
9534         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
9535
9536 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
9537
9538         * driver.c (mono_main): Add experimental --aot-only command line option.
9539
9540         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
9541         set.
9542
9543 2008-06-26  Kornel Pal  <kornelpal@gmail.com>
9544
9545         * driver.c (DllMain): Remove mono_module_handle.
9546
9547         Contributed under MIT/X11 license.
9548
9549 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
9550
9551         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
9552         for emitting methods which are not in the source assembly. Detect and report
9553         failure of assembling+linking.
9554         
9555         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
9556
9557         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
9558
9559 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
9560
9561         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
9562
9563 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
9564
9565         * mini.h: Remove some obsolete prototypes.
9566
9567         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
9568
9569 2008-06-24  Mark Probst  <mark.probst@gmail.com>
9570
9571         * mini.c (get_object_generic_inst): Variable-sized arrays are not
9572         supported by Visual Studio, so use alloca().
9573
9574 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
9575
9576         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
9577         Fixes #402585.
9578
9579 2008-06-23  Mark Probst  <mark.probst@gmail.com>
9580
9581         * mini.c: Fail sharing of a generic method if it contains an open
9582         catch clause (because we don't pass MRGCTXs yet).
9583
9584 2008-06-23  Mark Probst  <mark.probst@gmail.com>
9585
9586         * mini.c: When compiling a method with generic sharing, insert the
9587         method instantiated with an all-Object generic context into the
9588         jit info table, instead of the context of the first instantiation
9589         of the method we happen to compile.
9590
9591 2008-06-18  Martin Baulig  <martin@ximian.com>
9592
9593         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
9594         `major_version' and `minor_version'.
9595
9596 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9597
9598         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
9599         mono_method_is_generic_sharable_impl() takes an additional
9600         argument specifying whether to treat type variables as reference
9601         types.
9602
9603 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9604
9605         * mini.h: Removed obsolete prototypes.
9606
9607 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9608
9609         * mini.c: Don't fail generic sharing for initobj and sizeof - we
9610         already handle them.
9611
9612 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9613
9614         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
9615         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
9616         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
9617         tramp-x86.c: Added a MonoGenericContext* argument to
9618         mono_arch_get_unbox_trampoline() so that it can call other
9619         functions which require it.
9620
9621 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9622
9623         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
9624         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
9625         mono_arch_get_this_arg_from_call() takes a
9626         MonoGenericSharingContext* as well.
9627
9628 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9629
9630         * mini.c: Factor out code for emitting unbox into emit_unbox() and
9631         implement generic sharing of unbox.
9632
9633 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9634
9635         * mini.c: Don't compute the vtable to determine whether a field is
9636         special static, because it might not work for open types.
9637
9638 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9639
9640         * mini.c: Removed the unused token_type and token_source arguments
9641         from get_runtime_generic_context_ptr().
9642
9643 2008-06-17  Marek Habersack  <mhabersack@novell.com>
9644
9645         * mini.c (ADD_BINOP): fix the build
9646
9647 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
9648
9649         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
9650         a widening op.
9651
9652 2008-06-16  Mark Probst  <mark.probst@gmail.com>
9653
9654         * mini.h: Removed class relations enum that's not used anymore.
9655
9656 2008-06-16  Mark Probst  <mark.probst@gmail.com>
9657
9658         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
9659
9660         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
9661         the lazy fetch trampoline access code.
9662
9663 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
9664
9665         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
9666
9667 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
9668
9669         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
9670
9671         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
9672
9673         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
9674
9675 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9676
9677         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
9678         intrinsics.
9679
9680         * mini-ops.h: Add MIN/MAX_UN opcodes.
9681
9682         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
9683         intrinsics.
9684
9685         * basic-math.cs: Add more min/max tests.
9686
9687         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
9688
9689 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9690
9691         * mini.c: Small fix in the prologue of emit_castclass.
9692
9693 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9694
9695         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
9696
9697         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
9698         do not work even for unsigned types. Fixes #400014.
9699
9700         * basic-math.cs: Add regression tests for unsigned Min/Max.
9701
9702 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9703
9704         * mini.c: Added additional context_used argument to several
9705         functions, which will be needed for sharing generic methods.  Use
9706         GET_RGCTX macro wherever appropriate.  Declare only one
9707         context_used in mono_method_to_ir().
9708
9709 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9710
9711         * mini.c, generic-sharing.c: Removed generic class relations.
9712
9713         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
9714         functions due to MRGCTX changes.
9715
9716 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9717
9718         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
9719         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
9720         with calculated IMT.
9721
9722         * mini.c: Generic sharing of calls via generic interfaces.
9723
9724         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
9725         generic method with non-constant MonoGenericContext*.  Instead,
9726         the context is taken out of the method itself.
9727
9728 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9729
9730         * mini.c: Generic sharing of ldvirtftn.
9731
9732 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9733
9734         * mini.c: Generic sharing of ldftn.
9735
9736 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9737
9738         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
9739
9740 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9741
9742         * mini.c: Generic sharing of the special case of ldtoken followed
9743         by a call to GetTypeFromHandle.
9744
9745 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9746
9747         * mini.c: Generic sharing of box for nullable types.
9748
9749 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9750
9751         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
9752         are passed on the stack. Fixes #324807.
9753
9754 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
9755
9756         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
9757         for the ArgValuetypeAddrInIReg case.
9758
9759         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
9760         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
9761
9762         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
9763         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
9764         local variable and pass the local variable by reference to the called method.
9765           
9766         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
9767         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
9768
9769         Contributed under MIT/X11 license.
9770
9771 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
9772
9773         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
9774
9775         * debug-mini.c (mono_debug_print_vars): Release memory after printing
9776         everything.
9777
9778 2008-06-10  Martin Baulig  <martin@ximian.com>
9779
9780         * debug-mini.c
9781         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
9782
9783 2008-06-09  Kornel Pal  <kornelpal@gmail.com>
9784
9785         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
9786         possible error when no arguments are passed.
9787
9788         Contributed under MIT/X11 license.
9789
9790 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
9791
9792         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
9793         where the file name is NULL.
9794
9795 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9796
9797         * mini.c: Fix s390 build.
9798
9799 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
9800
9801         * trace.c (mono_trace_parse_options): Fix warnings.
9802
9803         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
9804
9805 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9806
9807         * mini.c (remove_block_if_useless): Avoid printing the method name.
9808         
9809         * mini.c: Remove needless setting of ins->cil_code which is now done by 
9810         MONO_INST_NEW.
9811
9812         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
9813         LMF. Not yet used.
9814
9815         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
9816         translated code after it has been patched.
9817
9818 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9819
9820         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
9821         avoid problems during code patching on SMP systems.
9822         (emit_call): Avoid adding a patch info which is already added by 
9823         emit_call_body.
9824         (mono_arch_emit_exceptions): Ditto.
9825
9826 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9827
9828         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
9829         MONO_TYPE_ISSTRUCT already checks for it.
9830
9831 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
9832
9833         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
9834           structs with floats on Winx64 the float registers are not used.  
9835           The integer registers are always used..
9836         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
9837           only one register will be used and only if the size of the struct 
9838           is 1,2,4, or 8 bytes.
9839
9840         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
9841           to work for Winx64.
9842
9843         Contributed under MIT/X11 license.
9844
9845 2008-06-05  Martin Baulig  <martin@ximian.com>
9846
9847         * debug-debugger.c (debugger_lookup_class): Also call
9848         mono_class_setup_methods() here; we're only called from RTI.
9849
9850 2008-06-05  Andreas Farber  <andreas.faerber@web.de>
9851
9852         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
9853         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
9854         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
9855         Post-process object files and add dtrace-generated object, if necessary.
9856
9857         Contributed under MIT/X11 license.
9858
9859 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9860
9861         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
9862         element class.
9863
9864         * mini.c: Generic sharing for unbox.any and castclass.
9865
9866 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9867
9868         * mini.c: Ignore tailcall prefix in shared generic code and when
9869         doing calls which require a vtable/rgctx argument.
9870
9871 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9872
9873         * mini.c: Don't free the JIT info.
9874
9875         * driver.c: Changes in the JIT info table testing code.
9876
9877 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9878
9879         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
9880         interruption. Fix some warnings.
9881
9882         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
9883         interruption_checkpoint.
9884
9885 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9886
9887         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
9888         from embedding applications.
9889
9890 2008-06-02  William Holmes  <billholmes54@gmail.com>
9891
9892         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
9893           reserving 32 bytes on the stack when making calls. 
9894
9895         Contributed under MIT/X11 license.
9896
9897 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
9898
9899         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
9900         the linear IL branch.
9901
9902         * driver.c: Print out more information for --version on arm.
9903
9904 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
9905
9906         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
9907         bb_exit instead, since out of line bblocks might not actually be emitted
9908         out-of-line.
9909         
9910         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
9911         maximum epilog size for out of line bblocks if tracing is enabled.
9912
9913         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
9914
9915 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
9916
9917         * arrays.cs: Regression tests for allocating arrays with negative sizes.
9918
9919 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
9920
9921         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
9922         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
9923         opcodes.
9924
9925 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9926
9927         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
9928         the 'value' to store is a constant.
9929
9930         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
9931
9932         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
9933         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
9934
9935 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9936
9937         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
9938         for accessing method->generic_container.
9939
9940 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9941
9942         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
9943         
9944         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
9945
9946         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
9947
9948         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
9949         fails.
9950
9951 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9952
9953         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
9954
9955         * mini.c: Handle the case when mono_class_vtable () fails.
9956
9957 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9958         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
9959         the stat profiler.
9960
9961 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9962
9963         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
9964         together with domain sharing.
9965
9966 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9967
9968         * mini.c: Treat callvirts to final methods like non-virtual calls
9969         when doing generic sharing, i.e. look them up in the runtime
9970         generic context.
9971
9972 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9973
9974         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
9975         with computed types (for generic sharing).
9976
9977         * mini.c: Generic sharing for mkrefany and refanyval.
9978
9979 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9980
9981         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
9982         possible.
9983
9984         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
9985         the generic sharing code.
9986         
9987         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
9988         when needed.
9989
9990 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9991
9992         * mini.h: Remove the declaration of mono_aot_init_vtable ().
9993
9994 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
9995
9996         * driver.c: updated copyright date
9997
9998 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9999
10000         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
10001         needed.
10002
10003 2008-05-19  Martin Baulig  <martin@ximian.com>
10004
10005         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
10006         pointing to the new `_mono_debug_using_mono_debugger' variable.
10007
10008         * driver.c
10009         (mono_main): Check mono_debug_using_mono_debugger() rather than
10010         the `MONO_INSIDE_MDB' environment variable to check whether we're
10011         inside the debugger.
10012
10013 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
10014
10015         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
10016         argument.
10017
10018 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
10019
10020         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
10021
10022         * mini.c: Added mini_assembly_can_skip_verification. This
10023         function checks if the assembly requested to skip verification. 
10024         Fixes part of #387274.
10025
10026 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10027
10028         * mini.c (mini_get_method): Disable the check for open generic classes when
10029         using generic sharing.
10030
10031         * generics.cs: Add a test for #387034.
10032
10033         * mini.c (mini_get_method): Check whenever the method class is an open generic
10034         type, and return NULL in that case, causing a verification error. Fixes
10035         #384123.
10036
10037 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
10038
10039         * driver.c (mono_main): Revert r102623. The right
10040         thing to do is to enable the verifier under verifiable
10041         unless a --security flag was passed.
10042
10043         We need this non-trivial behavior for --verify-all otherwise
10044         mcs-compileall won't be able to use it. As it needs everything to
10045         be verified under validil.
10046
10047 2008-05-06  Martin Baulig  <martin@ximian.com>
10048
10049         Fix #383749.
10050
10051         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
10052         (mono_debugger_thread_cleanup): Likewise.
10053         (mono_debugger_extended_notification): Likewise.
10054
10055 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
10056
10057         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
10058         against both inflated and non-inflated methods. We need to check against the
10059         generic definition for cases where the instantiated method is not visible.
10060         We need to check against the inflated types for cases where the instantiation
10061         changes any super type. This fixes #382986.
10062
10063         Note that this doesn't need to be applied to other parts of mono_method_to_ir
10064         that check for visibiliy as generic params only appears as the type subject
10065         of tokens on call opcodes. Field manipulation and ldftn must always
10066         target an exact type.
10067
10068 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
10069
10070         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
10071         if no related --security flag is passed.
10072
10073 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
10074
10075         * mini-arch.h: Prepare support for ppc64.
10076
10077         Contributed under MIT/X11 license.
10078
10079 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
10080
10081         * aot-runtime.c: Prepare support for ppc64.
10082
10083         Contributed under MIT/X11 license.
10084
10085 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
10086
10087         * mini-ops.h: Prepare support for ppc64.
10088
10089         Contributed under MIT/X11 license.
10090
10091 2008-05-04  Andreas Farber  <andreas.faerber@web.de>
10092
10093         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
10094
10095         Contributed under MIT/X11 license.
10096
10097 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
10098
10099         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
10100         assemblies, since aot_name is not a full path, causing us to load MS.NET 
10101         assemblies on windows.
10102
10103 ?2008-04-28  Kornel Pal  <kornelpal@gmail.com>
10104
10105         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
10106         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
10107         * main.c: Use UTF-8 encoded command line instead of Windows default code
10108         page on Windows to support Unicode.
10109         * driver.c (DllMain): New function for mixed-mode assembly support.
10110         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
10111         export __stdcall functions without decoration.
10112
10113         Contributed under MIT/X11 license.
10114
10115 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10116
10117         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
10118         saving it very early.
10119
10120 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10121
10122         * mini.h, mini.c: Lots of code for accessing the old RGCTX
10123         deleted.  The only way to access the new RGCTX is via the
10124         trampline.
10125
10126         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
10127         vtable instead of the RGCTX to static methods.
10128
10129         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
10130         accessing the new RGCTX.
10131
10132         * generic-sharing.c: There is no separation between self, type
10133         arguments and other types in the RGCTX anymore.
10134
10135 2008-04-25  Jonathan Chambers <joncham@gmail.com>
10136
10137         * mini-amd64.c (add_general): Remove previous stack adjustment.
10138         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
10139         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
10140         for 32 bytes of stack space reserved for all calls.
10141         
10142         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
10143         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
10144         adjustment.
10145         
10146         Code contributed under MIT/X11 license.
10147
10148 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
10149
10150         * mini.c (mini_method_verify): Only verify non-inflated methods, check
10151         against the root definition, peeling out method and type instantiations.
10152         Cache verify success results, code that fails verification is still
10153         checked multiple times.
10154
10155 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10156
10157         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
10158
10159 2008-04-23  Jonathan Chambers <joncham@gmail.com>
10160
10161         * mini-amd64.c (add_general): Always increment stack on Win64.
10162         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
10163         on Win64.
10164         
10165         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
10166         stack based argument handling on Win64.
10167         
10168         Code contributed under MIT/X11 license.
10169
10170 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
10171
10172         * Makefile.am (version.h): Add support for git-svn.
10173
10174 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10175
10176         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
10177         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
10178         avoiding allocations and libc functions which might deadlock.
10179         
10180         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
10181         'no-gdb-backtrace' option is set.
10182
10183         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
10184
10185         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
10186
10187 2008-04-21  Martin Baulig  <martin@ximian.com>
10188
10189         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
10190         and `get_lmf_addr'; `notification_address' is no longer a pointer.
10191
10192 2008-04-21  Martin Baulig  <martin@ximian.com>
10193
10194         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
10195         `thread_vtable', `event_handler_ptr' and `event_handler'.
10196
10197 2008-04-21  Martin Baulig  <martin@ximian.com>
10198
10199         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
10200         allows delayed initialization of the `executable_code_buffer' when
10201         attaching.
10202
10203 2008-04-21  Martin Baulig  <martin@ximian.com>
10204
10205         * mini.h (mono_debugger_create_notification_function): Removed.
10206         * tramp-*.c (mono_debugger_create_notification_function): Removed.
10207
10208         * mdb-debug-info64.s
10209         (MONO_DEBUGGER__notification_function): Added this in the .text section.
10210
10211         * mdb-debug-info32.s
10212         (MONO_DEBUGGER__notification_function): Added this in the .text section.
10213
10214         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
10215         currently only works on x86 and x86_64, so don't create it on ppc.
10216
10217 2008-04-21  Martin Baulig  <martin@ximian.com>
10218
10219         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
10220
10221         * mini.c
10222         (mini_method_compile): In the fp elimination check, check
10223         `debug_options.mdb_optimizations' in addition to
10224         mono_debug_using_mono_debugger().       
10225
10226         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
10227         disable some JIT optimizations which are only disabled when
10228         running inside the debugger.
10229         Added `--help-debug' option to describe the debugging options.
10230         (parse_debug_options): New static function to parse the `--debug'
10231         options, so we can easily add more stuff in future.
10232
10233 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
10234
10235         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
10236         the method has no body.
10237
10238 2008-04-19  Jonathan Chambers <joncham@gmail.com>
10239
10240         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
10241         assembly is not allowed in MSVC 64-bit compiler. 
10242         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
10243         as we get floating point exceptions everywhere.
10244         
10245         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
10246         correctly align arguments for call to throw_exception.
10247         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
10248         
10249         Code contributed under MIT/X11 license.
10250
10251 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
10252
10253         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
10254
10255 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
10256
10257         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
10258
10259         * mini-amd64.c (NEW_INS): Set cil_code.
10260
10261         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
10262         from mini-amd64.c so all debugger related logic is in one place.
10263
10264         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
10265         later won't have a random ip assigned to them.
10266
10267 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
10268
10269         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
10270         the arch specific function initializes code_size.
10271         (mono_create_delegate_trampoline): Ditto.
10272
10273         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
10274         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
10275         platforms.
10276
10277         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
10278         running under the debugger.
10279
10280         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
10281         debugger.
10282
10283         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
10284         debugger. Also move the disabling of optimizations here from driver.c.
10285         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
10286         debugger.
10287
10288         * mini.h (MonoCompile): Add a few new flags.
10289
10290 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
10291
10292         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
10293         so the cil_code field of created MonoInst's is properly set.
10294         (mini_select_instructions): Ditto.
10295
10296         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
10297         (MONO_INST_NEW_CALL): Ditto.
10298
10299         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
10300         in many places so the ins->cil_code field is properly initialized.
10301
10302         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
10303         place.
10304
10305 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10306
10307         * mini.c (mini_method_compile): Print a different message when compiling a 
10308         shared method.
10309         
10310         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
10311         > 1.
10312
10313 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
10314
10315         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
10316         SSE2 instructions.
10317
10318         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
10319         
10320 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
10321
10322         * mini.c (handle_stack_args): Make this return void since its return value was
10323         never used. Also set cfg->unverifiable for invalid IL instead of calling
10324         G_BREAKPOINT ().
10325
10326 2008-04-10  Mark Probst  <mark.probst@gmail.com>
10327
10328         * mini.c: Make sure "this" is live in catch clauses with type
10329         variables in shared generic code.
10330
10331 2008-04-08  Mark Probst  <mark.probst@gmail.com>
10332
10333         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
10334         generic_class_is_reference_type() to ensure the proper behaviour
10335         when sharing generic code and the type in question is a type
10336         argument.
10337
10338 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10339
10340         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
10341         race conditions when printing thread dumps. Fixes #377738.
10342
10343 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
10344         
10345         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
10346         shows up when both MonoInst arguments can cause aliasig.
10347         There is likely no way in the current JIT to trigger this problem, but
10348         it showed up in the development of generics sharing, when in a new
10349         opcode both args of an OP_GROUP can be aliases (addresses of a local).
10350         When the generics sharing code will be committed, its tests will be
10351         valid also for this bug.
10352
10353 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10354
10355         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
10356         PATCH_INFO_METHOD.
10357
10358         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
10359         NULL.
10360
10361 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
10362
10363         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
10364         use a more detailed exception message for InvalidCastException.
10365
10366         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
10367
10368         * driver.c (mono_main): Add --debug=casts option to turn on better 
10369         InvalidCastException message details.
10370
10371         * mini.c (mini_get_debug_options): New helper function to return the address of
10372         the debug_options variable.
10373
10374         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
10375         the jit_tls TLS variable.
10376
10377         * mini.c (mono_jit_tls): New TLS variable.
10378
10379         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
10380         option is used.
10381
10382 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
10383
10384         * mini.h: Removed verifer related stuff. This code was moved to verify.c
10385
10386         * mini.c: Removed verifer related stuff, code moved to verify.c.
10387
10388         * driver.c: Using code from verify.c instead of mini.c.
10389
10390 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
10391
10392         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
10393         longer valid.
10394
10395 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
10396
10397         * mini.c (check_for_method_verify): Enabling verification of
10398         corlib if mono_verify_all is set. Bugs in the verifier preventing that
10399         have been fixed.
10400
10401 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
10402
10403         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
10404         caller saved registers as well.
10405         
10406         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
10407         saved registers as well.
10408
10409 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
10410
10411         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
10412
10413         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
10414         code.
10415
10416 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
10417
10418         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
10419         to get_call_info.
10420         (get_call_info): Take a gsctx argument instead of 'cfg'.
10421
10422 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10423
10424         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
10425         mono_verify_all is set.
10426
10427         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
10428
10429         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
10430
10431 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10432
10433         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
10434         an exception.
10435
10436         * driver.c mini.c mini.h: Add a --verify-all development option to test the
10437         verifier and the code generated by the compiler.
10438
10439 2008-03-25  Mark Probst  <mark.probst@gmail.com>
10440
10441         * mini.c: Generic sharing of the non-nullable case of the box
10442         instruction.
10443
10444 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
10445
10446         * inssel.brg: Fix the build.
10447
10448         * iltests.il.in: Add a test for lconv.ovf.u8.un.
10449
10450 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
10451
10452         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
10453         Array:Address. Fixes #372410.
10454
10455         * iltests.il.in: New tests for readonly prefix.
10456
10457 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
10458
10459         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
10460         mini-trampolines.c.
10461
10462         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
10463         mini-exceptions.c.
10464
10465         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
10466         
10467         * mini.c (mono_decompose_op_imm): New helper function.
10468
10469         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
10470         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
10471         return value.
10472
10473         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
10474         mono_arch_output_basic_block. Fix warnings.
10475
10476         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
10477         for now.
10478
10479 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
10480
10481         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
10482         since the extra frame is now detected automatically inside the loop.
10483
10484         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
10485         opts which are now in mono_peephole_ins ().
10486         
10487         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
10488
10489         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
10490         frames and skip duplicate managed-to-native frames. Fixes #367665.
10491
10492         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
10493         opts which are now in mono_peephole_ins ().
10494         (mono_arch_peephole_pass_2): Ditto.
10495
10496         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
10497
10498         * mini-codegen.c (mono_peephole_ins): New helper function containing the
10499         arch independent peephole optimizations.
10500
10501         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
10502         opts which are now in mono_peephole_ins ().
10503
10504         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
10505         
10506         * mini-s390.c (mono_arch_output_basic_block): Fix build.
10507
10508         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
10509         pattern.
10510
10511         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
10512         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
10513         opcode. 
10514
10515 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
10516
10517         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
10518         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
10519         return value.
10520
10521         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
10522         mono_arch_output_basic_block. Fix warnings.
10523
10524 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
10525
10526         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
10527         conv.ovf.u.un.
10528
10529 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
10530
10531         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
10532         conv.ovf.u.un.
10533
10534         * iltests.il: Add new tests.
10535
10536 2008-03-20  Kornel Pal  <kornelpal@gmail.com>
10537
10538         * mini.c: Removed Windows version macros.
10539
10540 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10541
10542         * generic-sharing.c: Put reflection types in the extensible part
10543         of the runtime generic context.
10544
10545         * mini.c: Generic sharing of the GetTypeHandle special case of the
10546         ldtoken instruction.
10547
10548 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
10549
10550         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
10551
10552         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
10553         
10554         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
10555         consistency with the other version on the linear IR branch.
10556
10557         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
10558
10559         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
10560
10561         * iltests.il.in: Add new tests.
10562
10563 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
10564
10565         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
10566
10567         * iltests.il.in: Add new tests.
10568
10569 2008-03-19  Mark Probst  <mark.probst@gmail.com>
10570
10571         * mini.c: Two variables with the same name were declared in
10572         nesting contexts and one wasn't initialized.  Fixed.
10573
10574 2008-03-19  Mark Probst  <mark.probst@gmail.com>
10575
10576         * mini.c: Generic sharing of the initobj instruction.
10577
10578 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10579
10580         * mini.c: make the test to optimize ldtoken from typeof() more
10581         precise.
10582
10583 2008-03-18  Mark Probst  <mark.probst@gmail.com>
10584
10585         * mini.c: Generic sharing of the initobj instruction for reference
10586         types.
10587
10588 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
10589
10590         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
10591         the mono_breakpoint_clean_code() code to perform bound checks.
10592
10593 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
10594
10595         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
10596         mono_arch_patch_callsite() to include the start of the managed method
10597         to be able to perform bound checks.
10598
10599 2008-03-17  Mark Probst  <mark.probst@gmail.com>
10600
10601         * mini.c: Generic sharing for the isinst instruction.
10602
10603 2008-03-17  Mark Probst  <mark.probst@gmail.com>
10604
10605         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
10606         inssel-long32-mips.brg: Added opcodes for doing indirect calls
10607         with the runtime generic context argument.
10608
10609         * mini.c: Share calls to several types of unsharable methods by
10610         putting the address of the method code in the runtime generic
10611         context and doing an indirect call.
10612
10613         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
10614         to switches.
10615
10616 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10617
10618         * generic-sharing.c: Change due to a change in the runtime genric
10619         context API.
10620
10621 2008-03-15  Martin Baulig  <martin@ximian.com>
10622
10623         * tramp-x86.c
10624         (mono_arch_nullify_class_init_trampoline): Add call to
10625         mono_breakpoint_clean_code() to make things work when running
10626         inside the debugger.
10627
10628         * tramp-amd64.c
10629         (mono_arch_nullify_class_init_trampoline): Add call to
10630         mono_breakpoint_clean_code() to make things work when running
10631         inside the debugger.
10632
10633 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10634
10635         * inssel-long.brg (reg): Fix 64 bit build.
10636
10637 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10638
10639         * mini.c, mini.h: Share static generic code by passing it an
10640         implicit argument pointing to the runtime generic context.
10641
10642         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
10643         inssel-long32-mips.brg: New opcodes for calling shared static,
10644         which need to be passed the runtime generic context.
10645
10646         * mini-amd64.c, mini-x86.c: Save the runtime generic context
10647         argument on the stack in the prologue if needed.  New function for
10648         finding the runtime generic context argument from the registers
10649         saved by the trampoline.
10650
10651         * mini-amd64.h, mini-x86.h: Specify which register to use for the
10652         runtime generic context argument.
10653
10654         * tramp-amd64.c: Also restore the register used for the runtime
10655         generic context argument.
10656
10657         * mini-trampoline.c: Resolve shared static calls by consulting the
10658         runtime generic context via the new argument.
10659
10660         * generic-sharing.c: Add an argument to sharability-checking
10661         functions that specifies whether type variables should be treated
10662         as sharable type arguments.
10663
10664         * inssel-x86.brg: Removed a superfluous, buggy rule.
10665
10666         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
10667         to switches.
10668
10669 2008-03-14  Martin Baulig  <martin@ximian.com>
10670
10671         * debug-debugger.c (main_thread_handler): Call
10672         mono_runtime_run_main() without sending any notifications.
10673
10674         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
10675
10676 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10677
10678         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
10679
10680 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10681
10682         * tramp-x86.c: Fixed register restore offsets in the trampoline
10683         code for ECX and EDX.
10684
10685 2008-03-12  Geoff Norton  <gnorton@novell.com>
10686
10687         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
10688         different ucontext_t implementations.
10689         * exceptions-arm.c: Use the above defines to get exceptions working on 
10690         iPhone (based on a patch by Luke Howard lukeh@padl.com)
10691         * mini-arm.c: Implement iPhone icache support (based on a patch by
10692         Luke Howard lukeh@padl.com)
10693
10694 2008-03-12  Mark Probst  <mark.probst@gmail.com>
10695
10696         * mini.c: Enable generic sharing of calls to non-static
10697         non-interface non-generic non-value-type methods.
10698
10699         * mini-trampolines.c: Resolve calls from shared generic code.
10700
10701 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
10702
10703         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
10704
10705         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
10706
10707 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
10708
10709         * mini.c: some fixes for the AOT compiler.
10710
10711 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10712
10713         * cpu-amd64.md: Add clob:1 to some float opcodes.
10714
10715 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
10716
10717         * mini.h: Added MiniVerifierMode enumeration.
10718
10719         * mini.c: Added mini_verifier_set_mode to control
10720         the usage of the new verifier.
10721
10722         * mini.c (mono_method): Integrated the new verifier.
10723
10724         * driver.c: Extended --security option with validil and
10725         verifiable options to activate the new verifier.
10726
10727 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10728
10729         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
10730         optimization to ctors taking 0 or 2 arguments too.
10731
10732         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
10733         a bit.
10734
10735         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
10736
10737         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
10738
10739 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10740
10741         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
10742         non-aot case as well.
10743
10744         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
10745
10746         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
10747         changes.
10748
10749         * aot-compiler.c (encode_patch): Ditto.
10750
10751         * mini.h (G_MININT32): Fix the definition of this.
10752
10753 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
10754
10755         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
10756
10757         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
10758
10759 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10760
10761         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
10762         methods returning vtypes in registers.
10763         (mono_arch_allocate_vars): Ditto.
10764
10765         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
10766
10767         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
10768
10769         * generics.cs: Add a test from the linear IR branch.
10770
10771         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
10772
10773         * mini.c (inline_method): Cache failed inline attempts.
10774
10775 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10776
10777         * mini.c: For shared methods of generic classes put the location
10778         of "this" into the MonoGenericJitInfo.
10779
10780         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
10781         register out of a MonoContext by register number.  Add the generic
10782         sharing context as an argument to mono_arch_find_this_argument().
10783
10784         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
10785         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
10786         for new arch function.
10787
10788         * mini-exception.c: Handle open exception clauses in shared
10789         generic code.
10790
10791         * mini-trampolines.c: Supply additional argument to
10792         mono_arch_find_this_argument().
10793
10794 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10795
10796         * Makefile.am (regtests): Run the bench.exe tests last.
10797
10798 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
10799
10800         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
10801         a bit.
10802
10803 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
10804
10805         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
10806         with MS.
10807
10808         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
10809         
10810         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
10811
10812         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
10813         whose class has no cctor.
10814
10815         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
10816
10817 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
10818
10819         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
10820         unverified.
10821
10822 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
10823
10824         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
10825         to be in sync with the code on the linear IR branch.
10826
10827         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
10828
10829         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
10830
10831 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10832
10833         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
10834
10835         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
10836
10837         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
10838
10839         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
10840
10841         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
10842         
10843         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
10844         body.
10845
10846 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
10847
10848         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
10849         OP_LOADR4_MEMBASE emission.
10850
10851         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
10852         (mono_spillvar_offset_float): Ditto.
10853
10854         * mini-mips.c (mono_arch_emit_prolog): Ditto.
10855
10856         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
10857         emission.
10858
10859         * basic-long.cs: Add regression tests for them.
10860
10861         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
10862         use.
10863         (mono_arch_allocate_vars): Fix representation of single-precision float
10864         argument.
10865         (mono_arch_output_basic_block): Ditto.
10866
10867         * inssel-mips.brg: Ditto, remove duplicate items.
10868
10869         * mini-mips.c (emit_load_volatile_arguments): New function to handle
10870         arguments of tail calls as on other platforms.
10871         (mono_arch_output_basic_block): Handle tail calls.
10872
10873         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
10874         register.
10875
10876         * objects.cs (test_5_pass_static_struct): Add test for it.
10877
10878         Contributed under MIT/X11 license.
10879
10880 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10881
10882         * Makefile.am: Use gmcs for compiling the regression tests.
10883
10884         * *.2.cs *.2.il: Rename to *.cs and *.il.
10885
10886 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
10887
10888         * regalloc.h: Make the vassign array smaller.
10889
10890         * mini.c (mini_method_compile): Remove an unused field in cfg.
10891
10892         * mini-codegen.c: Add a bunch of micro optimizations.
10893
10894 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10895
10896         * regalloc.h: Remove some unused fields.
10897
10898 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
10899
10900         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
10901
10902         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
10903
10904 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10905
10906         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
10907
10908         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
10909         trampoline: Fetch an entry from the runtime generic context.  If
10910         it's NULL, jump to the actual trampoline to fill the runtime
10911         generic context.  Otherwise, return it.
10912
10913         * mini.c: Call the lazy fetch trampoline to get entries out of the
10914         runtime generic context.
10915
10916         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
10917         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
10918         tramp-sparc.c: Stubs for the lazy fetch trampoline.
10919
10920 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10921
10922         * mini.c: Fetch data out of the extensible part of the runtime
10923         generic context instead of calling a helper function.
10924
10925         * generic-sharing.c: Some functions moved into
10926         metadata/generic-sharing.c.  Helper function for fetching other
10927         types now checks and asserts against extensible rgctx (just for
10928         debugging purposes - the helper function isn't called anymore
10929         unless for debugging).
10930
10931 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
10932
10933         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
10934         for tail calls up to the point that the tests in iltests.exe run. Also add a
10935         dummy CKFINITE implementation.
10936         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
10937         needed for trampoline LMF frames.
10938
10939         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
10940         trampoline LMF frames.
10941
10942 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
10943
10944         * mini.c (inline_method): clean any pending loader error when inlining fail.
10945         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
10946
10947 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
10948
10949         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
10950
10951         * aot-runtime.c (decode_patch_info): Ditto.
10952
10953         * mini.c (mono_resolve_patch_target): Ditto.
10954         
10955         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
10956         icall wrappers.
10957
10958         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
10959         
10960         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
10961         if it references an icall address.
10962
10963 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10964
10965         * cpu-s390x.md: Remove some more unused opcodes.
10966         
10967         * cpu-s390x.md: Remove some unused opcodes.
10968
10969         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
10970         mono_op_imm_to_op ().
10971
10972         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
10973         instead of a switch statement.
10974         
10975         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
10976         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
10977
10978         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
10979         
10980         * mini-codegen.c: Remove unused mono_regstate2_... functions.
10981
10982         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
10983         -1.
10984
10985 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10986
10987         * driver.c (mono_main): Improve error reporting when an assembly cannot be
10988         opened. Fixes #362607.
10989
10990         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
10991
10992         * iltests.il.in: Add a test for static methods in interfaces.
10993
10994 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
10995
10996         * genmdesc.c (build_table): Fix a crash on older glib versions.
10997
10998         * cpu-sparc.md: Remove some unused opcodes.
10999         
11000         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
11001         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
11002
11003         * cpu-amd64.md: Remove some unused opcodes.
11004
11005         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
11006         like the other opcodes.
11007
11008 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
11009
11010         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
11011
11012         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
11013
11014         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
11015         variables 'cfg' instead of 'm' for consistency.
11016
11017         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
11018
11019         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
11020         argument holding the vtype return address, to avoid the ambigious use of
11021         cfg->ret for this purpose.
11022
11023         * mini.c (NEW_RETLOADA): Use vret_addr if set.
11024
11025         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
11026         
11027         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
11028         new mono_print_ins () function which only takes one argument.
11029
11030 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
11031
11032         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
11033         macro arguments.
11034
11035 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
11036
11037         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
11038
11039         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
11040
11041         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
11042         opcodes and other small changes.
11043
11044         * mini-ops.h: Add some new opcodes from the linear IR branch.
11045
11046         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
11047
11048         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
11049         opcodes, use the REG_MEMBASE opcodes instead.
11050         
11051         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
11052         opcodes, use the REG_MEMBASE opcodes instead.
11053         
11054         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
11055         linear IR branch.
11056
11057         * mini.c (mono_op_imm_to_op): New helper function.
11058
11059         * mini-ops.h: Add some opcodes from linear IR branch.
11060
11061 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
11062
11063         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
11064         <tsv@solvo.ru>.
11065
11066 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
11067
11068         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
11069         OP_ICONV_TO_R4/R8.
11070
11071         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
11072
11073 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11074
11075         * aot-compiler.c (emit_method_code): Add an assert.
11076
11077         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
11078         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
11079         methods.
11080
11081 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
11082
11083         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
11084         some load/store opcodes so they are consistent. 
11085         (mono_arch_emit_prolog): Simplify some code.
11086
11087         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
11088
11089         * objects.cs: Add tests for large argument offsets on ARM.
11090
11091         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
11092         stack offsets. Fixes #359651.
11093
11094         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
11095
11096         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
11097
11098         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
11099
11100         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
11101
11102         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
11103
11104         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
11105         rid of CEE_CONV_R_UN.
11106
11107         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
11108
11109 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
11110
11111         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
11112
11113         * mini.c (mono_normalize_opcodes): Add some more opcodes.
11114
11115         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
11116
11117         * cpu-amd64.md: Remove some unused opcodes.
11118
11119         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
11120
11121         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
11122
11123         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
11124         arch specific functions for its parts. Call the peephole pass after local
11125         regalloc so the prolog can compute a more accurate max_offset.
11126         
11127         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
11128         the corresponding OP_I/OP_L opcodes.
11129
11130         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
11131
11132         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
11133
11134 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11135
11136         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
11137         as they are handled in mini.c.
11138
11139         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
11140         
11141         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
11142         case since it is handled in mini.c.
11143
11144         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
11145
11146         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
11147
11148         * *.c: Use the new opcodes in the IR and back end code.
11149
11150         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
11151
11152         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
11153
11154 2008-02-06  Mark Probst  <mark.probst@gmail.com>
11155
11156         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
11157         an assert because it has a race condition.
11158
11159 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11160
11161         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
11162
11163         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
11164
11165         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
11166
11167         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
11168         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
11169
11170 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11171
11172         * cpu-amd64.md (move): Correct the maximum size of move.
11173
11174 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11175
11176         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
11177         the generic class init trampoline to return quickly if the class
11178         is already inited.
11179
11180 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
11181
11182         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
11183         issues where an 32 bit callsite cannot be patched by a 64 bit address.
11184
11185 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11186
11187         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
11188         branch.
11189
11190 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
11191
11192         * objects.cs: Add some soft-float tests.
11193
11194         * mini.c: Fix a couple more soft-float issues.
11195
11196         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
11197
11198         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
11199         avoid a REX prefix.
11200
11201 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11202
11203         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
11204         exception happens while compiling a virtual method.
11205
11206 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11207
11208         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
11209         
11210         * mini-sparc.c: Fix build.
11211
11212         * mini-sparc.c (get_call_info): Add support for generic sharing.
11213
11214         * mini-exceptions.c: Add a FIXME.
11215
11216 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11217
11218         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
11219         altstack handling code.
11220
11221         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
11222         
11223         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
11224
11225         * mini-s390.c: Add support for generic sharing.
11226
11227         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
11228         Fix CAS on s390.
11229         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
11230
11231         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
11232
11233         * mini-s390x.c: Add support for generic sharing.
11234         
11235         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
11236         Fix CAS on ia64.
11237         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
11238
11239         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
11240         can be used since it takes a 16 bit signed immediate.
11241
11242         * inssel-s390x.brg: Fix OP_SETRET.
11243
11244         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
11245
11246         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
11247
11248         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
11249
11250         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
11251
11252         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
11253         in one place.
11254
11255         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
11256         stuff.
11257
11258         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
11259         of the unused mono_arch_patch_delegate_trampoline stuff.
11260
11261 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
11262
11263         * basic-long.cs: Move the fp related tests to basic-float.cs.
11264
11265         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
11266
11267         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
11268
11269         * basic-calls.cs: Add a test for proper float argument passing.
11270
11271         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
11272         if the context corresponds to an exception received through a signal.
11273
11274         * exceptions.cs: Add a test for nullref handling at the start of a try
11275         clause.
11276
11277         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
11278
11279         * jit-icalls.c (mono_break): New JIT icall.
11280
11281         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
11282
11283         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
11284
11285 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
11286
11287         * cpu-*.md: Get rid of unused opcodes.
11288
11289         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
11290
11291         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
11292         by all platforms.
11293
11294         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
11295         define.
11296
11297         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
11298         the arch independent trampoline code in mini-trampolines.c.
11299
11300         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
11301
11302         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
11303
11304         * mini-s390.h: Remove an unused define.
11305         
11306         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
11307         the arch independent trampoline code in mini-trampolines.c.
11308
11309         * mini-arm.c (mono_arch_emit_prolog): Fix build.
11310
11311 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
11312
11313         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
11314
11315         * mini-s390.c (mono_arch_emit_prolog): Fix build.
11316
11317         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
11318
11319         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
11320
11321         * cpu-amd64.md: Use smaller sizes for int opcodes.
11322
11323         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
11324
11325         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
11326         objects.cs.
11327
11328         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
11329         debugging.
11330
11331         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
11332         instead of though a pointer to save an indirection when accessing elements of
11333         the array.
11334
11335         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
11336         some typos.
11337         (NOT_IMPLEMENTED): New helper macro.
11338         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
11339         of a bb.
11340
11341         * *.c: Use the new helper macro.
11342
11343 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
11344
11345         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
11346
11347 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11348
11349         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
11350         stack slots.
11351
11352 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
11353
11354         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
11355         profiling is enabled.
11356         
11357         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
11358         the end.
11359         (mono_arch_emit_prolog): Add more first bblock optimizations.
11360
11361         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
11362         in order if possible.
11363         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
11364         bblock, since the arguments are still in their original registers.
11365
11366         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
11367
11368 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11369
11370         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
11371         as well.
11372
11373         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
11374         offset 0.
11375
11376         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
11377
11378         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
11379         process async exceptions received while in unmanaged code.
11380
11381         * mini.c (mini_init): Install a callback with the runtime which will be called
11382         when a thread receives an async exception while in unmanaged code.
11383
11384         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
11385
11386         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
11387
11388 2008-01-16  Wade Berrier  <wberrier@novell.com>
11389
11390         * cpu-g4.md:
11391         * cpu-arm.md:
11392         * cpu-s390x.md:
11393         fix build
11394
11395 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11396
11397         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
11398         compilation with sun cc.
11399
11400         * cpu-*.md: Fix the build.
11401
11402         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
11403
11404         * mini-amd64.h: Add some comments to the MonoLMF structure.
11405
11406         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
11407         
11408         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
11409         in the LMF structure if possible. This saves two instructions in the
11410         managed->native wrappers.
11411
11412         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
11413
11414 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11415
11416         * generic-sharing.c: New type argument lookup code which uses the
11417         runtime generic context template.
11418
11419 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11420
11421         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
11422
11423         * mini-arm.c (add_general): Fix arm eabi parameter passing.
11424         (mono_arch_output_basic_block): Fix localloc implementation.
11425
11426         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
11427
11428         * mini-ia64.c (peephole_pass): Fix ia64 build.
11429
11430         * mini-amd64.c (peephole_pass): Fix a warning.
11431         
11432         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
11433         at a constant offset from sp/fp.
11434
11435         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
11436         instead of obtaining it from *lmf in the managed method case.
11437
11438 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11439
11440         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
11441
11442 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
11443
11444         * mini.h (MonoInstList): New type.
11445         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
11446         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
11447         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
11448         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
11449         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
11450         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
11451         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
11452         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
11453         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
11454         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
11455         MONO_INST_LIST_FOR_EACH_ENTRY,
11456         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
11457         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
11458         mono_inst_list_first, mono_inst_list_last,
11459         mono_inst_list_next, mono_inst_list_prev): New instruction
11460         list handling interfaces.
11461         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
11462         list head 'ins_list'.
11463         (MonoInst): Replace next pointer with list head 'node'.
11464         (MonoCallInst): Make 'out_args' a MonoInstList.
11465         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
11466         (MonoCompile): Delete reverse_inst_list and
11467         reverse_inst_list_len.
11468         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
11469         mono_arch_lowering_pass, mono_arch_local_regalloc,
11470         mono_arch_output_basic_block, mono_arch_emit_prolog):
11471         Convert to new instruction lists.
11472         (insert_after_ins): Delete.
11473         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
11474         instruction lists.
11475         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
11476         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
11477         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
11478         mono_emulate_opcode, mono_emit_load_got_addr,
11479         inline_method, mono_method_to_ir, mono_print_bb_code,
11480         print_dfn, decompose_pass, nullify_basic_block,
11481         replace_out_block_in_code, remove_block_if_useless,
11482         merge_basic_blocks, move_basic_block_to_end,
11483         try_unsigned_compare, optimize_branches, mono_print_code,
11484         mini_select_instructions, remove_critical_edges): Likewise.
11485         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
11486         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
11487         mono_arch_output_basic_block, mono_arch_emit_prolog):
11488         Likewise.
11489         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
11490         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
11491         mono_arch_output_basic_block): Likewise.
11492         (inst_list_prepend, insert_after_ins): Delete.
11493         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
11494         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
11495         instruction lists.
11496         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
11497         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
11498         mono_arch_emit_prolog): Likewise.
11499         * cfold.c (mono_constant_fold): Likewise.
11500         * liveness.c (visit_bb, mono_analyze_liveness,
11501         optimize_initlocals): Likewise.
11502         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
11503         * graph.c (mono_draw_code_cfg): Likewise.
11504         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
11505         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
11506         mono_ssa_cprop): Likewise.
11507         * abcremoval (get_relations_from_previous_bb, process_block):
11508         Likewise.
11509         * local-propagation (mono_cprop_invalidate_values,
11510         mono_local_cprop_bb): Likewise.
11511         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
11512         peephole_pass, mono_arch_output_basic_block,
11513         mono_arch_emit_prolog): Likewise.
11514         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
11515         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
11516         mono_arch_emit_prolog): Likewise.
11517         (insert_after_ins): Delete.
11518         * aliasing.c (print_code_with_aliasing_information,
11519         mono_build_aliasing_information, mono_aliasing_deadce):
11520         Convert to new instruction lists.
11521         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
11522         peephole_pass, NEW_INS, mono_arch_lowering_pass,
11523         mono_arch_local_regalloc, mono_arch_output_basic_block):
11524         Likewise.
11525         (insert_after_ins): Delete.
11526         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
11527         peephole_pass, mono_arch_output_basic_block): Convert to
11528         new instruction lists.
11529         * mini-codegen (InstList, inst_list_prepend,
11530         insert_after_ins): Delete.
11531         (insert_before_ins, get_register_force_spilling,
11532         get_register_spilling, free_up_ireg, free_up_reg,
11533         create_copy_ins, create_spilled_store, alloc_int_reg,
11534         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
11535         to new instruction lists.
11536         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
11537         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
11538         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
11539         (insert_after_ins): Delete.
11540         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
11541         mono_arch_local_regalloc, mono_arch_output_basic_block,
11542         mono_arch_call_opcode): Convert to new instruction lists.
11543         (insert_after_ins): Delete.
11544         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
11545         peephole_pass, mono_arch_output_basic_block,
11546         mono_arch_emit_prolog): Convert to new instruction lists.
11547
11548 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11549
11550         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
11551
11552         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
11553         Fixes #353182.
11554
11555         * Makefile.am (version.h): Make this work with non-bash shells.
11556
11557 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11558
11559         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
11560
11561 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11562
11563         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
11564         the InitializeArray optimization.
11565
11566 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11567
11568         * mini.c driver.c: Don't include os/gc_wrapper.h.
11569
11570 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11571
11572         * mini.c (print_jit_stats): Print GC statistics if available.
11573
11574 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
11575
11576         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
11577
11578 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
11579
11580         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
11581
11582 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11583
11584         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
11585         
11586         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11587
11588         * driver.c (mono_main): Ditto.
11589
11590 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11591
11592         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
11593
11594         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
11595         in the vtable can't be encoded.
11596         (compile_method): Ditto.
11597
11598 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11599
11600         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
11601         defined.
11602
11603         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
11604         lmf->rbp.
11605
11606         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
11607         the top LMF entry belongs to the current method.
11608
11609         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
11610
11611 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11612
11613         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
11614         
11615         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
11616
11617         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
11618
11619         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
11620
11621         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
11622
11623         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
11624         implementation.
11625
11626         * basic-float.cs: Add an ulong->double cast test.
11627
11628 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
11629
11630         * mini.c (mono_method_to_ir): Fix a warning.
11631
11632 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
11633
11634         * mini-ops.h: Add OP_SWITCH.
11635
11636         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
11637         CEE_SWITCH in back-end code, use OP_SWITCH instead.
11638
11639 2007-12-11  Geoff Norton  <gnorton@novell.com>
11640
11641         * mini-s390x.c: Minor change to the MAX() define to allow
11642         it to compile with other gcc versions.
11643
11644 2007-12-11  Geoff Norton  <gnorton@novell.com>
11645
11646         * cpu-s390x.md:
11647         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
11648
11649 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11650
11651         exceptions-arm.c (mono_arch_get_restore_context): Restore
11652         the frame pointer.
11653
11654         exceptions-arm.c (throw_exception): Save the frame pointer.
11655         This is a partial fix for #323747. Only the client side is
11656         fixed.
11657
11658 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11659
11660         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
11661         was using an unrelated variable to log the class which
11662         needed the cctor to be called. This was crashing on arm.
11663
11664 2007-12-09  Robert Jordan  <robertj@gmx.net>
11665
11666         * mini-x86.c (mono_arch_emit_epilog):
11667         Consider all kinds of 64-bit types. Fixes #323114.
11668
11669 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
11670
11671         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
11672
11673 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
11674
11675         * mini-amd64.c (peephole_pass): Add a missing instruction check.
11676
11677 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11678
11679         * mini.c: run type ctor before allocating an object, not only
11680         when running it's constructor method (fixes at least part of bug #342507).
11681
11682 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
11683         
11684         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
11685         
11686         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
11687         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
11688         function.
11689
11690         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
11691         mono_generic_class_init_trampoline () the same as it is done with the other
11692         trampolines.
11693
11694         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
11695         aot-runtime.c aot-compiler.c: Implement AOT support.    
11696
11697 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11698
11699         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
11700         build for archs which don't have the vtable trampoline defined
11701         yet.
11702
11703 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
11704
11705         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
11706
11707         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
11708
11709         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
11710
11711         * tramp-<ARCH>.c: Use the new helper function.
11712
11713 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11714
11715         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
11716         trampoline call, which takes a vtable argument.
11717
11718         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
11719         OP_TRAMPCALL_VTABLEs like other calls.
11720
11721         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
11722         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
11723         call.  Implemented a support function which fetches the vtable
11724         from a register set.
11725
11726         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
11727         Implemented a generic class init trampoline, using the
11728         OP_TRAMPCALL_VTABLE opcode.
11729
11730         * mini.c: Implemented static field access when sharing generic
11731         code.  This implies initing the class using the new
11732         OP_TRAMPCALL_VTABLE call.
11733
11734 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11735
11736         * mini.c: Don't compile methods with sharing enabled if their
11737         classes are disabled for sharing.
11738
11739 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11740
11741         * inssel.brg: Add a missing sign extension to the GETCHR and array access
11742         opcodes. Fixes #346563.
11743
11744         * objects.cs: Add a new test.
11745
11746         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
11747
11748         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
11749         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
11750
11751 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11752
11753         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
11754
11755 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11756
11757         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
11758         code stream.
11759
11760 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
11761
11762         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
11763
11764         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
11765         optimization in the AOT case.
11766         
11767 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11768
11769         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
11770         
11771         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
11772
11773         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
11774
11775         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
11776
11777         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
11778         is created by the inlined delegate ctor.
11779
11780         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
11781
11782         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
11783
11784 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
11785
11786         * cpu-x86.md: Fix the length of ckfinite.
11787
11788 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
11789
11790         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
11791         
11792         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
11793         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
11794
11795         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
11796
11797         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
11798         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
11799
11800 2007-11-28  Martin Baulig  <martin@ximian.com>
11801
11802         * mini-x86.c
11803         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
11804         after creating the trampoline.
11805
11806 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
11807
11808         * aot-runtime.c (load_aot_module): Check runtime version if needed.
11809
11810         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
11811         the same version.
11812
11813         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
11814         instead of the calling method to help AOT.
11815
11816         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
11817
11818 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
11819
11820         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
11821         is defined.
11822
11823 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11824
11825         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
11826         
11827         * aot-compiler.c (compile_method): Correct check for generic method definitions.
11828         (encode_method_ref): No need to handle generic method definitions specially.
11829
11830         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
11831
11832         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
11833         decode_klass_info.
11834
11835         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
11836         encode_klass_info.
11837         (compile_method): Enable generic sharing.
11838
11839 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
11840
11841         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
11842         (mini_method_compile): Add preliminary support for AOTing shared generic code.
11843
11844         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
11845         generic code.
11846
11847         * mini-trampolines.c: Fix a warning.
11848
11849         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
11850         NEW_PCONST.
11851         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
11852         (generic_class_is_reference_type): Remove unused function.
11853
11854         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
11855         in the generic vtable trampoline case.
11856
11857         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
11858         
11859         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
11860         return an AOT method based on a vtable slot.
11861
11862         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
11863
11864         * mini.c (mini_get_vtable_trampoline): Export this.
11865
11866 2007-11-22  Martin Baulig  <martin@ximian.com>
11867
11868         * debug-debugger.h
11869         (MonoDebuggerInfo): Move `debugger_version' up.
11870
11871 2007-11-22  Martin Baulig  <martin@ximian.com>
11872
11873         * mini-amd64.c
11874         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
11875
11876         * mini-trampolines.c
11877         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
11878         after compiling the method.
11879
11880 2007-11-20  Martin Baulig  <martin@ximian.com>
11881
11882         * debug-mini.c
11883         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
11884         (mono_debugger_remove_breakpoint): Likewise.
11885         (mono_debugger_check_breakpoints): Likewise.
11886
11887         * debug-debugger.c: Implement the new breakpoint interface here.
11888
11889 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
11890
11891         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
11892         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
11893
11894         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
11895
11896 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11897
11898         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
11899
11900         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
11901         mini.c.
11902
11903         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
11904         mini.c.
11905
11906         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
11907         returning a vtype in a register.
11908
11909         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
11910         here from the arch specific code.
11911
11912         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
11913         mini.c.
11914
11915         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
11916         (mono_arch_emit_prolog): Increment maximum prolog size.
11917
11918         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
11919         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
11920
11921         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
11922         MonoGenericSharingContext.
11923
11924         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
11925         MonoGenericSharingContext. Allocate memory from the cfg mempool.
11926
11927 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11928
11929         * mini.c, mini.h, generic-sharing.c: Functions for producing code
11930         which extract fields out of the runtime generic context.  Full
11931         sharing of the NEWARR opcode.
11932
11933 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11934
11935         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
11936         --enable-minimal=ssa.
11937
11938 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11939
11940         * mini-trampolines.c (mono_delegate_trampoline): Update after 
11941         mono_marshal_get_delegate_invoke () signature change.
11942
11943 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11944
11945         * mini.c: Removed the shared context in favor of the generic
11946         sharing context.  Allocate the MonoJitInfo structure with room for
11947         the generic sharing context if it's needed.
11948
11949         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
11950         domain-internals.h now.
11951
11952         * mini-x86.c: Pass the generic sharing context to get_call_info ().
11953
11954         * generic-sharing.c: Several changes for working without a shared
11955         context and instead operating on open types instead.
11956
11957 2007-11-12  David S. Miller  <davem@davemloft.net>
11958
11959        * inssel-sparc.brg: Fix double instruction emit.
11960
11961 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11962
11963         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
11964         Get/Set/Address methods.
11965         
11966         * mini.c debug-debugger.c mini-trampolines.c: Update after 
11967         mono_marshal_get_delegate_invoke signature change.
11968
11969 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
11970
11971         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
11972         This can happens with dynamic methods. Fixes the other bug in #322722.
11973
11974 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
11975
11976         * tramp-arm.c (mono_arch_patch_callsite): Support patching
11977         BX call sequence.
11978
11979         * mini-arm.c (arm_patch): Implement patching of BX call
11980         sequence. Fixes one of the bugs in #322722.
11981
11982 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
11983
11984        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
11985        under Linux.  We only need to flush every 32-byte cache line.    
11986
11987 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11988
11989         * mini.c:
11990         move_basic_block_to_end: Add branches when needed, eventually creating
11991         a new BB.
11992         optimize_branches: added a parameter that tells if it's ok to create
11993         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
11994         and avoid calling move_basic_block_to_end when it's not ok.
11995         Fixes bug 318677.
11996
11997 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11998
11999         * mini.c: Abort inlining call to InitializeArray if something
12000         looks wrong.  Let the icall handle it, which now has proper safety
12001         checks.
12002
12003 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
12004
12005         * mini.c (mono_spill_call): add support for soft-float.
12006
12007         * mini.c (mono_method_to_ir): add support for soft-float
12008         to inlined functions that return float.
12009
12010         * mini.c (mono_method_to_ir): add support for soft-float
12011         to cee_stsfld opcode on float fields.
12012
12013 2007-11-05  Geoff Norton  <gnorton@novell.com>
12014
12015         * mini-x86.h: Fix the structure access for X86 Leopard.
12016
12017
12018 2007-11-05  Martin Baulig  <martin@ximian.com>
12019
12020         * mini-trampolines.c
12021         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
12022         after compiling the method to notify the debugger.
12023
12024 2007-11-05  Martin Baulig  <martin@ximian.com>
12025
12026         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
12027
12028 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
12029
12030         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
12031         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
12032
12033 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
12034
12035         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
12036         native-to-managed wrappers.
12037         
12038 2007-11-01  Geoff Norton  <gnorton@novell.com>
12039
12040         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
12041         members.
12042
12043 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
12044
12045         * mini.c, mini-x86.c: when getting back from unmanaged code
12046         to managed via a marshaled delegate we also need to set the
12047         right domain.
12048
12049 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
12050
12051         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
12052         for amd64.
12053
12054 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12055
12056         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
12057         let the debugger or other external agents to tell the JIT when
12058         a sw breakpoint has been inserted in the code that the JIT needs
12059         to be able to inspect.
12060
12061 2007-10-31  Martin Baulig  <martin@ximian.com>
12062
12063         * debug-debugger.h
12064         (MonoDebuggerInfo): Remove `runtime_class_init'.
12065
12066 2007-10-30  Martin Baulig  <martin@ximian.com>
12067
12068         * debug-mini.h
12069         (mono_debugger_thread_created): Added `MonoThread *' argument.
12070         (mono_debugger_extended_notification): New public method.
12071         (mono_debugger_trampoline_compiled): New public method.
12072
12073         * debug-mini.c
12074         (MonoDebuggerThreadInfo): Added `thread' and
12075         `extended_notifications' fields.
12076
12077         * debug-debugger.c
12078         (debugger_executable_code_buffer): New static variable.
12079
12080         * debug-debugger.h
12081         (MonoDebuggerInfo): Added `executable_code_buffer',
12082         `executable_code_buffer_size', `breakpoint_info_area',
12083         `breakpoint_table' and `breakpoint_table_size'.
12084
12085 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
12086
12087         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
12088         that IP  either is an unused value or the vtable pointer. IMT 
12089         calls use vtable + offset now. Reduced by almost half the size
12090         of IMT entries.
12091
12092 2007-10-26  Jonathan Chambers <joncham@gmail.com>
12093
12094         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
12095         defines to access param registers. Replace long usage with
12096         gsize as sizeof(long) != sizeof(void*) on Win64.
12097
12098         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
12099         on Win64. Fix intrinsic, use _AddressOfReturnAddress
12100         instead of non-existant _GetAddressOfReturnAddress.
12101
12102         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
12103         param registers. Save/restore %rdi and %rsi in MonoLMF.
12104
12105         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
12106         param registers. Modify (throw_exception) signature to take 
12107         %rdi and %rsi on Win64. 
12108
12109         Code is contributed under MIT/X11 license.
12110
12111 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12112
12113         * helpers.c: unlink debugging output files.
12114
12115 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12116
12117         * mini.c: Move mono_create_ftnptr () to object.c.
12118
12119 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
12120
12121         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
12122         optional. This function can now be used to disassemble code generated
12123         outside the JIT such as trampolines and IMT thunks.
12124
12125         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
12126
12127         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
12128         vtable pointer from a ldr instruction.
12129
12130         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
12131         new IMT call sequence.
12132
12133         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
12134         call sequence for interface invocations.
12135
12136         * mini-arm.c (mono_arch_emit_imt_argument): added, required
12137         for imt support. This function is empty since IMT on ARM requires no
12138         special handling on the IR side.
12139
12140         * mini-arm.c (mono_arch_find_imt_method): added, required for
12141         imt support.
12142
12143         * mini-arm.c (mono_arch_find_this_argument): added, required
12144         for imt support.
12145
12146         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
12147         a ldr instruction to load a value stored in the code stream.
12148
12149         * mini-arm.c (mono_arch_build_imt_thunk):added, required
12150         for imt support.
12151
12152
12153 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12154
12155         * mini.c (mini_init): Install the jump trampoline callback.
12156
12157 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12158
12159         * mini-trampolines.c: handle synchronized methods with the common
12160         vtable trampoline (bug #335601).
12161
12162 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
12163
12164         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
12165
12166         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
12167         64 bit platforms.
12168
12169         * mini-ia64.h mini-ia64.c: Add support for IMT.
12170
12171         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
12172         prolog. Fixes #331958.
12173
12174 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
12175
12176         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
12177
12178 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12179
12180         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
12181         trampoline.
12182
12183 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12184
12185         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
12186         trampoline.
12187
12188 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
12189
12190         * mini-x86.c, mini-x86.h: x86 support for the common vtable
12191         trampoline.
12192
12193 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
12194
12195         * mini-trampolines.c: changed the magic rampoline to understand
12196         the common vtable trampoline method: the method to invoke is
12197         determined by the vtable displacement of the call.
12198
12199 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12200
12201         * mini.c, mini.h: register the common vtable trampoline if the
12202         architecture supports it.
12203
12204 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12205
12206         * cpu-amd64.md: use the correct max length for tls_get.
12207
12208 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
12209
12210         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
12211         CEE_STELEM_ANY. Fixes #333696.
12212
12213 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
12214
12215         * exceptions-x86.c: provide more graceful handling of the case where
12216         we followed a bogus function pointer from managed code (bug #332866).
12217
12218 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12219
12220         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
12221         replaces the generic_shared flag and will carry more information
12222         in the future.
12223
12224         * generic-sharing.c: Added mini_type_stack_size() which allows
12225         allows open types if given a generic sharing context.
12226         mini_get_basic_type_from_generic() takes a
12227         MonoGenericSharingContext* instead of a MonoCompile* now.
12228
12229         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
12230         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
12231         mini-sparc.c, mini-x86.c: Trivial changes required by the two
12232         changes above.  Just passing arguments through to the right
12233         places.
12234
12235 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12236
12237         * mini-arm.c: unify the call emission to emit_code_seq().
12238
12239 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
12240
12241         * tramp-arm.c: reduced the trampoline size.
12242
12243 2007-10-10  Mark Probst  <mark.probst@gmail.com>
12244
12245         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
12246         variable handling out of arch-specific code.
12247
12248 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
12249
12250         * mini-arm.c: implemented fast delegate dispatch.
12251
12252 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
12253
12254         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
12255         that fp elimination is turned off if the space required by locals is too
12256         big. Fixes #331958.
12257
12258 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12259
12260         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
12261         ARM to the new style trampoline.
12262
12263 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
12264
12265         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
12266
12267         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
12268
12269 2007-10-09  Martin Baulig  <martin@ximian.com>
12270
12271         * debug-debugger.h
12272         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
12273         `field_info_offset_offset'.     
12274
12275 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
12276
12277         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
12278         removed more internal usage of the r11 register and made it available
12279         to the register allocator.
12280
12281 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12282
12283         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
12284         when sharing generics and treat type variables as references.
12285
12286 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12287
12288         * mini-ppc.c: started removing the internal uses of register r11
12289         to eventually allow the register allocator to manage it as an
12290         additional available register.
12291
12292 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12293
12294         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
12295
12296 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
12297
12298         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
12299         specific trampolines as they are not performance critical as a jump
12300         target (maybe align as before only for AOT code?). This saves about
12301         200 KB of native code on x86 for monodevelop startup.
12302
12303 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12304
12305         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
12306         monodevelop startup.
12307
12308 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
12309
12310         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
12311
12312         * mini-sparc.h mini-sparc.c: Implement IMT support.
12313
12314         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
12315         its smaller and doesn't clobber sparc_g1.
12316
12317         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
12318
12319 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12320
12321         * mini-ppc.c: optimized the size of the IMT thunks a bit.
12322
12323 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
12324
12325         * mini-ppc.c: implemented fast delegate invocation.
12326
12327 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
12328
12329         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
12330
12331 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12332
12333         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
12334         code to the new style trampoline in preparation for IMT support.
12335
12336 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12337
12338         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
12339         systems already. This also reduces the specific trampiline sizes and
12340         prepares for the use of r12 as the IMT identifier register.
12341
12342 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12343
12344         * mini-mips.h: endianess fix (simplified from a patch by
12345         Thomas Kunze <thommy@tabao.de>, bug #323737).
12346
12347 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12348
12349         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
12350         to access ucontext fields and enable netbsd support
12351         (partially from Magnus Henoch <mange@freemail.hu>).
12352
12353 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12354
12355         * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
12356         use the preprocessor from the CPP env var if it is set.
12357
12358 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12359
12360         * mini-trampolines.c: fixed an assertion and moved it earlier in the
12361         code, before interface_offset gets used.
12362
12363 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
12364
12365         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
12366         mono_class_setup_vtable () before accessing klass->vtable.
12367
12368 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
12369
12370         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
12371         hackish.
12372
12373 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12374
12375         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
12376         IMT slots (this saves hundreds of KB of memory in programs like
12377         IronPython and Monodevelop).
12378
12379 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12380
12381         * mini.c: print the delegate counter.
12382
12383 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
12384
12385         * mini-x86.c: make it easier to enable the debugging code for IMT
12386         slots.
12387
12388 2007-09-28  Martin Baulig  <martin@ximian.com>
12389
12390         * debug-debugger.h
12391         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
12392         `mono_method_klass_offset' and `mono_method_token_offset'.
12393
12394 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12395
12396         * mini.c: First generics sharing implementation.  Can only share
12397         in very simple cases.  If sharing doesn't work it falls back to
12398         dedicated compilation.
12399
12400         * mini.h: Flag in MonoCompile to specify whether generic
12401         compilation is shared.  Flags enum for marking which generic inst
12402         of a context is used.  Prototypes for helper functions.
12403
12404         * generic-sharing.c: Helper functions for generic method sharing.
12405
12406         * optflags-def.h: Optimization flag (gshared) for enabling generic
12407         method sharing added.
12408
12409         * Makefile.am: generic-sharing.c added.
12410
12411 2007-09-19 Daniel Nauck <dna@mono-project.de>
12412
12413         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
12414
12415 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
12416         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
12417         fixes bug 325507.
12418
12419 2007-09-19  Martin Baulig  <martin@ximian.com>
12420
12421         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
12422         mono_debug_cleanup() is now part of mono_cleanup().
12423
12424 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12425
12426         * driver.c (mono_main): Fix a warning.
12427
12428 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12429
12430         * aot-compiler.c: Optimize various parts when processing large assemblies.
12431         Fixes ##325568.
12432
12433         * mini.c (mono_patch_info_hash): Improve hash function.
12434
12435 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12436
12437         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
12438         
12439         Code is contributed under MIT/X11 license.
12440
12441 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12442
12443         * mini.c (mini_init): Fix a leak.
12444
12445         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
12446
12447 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
12448
12449         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
12450
12451 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12452
12453         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
12454
12455 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12456
12457         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
12458         variance tests.
12459
12460         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
12461
12462         * mini.c (handle_alloc): Enable managed allocators in AOT code.
12463
12464         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
12465
12466         * aot-runtime.c (decode_patch_info): Ditto.
12467
12468 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12469
12470         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
12471         static case. Cache delegates in architecture specific code, 
12472         based on number of parameters.
12473         
12474         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
12475         in architecture specific code, based on number of parameters.
12476         
12477         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
12478         caching happen in architecture specific code now.
12479         
12480         Code is contributed under MIT/X11 license.
12481
12482 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12483
12484         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
12485         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
12486         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
12487
12488         Code is contributed under MIT/X11 license.
12489
12490 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
12491         * mini.c: (mono_thread_abort) Fixed bug #82416.
12492
12493 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12494
12495         * mini.: hook the new managed GC allocation feature into the JIT.
12496
12497 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12498
12499         * mini.c: implementation for the new runtime tls opcode.
12500
12501 2007-09-11  Martin Baulig  <martin@ximian.com>
12502
12503         * debug-debugger.h
12504         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
12505         `mono_method_inflated_offset'.
12506
12507 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
12508
12509         * driver.c mini.h mini.c: Add a new devel command line option for injecting
12510         async exceptions into a method.
12511
12512         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
12513         purpose of testing whenever the unwinder works at every instruction.
12514
12515 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12516
12517         * mini.c: check accessibility of method used in ldftn (fixes
12518         bug #82635).
12519
12520 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
12521
12522         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
12523
12524         * inssel.brg: Fix a warning.
12525
12526 2007-09-03  Martin Baulig  <martin@ximian.com>
12527
12528         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
12529         now takes the `main_method' as argument.
12530
12531 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
12532
12533         * cpu-sparc.md (endfilter): Add missing src1:i argument.
12534
12535 2007-08-30  Jonathan Chambers <joncham@gmail.com>
12536
12537         * driver.c: include the cil-coff.h header on Windows.
12538         
12539         Code is contributed under MIT/X11 license.
12540
12541 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
12542
12543         * mini.c, driver.c: don't include the cil-coff.h header.
12544
12545 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12546
12547         * mini.c: flag places that needs fixes fo soft-float support.
12548
12549 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
12550
12551         * mini.h, inssel-float.brg: fix soft-float constant loads on big
12552         endian systems (partially from Dean Jenkins, bug #81924).
12553
12554 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12555
12556         * mini.c (check_linkdemand): Remove embedded reference object in
12557         call to LinkDemandSecurityException.
12558         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
12559         with an IntPtr instead of a reference object.
12560
12561 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12562
12563         * mini.c (handle_initobj): Handle alignment properly.
12564
12565         * inssel.brg (mini_emit_memset): Ditto. 
12566
12567         * inssel.brg (mini_emit_memcpy): Ditto. 
12568
12569         * inssel-sparc.brg: Ditto.              
12570
12571         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
12572
12573 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
12574
12575         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
12576         exceptions raised in unmanaged code. Fixes part of #82594.
12577
12578 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12579
12580         * mini.c (mono_method_to_ir), declsec.c
12581         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
12582
12583 2007-08-22  Martin Baulig  <martin@ximian.com>
12584
12585         * debug-mini.h
12586         (MonoDebuggerThreadInfo): New typedef.
12587         (mono_debugger_thread_table): New global variable.
12588         (mono_debugger_thread_created): New public function.
12589         (mono_debugger_thread_cleanup): New public function.
12590
12591         * debug-debugger.h
12592         (MonoDebuggerInfo):
12593         - removed `get_current_thread' and `lookup_assembly'.
12594         - removed `data_table'.
12595         - added `thread_table'.
12596
12597         * mini.c
12598         (mono_thread_start_cb): Call mono_debugger_thread_created().
12599         (mono_thread_attach_cb): Likewise.
12600         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
12601         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
12602         initial domain.
12603
12604         * driver.c (mono_main): Move mono_debug_init() up, before calling
12605         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
12606
12607 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12608
12609         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
12610         together when passing several arguments of type double (gives a small
12611         speedup and saves a few bytes of generated code).
12612
12613 2007-08-20  Jb Evain  <jbevain@novell.com>
12614
12615         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
12616
12617 2007-08-20  Jb Evain  <jbevain@novell.com>
12618
12619         * mini.c (mono_method_to_ir): throw MethodAccessException
12620         and FieldAccessException instead of InvalidProgramException.
12621
12622 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12623
12624         * mini.c: CoreCLR security checks.
12625
12626         * mini.h: Removed MonoSecurityMode (moved to
12627         metadata/security-manager.h) and mono_security_mode global var
12628         (replaced by set/get functions in security-manager.h).
12629
12630         * driver.c: Added "core-clr-test" security mode for testing.  Used
12631         set-function for setting security mode.
12632
12633 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12634
12635         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
12636         the new jit_info_table.
12637
12638         * driver.c: Test code for the new jit_info_table (enabled by the
12639         define MONO_JIT_INFO_TABLE_TEST).
12640
12641 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
12642
12643         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
12644         detection of call <REG> instruction sequence. Fixes build on freebsd.
12645
12646 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
12647
12648         * mini-exceptions.c: Fix a warning.
12649
12650 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
12651
12652         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
12653         stack overflow handling code on amd64 too.
12654
12655         * mini-exceptions.c (mono_setup_altstack): Make this use 
12656         mono_thread_get_stack_bounds ().
12657
12658         * mini-x86.h: Disable sigaltstack on solaris x86.
12659
12660 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
12661
12662         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
12663
12664 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
12665
12666         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
12667
12668 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
12669
12670         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
12671
12672         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
12673
12674 2007-08-03  Neale Ferguson <neale@sinenomine.net>
12675
12676         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
12677         due to alignment.
12678
12679 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
12680
12681         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
12682         to be emitted (bug #82281).
12683
12684 2007-08-01  Martin Baulig  <martin@ximian.com>
12685
12686         Merged the `debugger-dublin' branch.
12687
12688         * debug-debugger.h (MonoDebuggerInfo):
12689         Removed the `old_*' compatibility entries.
12690         Added `debugger_version' and `data_table'.
12691         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
12692         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
12693
12694         * debug-mini.c
12695         (MiniDebugMethodBreakpointInfo): Add `address_list'.
12696         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
12697         instead of a `gconstpointer'.
12698         (mono_debugger_insert_method_breakpoint): Return a
12699         `MonoDebugMethodAddressList *'.
12700
12701 2007-06-28  Martin Baulig  <martin@ximian.com>
12702
12703         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
12704
12705 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
12706
12707         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
12708         __builtin_frame_address () since it is broken on older gcc versions.
12709
12710 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12711
12712         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
12713         on the stack overflow handling and made the managed stack overflows
12714         catchable in most cases using soft guard pages.
12715         * exceptions-x86.c: added code to restore the protection in the soft
12716         guard pages at the end of exception handling.
12717
12718 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
12719
12720         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
12721
12722 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
12723
12724         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
12725         exception handling.
12726
12727 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
12728
12729         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
12730         signal handling support until it has been ported to the new mechanism.
12731         * mini.c: fixed stack overflow detection and use the new
12732         architecture code  to handle signals on the altstack.
12733
12734 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12735
12736         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
12737         stack overflows on the alt stack.
12738
12739 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12740
12741         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
12742         stack overflows on the alt stack.
12743
12744 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
12745
12746         * exceptions-ppc.c: cleanup preparing for altstack support.
12747
12748 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
12749
12750         * exceptions-arm.c: cleanup preparing for altstack support.
12751
12752 2007-07-27  Mark Probst  <mark.probst@gmail.com>
12753
12754         * mini.c (print_jit_stats): Output hazard pointer stats.
12755
12756 2007-07-26  Mark Probst  <mark.probst@gmail.com>
12757
12758         * driver.c, mini.c: Replaced security mode flags with a single
12759         enum variable.
12760
12761 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12762
12763         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
12764
12765 2007-07-25  Mark Probst  <mark.probst@gmail.com>
12766
12767         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
12768         (which doesn't do anything yet) for activating Core CLR
12769         (Silverlight) security.
12770
12771 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
12772
12773         * mini-codegen.c: work around a possible gcc bug on arm.
12774
12775 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12776
12777         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
12778         message for platforms that don't support AOT compilation.
12779
12780 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
12781
12782         * mini.h, mini.c, driver.c: temporary smcs hack.
12783
12784 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
12785
12786         * mini-arm.h, mini-arm.c: arm EABI fixes.
12787
12788 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
12789
12790         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
12791         case.
12792
12793         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
12794         trampolines taking a method argument.
12795
12796         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
12797
12798         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
12799         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
12800
12801         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
12802         JIT compilation throws an exception. Fixes #82050.
12803
12804 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12805
12806         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
12807         with the MONO_EXCEPTION_ defines.
12808
12809 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
12810
12811         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
12812         #82117.
12813         
12814         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
12815         the cause of an assertion.
12816
12817 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
12818
12819         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
12820         removed.
12821
12822 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
12823
12824         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
12825         assert. Should fix #82103.
12826
12827 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
12828
12829         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
12830         here too. Fixes #82095.
12831
12832         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
12833         addresses.
12834
12835         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
12836
12837         * mini-amd64.h: Enable IMT for amd64.
12838         
12839         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
12840
12841 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
12842
12843         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
12844
12845 2007-07-12  Mark Probst  <mark.probst@gmail.com>
12846
12847         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
12848         as soon as check_linkdemand sets an exception_type.
12849
12850 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
12851
12852         * mini-x86.c: fixed offsets for IMT call sequence.
12853         * mini-x86.h: enable IMT again.
12854
12855 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
12856
12857         * trace.c (mono_trace_enter_method): Decode MonoType too.
12858
12859         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
12860
12861         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
12862
12863         * mini-amd64.c: Add preliminary IMT implementation.
12864         
12865 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
12866
12867         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
12868         understand the new IMT-base interface invocation (thanks to
12869         Daniel Nauck for the report and the remote debugging session).
12870
12871 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12872
12873         * mini-x86.c: size and speed optimizations for the IMT bsearch.
12874
12875 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
12876
12877         * Makefile.am (aotcheck): Make this actually use the AOTed code.
12878
12879 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
12880
12881         * mini-trampolines.c: implement AOT IMT support.
12882         * mini-x86.h: enable IMT support for wider testing.
12883
12884 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12885
12886         * inssel.brg (emit_imt_argument): Add aot support here.
12887
12888         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
12889
12890 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12891
12892         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
12893         of the IMT implementation, partially from massi, with my
12894         implementation of the bsearch sequence. Disabled by default until
12895         the AOT code is implemented.
12896
12897 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12898
12899         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
12900
12901         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
12902
12903 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12904
12905         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
12906         arch-independent IMT JIT code from Massimiliano
12907         Mantione (massi@ximian.com) with small cleanups from me.
12908
12909 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
12910
12911         * Makefile.am: fix svn invocation to get the svn revision to be
12912         independent of the local language (build fix).
12913
12914 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12915
12916         * mini.c (inline_method): Reset cfg->exception_type if the
12917         inlining is aborted.  Fixes: 82049.
12918
12919 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12920
12921         * mini.c: remove assert from exception handling code when exception_ptr
12922         is not set.
12923
12924 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
12925
12926         * mini.c (mono_codegen): Add an assert.
12927
12928         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
12929         enter and leave code.
12930         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
12931
12932 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12933
12934         * mini-ppc.c: fixed memory corruption for localloc(0)
12935         (bug #81852).
12936
12937 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
12938         
12939         * mini.c: Fix warnings.
12940
12941 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12942
12943         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
12944         to emit better double->int conversions.
12945
12946 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12947
12948         * mini.c: the provided Min/Max optimizations are valid for unisgned
12949         ints.
12950
12951 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
12952
12953         * 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
12954
12955 2007-06-28  Miguel de Icaza  <miguel@novell.com>
12956
12957         * mini.c (mono_running_on_valgrind): Add support for reporting the
12958         method and  its boundaries to valgrind.
12959
12960 2007-06-28  Martin Baulig  <martin@ximian.com>
12961
12962         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
12963
12964 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
12965
12966         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
12967
12968         * generic.2.cs: Add new test case.
12969
12970 2007-06-25  Martin Baulig  <martin@ximian.com>
12971
12972         Merged the `debugger-dublin' branch.
12973
12974         * debug-mini.c
12975         (mono_debugger_insert_method_breakpoint): New public method.
12976         (mono_debugger_remove_method_breakpoint): Likewise.
12977         (mono_debugger_check_breakpoints): New static method.
12978         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
12979
12980         * debug-debugger.h (MonoDebuggerInfo):
12981         Renamed (to keep backward compatibility in the vtable):
12982         `insert_breakpoint' -> `old_insert_breakpoint'.
12983         `remove_breakpoint' -> `old_remove_breakpoint'.
12984         `create_string' -> `old_create_string'.
12985         `lookup_class' -> `old_lookup_class'.
12986         `lookup_type' -> removed; changed into a dummy field.
12987         `lookup_assembly' -> `old_lookup_assembly'.
12988         Added (same functionality, but different signature):
12989         `create_string', `lookup_class', `lookup_assembly'
12990         Added new:
12991         `get_method_addr_or_bpt', `remove_method_breakpoint',
12992         `runtime_class_init'.
12993
12994         * debug-debugger.c: Merged the `debugger-dublin' branch.
12995
12996 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
12997
12998         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
12999         well.
13000         (peephole_pass): Likewise.
13001
13002 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13003
13004         * driver.c: hopefully make setaffinity work also for ancient
13005         versions of linux.
13006
13007 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
13008
13009         * driver.c : win32 build fix.
13010
13011 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
13012
13013         * driver.c: check for the MONO_NO_SMP env var and bind to a single
13014         processor if it is set.
13015
13016 2007-06-21  Martin Baulig  <martin@ximian.com>
13017
13018         * debug-mini.h: New file.
13019
13020         * debug-mini.c
13021         (mono_debugger_insert_breakpoint_full): Moved here from
13022         ../metadata/mono-debug-debugger.c.
13023         (mono_debugger_remove_breakpoint): Likewise.
13024         (mono_debugger_breakpoint_callback): Likewise.
13025
13026 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13027
13028         * jit-icalls.c (mono_helper_compile_generic_method): Update to
13029         changes in MonoGenericClass.
13030
13031 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
13032
13033         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
13034
13035 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13036
13037         * jit-icalls.c (mono_helper_compile_generic_method): Update to
13038         removal of MonoGenericMethod.
13039
13040 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13041
13042         * mini-exceptions.c: hooks for the exception events profiling API.
13043
13044 2007-06-14  Randolph Chung  <tausq@debian.org>
13045
13046         * Makefile.ma: Add hppa target.
13047         * mini-arch.h: Include mini-hppa.h
13048         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
13049         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
13050         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13051
13052 2007-06-14  Randolph Chung  <tausq@debian.org>
13053
13054         * inssel.brg: Add rules for "chained" compare-branch operations so that
13055         a single compare op can affect multiple branches.  Adjust cost for
13056         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
13057         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
13058         cost for some rules so that they can more easily be overridden by
13059         per-arch rules (with fixes from lupus).
13060         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13061
13062 2007-06-13  Randolph Chung  <tausq@debian.org>
13063
13064         * mini-ops.h: Reorder branch ops so that they match the order of the
13065         corresponding CEE_* ops.  The code expects them this way.
13066         Add new ops for HPPA target.
13067         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13068
13069 2007-06-13  Randolph Chung  <tausq@debian.org>
13070
13071         * mini-exceptions.c: Handle cases where the stack grows towards
13072         larger addresses.
13073         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13074
13075 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13076
13077         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
13078         counter.
13079         * driver.c: explain where a non-matching corlib is found.
13080
13081 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13082
13083         * mini.c (print_jit_stats): Output dynamic code allocation stats.
13084
13085 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
13086
13087         * mini-exceptions.c: Generate a method profile leave event during
13088         an exception to ensure that the profiler gets notified.
13089
13090 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
13091
13092         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
13093         branch.
13094
13095         * cpu-amd64.md: Add long_and/or/xor opcodes.
13096
13097 2007-06-06  Wade Berrier  <wberrier@novell.com>
13098
13099         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
13100         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
13101         length of instruction shr_imm (expected 8, got 10)
13102
13103 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
13104
13105         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
13106
13107 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13108
13109         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
13110         MonoInternalHashTable again (fixed bug in the internal hash table
13111         code).
13112
13113 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13114
13115         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
13116         Have to figure out what makes it crash the SWF regression.
13117
13118 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
13119
13120         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
13121
13122 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13123
13124         * mini.c: optimize out the type check when storing null in a
13125         reference array.
13126
13127 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13128
13129         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
13130         MonoInternalHashTable.
13131
13132 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13133
13134         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
13135         signed integer methods.
13136
13137 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
13138
13139         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
13140         permanently since the current approach doesn't work.
13141
13142 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
13143
13144         * inssel.brg (stmt): Only call delegate->invoke_impl if 
13145         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
13146
13147 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
13148
13149         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
13150         the sreg2==rdx case.
13151         
13152         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
13153         account if it contains a rex prefix.
13154         (peephole_pass): Handle OP_FMOVE as well.
13155
13156 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
13157
13158         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
13159         as it causes regressions.
13160
13161 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13162
13163         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
13164         static case as well.
13165
13166         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
13167
13168         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
13169         (mono_arch_get_this_arg_from_call): Ditto.
13170
13171         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
13172
13173         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
13174         invoke_impl field.
13175
13176         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
13177         (mono_arch_get_this_arg_from_call): Ditto.
13178
13179         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
13180         
13181         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
13182         try to create optimized invoke code and use that for further invocations. 
13183         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
13184
13185         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
13186
13187 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
13188
13189         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
13190         sealed classes or methods.
13191         *devirtualization.cs: tests for the new optimization
13192
13193 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
13194
13195         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
13196         by the update_volatile () function.
13197
13198 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
13199
13200         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
13201         require it.
13202
13203         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
13204
13205 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13206
13207         * mini.c: Add configure checks for header files.
13208         * mini-x86.c: Add configure checks for header files.
13209         * trace.c: Add configure checks for header files.
13210         * aot-runtime.c: Add configure checks for header files.
13211         * aot-compiler.c: Add configure checks for header files.
13212         * driver.c: Add configure checks for header files.
13213         * mini-codegen.c: Add configure checks for header files.
13214         
13215         Code is contributed under MIT/X11 license.
13216
13217 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
13218
13219         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
13220         icompare_imm -128 + op_iclt. Fixes #81703.
13221
13222 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
13223
13224         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
13225
13226 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
13227
13228         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
13229         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
13230         so that all isinst checks now use "interface_bitmap".
13231
13232 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
13233
13234         * cpu-amd64.md (jmp): Fix a warning.
13235
13236         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
13237
13238         * basic.cs: Add new regression test.
13239
13240         * basic.cs: Remove test which is now in basic-long.cs.
13241
13242         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
13243
13244         * basic-long.cs: Add new test.
13245         
13246 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
13247
13248         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
13249
13250 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
13251
13252         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
13253
13254         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
13255         places.
13256         
13257         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
13258         throwing code a bit.
13259
13260         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
13261         the exception throwing code a bit.
13262
13263         * mini-x86.c (get_call_info): Allocate result from a mempool.
13264
13265 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
13266
13267         * aot-compiler.c (find_typespec_for_class): Fix the assert.
13268
13269         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
13270
13271         * mini.h (MonoCompile): Add 'token_info_hash' field.
13272
13273         * mini.c: Save token->method associations during compilation so the AOT 
13274         compiler can use it.
13275         
13276         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
13277         which reference generic classes and methods.
13278
13279 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
13280
13281         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
13282
13283         * aot-compiler.c (compile_method): Fix a typo in a comment.
13284
13285         * aot-runtime.c (decode_cached_class_info): Skip generic types.
13286
13287         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
13288         everything generic.
13289
13290         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
13291
13292 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
13293
13294         * mini.h (MonoCompile): Add 'args' field.
13295
13296         * mini.c (mono_compile_create_vars): Store variables representing the arguments
13297         into cfg->args.
13298
13299         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
13300
13301 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
13302
13303         * mini.c (mono_compile_get_interface_var): Remove this unused function.
13304
13305         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
13306
13307         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
13308         opcodes for some opcodes.
13309
13310         * mini.h *.brg *.c: Use the new opcodes.
13311
13312 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13313
13314         * mini.h: Bumped aot revision.
13315
13316         * inssel.brg: modified code generation of type checks for interfaces
13317         to use the new "MonoClass.interface_bitmap" instead of the old
13318         "MonoClass.interface_offsets".
13319
13320 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
13321
13322         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
13323
13324 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
13325
13326         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
13327         64 bit platforms.
13328
13329 2007-04-27  Neale Ferguson <neale@sinenomine.net>
13330
13331         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
13332
13333 2007-04-27  Wade Berrier  <wberrier@novell.com>
13334
13335         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
13336         mini.h) to fix build.
13337
13338 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
13339
13340         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
13341         
13342         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
13343         causes the corlib unit tests to fail.
13344
13345 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
13346
13347         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
13348
13349         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
13350
13351         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
13352         opcodes to the comparison relations.
13353
13354         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
13355         opcodes to their types.
13356         
13357         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
13358
13359         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
13360         it in cfg->arch.cinfo.
13361
13362         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
13363
13364         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
13365         cfg->cil_offset_to_bb.
13366
13367 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
13368
13369         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
13370         created becase of initlocals.
13371
13372 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
13373
13374         * mini-alpha.c cpu-alpha.md: More alpha port work from 
13375         Sergey Tikhonov <tsv@solvo.ru>.
13376
13377 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
13378
13379         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
13380
13381 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
13382
13383         * cpu-s390.md (break): Correct the length of break instruction.
13384
13385 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
13386
13387         * mini.c: fix a couple of soft-float issues and comments.
13388
13389 2007-04-15  Miguel de Icaza  <miguel@novell.com>
13390
13391         * trace.c (is_filenamechar): - is also a filename char.
13392
13393 2007-04-15  Neale Ferguson <neale@sinenomine.net>
13394
13395         * mini-s390.c: Correct checking for enum type in return value processing.
13396
13397 2007-04-14  Raja R Harinath  <rharinath@novell.com>
13398
13399         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
13400         (version.h): Makefile is in the build directory.
13401
13402 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
13403
13404         * mini-amd64.h: fix for assertion failure on Solaris/amd64
13405
13406 2007-04-11  Martin Baulig  <martin@ximian.com>
13407
13408         * mini.c (can_access_member): Fix handling of generic classes;
13409         fixes #81259.
13410
13411 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
13412
13413         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
13414
13415 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
13416
13417         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
13418
13419 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
13420
13421         * mini-codegen.c: make sure the right spill amount is
13422         used for fp or integer registers (fixes the float_sub_spill() on ppc).
13423
13424 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
13425
13426         * mini-ppc.c: fixes for the fp_branch_nan test.
13427
13428 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
13429
13430         * basic.cs: Comment out new test which still fails on ia64.
13431
13432 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13433
13434         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
13435
13436 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13437
13438         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
13439
13440 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
13441
13442         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
13443         on 64 bit machines. Fixes part of #80738.
13444
13445         * basic.cs: Add regression test.
13446
13447 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
13448
13449         * inssel.brg basic.cs: Revert previous change to fix build.
13450
13451         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
13452         platforms.
13453         
13454         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
13455
13456         * basic.cs: Add new regression test.
13457
13458 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
13459
13460         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
13461         many arguments.
13462
13463 2007-03-16  Neale Ferguson <neale@sinenomine.net>
13464
13465         * cpu-s390x.md: Correct length of break instruction.
13466
13467 2007-03-16  Neale Ferguson <neale@sinenomine.net>
13468
13469         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
13470         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
13471
13472 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
13473
13474         * *.c: Begin WIN64 port.
13475         * mini.c:  Use correct register in profiler.
13476         * mini-amd64.c: No inline assembly on Win64.
13477         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
13478         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
13479         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
13480         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
13481         mono_arch_ip_from_context for Win64.
13482         
13483         Contributed under MIT/X11 license.
13484
13485 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
13486
13487         * exceptions-amd64.c (seh_handler): Ditto.
13488
13489         * exceptions-x86.c (seh_handler): Fix a memory leak.
13490
13491 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
13492
13493         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
13494         mini-s390x.c: fixed peephole optimizations to deal
13495         correctly with 1 and 2 byte reload avoidance.
13496
13497 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
13498
13499         * cpu-s390.md, cpu-s390x.md: update localloc length.
13500
13501 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
13502
13503         * cpu-g4.md: added missing descriptions.
13504
13505 2007-03-14  Miguel de Icaza  <miguel@novell.com>
13506
13507         *  Makefile.am: Add support so the tail tests are not executed on
13508         PowerPC as that is a known limitation of the PowerPC port.
13509
13510 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13511
13512         * runmdesc.bat:  Move to msvc directory.
13513         
13514 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13515
13516         * runmdesc.bat:  Run executable that was produced by the current
13517         target and sent via an argument.
13518         
13519 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
13520
13521         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
13522         #81102.
13523
13524         * generics.2.cs: Add regression test.
13525
13526 2007-03-09  Wade berrier  <wberrier@novell.com>
13527
13528         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
13529
13530 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
13531
13532         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
13533         AOT code depends on this.
13534
13535 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
13536
13537         * mini.c: more precise tracking of types in the eval stack
13538         (part of fix for bug #81044).
13539
13540 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
13541
13542         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
13543
13544         * aot-compiler.c (encode_patch): Remove an obsolete comment.
13545
13546 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13547
13548         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
13549
13550         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
13551
13552 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
13553
13554         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
13555         a pointer on 64 bit systems. Fixes #80190.
13556
13557         * iltests.il: Add new regression test.
13558
13559 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13560
13561         * mini.c: inline a constant for Environment.IsRunningOnWindows.
13562
13563 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
13564
13565         * trace.c: Remove an erroneous alignemnt check when tracing.
13566           Fixes --trace on OSX86.
13567
13568 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
13569
13570         * mini-$(arch).h: initialize SP in context for all the archs.
13571
13572 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
13573
13574         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
13575         regressions in the thread tests.
13576
13577 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
13578
13579         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
13580         - fixed implementation of LOCALLOC opcode
13581         - implemented non-un compare for floats
13582         - code cleanup
13583         - implementation of FDIV and CKFINITE opcodes
13584         - fixes for latest mono updates
13585         - additional arch opcodes
13586
13587 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
13588
13589         * Makefile.am: simplify and merge rules for cross-compilation.
13590
13591 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
13592
13593         * local-propagation.c: Actually *apply* the fix for bug 80591...
13594
13595 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
13596
13597         * mini-exceptions.c: backuot part of the last change
13598         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
13599
13600 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
13601         * inssel.brg: Fix bug 59286.
13602
13603
13604 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
13605
13606         * mini-exceptions.c: patch from Zoltan to correctly check for
13607         stack boundaries (using the stack register, not the frame register),
13608         fixes bugs #80724, #79717.
13609
13610 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
13611
13612         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
13613         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
13614
13615         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
13616         presence of frame pointer elimination.
13617
13618 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
13619         
13620         * mini-x86.h: NetBSD UCONTEX_REG defines.
13621
13622 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
13623
13624         * inssel-amd64.brg: Fix amd64 build.
13625
13626 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
13627
13628         * mini.h: remove extern to workaround what looks likes gcc bug 26905
13629         on amd64.
13630
13631 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
13632
13633         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
13634         ends.
13635
13636         * mini-<ARCH>.c: Use mono_is_regsize_var ().
13637
13638 2007-01-30 Mark Mason <mason@broadcom.com>
13639
13640            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
13641            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
13642            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
13643            beginning support for CEE_JMP [not quite working yet]
13644            * tramp-mips.c: LMF handling now works
13645         
13646 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
13647
13648         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
13649
13650         * mini.h (NULLIFY_INS): New macro.
13651
13652 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
13653
13654         * mini.c: statistical profiler fix for windows, patch
13655         from Tor Lillqvist (tml@novell.com).
13656
13657 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
13658         * local-propagation.c: Fix bug 80591.
13659
13660 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
13661
13662         * Makefile.am: put back the --export-dynamic option as with
13663         the previous gmodule flags (thanks to Robert Jordan).
13664
13665 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
13666
13667         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
13668
13669         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
13670         simplify and speed up the local register allocator. Also rename some fields
13671         like iassign->vassign.
13672         
13673         * regalloc.c: Remove some functions which are no longer used since their
13674         inlined version is in mini-codegen.c.
13675         
13676         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
13677
13678         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
13679
13680 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
13681
13682         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
13683         narrowing. Fixes #80622.
13684
13685         * iltests.il: Add new regresssion test. 
13686
13687 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
13688
13689         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
13690         debug-debugger.c, debug-debugger.h: warning fixes.
13691         * driver.c: updated copyright year and made it fit in one line.
13692
13693 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
13694
13695         * aot-runtime.c: updated to use mono-dl instead of gmodule.
13696
13697 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
13698
13699         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
13700
13701         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
13702
13703         * iltests.il: Add new test for bug #80507.
13704
13705 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13706
13707         * mini-arm.h: use soft-float also on vfp for now.
13708
13709 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
13710
13711         * mini.c: fix some more soft-float issues.
13712
13713 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
13714
13715         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
13716
13717 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
13718         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
13719         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
13720         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
13721
13722 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
13723
13724         * mini-arm.c: typo fix.
13725
13726 2007-01-23  Neale Ferguson <neale@sinenomine.net>
13727
13728         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
13729
13730 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
13731
13732         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
13733         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
13734
13735         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
13736
13737         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
13738
13739         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
13740         
13741         * inssel.brg: Fix a warning.
13742
13743         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
13744
13745         * abcremoval.c ssa.c ssapre.c: Update after this change.
13746         
13747         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
13748
13749         * dominators.c (df_set): Use mono_bitset_union_fast.    
13750
13751 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
13752
13753         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
13754         mini-codegen.c: reduce relocations and memory usage for the cpu
13755         description.
13756
13757 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
13758
13759         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
13760
13761         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
13762         to reduce their size.
13763
13764 2007-01-19 Mark Mason <mason@broadcom.com>
13765
13766         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
13767         * mini-mips.c: more configuration macros, support long conditional branches, additional
13768         asserts, fix epilog instrumentation.
13769         * mini-mips.h: use standard stack walk
13770         * cpu-mips.md: increase size of div, rem and conditional branches
13771         
13772 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
13773
13774         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
13775         to cpu spec data.
13776
13777 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
13778
13779         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
13780         (compile_method): Ditto.
13781
13782         * aot-runtime.c (decode_klass_info): Ditto.
13783
13784         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
13785         needed by the code generated by inssel.brg. Also fix a warning.
13786
13787 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
13788
13789         * mini.c: deal with enums that become genericinsts by
13790         being nested in a generic class (bug #79956).
13791
13792 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
13793
13794         * mini.c: match the generic definition to check for
13795         private access with generic types (bug #78431).
13796
13797 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
13798
13799         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
13800         to make life easier for people cross-compiling that insist on not
13801         using scratchbox.
13802
13803 2007-01-17 Mark Mason <mason@broadcom.com>
13804
13805         * inssel-long.brg: patch to deal with mips missing flags
13806         * inssel-long32-mips.brg: implement overflow checks
13807         * insset-mips.brg: implement overflow checks
13808         * mini-mips.h: implement conditional exception handling
13809         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
13810           Remove unused code, minor cleanups.
13811         * exceptions-mips.c: minor cleanups
13812         * mini-ops.h: add mips conditional exception ops
13813         * cpu-mips.md: add mips conditional exception ops
13814
13815         
13816 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
13817
13818         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
13819         to deal with mips missing of flags.
13820
13821 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
13822
13823         * exceptions-ppc.c: execute fault handlers.
13824
13825 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
13826
13827         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
13828
13829 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
13830
13831         * mini.c: handle also floating point values in initialize_array.
13832
13833 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
13834
13835         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
13836         array initialization and make it conditional on the intrins option.
13837
13838 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
13839
13840         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
13841         relocations and put the patch info names close to the enum definition.
13842
13843 2007-01-15 Mark Mason <mason@broadcom.com>
13844
13845         * basic.cs, exceptions.cs: break up large tests to increase debugability.
13846
13847 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
13848
13849         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
13850
13851 2007-01-12  Raja R Harinath  <rharinath@novell.com>
13852
13853         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
13854
13855 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
13856
13857         * Makefile.am: distribute the mips sources.
13858
13859 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
13860
13861         * mini-codegen.h: handle bug #80489 here, by excluding ecx
13862         directly.
13863
13864 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
13865
13866         * cpu-x86.md: back out for now as this triggers other regressions.
13867
13868 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
13869
13870         * cpu-x86.md: force src1 and dest regpair for long shift instructions
13871         to eax:edx, so ecx can't get allocated to them (bug #80489).
13872
13873 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
13874
13875         * mini.c, mini-exceptions.c: enabled running fault handlers
13876         (bug #80469).
13877
13878 2007-01-03  Miguel de Icaza  <miguel@novell.com>
13879
13880         * driver.c: If nothing fail, do not use the string "failed",
13881         because it makes it very annoying to view test result logs on the
13882         web. 
13883
13884 2006-12-30  Miguel de Icaza  <miguel@novell.com>
13885
13886         * debug-debugger.c (mono_debugger_main): Rename "main" to
13887         "main_method" to prevent a warning.
13888
13889         Remove a warning for unused field.
13890
13891 2006-12-28  Martin Baulig  <martin@ximian.com>
13892
13893         * debug-debugger.c
13894         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
13895
13896 2006-12-22  Martin Baulig  <martin@ximian.com>
13897
13898         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
13899         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
13900         seperate `.mdb_debug_info' section, so we can access it from the
13901         debugger even if the binary is stripped.
13902
13903         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
13904         from the `.mdb_debug_info' here to prevent the linker from
13905         removing that section.
13906
13907         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
13908         mdb-debug-info64.s.
13909
13910 2006-12-19  Robert Jordan  <robertj@gmx.net>
13911
13912         * mini-x86: enable the code to return small structures in
13913         registers for FreeBSD as well. Fixes bug #80278.
13914         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
13915
13916 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13917
13918         * mini-x86.c: align the stack when calling the profiler
13919         function instrumenting the prolog (on OSX).
13920
13921 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
13922
13923         * mini.c: emit a break opcode where Debugger.Break () is called.
13924
13925 2006-12-13  Miguel de Icaza  <miguel@novell.com>
13926
13927         * mini.c (mono_method_to_ir): Provide useful information on this
13928         assert, to prevent others from debugging like I did.
13929
13930 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
13931
13932         * mini.c: enable code which was incorrectly commented
13933         (bug #80235).
13934
13935 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
13936
13937         * mini-x86.c: enable on OSX, too, the code to return small
13938         structures in registers.
13939
13940 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
13941
13942         * mini-x86.c: remove the use of the dynamic code manager here, too.
13943
13944 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
13945
13946         * mini.h, debug-debugger.c, tramp-*.c: fixed 
13947         mono_debugger_create_notification_function() to use
13948         mono_global_codeman_reserve () instead of a dynamic code manager.
13949
13950 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
13951
13952         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
13953         ves_array_element_address() jit icall and use a generated
13954         managed method instead (which is about 4 times faster for a rank 3
13955         array access).
13956
13957 2006-11-29  Mark Mason  <mason@broadcom.com>
13958
13959         * basic-calls.cs: additional tests for passing
13960         structures as function arguments.
13961
13962 2006-11-29  Mark Mason  <mason@broadcom.com>
13963
13964         * mini-mips.h: disable custom exception handling
13965         * mini-mips.c: throw/rethrow should use jalr to call
13966         exception stubs.  Fixed bug with passing structures
13967         by value. More support for tracing floating point
13968         functions.
13969
13970 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13971
13972         * mini.c: fixed typo in the soft-float ldind.r4 handling
13973         (bug #80086).
13974
13975 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
13976
13977         * mini.c, mini.h, driver.c: added --runtime command line
13978         option to select a different runtime than the autodetected one.
13979         * jit.h: added API for embedders to initialize with a specific
13980         runtime version.
13981
13982 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
13983
13984         * mini.c: handle also boxing of r4 values (bug #80024).
13985
13986 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13987
13988         * mini-ppc.c: force indirect calls until we reserve
13989         enough address space for all the generated code.
13990
13991 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
13992
13993         * exceptions-arm.c: workaround bugs in the libc definition
13994         of struct ucontext.
13995
13996 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
13997
13998         * inssel.brg: fixes from me and Mark Mason.
13999
14000 2006-11-23  Dick Porter  <dick@ximian.com>
14001
14002         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
14003         semaphore display now we've fixed the initial value
14004
14005 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14006
14007         * inssel.brg: partially revert the last change to fix the build.
14008
14009 2006-11-21  Mark Mason  <mason@broadcom.com>
14010
14011         * inssel.brg: Add and use compare-and-branch macros to support
14012         architectures that do not have condition code registers (ie. MIPS).
14013         * *-mips.{c,brg,md}: Fix copyright statements
14014
14015 2006-11-20  Mark Mason  <mason@broadcom.com>
14016
14017         * Makefile.am: remove mini-codegen.c from list of MIPS sources
14018         * mini.c: Allow GET_CONTEXT to be specified by the arch port
14019         * mini.h: Added declaration for mono_print_ins()
14020         * mini-codegen.c: added ins_spec initializer for MIPS
14021         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
14022         vreg to be virtual and hreg to be non-virtual.
14023         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
14024         is not yet working/implemented correctly.
14025         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
14026         non-static, fixup calls to print_ins() from other parts in the file.
14027
14028 2006-11-20  Mark Mason  <mason@broadcom.com>
14029
14030         * basic-calls.cs: added tests for passing structures as arguments
14031         to calls.
14032
14033 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
14034
14035         * inssel-long32.brg: optimize signed division by power of two.
14036
14037 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
14038
14039         * mini-arm.c: added support for interworking with thumb code
14040         (mono must be still be built using the ARM instruction encoding).
14041
14042 2006-11-19  Miguel de Icaza  <miguel@novell.com>
14043
14044         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
14045         verifier has different rules for it.   Fixes a few verifier issues
14046         in the test suite.
14047
14048         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
14049         at the end, so people know what happened.
14050
14051 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
14052
14053         * brach-opts.c: in optimize_exception_target() make sure we
14054         are in a catch clause (fixes bug #79871).
14055
14056 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14057
14058         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
14059         more soft-float support fixes.
14060
14061 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
14062
14063         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
14064         that are passed half on the stack and half in registers.
14065
14066 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
14067
14068         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
14069         more mips integration work from Mark E Mason 
14070         <mark.e.mason@broadcom.com>.
14071
14072 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14073
14074         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
14075         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
14076         tramp-mips.c: added sources for the mips port, not
14077         integrated in the build yet. Contributed by
14078         Mark E Mason <mark.e.mason@broadcom.com>.
14079
14080 2006-11-14  Neale Ferguson <neale@sinenomine.net>
14081
14082         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
14083
14084 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14085
14086         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
14087         put the soft-float rules in its own file since it seems to
14088         break s390 compilation.
14089
14090 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
14091
14092         * mini-arm.c: fixed wrnings.
14093
14094 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
14095
14096         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
14097         inssel-arm.brg: ARM support for soft-float.
14098
14099 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
14100
14101         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
14102         loads and stores of 32 bit fp values.
14103
14104 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
14105
14106         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
14107
14108         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
14109         works. Fixes #79852 and #79463.
14110
14111 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14112
14113         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
14114         more soft-float support WIP and fixes.
14115
14116 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
14117
14118         * mini-arm.c: some VFP updates.
14119
14120 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
14121
14122         * mini-exceptions.c: 0 is a valid local var offset in some
14123         architectures, don't assert (bug #78508).
14124
14125 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
14126
14127         * exceptions-arm.c: fixed off by one error in stack walk code.
14128
14129 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
14130
14131         * mini.h, mini.c: more precise tracking of type load exceptions.
14132
14133 2006-11-03  Robert Jordan  <robertj@gmx.net>
14134
14135         * Makefile.am: [WIN32] Add monow.exe target.
14136         * driver.c: [WIN32] Don't detach the console when debugging.
14137         Fixes bug #79797.
14138         
14139 2006-10-30  Miguel de Icaza  <miguel@novell.com>
14140
14141         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
14142
14143 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
14144
14145         * aot-compiler.c (emit_method_info): Add a case missed earlier.
14146
14147         * driver.c (mini_regression): Fix --regression with AOT.
14148
14149         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
14150
14151 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
14152
14153         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
14154
14155         * mini-sparc.h: Don't use sigaction on sparc/linux.
14156
14157         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
14158
14159         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
14160
14161         * mini-exceptions.c: Add proper include files for getpid ().
14162
14163 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
14164
14165         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
14166         address instead of a MonoJitInfo* to avoid decoding the exception info for the
14167         method.
14168
14169         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
14170         name cache to reduce its size.
14171
14172         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
14173
14174 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14175
14176         * mini-x86.c: Save/restore the current LMF structure more efficiently using
14177         the mono_lmf TLS variable.
14178
14179         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
14180         trampoline lmf frames.  
14181
14182         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
14183
14184 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
14185
14186         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
14187         the mono_lmf TLS variable.
14188
14189         * mini-exceptions.c: Access the LMF structure through accessors.
14190
14191         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
14192         variable instead of in jit_tls->lmf.
14193
14194         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
14195         
14196         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
14197         trampoline lmf frames.
14198
14199         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
14200
14201 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
14202
14203        * mini.c trace.c mini-x86.c: Revert these too.
14204         
14205        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
14206        signature change.
14207
14208 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
14209
14210         * genmdesc.c: removed now dead code.
14211
14212 2006-10-09  Robert Jordan <robertj@gmx.net>
14213
14214         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
14215
14216 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
14217
14218         * mini.h: do not leave gaps in the opcode values.
14219
14220 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
14221
14222         * jit-icalls.h: flag functions as internal here, too.
14223
14224 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
14225
14226         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
14227         functions with the internal attribute.
14228
14229 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
14230
14231         * aot-compiler.c: fclose the file descriptor in the profile read loop.
14232
14233 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
14234
14235         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
14236         for soft-float.
14237
14238 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
14239
14240         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
14241         tail calls as on other platforms.
14242
14243         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
14244
14245         * iltests.il: Add a few tailcall tests.
14246
14247 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14248
14249         * driver.c: fix loop for old compilers (bug #79521).
14250
14251 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
14252
14253         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
14254
14255         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
14256
14257         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
14258         metadata without any code.
14259
14260         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
14261         more precise debugging information using gdb.
14262
14263 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
14264
14265         * inssel-ia64.brg: Make the helper methods static.
14266
14267 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
14268
14269         * inssel-x86.brg: make the helper methods static.
14270
14271 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
14272
14273         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
14274
14275 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
14276
14277         * mini.c: updates for monoburg changes.
14278         * inssel.brg: make a few helper functions static as they should.
14279
14280 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
14281
14282         * Makefile.am: Move mini-codegen.c to common_sources.
14283
14284 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14285
14286         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
14287         instructions.
14288         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
14289         mini-ppc.h: port to use the common local register allocator.
14290
14291 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14292
14293         * mini.h: Remove the comment too then.
14294
14295 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
14296
14297         * mini.h: put back backend.data which is to be used shortly and
14298         doesn't increase the size of MonoInst. If any 64 bit arch aligned
14299         pointers on 4 byte boundaries it'd have much bigger issues running
14300         and you can ifdef it out anyway.
14301
14302 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14303
14304         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
14305         MonoInst size by 4 bytes on 64 bit machines.
14306
14307 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14308
14309         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
14310         replacement with more meaningful field names. Arch maintainers, please
14311         check the assigned names are good enough for your arch.
14312
14313 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14314
14315         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
14316         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
14317
14318 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
14319
14320         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
14321         relocations and memory requirements, put the optimization flags
14322         definitions in their own file.
14323
14324 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
14325
14326         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
14327
14328         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
14329
14330 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
14331
14332         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
14333
14334 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
14335
14336         * inssel.brg: use the correct function to get the size of an item
14337         in an array, given an element class.
14338         * aot-compiler.c: do not access class->class_size directly.
14339
14340 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
14341
14342         * mini.h, debug-mini.c: added a debugging function to print
14343         info about local variables and arguments in a jitted method.
14344
14345 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
14346
14347         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
14348
14349         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
14350
14351 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
14352
14353         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
14354         inner and outer loops when passing vtypes.
14355
14356 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
14357
14358         * mini-ppc.c: take into account the cpu errata for cache flushing
14359         which caused some random errors (bug #79381).
14360
14361 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
14362
14363         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
14364         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
14365
14366 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
14367
14368         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
14369         loaded.
14370
14371         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
14372         freebsd ports tree.
14373
14374         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
14375         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
14376
14377         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
14378         displacement.
14379
14380 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
14381
14382         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
14383
14384 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
14385
14386         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
14387         macro does not have to be changed during debugging.
14388
14389         * 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>.
14390
14391         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
14392
14393         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
14394         
14395         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
14396         MONO_ARCH_NO_EMULATE_MUL is defined.
14397
14398         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
14399
14400         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
14401
14402         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
14403
14404         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
14405         
14406 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
14407
14408         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
14409         stuff to mini-exceptions.c where it is used.
14410
14411         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
14412         setup code, the real one is in mini-exceptions.c.
14413
14414         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
14415         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
14416         some changes from the freebsd ports tree.
14417
14418         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
14419         constants.
14420         
14421         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
14422
14423 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
14424
14425         * mini.c: on Linux, check for /proc to be mounted
14426         (bug# 79351, novell bug#201204).
14427
14428 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
14429
14430         * mini.c: handle cases where pthread_attr_getstack() behaves
14431         incorrectly (bug #78096).
14432
14433 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
14434
14435         * mini-arm.c: support larger stack frames (bug #79272).
14436
14437 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
14438
14439         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
14440
14441         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
14442         tokens.
14443
14444         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
14445         mono_class_from_name () to find a class from its name.
14446
14447         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
14448
14449 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
14450
14451         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
14452
14453 2006-09-05  Kornel Pal  <kornelpal@gmail.com>
14454
14455         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
14456
14457 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
14458
14459         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
14460         callinfo->trampoline.
14461
14462         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
14463         fixes #79271.
14464         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
14465         future.
14466
14467 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
14468
14469         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
14470
14471 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
14472
14473         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
14474         stats.method_trampolines, it is already done by the generic trampoline code.
14475
14476         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
14477         
14478 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
14479
14480         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
14481
14482         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
14483
14484         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
14485
14486         * mini.c (print_jit_stats): Print mscorlib mempool size too.
14487         
14488         * mini.c (print_jit_stats): Print new stats.
14489
14490         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
14491
14492 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
14493
14494         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
14495         Address on two dimensional arrays. Fixes #78729.
14496
14497         * mini.h (MonoCompile): Add a 'skip_visibility' field.
14498
14499         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
14500         a method.
14501
14502         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
14503
14504         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
14505         #79130.
14506         
14507         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
14508         a race condition.
14509         (mini_get_ldelema_ins): Ditto.
14510
14511 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
14512
14513         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
14514         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
14515         Fixes #79213.
14516
14517 2006-08-29 Neale Ferguson <neale@sinenomine.net>
14518
14519         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
14520         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
14521
14522         * exceptions-s390x.c: Cosmetic change.
14523
14524         * tramp-s390.c: Fix warning.
14525
14526         * cpu-s390.md: Correct length of mul_imm.
14527
14528 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
14529
14530         * aot-compiler.c: added binary writer with ELF backend
14531         implementation (only on Linux/x86 for now).
14532
14533 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
14534
14535         * Makefile.am: Don't run net 2.0 AOT tests.
14536
14537         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
14538         (mono_compile_assembly): Skip net 2.0 assemblies as well.
14539
14540         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
14541
14542 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
14543
14544         * aot-compiler.c: simplified and refactored the asm-writing code
14545         to allow different backends.
14546
14547 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
14548
14549         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
14550
14551         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
14552         little. Share patches of type TYPE_FROM_HANDLE as well.
14553
14554         * mini.c (mono_patch_info_equal): New helper function.
14555         (mono_patch_info_hash): Ditto.
14556
14557         * aot-compiler.c (emit_method_code): Fix s390 build.
14558
14559         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
14560         is not handled because it is stored as a flag and not as a type ctor. Fixes
14561         #79016.
14562
14563 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
14564
14565         * aot-compiler.c: Fix computation of GOT slot statistics.
14566         
14567         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
14568         Also remove support for not PIC AOT.
14569
14570         * mini.h: Bump AOT file format version.
14571
14572         * objects.cs: Add a test for #78990.
14573
14574         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
14575         (peter.dettman@iinet.net.au). Fixes #79087.
14576
14577         * basic-long.cs: Add a test for the above.
14578
14579 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
14580
14581         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
14582         
14583         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
14584         code somewhat.
14585
14586 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
14587
14588         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
14589         exceptions.
14590
14591 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
14592
14593         * mini.c: Don't verify COM proxy invoke calls
14594         
14595
14596 2006-08-10  Dick Porter  <dick@ximian.com>
14597
14598         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
14599         which process is holding semaphores locked.
14600
14601 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
14602
14603         * mini-ia64.c mini-amd64.c: Fix #79027.
14604
14605         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
14606
14607         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
14608
14609         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
14610         implicit arguments in a vararg call. Fixes #79027.
14611
14612 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
14613
14614         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
14615         (mono_get_array_new_va_signature): Ditto.
14616
14617 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
14618
14619         * aot-runtime.c: Call init_plt lazily.
14620
14621         * inssel-long.brg: Fix unsigned long->int conversion.
14622
14623         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
14624
14625         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
14626         that most data is now in the .rss/.data section.
14627
14628 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
14629
14630         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
14631
14632         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
14633
14634         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
14635
14636         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
14637
14638         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
14639         virtual call. Fixes #79010.
14640
14641         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
14642         and use the result as the this argument in the real call.
14643
14644         * generics.2.cs: Add a new test for #79010.
14645         
14646 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
14647
14648         * mini-x86.c: Fix a warning.
14649
14650         * aot-compiler.c: Add a bunch of statistics.
14651
14652         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
14653
14654 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
14655
14656         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
14657
14658 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
14659
14660         * 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>.
14661
14662 2006-07-13  Miguel de Icaza  <miguel@novell.com>
14663
14664         * mini.c (mono_method_to_ir): Obtain the original method in the
14665         CIL stream and use this to perform validation.
14666
14667         Fixed: #78816
14668
14669 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
14670
14671         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
14672         (mono_arch_call_opcode): Ditto.
14673
14674         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
14675         #78826.
14676
14677         * mini.c (mono_patch_info_dup_mp): New helper function.
14678         
14679         * aot-compiler.c (compile_method): Fix some of the memory allocated during
14680         compilation. Fixes #78827.
14681
14682 2006-07-18  Kornel Pal  <kornelpal@gmail.com>
14683
14684         * declsec.c: Use original security informations for
14685           MONO_WRAPPER_MANAGED_TO_MANAGED.
14686
14687 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
14688
14689         * mini.c: Allow Com Interop methods/classes and
14690         don't verify COM wrapper calls
14691         
14692
14693 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
14694
14695         * inssel-long32.brg: Fix long->i4 checked conversion.
14696
14697         * exceptions.cs: Add a test for the above.
14698
14699 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
14700
14701         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
14702
14703         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
14704         leaks.
14705
14706         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
14707         #78775.
14708
14709 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
14710
14711         * mini.c: Fix solaris/x86 exception handling.
14712
14713         * Makefile.am: Get rid of $(ICU_LIBS).
14714
14715 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
14716
14717         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
14718         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
14719         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
14720
14721         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
14722
14723         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
14724         this function causes a SIGSEGV.
14725
14726 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
14727
14728         * mini.c: Remove unused solaris/x86 includes.
14729
14730 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
14731
14732         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
14733
14734 2006-06-20  Jb Evain  <jbevain@gmail.com>
14735
14736         * cpu-g4.md: fix max length of start_handler instruction.
14737
14738 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
14739         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
14740
14741 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
14742         * ssa.c: Fixed bug 78653 for SSA based deadce.
14743         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
14744         MonoInst.flags, used in SSA based deadce.
14745         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
14746         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
14747
14748 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
14749
14750         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
14751         it can end up using non executable memory on ppc64 systems
14752         running ppc32 userspace (fix from Johannes Berg).
14753
14754 2006-06-14  Dick Porter  <dick@ximian.com>
14755
14756         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
14757         4.1.1
14758
14759 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
14760         * mini.c: Made so that inline is locally disabled if it would
14761         trigger a .cctor, because too many apps depend on this behavior
14762         (which seems to be also the one of the MS CLR).
14763
14764 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
14765
14766         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
14767         No idea why this worked before.
14768
14769         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
14770         which branch to outer exception clauses since they could skip the
14771         inner finally clauses. Fixes #78633.
14772
14773         * exceptions.cs: Add a test for the above.
14774
14775         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
14776         Fixes #78629.
14777
14778         * iltests.il: Add a test for the above.
14779
14780 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
14781
14782         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
14783         after the end of a try bblock, to prevent asserts in mini_method_compile ().
14784
14785         * iltests.il: Add a test for the above.
14786
14787 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
14788
14789         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
14790         
14791         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
14792         methods as instrinsics.
14793
14794 2006-06-09  Wade Berrier <wberrier@novell.com>
14795
14796         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
14797         (simple-cee-ops.h ssapre-mini-ops.h)
14798
14799 2006-06-09  Neale Ferguson <neale@sinenomine.net>
14800
14801         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
14802         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
14803         instruction).
14804         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
14805         * cpu-s390x.md: Fix max. length values for a couple of instructions.
14806
14807 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14808
14809         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
14810
14811 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
14812
14813         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
14814         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
14815         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
14816         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
14817         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
14818         of opcodes, so that bug 78549 should not happen again.
14819         * ssapre.c: Updated to use the renamed files.
14820
14821 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
14822
14823         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
14824         in OP_ATOMIC_EXCHANGE_I4.
14825
14826 2006-06-07  Wade Berrier <wberrier@novell.com>
14827
14828         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
14829         in mono_debugger_create_notification_function)
14830
14831 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
14832
14833         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
14834         
14835         * mini.c (type_from_stack_type): Disable some changes which do not
14836         seem to work.
14837
14838         * driver.c: Reenable opts.
14839
14840         * mini.h (MonoStackSlot): New structure to keep track of the verification state
14841         of the evaluation stack.
14842         
14843         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
14844         evaluation stack trace at entry to the bblock.
14845
14846         * mini.c (merge_stacks): New function to perform verification of stack merges.
14847         Turned off by default.
14848
14849         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
14850         STACK_MP.
14851         
14852 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
14853
14854         * local-propagation.c: Fixed bug 78549.
14855
14856 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
14857
14858         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
14859
14860 2006-06-02  Miguel de Icaza  <miguel@novell.com>
14861
14862         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
14863         tramp-arm.c, tramp-ia64.c
14864         (mono_debugger_create_notification_function): Update signature to
14865         new signature and use new protocol for creating the notification
14866         function.  
14867
14868         Should fix the build.
14869
14870 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
14871
14872         * exceptions-ppc.c (mono_jit_walk_stack)
14873         (ves_icall_get_frame_info): Fix the build
14874
14875 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
14876
14877         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
14878
14879 2006-05-31  Raja R Harinath  <rharinath@novell.com>
14880
14881         * il2tests.2.il: New file for generics CIL tests.  Add test for
14882         #78019.
14883         * Makefile.am: Update.
14884
14885         Fix #78019
14886         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
14887         to nullable types.
14888
14889 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
14890
14891         * aliasing.c: Fixed bug 78311.
14892
14893 2006-05-29  Martin Baulig  <martin@ximian.com>
14894
14895         * mini-exceptions.c (mono_find_jit_info): When computing the
14896         native offset, check whether we're actually inside the method's
14897         code; call mono_debug_print_stack_frame() to format the frame.
14898         (ves_icall_System_Exception_get_trace): Call
14899         mono_debug_print_stack_frame() to format the stack frame.
14900         (ves_icall_get_trace): Update to the new debugging API.
14901         (mono_jit_walk_stack_from_ctx): Likewise.
14902         (ves_icall_get_frame_info): Likewise.
14903
14904         * mini.c (get_method_from_ip): Use the new debugging API.
14905         (mono_print_method_from_ip): Likewise.
14906
14907         * exceptions-ppc.c
14908         (mono_jit_walk_stack): Use the new debugging API.
14909         (ves_icall_get_frame_info): Likewise.   
14910
14911 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
14912
14913         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
14914
14915 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
14916
14917         * mini.c: Added "limitator" to inline for debugging.
14918
14919 2006-05-24  Martin Baulig  <martin@ximian.com>
14920
14921         * debug-debugger.c (mono_debugger_init): Create a private,
14922         malloc()-based code manager for the notification function and
14923         intentionally leak it on exit.  This fixes the crash-on-exit race
14924         condition.
14925
14926         * tramp-amd64.c
14927         (mono_debugger_create_notification_function): Added
14928         `MonoCodeManager *' argument.
14929
14930         * tramp-x86.c
14931         (mono_debugger_create_notification_function): Added
14932         `MonoCodeManager *' argument.
14933
14934 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
14935
14936         * aliasing.c: Fixed 64 bit issue.
14937         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
14938         default since all known bugs are fixed (one more time!).
14939
14940 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
14941
14942         * mini.c: write barrier support.
14943
14944 2006-05-23  Martin Baulig  <martin@ximian.com>
14945
14946         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
14947         check at the top of the file.
14948
14949 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
14950
14951         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
14952         reverting changes without reason and without changelog entries.
14953
14954 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
14955
14956         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
14957         to a few opcodes. Fixes #78439.
14958
14959         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
14960         consistency with other archs.
14961
14962         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
14963
14964 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
14965
14966         * debug-debugger.c: fix the build.
14967
14968 2006-05-17  Martin Baulig  <martin@ximian.com>
14969
14970         * debug-debugger.c
14971         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
14972         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
14973         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
14974         (debugger_attach): Call GC_mono_debugger_add_all_threads().
14975
14976 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
14977
14978         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
14979
14980 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
14981
14982         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
14983         MONO_TYPE_GENERICINST.
14984         
14985         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
14986         MONO_TYPE_GENERICINST.
14987
14988 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
14989
14990         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
14991         #78325.
14992
14993 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
14994
14995         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
14996         mempool.
14997         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
14998
14999 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
15000
15001         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
15002         mono_trace_cleanup ().
15003
15004         * iltests.il: Fix problem with the newly added test.
15005
15006         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
15007         due to register constraints, free up the previous hreg. Fixes #78314.
15008
15009         * iltests.il: Add new test for #78314.  
15010
15011         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
15012         Interlocked.Add. Fixes #78312.
15013
15014         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
15015         
15016 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
15017
15018         * inssel.brg (mini_emit_virtual_call): Fix a warning.
15019
15020 2006-05-05  Martin Baulig  <martin@ximian.com>
15021
15022         * debug-mini.c (mono_debug_open_block): New method.
15023
15024         * mini-amd64.c
15025         (mono_arch_output_basic_block): Call mono_debug_open_block() at
15026         the beginning of each basic block.
15027
15028         * mini-x86.c
15029         (mono_arch_output_basic_block): Call mono_debug_open_block() at
15030         the beginning of each basic block.
15031
15032 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
15033
15034         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
15035         default until I understand why they break the build on amd64.
15036
15037 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
15038
15039         * mini.c (mini_cleanup): Call mono_cleanup ().
15040
15041         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
15042         errors.
15043
15044 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
15045
15046         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
15047         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
15048         default since all known bugs are fixed, and I cannot reproduce bug
15049         77944... I'm asking Matt Hargett to test again after this commit.
15050
15051 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
15052
15053         * mini-codegen.c: Fixed typo that thrashed inline.
15054
15055 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
15056
15057         * dominators.c (compute_dominators): Avoid using a worklist since
15058         it is not correct in some cases. Instead, iterate over all bblocks as
15059         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
15060
15061 2006-04-28  Miguel de Icaza  <miguel@novell.com>
15062
15063         * mini.c (mono_jit_compile_method_inner): Use
15064         mono_prepare_exception_from_error that resets the value
15065         internally.
15066
15067 2006-04-27  Miguel de Icaza  <miguel@novell.com>
15068
15069         * mini.c: Move the mini_loader_error_to_exception to metadata. 
15070         
15071 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
15072
15073         * aliasing.c: Fixed bug 78210.
15074
15075 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
15076
15077         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
15078         default until all their problems (or the ones they trigger) are fixed.
15079
15080 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
15081
15082         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
15083         
15084         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
15085         as loaded only after resolving patches since that could invoke the same method.
15086
15087         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
15088
15089         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
15090         functions.
15091
15092         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
15093         AOT loader.
15094
15095         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
15096         stack.
15097
15098         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
15099         made from AOT code through the PLT table.
15100
15101         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
15102         holding the plt offset when a call is made to the aot plt trampoline.
15103         
15104 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
15105
15106         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
15107         amd64 AOT support.
15108
15109         * Makefile.am (common_sources): Fix build breakage.
15110
15111         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
15112         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
15113         intra-assembly calls if possible.
15114         
15115         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
15116
15117         * mini-trampolines.c: Handle PLT entries.
15118
15119         * mini.c: Avoid creating a GOT var for calls.
15120
15121         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
15122         from mscorlib code.
15123
15124         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
15125         from mscorlib code.
15126
15127         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
15128         AOT code.       
15129
15130         * mini.h: Bump AOT file format version.
15131         
15132         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
15133         covers more cases.
15134
15135 2006-04-25  Martin Baulig  <martin@ximian.com>
15136
15137         * driver.c: Disable copyprop, consprop and inline when running
15138         inside the debugger.
15139
15140 2006-04-25  Martin Baulig  <martin@ximian.com>
15141
15142         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
15143         with `get_current_thread' and added `detach'.
15144         (MonoDebuggerMetadataInfo): Added `thread_size',
15145         `thread_tid_offset', `thread_stack_ptr_offset' and
15146         `thread_end_stack_offset'.
15147
15148 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
15149
15150         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
15151         aot-runtime.c.
15152
15153         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
15154         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
15155
15156         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
15157
15158         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
15159
15160         * aot.c: Add support for ADJUSTED_IID.  
15161
15162 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
15163
15164         * aot.c (emit_method_order): Don't align method_order_end.
15165
15166         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
15167         the interface ID changes.
15168
15169 2006-04-21  Dick Porter  <dick@ximian.com>
15170
15171         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
15172         cleaning up a thread.  Fixes the new part of bug 77470.
15173
15174 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
15175
15176         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
15177         to managed wrapper.
15178                      
15179 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
15180
15181         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
15182         
15183         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
15184         SIGSEGV. Fixes #78072.
15185
15186         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
15187         unregister our SIGABRT handler.
15188
15189 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
15190
15191         * mini.c: Disabled inline where it can alter the call stack in a
15192         way visible from managed code.
15193         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
15194         default.
15195
15196 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
15197
15198         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
15199         on other platforms. Fixes #78089.
15200
15201 2006-04-13  Martin Baulig  <martin@ximian.com>
15202
15203         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
15204         determine whether we're inside the debugger.
15205
15206         * debug-debugger.h
15207         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
15208
15209 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
15210
15211         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
15212         handler clauses. Fixes #78024.
15213
15214         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
15215         in the CALL_MEMBASE opcodes. Fixes #78088.
15216         (mono_arch_get_vcall_slot_addr): Ditto.
15217
15218 2006-04-10  Martin Baulig  <martin@ximian.com>
15219
15220         * debug-debugger.c: The thread handling code has now been moved
15221         into ../metadata/threads.c.
15222
15223 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
15224
15225         * driver.c (mono_main): Fix --with-gc=none build.
15226
15227         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
15228         (mono_spillvar_offset_float): Ditto.
15229         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
15230         hreg, not when its !global, since on ia64, there is a third category: stacked
15231         registers.      
15232
15233 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
15234
15235         * mini.c: set MonoInst->klass for load field address and a few other
15236         places.
15237
15238 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
15239
15240         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
15241
15242 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
15243
15244         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
15245         the branch opt changes.
15246
15247 2006-04-06  Dick Porter  <dick@ximian.com>
15248
15249         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
15250         
15251         * wapihandles.c (mini_wapi_seminfo): 
15252         * driver.c (mono_main): Add semaphore info option
15253
15254 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
15255
15256         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
15257         branch optimization changes. Fixes #78009.
15258
15259 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15260
15261         * mini.c: ignore accessibility of methods in managed->native wrappers.
15262
15263 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
15264
15265         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
15266         
15267         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
15268
15269 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
15270
15271         * mini.c: Modify the branch optimizations to preserve the invariant that
15272         the entries inside the in_bb and out_bb arrays are unique.
15273         (mono_unlink_bblock): Avoid creation of new arrays.
15274
15275 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
15276
15277         * mini.c (mono_unlink_bblock): Fix regression caused by previous
15278         change (#77992).
15279
15280 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
15281
15282         * mini.c (optimize_branches): Remove the "optimizations" in
15283         the cbranch1/cbranch2 -> branch cases which were causing several
15284         problems in the past. Fixes #77986.
15285
15286 2006-03-31  Chris Toshok  <toshok@ximian.com>
15287
15288         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
15289         default optimizations :(
15290
15291 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
15292
15293         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
15294         branch.
15295
15296 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
15297
15298         * local-propagation.c: Added comments to structs and removed
15299         "Mono" prefixes from local tree mover types.
15300
15301 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
15302
15303         * Makefile.am (arch_sources): Define this for each architecture so 
15304         libmono_la_SOURCES is defined in one place.
15305
15306 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
15307
15308         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
15309         from handles/.
15310
15311 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
15312
15313         * driver.c: print the GC name supplied by configure.
15314
15315 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
15316
15317         * local-propagation.c: Added tree mover, and moved here all the
15318         local propagation code from mini.c
15319         * mini.c: Added support for treeprop, and moved all the local
15320         propagation code to local-propagation.c
15321         * mini.h: Added support for treeprop
15322         * driver.c: Added support for treeprop, enabled consprop, copyprop,
15323         treeprop, inline and deadce by default
15324         * Makefile.am: Added local-propagation.c
15325
15326 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
15327
15328         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
15329
15330 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
15331
15332         * debug-debugger.c: make it compile without the Boehm GC.
15333
15334 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
15335
15336         * mini.c: fixed issue with mismatch when an icall is registered
15337         with multiple names but same address.
15338
15339 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15340
15341         * declsec.c, mini-exceptions.c: use write barrier to set reference
15342         fields of managed objects.
15343
15344 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
15345
15346         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
15347         (can_access_internals): Fix a warning.
15348
15349         * mini.c (print_method_from_ip): Rename this to 
15350         mono_print_method_from_ip so it gets exported.
15351
15352         * trace.c: Deal with strings inside StringBuilder's containing garbage
15353         and fix memory leaks. Fixes #77848.
15354
15355 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
15356
15357         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
15358         fixes #77787.
15359
15360 2006-03-16 Neale Ferguson <neale@sinenomine.net>
15361         
15362         * mini-s390.c: Remove OP_X86_TEST_NULL.
15363
15364 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
15365
15366         * mini.c: use the correct GetHashCode() for the moving collector.
15367
15368 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
15369
15370         * liveness.c: Regalloc spill cost tuning.
15371
15372 2006-03-15 Neale Ferguson <neale@sinenomine.net>
15373         
15374         * mini-s390x.h: Correct S390_LONG macro.
15375
15376         * mini-s390x.c: Cleanup unused code.
15377
15378 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
15379
15380         * jit-icalls.h: New file.
15381
15382         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
15383         icalls and include that instead of including jit-icalls.c.
15384
15385         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
15386         OP_X86 opcodes.
15387
15388 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
15389
15390         * mini.c: when checking for member accessibility, also check for
15391         friend assemblies and for explicit interface implementations.
15392
15393 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
15394
15395         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
15396
15397         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
15398
15399         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
15400         common cases are done first.    
15401
15402         * mini-ops.h: Only define platform specific opcodes on the given platform.
15403
15404         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
15405         branch.
15406         
15407 2006-03-14  Martin Baulig  <martin@ximian.com>
15408
15409         Revert Paolo's change from r57348:
15410
15411         * mini.h: don't use gboolean for bitfields.
15412         * mini.c: verifier changes for fields and methods accessibility.
15413
15414 2006-03-13  Neale Ferguson <neale@sinenomine.net>
15415
15416         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
15417
15418         * mini-s390x.c: Fix conv_r_un.
15419
15420         * cpu-s390, cpu-s390x.md: Fix lengths.
15421
15422 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15423
15424         * mini.c: nested types have access to all the nesting
15425         levels, not just the enclosing types.
15426
15427 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
15428
15429         * mini.c: added a few more verification checks.
15430
15431 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
15432
15433         * liveness.c: Merge optimizations from the linear-il branch.
15434
15435 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
15436
15437         * mini-ia64.c (emit_call): Add a comment.
15438
15439         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
15440
15441         * tramp-ia64.c: Fix some warnings.
15442
15443 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15444
15445         * mini.h: don't use gboolean for bitfields.
15446         * mini.c: verifier changes for fields and methods accessibility.
15447
15448 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
15449
15450         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
15451         lazy icall wrapper changes.
15452
15453         * dominators.c: Replace all the dominator algorithms with faster
15454         ones from the linear-il branch.
15455
15456         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
15457         the mempool.
15458
15459         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
15460         common cases are done first.
15461
15462         * mini-amd64.c: Fix some warnings.
15463
15464         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
15465         from the mempool.
15466
15467         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
15468         added code.
15469
15470         * mini.h: Add a missing prototype.
15471
15472 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
15473
15474         * mini.c: Compile icall wrappers lazily.
15475
15476         * mini-codegen.c: Use printf instead of g_print since its much faster.
15477
15478         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
15479         function.
15480
15481         * mini.c (optimize_branches): Cache the negative result from 
15482         remove_block_if_useless ().
15483
15484         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
15485         Also fix some bblock linking issues.
15486
15487         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
15488         assembly files.
15489
15490         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
15491
15492         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
15493         accessed fields first, for better cache behavior.
15494         
15495 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
15496
15497         * mini.c: speedup IList<T> array accesses.
15498
15499 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
15500
15501         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
15502         inline_costs counter. Fixes #77190.
15503
15504 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
15505
15506         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
15507         trace messages. Fixes #77706.
15508
15509 2006-03-04  Martin Baulig  <martin@ximian.com>
15510
15511         * tramp-amd64.c, tramp-x86.c
15512         (mono_debugger_create_notification_function): Use
15513         mono_global_codeman_reserve() to allocate a buffer at runtime and
15514         return it.
15515
15516         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
15517
15518         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
15519         notification function at runtime and then call `initialize' in the
15520         `MONO_DEBUGGER__debugger_info' vtable.
15521
15522 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
15523
15524         * iltests.il: Fix a visibility problem.
15525
15526 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
15527
15528         * driver.c, mini.c: add hooks for the counters API.
15529
15530 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
15531
15532         * driver.c: show disabled options.
15533
15534 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15535
15536         * linear-scan.c: always use cost-driven selection.
15537
15538 2006-02-28  Raja R Harinath  <rharinath@novell.com>
15539
15540         * jit-icalls.c (helper_compile_generic_method): Revert change from
15541         2006-02-24.
15542
15543 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
15544
15545         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
15546
15547 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
15548
15549         * inssel.brg: style fixes, mostly to force the updated monoburg
15550         to run for people using svn.
15551
15552 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15553
15554         * mini.c: match monoburg changes.
15555
15556 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15557
15558         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
15559         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
15560         declaration in the header file.
15561
15562 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15563
15564         * helpers.c: reduce relocations and mem usage.
15565
15566 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15567
15568         * mini.h, mini-codegen.c: disable logging features if
15569         requested by configure.
15570
15571 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
15572
15573         * mini.c: tiny verifier changes.
15574
15575 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15576
15577         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
15578         cpu-pentium.md: stack alignment changes for osx/x86,
15579         partially from Geoff Norton <gnorton@customerdna.com>.
15580
15581 2006-02-24  Raja R Harinath  <harinath@gmail.com>
15582
15583         * jit-icalls.c (helper_compile_generic_method): Update to changes
15584         in metadata/class.c.
15585
15586 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
15587         
15588         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
15589         
15590         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
15591         interface calls with large offsets.
15592
15593 2006-02-23  Raja R Harinath  <rharinath@novell.com>
15594
15595         * jit-icalls.c (helper_compile_generic_method): Document the
15596         special-case we depend on so that we can inflate the method twice
15597         with the same context with no bad side-effects.
15598
15599 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15600
15601         * mini-x86.c, mini-amd64.c: fix for case when xen support
15602         is disabled.
15603
15604 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15605
15606         * mini-x86.c, mini-amd64.c: generate code to access tls items
15607         in a faster way for Xen systems.
15608
15609 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
15610
15611         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
15612         updates and compilation fixes for the OSX/x86 port, mostly from
15613         Geoff Norton <gnorton@customerdna.com>.
15614
15615 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
15616
15617         * inssel.brg: faster interface call implementation
15618         to sync with the interface_offsets MonoVTable changes.
15619
15620 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15621
15622         * mini.c: more verification checks.
15623
15624 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
15625
15626         * mini.c: added a few more verification checks.
15627
15628 2006-02-17      Neale Ferguson <neale@sinenomine.net>
15629
15630         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
15631         facility on the processor and use it if available.
15632
15633 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15634
15635         * driver.c, aot.c, mini.c: throw exception if the IL code is
15636         invalid or unverifiable.
15637
15638 2006-02-17  Raja R Harinath  <rharinath@novell.com>
15639
15640         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
15641         m.StructField.
15642
15643 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
15644
15645         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
15646
15647 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
15648
15649         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
15650         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
15651         handling of instantiated generic valuetypes.
15652
15653 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
15654
15655         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
15656         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
15657         instead.
15658
15659         * generics.2.cs: Revert the nullable reftypes tests.
15660
15661 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
15662
15663         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
15664         using __builtin_frame_address (1) as it doesn't work in the presence
15665         of optimizations. Hopefully fixes #77273.
15666
15667         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
15668         -> generics.cs change as it doesn't work with some automake versions.
15669
15670 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15671
15672         * mini.c: handle systems that sue a different way to
15673         retrieve the stack address of the current thread.
15674
15675 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
15676
15677         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
15678         it specially in the makefile.
15679
15680         * generics.2.cs: Add tests for nullable reference types.
15681
15682 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
15683
15684         * mini.c: always handle the case when mono_jit_init()
15685         is called in a thread different from the main thread,
15686         confusing libgc (bug #77309).
15687
15688 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
15689
15690         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
15691
15692 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
15693
15694         * mini.c: change optimize_branches () to use a single loop
15695         and introduce a new optimization to simplify some range checks.
15696
15697 2006-02-03  Martin Baulig  <martin@ximian.com>
15698
15699         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
15700         and merged with debugger_thread_manager_add_thread().
15701         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
15702         inform the debugger about the main thread.
15703
15704 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
15705
15706         * basic.cs: Add test for div.un/rem.un constant folding.
15707
15708 2006-02-03  Neale Ferguson <neale@sinenomine.net>
15709
15710         * cpu-s390x.md: correct int_xor_imm length
15711
15712 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
15713
15714         * generics.2.cs: New test for #77442.
15715
15716         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
15717         #77442.
15718
15719 2006-02-02  Martin Baulig  <martin@ximian.com>
15720
15721         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
15722         <mono/metadata/mono-debug-debugger.h>   
15723
15724         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
15725
15726 2006-02-02  Martin Baulig  <martin@ximian.com>
15727
15728         * debug-debugger.h: New header file for debug-debugger.c.
15729
15730         * debug-debugger.c: Big API cleanup; don't run the managed Main()
15731         function is a separate thread anymore; add support for attaching.
15732
15733 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
15734
15735         * tramp-x86.c: Fix a warning.
15736
15737 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
15738
15739         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
15740         on very large methods.
15741
15742         * aot.c (load_patch_info): Fix a warning.
15743
15744 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15745
15746         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
15747         mini-ops.h: alu membase optimizations.
15748
15749 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
15750
15751         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
15752         to speedup StringBuilder.
15753
15754 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
15755
15756         * dominators.c (mono_compute_natural_loops): Fix detection of
15757         loop body start blocks.
15758
15759         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
15760
15761 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
15762
15763         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
15764         #75145.
15765
15766 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
15767
15768         * aliasing.c: Fixed aliasing issue on 64 bit archs.
15769
15770 2006-01-25  Martin Baulig  <martin@ximian.com>
15771
15772         * debug-debugger.c: Moved the `MonoDebuggerManager' and
15773         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
15774         started to cleanup this file a little bit.
15775
15776 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
15777
15778         * mini.c: optimize a codepath frequently happening in generics code.
15779
15780 2006-01-23  Martin Baulig  <martin@ximian.com>
15781
15782         * Makefile.am: Only compile debug-debugger.c on supported platforms.
15783
15784         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
15785         functions directly.
15786
15787         * driver.c: debug-debugger.c is only available if
15788         `MONO_DEBUGGER_SUPPORTED' is defined.   
15789
15790 2006-01-23  Martin Baulig  <martin@ximian.com>
15791
15792         * debug-debugger.c: Only enable this on platforms where the Mono
15793         Debugger is working (x86 and x86_64).
15794
15795 2006-01-21  Martin Baulig  <martin@ximian.com>
15796
15797         The Mono Debugger is now using the normal `mono' instead of the
15798         `mono-debugger-mini-wrapper' when executing managed code.
15799
15800         * debug-debugger.c: New file; previously known as
15801         debugger/wrapper/wrapper.c.
15802
15803         * debug-mini.c (mono_init_debugger): Removed.
15804
15805         * driver.c (mono_main): Added new `--inside-mdb' command line
15806         argument which is used when running inside the debugger.
15807
15808 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
15809
15810         * liveness.c (mono_analyze_liveness): Remove some unused data
15811         structures.
15812
15813 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
15814
15815         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
15816
15817 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
15818
15819         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
15820         depends on implementation details of monobitset.
15821
15822         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
15823         Fixes #77271.
15824
15825 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
15826
15827         * liveness.c: Update after monobitset changes.
15828
15829 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
15830
15831         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
15832
15833 2006-01-11 Neale Ferguson <neale@sinenomine.net>
15834
15835         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
15836
15837         * mini-s390x.c: Remove warning messages.
15838
15839 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
15840
15841         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
15842
15843 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
15844
15845         * generics.2.cs: Add ldelem/stelem_any test.
15846
15847 2006-01-10 Neale Ferguson <neale@sinenomine.net>
15848
15849         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
15850
15851 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
15852
15853         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
15854         
15855 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
15856
15857         * generics.2.cs: Reenable vtype tests.
15858
15859         * inssel-x86.brg: Remove an icorrect valuetype rule.
15860
15861 2006-01-06 Neale Ferguson <neale@sinenomine.net>
15862
15863         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
15864         initial support for OP_ABS.
15865
15866 2006-01-05 Neale Ferguson <neale@sinenomine.net>
15867
15868         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
15869
15870 2006-01-05 Neale Ferguson <neale@sinenomine.net>
15871
15872         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
15873         conversion and implement LADD/LSUB.
15874
15875         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
15876         architectures.
15877
15878 2006-01-05 Neale Ferguson <neale@sinenomine.net>
15879
15880         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
15881
15882         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
15883         architectures.
15884
15885 2006-01-05 Neale Ferguson <neale@sinenomine.net>
15886
15887         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
15888         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
15889         (stack walk problem).
15890
15891 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
15892
15893         * aot.c (mono_aot_load_method): Fix a warning.
15894
15895 2006-01-03  Neale Ferguson <neale@sinenomine.net>
15896
15897         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
15898
15899 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
15900
15901         * iltests.il: Add test for #77148.
15902
15903         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
15904         #77148.
15905
15906 2006-01-03  Neale Ferguson <neale@sinenomine.net>
15907
15908         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
15909
15910 2006-01-03  Neale Ferguson <neale@sinenomine.net>
15911
15912         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
15913         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
15914
15915         * basic-long.cs: Add lconv-to-r4/r8 tests.
15916
15917 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
15918
15919         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
15920
15921         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
15922         here as on other archs.
15923
15924 2005-12-29 Neale Ferguson <neale@sinenomine.net>
15925
15926         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
15927
15928 2005-12-29 Neale Ferguson <neale@sinenomine.net>
15929
15930         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
15931         
15932         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
15933
15934         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
15935         instrument_prolog; Add memory_barrier instruction.
15936
15937 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
15938
15939         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
15940
15941 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
15942
15943         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
15944
15945         * aliasing.c inssel.brg: Fix warnings.
15946
15947         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
15948         could skip initialization of some parts of memory.
15949
15950         * mini.c mini-ia64.c: Fix warnings.
15951
15952         * inssel-sparc.brg: Add an implementation of lneg which actually works.
15953
15954 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
15955
15956         * aliasing.c (mono_build_aliasing_information): Add a workaround for
15957         a crash seen on sparc.
15958
15959         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
15960         
15961         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
15962
15963 2005-12-21 Neale Ferguson <neale@sinenomine.net>
15964
15965         * mini-ops.h: Add s390_backchain instruction
15966
15967         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
15968
15969         * cpu-s390.md: Add s390_backchain instruction
15970
15971         * mini-s390.c: Significant ABI changes
15972
15973         * mini-s390.h: Cater for zero length structures
15974
15975 2005-12-20 Neale Ferguson <neale@sinenomine.net>
15976
15977         * mini-s390.c: ABI fixes
15978
15979         * inssel-s390.brg: Remove debug statements
15980
15981         * cpu-s390.md: Fix length of ATOMIC_xx operations
15982
15983 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
15984
15985         * basic-float.cs: Add float<->long conversion tests.
15986
15987 2005-12-16 Neale Ferguson <neale@sinenomine.net>
15988
15989         * mini-s390.c: Fix LOCALLOC processing.
15990
15991         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
15992
15993 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
15994
15995         * iltests.il: Add tests for some opcodes not covered by the other
15996         tests.
15997
15998 2005-12-15 Neale Ferguson <neale@sinenomine.net>
15999
16000         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
16001         register loading for Tail processing; Correct trace output.
16002
16003         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
16004
16005         * cpu-s390.md: Correct size of jmp instruction. 
16006
16007 2005-12-13 Neale Ferguson <neale@sinenomine.net>
16008
16009         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
16010
16011 2005-12-13 Neale Ferguson <neale@sinenomine.net>
16012
16013         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
16014           Bring s390 up to current level.
16015
16016 2005-12-12  Zltan Varga  <vargaz@gmail.com>
16017
16018         * generics.2.cs: Disable the newly added tests as they do not work yet.
16019         
16020         * generics.2.cs: Add valuetype tests.
16021
16022 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
16023
16024         * basic-long.cs: Add i4->u8 test.
16025
16026         * objects.cs: Add tests for JIT intrinsic.
16027
16028         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
16029         optimizations lost by a mistake.
16030
16031 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
16032
16033         * basic-long.cs: Remove a test moved to objects.cs.
16034
16035         * arrays.cs: Add more array tests.
16036
16037 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
16038
16039         * arrays.cs: Add new tests for multi-dimensional arrays.
16040
16041 2005-12-06  Raja R Harinath  <rharinath@novell.com>
16042
16043         * Makefile.am (test_sources2): Add generics.2.cs.
16044         (EXTRA_DIST): Add test_sources2.
16045
16046 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
16047
16048         Support for boxing and unboxing nullable types as well as the
16049         isinst operation on nullables, per the CLI ammendment.
16050
16051         * inssel.brg (CEE_ISINST): Special case for nullable
16052
16053         * mini.c (handle_unbox_nullable): new method
16054         (handle_box): Special case for nullable types
16055         (mono_method_to_ir): Call handle_unbox_nullable in correct
16056         places.
16057
16058         * generics.2.cs: New test suite
16059
16060         * Makefile.am: Support for regression tests with generics.
16061
16062 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
16063
16064         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
16065         allocated to registers. Fixes #76800.
16066
16067 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
16068
16069         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
16070
16071 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
16072
16073         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
16074         of platforms.
16075
16076 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
16077
16078         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
16079         objects.cs.
16080
16081         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
16082         
16083         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
16084 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
16085
16086         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
16087         single precision before storing to a single precision location.
16088
16089 2005-11-28  Raja R Harinath  <rharinath@novell.com>
16090
16091         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
16092
16093 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
16094
16095         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
16096         correct files.
16097
16098         * basic.cs: Remove test_0_byte_compares test which was moved to
16099         objects.cs a long time ago.
16100
16101 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
16102
16103         * aliasing.c: Fixed aliasing issue on 64 bit archs.
16104
16105 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
16106
16107         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
16108         handlers are called.
16109
16110         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
16111         throwing code.
16112
16113          * mini-ia64.c: Add support for the throw->branch exception 
16114         optimization.   
16115
16116         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
16117
16118 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
16119
16120         * mini.c: Enabled "fastpath" deadce :-)
16121         
16122 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
16123
16124         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
16125         alias analysis pass to support it.
16126         * mini.h: Likewise.
16127         * ssa.c: Likewise.
16128         * liveness.c: Likewise (liveness computation can use aliasing
16129         information to be more accurate).
16130         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
16131         moreover made so that "--compile-all" uses the given optimization
16132         flags and not the default ones.
16133         * aliasing.c: Alias analysis (new file).
16134         * aliasing.h: Likewise.
16135         * Makefile.am: added "aliasing.c" and "aliasing.h".
16136         
16137 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
16138
16139         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
16140         OP_L opcodes.
16141
16142 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
16143
16144         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
16145         fp >= end_of_stack exit condition, as it is not needed, and it might
16146         become true for fp eliminated frames.
16147
16148 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
16149
16150         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
16151         coded offsets.
16152
16153 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
16154
16155         * mini-arm.c: fixed alignment of doubles/longs to match
16156         the C ABI (bug #76635).
16157
16158 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
16159
16160         * aot.c: fix compilation with --enable-minimal=aot.
16161
16162 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
16163
16164         * mini-arm.c: fixed compatibility with the new
16165         floating point emulator package for compares.
16166
16167 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
16168
16169         * mini.c : reverted sig->pinvoke changes (r51396-51397).
16170
16171 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
16172
16173         * mini-exceptions.c (print_stack_frame): Output to stderr.
16174         (mono_handle_native_sigsegv): Ditto.
16175
16176 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
16177
16178         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
16179         OP_LCONV_TO_OVF_I implementation.
16180
16181         * mini-amd64.c: Add support for the throw->branch exception 
16182         optimization.
16183
16184         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
16185         when the catch clause catches a more general exception, i.e. Object.
16186
16187 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
16188
16189         * cpu-ia64.md: Remove unused opcodes.
16190
16191         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
16192         specific defines for architectures defining USE_SIGACTION.
16193
16194         * mini-ia64.c: Fix some warnings.
16195
16196         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
16197         version seemed to skip a frame.
16198
16199 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
16200
16201         * mini.c: Clean up the usage of sig->pinvoke flag. Now
16202         only calls which are made to native code use this flag.
16203
16204 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
16205
16206         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
16207         varargs methods as well.
16208         
16209         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
16210         which have save_lmf set. Reorganize methods prologs a bit.
16211
16212         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
16213         debugger to the proper place.
16214
16215 2005-10-29  Martin Baulig  <martin@ximian.com>
16216
16217         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
16218         when running inside the debugger until the debugger has support
16219         for it.
16220
16221 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
16222
16223         * mini.h: Fix a warning.
16224
16225 2005-10-24  Miguel de Icaza  <miguel@novell.com>
16226
16227         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
16228         we expose publicly, this returns the string.
16229
16230 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
16231
16232         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
16233         with fp elimination.
16234
16235 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
16236
16237         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
16238         native stacktrace using the glibc 'backtrace' function if available.
16239
16240 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
16241
16242         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
16243
16244         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
16245         handle SIGSEGVs received while in native code.
16246
16247         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
16248         code, call mono_handle_native_sigsegv which will abort the runtime
16249         after printing some diagnostics, instead of converting it into a
16250         confusing NullReferenceException.
16251
16252 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
16253
16254         * cpu-pentium.md: Remove unused opcodes.
16255
16256 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
16257
16258         * mini-amd64.h (MonoLMF): Add rsp field.
16259
16260         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
16261         the lmf too.
16262
16263 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
16264
16265         * mini-codegen.c (get_register_spilling): Fix some warnings.
16266
16267 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
16268
16269         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
16270         elimination during exception handling. Enable fp elimination by
16271         default.
16272
16273         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
16274         elimination.
16275
16276 2005-10-16  Martin Baulig  <martin@ximian.com>
16277
16278         * mini-exceptions.c
16279         (mono_debugger_run_finally): New public method for the debugger.
16280
16281 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
16282
16283         * debug-mini.c (mono_debug_init_method): Fix warning.
16284
16285         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
16286         the 'exname' parameter const to fix some warnings.
16287
16288 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
16289
16290         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
16291         introduced by the previous patch.
16292
16293 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
16294
16295         * basic-float.cs: Add test for precision of float arithmetic.
16296
16297         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
16298         when loading/storing single values from/to memory.
16299
16300         * mini.c (mono_jit_compile_method_with_opt): Create the function
16301         pointers in the correct domain.
16302
16303 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
16304
16305         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
16306         introduced by previous patch.
16307         
16308         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
16309         when out_filter_idx is NULL.
16310
16311         * mini-exceptions.c: Don't run filter clauses twice during exception
16312         handling. Fixes #75755.
16313
16314 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
16315
16316         * aot.c: Add support for ldflda wrappers.
16317
16318         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
16319         #75902.
16320
16321 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
16322
16323         * mini.c, mini.h: do not consider exception handlers blocks when
16324         setting up interface variables.
16325
16326 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
16327
16328         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
16329
16330 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
16331
16332         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
16333         causes a regression.
16334
16335         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
16336
16337 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
16338
16339         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
16340         of the OP_P definitions.
16341
16342         * TODO: Add a proposal for dealing with the CEE/OP mess.
16343
16344         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
16345         optimizations from the x86 port.
16346
16347         * cpu-amd64.md: Ditto.
16348
16349         * basic.cs basic-long.cs: Add tests.
16350
16351 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
16352
16353         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
16354         Patrik Torstensson's implementation of my exception-handling
16355         optimization idea, when the exception object is not used
16356         (bug #62150).
16357
16358 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
16359
16360         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
16361         of the mul_imm optimizations from the old jit.
16362
16363 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
16364
16365         * mini.c, liveness.c: patch by Patrik Torstensson and
16366         Zoltan Varga to improve performance in methods with
16367         exception clauses.
16368
16369 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
16370
16371         * driver.c: Remove 'Globalization' entry from --version.
16372
16373 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
16374
16375         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
16376         there is a profiler interested in JIT events.
16377
16378         * aot.c: Load profile files produced by the AOT profiling module, and
16379         reorder methods based on the profiling info. Add a 'method_order' table
16380         to the AOT file to make mono_aot_find_jit_info work with the reordered
16381         methods.
16382
16383         * mini.h: Bump AOT file version info.
16384
16385 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
16386
16387         * mini-arm.h: work around what looks like a gcc bug when optimizations
16388         are enabled.
16389
16390 2005-09-28  Raja R Harinath  <rharinath@novell.com>
16391
16392         * Makefile.am (AM_CFLAGS): Don't use += to append inside
16393         conditionals.  Use ...
16394         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
16395
16396 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
16397
16398         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
16399         to determine the amount of memory to copy when passing valuetypes.
16400
16401         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
16402         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
16403
16404 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
16405
16406         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
16407         information about aot.
16408
16409 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
16410
16411         * *.c: Replace the use of {Enter,Leave}CriticalSection with
16412         macros. This will allow a deadlock debugger to easily be plugged
16413         in.
16414
16415 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
16416
16417         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
16418
16419 2005-09-27  Raja R Harinath  <rharinath@novell.com>
16420
16421         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
16422         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
16423         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
16424         ($(arch_built)) [CROSS_COMPILING]: Error out.
16425
16426 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
16427
16428         * aot.c: Add support for the no_special_static flag for classes.
16429
16430 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
16431
16432         * Reapply reverted patches.
16433
16434         * *: Revert r50174 as well.
16435
16436         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
16437
16438 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
16439
16440         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
16441
16442 2005-09-23  Miguel de Icaza  <miguel@novell.com>
16443
16444         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
16445         part of the SIG_HANDLER_SIGNATURE.  
16446
16447 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
16448
16449         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
16450         statistics.
16451
16452         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
16453         introduced by previous patch.
16454
16455 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
16456
16457         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
16458         saved registers too.
16459
16460         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
16461         upon the information returned by get_call_info ().
16462         
16463         * mini-x86.c (add_float): Fix stack size calculation.
16464         (mono_arch_call_opcode): Rewrite this so it works based up the
16465         information returned by get_call_info ().
16466         (mono_arch_get_this_vret_args): Ditto.
16467
16468 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
16469
16470         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
16471         in cinfo to determine the registers which need to be used.
16472
16473 2005-09-20  Miguel de Icaza  <miguel@novell.com>
16474
16475         * driver.c (mono_main): Add --server and --desktop flags. 
16476
16477 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
16478
16479         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
16480         registers as global registers.
16481
16482         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
16483         longer needed with the new register allocator.
16484
16485         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
16486
16487         * cpu-ia64.md: Remove unused opcodes.
16488         
16489         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
16490         
16491 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
16492
16493         * cpu-amd64.md: Remove unused opcodes.
16494
16495         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
16496         needed with the new register allocator.
16497
16498         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
16499         reg-reg moves.
16500
16501 2005-09-16  Raja R Harinath  <rharinath@novell.com>
16502
16503         * Makefile.am (check-local): Don't invoke semdel-wrapper.
16504
16505 2005-09-16  Martin Baulig  <martin@ximian.com>
16506
16507         * exceptions-amd64.c
16508         (throw_exception): Don't call mono_debugger_throw_exception() if
16509         we're a rethrow - see the FIXME in the code.
16510
16511 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
16512
16513         * mini.c (mono_init_exceptions): This only works on some architectures.
16514         
16515 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
16516
16517         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
16518         on ia64.
16519
16520         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
16521
16522         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
16523         now in mini-exceptions.c.
16524
16525 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
16526
16527         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
16528         now in mini-exceptions.c.
16529
16530 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
16531
16532         * exceptions-x86.c: Applied patch from Patrik Torstensson 
16533         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
16534
16535         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
16536         code into mini-exceptions.c. Add some assertions to it.
16537
16538 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
16539
16540         * aot.c (emit_section_change): Applied patch from "The Software Team" 
16541         (<software@solmersa.com>). Fix as errors on windows.
16542
16543 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
16544
16545         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
16546         method info into the LMF.
16547
16548 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
16549         
16550         * mini-ia64.c: Add proper unwind info for method epilogs.
16551
16552         * exceptions-ia64.c: Add some code to help debugging.
16553         
16554         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
16555
16556         * mini-exceptions.c: Fix warning.
16557
16558 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
16559
16560         * mini.c: Really fix build.
16561
16562         * mini-x86.c mini-amd64.c: Fix build.
16563
16564 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
16565
16566         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
16567
16568         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
16569         some Interlocked methods as intrinsics.
16570
16571         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
16572         for Thread methods as well.
16573
16574         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
16575
16576         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
16577
16578         * mini-ia64.c mini-x86.c mini-amd64.c 
16579         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
16580         OP_MEMORY_BARRIER.
16581         
16582         * mini.c (mono_init_exceptions): Fix build breakage.
16583
16584 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
16585
16586         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
16587         of instructions. Use the new ia64_unw_op macros for emitting unwind
16588         info.
16589
16590         * mini.c (mono_init_exceptions): Initialize exception handling
16591         related trampolines at startup.
16592
16593 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
16594
16595         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
16596
16597 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
16598
16599         * mini.c: Handle type loading errors gracefully during compilation and
16600         throw the appropriate exception.
16601
16602 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
16603
16604         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
16605         for the mono binary.
16606
16607 2005-09-09  Martin Baulig  <martin@ximian.com>
16608
16609         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
16610         the release.
16611
16612 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
16613
16614         * mini-arm.h: use emulation for conv.r.un for the release.
16615
16616 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
16617
16618         * mini-arm.c, objects.cs: more fixes and tests for them.
16619
16620 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
16621
16622         * mini-arm.c: align structures to at least 4 bytes to be able
16623         to keep our current optimized memcpy.
16624
16625 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
16626
16627         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
16628
16629 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16630
16631         * mini.c: ignore SIGPIPE.
16632
16633 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
16634
16635         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
16636
16637         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
16638
16639 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
16640
16641         * mini.h: Add prototype for mono_allocate_stack_slots_full.
16642
16643 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
16644
16645         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
16646         exception handling support.
16647         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
16648         patch by Brian Koropoff <briank@marakicorp.com>).
16649
16650 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
16651
16652         * mini.c: revert another 'optimization' which breaks when
16653         items on the eval stack need to be saved at a basic block end
16654         (bug #75940).
16655
16656 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
16657
16658         * jit-icalls.c: for arrays, ensure we always provide
16659         lower bounds.
16660
16661 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
16662
16663         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
16664         
16665         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
16666
16667 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
16668
16669         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
16670         arguments in their original register.
16671
16672 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
16673
16674         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
16675         memset/memcpy.
16676
16677         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
16678         when ssapre is enabled.
16679
16680         * inssel-long.brg: Fix bug in previous patch.
16681
16682         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
16683         multiplication by a constant.
16684
16685 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
16686
16687         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
16688         icc.
16689
16690         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
16691         saving registers.
16692
16693 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
16694
16695         * inssel-arm.brg: apply changes tested by Brian Koropoff
16696         <briank@marakicorp.com>.
16697
16698 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
16699
16700         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
16701         
16702 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
16703
16704         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
16705         to the same register if dreg is just a base register.
16706         (print_ins): Improve printing of membase opcodes.
16707
16708         * inssel-x86.brg: Add optimized ldind(reg) rules.
16709
16710         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
16711
16712 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
16713
16714         * mini.c: when running under valgrind, set the stack bottom for
16715         the GC at the actual approximate stack for the app (fixes running
16716         mono with valgrind).
16717
16718 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
16719
16720         * mini.c: do no break at the first valuetype to init found
16721         (fixes bug #75791).
16722
16723 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
16724
16725         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
16726
16727 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
16728
16729         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
16730
16731 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
16732
16733         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
16734
16735 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
16736
16737         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
16738
16739         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
16740         code.
16741
16742         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
16743         code.
16744
16745         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
16746         methods.
16747
16748 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
16749
16750         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
16751
16752 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
16753
16754         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
16755         in the tail recursion optimization.
16756
16757         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
16758         debug info into the assembly file.
16759
16760         * iltests.il: Add test for filter regions.
16761
16762         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
16763         initial stack of filter regions. Fixes #75755.
16764
16765 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
16766
16767         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
16768         stack requirements.
16769
16770 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
16771
16772         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
16773         the check for an already compiled method on non-ia64 platforms.
16774         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
16775         proper domain.
16776
16777         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
16778
16779         * inssel-x86.brg: Add some optimized call rules.
16780
16781 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
16782
16783         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
16784         method here.
16785
16786         * mini.h mini-trampolines.c: Pass the trampoline argument to 
16787         mono_arch_patch_delegate_trampoline.
16788
16789         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
16790
16791         * mini-trampolines.c: Fix build.
16792
16793         * mini-amd64.h: Add delegate trampolines.
16794
16795         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
16796
16797         * inssel-amd64.brg: Add optimized call rules.
16798         
16799         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
16800
16801         * inssel-ia64.brg: Add optimized ldind(reg) rules.
16802
16803 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
16804
16805         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
16806         change.
16807
16808         * mini-ia64.c: Remove LMF fixmes.
16809
16810         * mini-ia64.h: Remove most fields from LMF.
16811
16812         * inssel-ia64.brg (stmt): Fix unaligned access errors.
16813
16814         * mini-trampolines.c: Add support for IA64 function descriptors.
16815
16816         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
16817         for IA64 function descriptors.
16818
16819 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
16820
16821         * tramp-arm.c: patch the vtable for virtual calls. Added
16822         support code to register/unregister the LMF.
16823         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
16824         more LMF work.
16825
16826 2005-08-19  Dick Porter  <dick@ximian.com>
16827
16828         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
16829         bit value if needed.
16830
16831 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
16832
16833         * mini.c (mini_get_method): Move handling of wrapper data here.
16834
16835         * mini.c (mono_method_to_ir): Add support for dynamic methods.
16836
16837         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
16838         virtual.
16839
16840         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
16841         bblock->code does not remain empty.
16842
16843 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
16844
16845         * arrays.cs: Add regression test for #75832.
16846
16847         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
16848         rules. Fixes #75832.
16849
16850         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
16851         instruction scheduling.
16852
16853 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
16854
16855         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
16856
16857 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
16858
16859         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
16860
16861         * mini-codegen.c: Fix VC build.
16862
16863         * cpu-pentium.md: Increase length of atomic_exhange_i4.
16864
16865 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16866
16867         * mini.h: fix signature for mono_register_opcode_emulation.
16868
16869 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
16870
16871         * mini.c: Get rid of most of the helper_sig_... constants using
16872         mono_create_icall_signature ().
16873
16874 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
16875
16876         * jit-icalls.c (helper_ldstr): New helper function.
16877
16878         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
16879
16880         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
16881         throw, load the string using a helper call instead of creating a string object.
16882
16883         * aot.c: Update after LDSTR changes.
16884
16885         * mini.h: Bump AOT file version.
16886         
16887         * aot.c: Save class size info into the AOT file. Print more statistics during
16888         compilation.
16889
16890         * mini.h: Bump AOT file version.
16891
16892         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
16893         ordering of disasm cases. Fixes #74957.
16894
16895 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
16896
16897         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
16898         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
16899         the generic code needed for the ARM port.
16900
16901 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
16902
16903         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
16904         inssel-arm.brg: more ARM features and fixes.
16905
16906 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
16907
16908         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
16909         ARM port work in progress.
16910
16911 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
16912
16913         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
16914
16915         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
16916
16917         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
16918
16919         * inssel.brg (mini_emit_memset): Add support for unaligned access.
16920
16921         * *-ia64.*: Ongoing IA64 work.
16922         
16923         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
16924
16925 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
16926
16927         * TODO: Remove out-of-data todo stuff.
16928
16929         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
16930         dead code.
16931
16932         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
16933
16934         * mini.h: Bump corlib version.
16935
16936 2005-07-27  Martin Baulig  <martin@ximian.com>
16937
16938         * mini-codegen.c
16939         (create_copy_ins): Added `const unsigned char *ip' argument; set
16940         `copy->cil_code' from it.
16941
16942 2005-07-27  Martin Baulig  <martin@ximian.com>
16943
16944         * mini-exceptions.c (mono_handle_exception): Don't call
16945         mono_debugger_handle_exception() for filters.
16946
16947 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
16948
16949         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
16950         as well.
16951
16952 2005-07-26  Martin Baulig  <martin@ximian.com>
16953
16954         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
16955
16956         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
16957         helper_compile_generic_method() if the method is actually virtual
16958         and non-final.
16959
16960 2005-07-26  Martin Baulig  <martin@ximian.com>
16961
16962         * mini.c
16963         (trampoline_code): Renamed to `mono_trampoline_code' and made it
16964         public; this is now accessed directly by the debugger.
16965         (mono_generic_trampoline_code): Removed.
16966
16967         * debug-mini.c
16968         (mono_debug_init_method): Also add interncalls and wrappers.
16969
16970 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
16971
16972         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
16973
16974 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
16975
16976         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
16977
16978 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
16979
16980         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
16981
16982 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
16983
16984         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
16985         getting TLS offsets on AMD64 too.
16986
16987 2005-07-20  Kornel Pal <kornelpal@hotmail.com>
16988
16989         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
16990
16991 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
16992
16993         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
16994         inssel-arm.brg, mini-arm.h: ARM port work in progress.
16995
16996 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
16997
16998         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
16999
17000         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
17001         to mini.c.
17002
17003         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
17004         mono_sparc_is_virtual_call ().
17005         
17006         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
17007
17008         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
17009         trampoline parameters.
17010
17011         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
17012         
17013         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
17014         to mono_arch_get_vcall_slot_addr.
17015
17016         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
17017         trampoline code.
17018
17019         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
17020
17021 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
17022
17023         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
17024
17025 2005-07-19  Martin Baulig  <martin@ximian.com>
17026
17027         * exceptions-amd64.c (throw_exception): Call
17028         mono_debugger_throw_exception() here like we're doing it on i386.
17029
17030 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
17031
17032         * mini-ia64.c: Add optimized TLS access support.
17033
17034 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
17035
17036         * mini-exceptions.c: Ongoing IA64 work.
17037
17038         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
17039
17040         * mini.c: Use the default optimization set when embedding. Fixes
17041         #75194.
17042
17043 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
17044
17045         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
17046         of trampolines to a separate file.
17047
17048         * mini-trampolines.c: New file.
17049
17050         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
17051         separate file.
17052         
17053         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
17054         amd64/ia64 code.
17055
17056         * mini-codegen.c: Fix cygwin build.
17057
17058 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
17059
17060         * mini.c: Add some minor changes needed by the IA64 port.
17061
17062         * *-ia64.*: Ongoing IA64 work.
17063
17064 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
17065
17066         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
17067         trampolines into arch-independent and arch-dependent parts.
17068
17069         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
17070
17071 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
17072
17073         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
17074
17075         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
17076         the xp-regalloc-branch for amd64.
17077
17078         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
17079         xp-regalloc-branch for x86.
17080
17081 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
17082
17083         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
17084
17085 2005-07-06  Martin Baulig  <martin@ximian.com>
17086
17087         * mini.c
17088         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
17089         (mono_jit_runtime_invoke): Likewise.
17090
17091 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
17092
17093         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
17094         on x86 too.
17095         
17096         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
17097         without loading their metadata. Reorganize the file format so exception handling+
17098         debug info is kept separate from normal method info. Create MonoJitInfo 
17099         structures for methods lazily.
17100
17101         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
17102         loading metadata.
17103         (x86_class_init_trampoline): Patch AOT class init trampolines too.
17104
17105         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
17106
17107         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
17108         in AOT code.
17109
17110         * mini.h: Bump AOT file version.
17111
17112 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
17113
17114         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
17115
17116 2005-07-01  Raja R Harinath  <rharinath@novell.com>
17117
17118         * Makefile.am (check-local): Call semdel-wrapper.
17119
17120 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
17121
17122         * mini-x86.c: Revert the last change as it seems to break the build..
17123
17124 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
17125
17126         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
17127         
17128         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
17129
17130 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
17131
17132         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
17133         outside of the macro, so strange stuff doesn't happen with gcc4
17134         (NEW_AOTCONST_TOKEN): Likewise.
17135
17136 2005-06-28  Martin Baulig  <martin@ximian.com>
17137
17138         * mini.c (mini_class_is_system_array): New static method; use this
17139         instead of `klass->parent == mono_defaults.array_class' everywhere
17140         since this also works for the new generic array class.
17141
17142 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
17143
17144         * inssel.brg: Remove warnings.
17145
17146 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
17147
17148         * mini-ia64.c: Ongoing IA64 work.
17149
17150         * basic-float.cs: Add float->i1 conversion test.
17151
17152         * iltests.il: Add conv.u4 test.
17153
17154 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
17155
17156         * inssel-long.brg: Fix bug caused by last change.
17157
17158 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
17159
17160         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
17161         BSDs.  Allows the x86 JIT to work on OSX86
17162
17163 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
17164
17165         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
17166         u4->i8 conversion.
17167
17168         * mini-ia64.c: Ongoing IA64 work.
17169
17170 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
17171
17172         * mini-ia64.c: Ongoing IA64 work.
17173
17174         * driver.c: Clean up jit_code_hash as well when using --regression.
17175
17176         * inssel-long.brg: Fix long->i4/u4 conversion rules.
17177
17178         * basic-long.cs: Add tests for long->u4 conversion.
17179
17180 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
17181
17182         * mini.c: Take mono_get_domainvar out of macros. This makes sure
17183         that we do not depend on undefined C behavior: the order stuff
17184         gets evaluated within an expression. Fixes mono when compiled on
17185         GCC 4.
17186
17187 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
17188
17189         * *-ia64.*: Ongoing IA64 work.
17190
17191         * aot.c: Lower memory usage while loading AOT methods.
17192
17193         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
17194
17195         * mini.h: Bump AOT file format version.
17196
17197 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
17198
17199         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
17200
17201 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
17202
17203         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
17204         not on callee assembly). Fixed some comments.
17205
17206 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
17207
17208         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
17209         it gets proper disassembly.
17210         (emit_method_info): Remove some dead code.
17211
17212         * mini.c (mini_method_compile): Allways allocate the GOT var in
17213         mono_method_to_ir for emulating opcodes.
17214
17215 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
17216
17217         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
17218         before freeing the code memory. Fixes #74990.
17219
17220         * objects.cs: Add regression test for #74992.
17221
17222         * liveness.c: Extend live ranges of arguments to the beginning of the
17223         method. Fixes #74992.
17224
17225         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
17226         so it points into the faulting instruction.
17227
17228 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
17229
17230         * jit-icalls.c (mono_imul_ovf): Add exception handling.
17231
17232         * *-ia64.*: Ongoing IA64 work.
17233
17234         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
17235
17236 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
17237
17238         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
17239
17240         * *-ia64.*: Ongoing IA64 work.
17241
17242 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
17243
17244         * basic-long.cs: Add tests for add/sub.ovf.
17245
17246         * basic.cs: Add tests for sub.ovf.
17247
17248         * *-ia64.*: Ongoing IA64 work.
17249
17250 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
17251
17252         * *-ia64.*: Ongoing IA64 work.
17253
17254         * basic.cs: Add conv.ovf.i4.un test.
17255
17256 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
17257
17258         * mini.c: (remove_block_if_useless) Fixed bug 75061.
17259         
17260 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17261
17262         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
17263
17264 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
17265
17266         * *-ia64.*: Ongoing IA64 work.
17267
17268 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17269
17270         * trace.[ch]:
17271         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
17272
17273 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
17274
17275         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
17276
17277 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
17278
17279         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
17280
17281         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
17282         of a call is callable by a near call.
17283
17284 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
17285
17286         * mini-ia64.c: Ongoing IA64 work.
17287
17288 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
17289
17290         * genmdesc.c: Make the generated array non-static.
17291
17292         * inssel-long.brg: Fix LSHR_IMM rule.
17293
17294         * *-ia64.*: Ongoing IA64 work.
17295
17296         * *-ia64.*: Ongoing IA64 work.
17297
17298 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
17299
17300         * *-ia64.*: Ongoing IA64 work.
17301
17302         * *-ia64.*: Ongoing IA64 work.
17303         
17304         * mini-ia64.c: Ongoing IA64 work.
17305
17306         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
17307
17308 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
17309
17310         * objects.cs basic-calls.cs: Move some tests to objects.cs.
17311         
17312         * objects.cs basic-long.cs: Move some tests to objects.cs.
17313
17314 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
17315
17316         * *-ia64.*: Ongoing IA64 work.
17317
17318         * iltests.il: Add a new test.
17319
17320         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
17321         newobj. Fixes #75042.
17322
17323 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
17324
17325         * *-ia64.*: Ongoing IA64 work.
17326         
17327         * *-ia64.*: Ongoing IA64 work.
17328         
17329         * *-ia64.*: Ongoing IA64 work.
17330
17331         * basic.cs objects.cs: Move tests accessing static variables as well.
17332
17333         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
17334
17335 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
17336
17337         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
17338
17339         * driver.c: Always print failed tests.
17340
17341         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
17342         frame pointer.
17343
17344         * *ia64*: Ongoing IA64 work.
17345
17346 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
17347
17348         * basic.cs: Add tests for add.ovf. Fix warnings.
17349
17350 2005-05-18  Miguel de Icaza  <miguel@novell.com>
17351
17352         * driver.c (mono_main): Avoid crash if no argument is passed to
17353         --break;  Do not use g_error, but f_printf.   And fix all other
17354         ocurrences of the same crash.
17355
17356 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
17357
17358         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
17359         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
17360         Fixes #74742.
17361
17362 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
17363
17364         * *-ia64.*: Add beginnings of IA64 backend.
17365
17366         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
17367
17368 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
17369
17370         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
17371         Fixes #74925.
17372
17373         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
17374
17375         * mini-amd64.c: Fix a warning.
17376
17377 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
17378
17379         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
17380         in float_neg. Fixes #74897.
17381
17382         * mini-amd64.c (emit_call): Fix another near call bug.
17383
17384 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
17385
17386         * declsec.c: Keep the appdomain information in the structure. Added a 
17387         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
17388         value gets overwritten).
17389         * declsec.h: Set the default MonoArray for the the stack to 6. Added
17390         an MonoAppDomain member to MonoSecurityFrame.
17391         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
17392         used in the stack walk. Now use a MonoArray which grow (double) when
17393         it gets full.
17394
17395 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
17396
17397         * mini.c: Re-enabled runtime cleanup, since running threads should
17398         now properly stop when exiting.
17399
17400 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
17401
17402         * mini-codegen.c: New file contaning the arch-independent local
17403         register allocator. Not used by any architectures yet.
17404
17405         * mini.h linear-scan.c: Merge some changes from the 
17406         mini-xp-local-regalloc branch.
17407
17408 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
17409
17410         * mini-amd64.c (emit_call): Fix calls to native functions when the
17411         runtime is compiled as a shared library. Fixes #74756.
17412
17413         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
17414         on a literal field. Fixes #74751.
17415
17416 2005-04-25  Raja R Harinath  <rharinath@novell.com>
17417
17418         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
17419
17420 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
17421
17422         * objects.cs: Add missing null casting test.
17423
17424 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
17425
17426         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
17427         in wrapper methods. Also rename 'address' variable to 'offset'.
17428
17429 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
17430
17431         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
17432         warnings.
17433         
17434         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
17435
17436         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
17437         work on windows.
17438
17439 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
17440
17441         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
17442
17443 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
17444
17445         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
17446         just the last bytes.
17447
17448 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
17449
17450         * aot.c (mono_compile_assembly): Fix warning.
17451
17452         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
17453         by the _MSC_VER stuff.
17454
17455 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
17456
17457         * inssel-long.brg: Fix #74588.
17458
17459         * cpu-amd64.md: Fix #74591.
17460
17461         * iltests.il: Add new regression tests.
17462
17463 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
17464
17465         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
17466         valuetype.
17467
17468 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
17469
17470         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
17471
17472         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
17473         from Bill Middleton <flashdict@gmail.com>.
17474
17475 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
17476
17477         * arrays.cs: Add new regression test. Fix warnings.
17478
17479 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
17480
17481         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
17482         and leakage in CKFINITE.
17483
17484         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
17485         this to a null op since it is called on amd64 too.
17486
17487         * exceptions-amd64.c (get_throw_trampoline): Align stack.
17488
17489         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
17490         body since this is not used on amd64.
17491         
17492         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
17493
17494         * mini-amd64.c: Remove obsolete fixmes.
17495
17496         * mini.c (print_method_from_ip): Fix debugging support.
17497
17498 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
17499
17500         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
17501         so that expressions that don't give much gain are not reduced.
17502         * ssapre.h: Likewise.
17503
17504 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
17505
17506         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
17507
17508         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
17509
17510         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
17511
17512 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
17513
17514         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
17515
17516         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
17517
17518 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
17519
17520         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
17521         stack touching.
17522
17523         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
17524
17525         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
17526
17527         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
17528
17529         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
17530         MONO_ARCH_USE_SIGACTION. Fixes #74252.
17531
17532         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
17533
17534         * mini-x86.c: Fix up stack overflow handling.   
17535
17536         * exceptions.cs: Add new regression test.
17537
17538 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
17539
17540         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
17541         mono_jit_thread_attach.
17542
17543         * mini.c (mono_method_to_ir): Verify called method is not abstract.
17544
17545 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
17546
17547         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
17548         avoid calling constructors using callvirt.
17549
17550         * inssel.brg: Fix #74073.
17551
17552 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
17553
17554         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
17555         compilation with non-GCC compilers.
17556         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
17557         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
17558
17559 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
17560
17561         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
17562         klass->interface_offsets (will likely fix bug#74073).
17563
17564 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
17565
17566         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
17567
17568 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
17569
17570         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
17571         to amd64_div_reg_size ().
17572         
17573         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
17574
17575 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
17576
17577         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
17578
17579 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
17580
17581         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
17582
17583 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
17584
17585         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
17586         
17587         * mini.c (mono_precompile_assembly): Load and precompile referenced
17588         assemblies as well. Fixes #74015.
17589
17590 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
17591
17592         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
17593
17594 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
17595
17596         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
17597         a lot of checks and (anyway) permissions cannot work until corlib is 
17598         loaded.
17599
17600 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
17601
17602         * mini-ppc.c: fixed ABI issue on sysv/ppc.
17603
17604 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
17605
17606         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
17607         calls (fixes bug#72824).
17608
17609 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
17610
17611         * mini.c: fix tail recursion elimination (see test in bug#73936).
17612
17613 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
17614
17615         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
17616         some fp functions in sse2 mode.
17617
17618 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
17619
17620         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
17621
17622 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
17623
17624         * mini.h mini.c: Add mono_get_jit_tls_key ().
17625
17626         * mini-x86.c: Enable fast TLS support on windows.
17627
17628 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
17629
17630         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
17631         * mini.c: Check for p/invoke method when generating code. If a
17632         p/invoke method, or it's class, isn't decorated with [Suppress
17633         UnmanagedCodeSecurity] then generate code to call System.Security.
17634         UnmanagedDemand (only if the security manager is active).
17635
17636 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17637
17638         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
17639         last change as it seems to cause strange crashes.
17640         
17641 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
17642
17643         * *.c: handle unsafe function pointers where needed.
17644
17645 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17646
17647         * mini.c (mono_jit_free_method): Remove the fixme too.
17648
17649 2005-03-15  Miguel de Icaza  <miguel@novell.com>
17650
17651         * mini.c: As discussed, make the code actually free the delegate
17652         thunk now, to enable the debugging of delegate problems, use
17653         MONO_DEBUG=1 when running Mono. 
17654
17655         This takes also care of parts of the leaks as seen by Joe.
17656
17657 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
17658
17659         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
17660         thread_tls_offset calculation.
17661
17662 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
17663
17664         * declsec.c: Reworked linkdemand checks for icall. The previous code
17665         was using the declaration code (untrusted) and didn't work as expected
17666         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
17667         specific case.
17668
17669 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
17670
17671         * iltests.il: Add new localloc test.
17672
17673         * mini-amd64.c: Handle large stack allocations the same way as on
17674         windows if stack overflow handling is working.
17675         
17676         * mini-amd64.c: Allocate the signal stack using mmap.
17677
17678         * mini.c (sigsegv_signal_handler): Fix reading of context.
17679
17680         * mini-exceptions.c: Fix up stack overflow handling.
17681
17682         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
17683
17684         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
17685
17686         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
17687
17688         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
17689
17690         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
17691         tramp_init functions as they are no longer needed.
17692
17693 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
17694
17695         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
17696         
17697         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
17698
17699         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
17700         
17701         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
17702         support that now.
17703
17704         * mini-ops.h: Add OP_LMUL_IMM.
17705
17706         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
17707         long mul/div opcodes as intrinsic.
17708
17709         * mini-amd64.c (emit_call): Handle the case when the callee might be
17710         an AOT method.
17711
17712 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
17713
17714         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
17715         extra safe.
17716         
17717         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
17718
17719         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
17720
17721 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
17722
17723         * mini.c (mono_codegen): Don't leak here, to help people running
17724         monogrind.
17725
17726 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
17727
17728         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
17729         conversions in sse2 mode.
17730
17731         * basic-float.cs: Add regression test.
17732         
17733         * mini-amd64.c: Reenable sse2.
17734
17735 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
17736
17737         * mini-amd64.c: Disable sse2 until some regressions are fixed.
17738
17739 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
17740
17741         * driver.c: Copyright text should include 2005.
17742         
17743 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
17744
17745         * cpu-amd64.md (load_membase): Fix more max lengths.
17746
17747 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
17748
17749         * cpu-amd64.md (load_membase): Fix max length.
17750
17751         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
17752
17753         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
17754
17755         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
17756         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
17757
17758         * basic-float.cs: Add rounding regression test.
17759
17760         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
17761
17762 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
17763
17764         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
17765         structures in registers for pinvoke wrappers.
17766
17767 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
17768
17769         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
17770
17771 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
17772
17773         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
17774         wrapper to mono_jit_thread_attach.
17775
17776         * mini.c (mini_jit_thread_attach): New jit icall.
17777
17778         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
17779         native->managed wrappers.
17780
17781         * exceptions.cs: Add new regression test.
17782
17783         * mini.c (optimize_branches): Check regions in the cbranch to throw
17784         block case as well. Fixes #73242.
17785
17786 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
17787
17788         * mini.c: thread safety fixes.
17789
17790 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
17791
17792         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
17793         patching stuff, since delegates use jump trampolines so there is
17794         no caller.
17795
17796         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
17797         jump trampolines.
17798         
17799         * tramp-amd64.c: Fix build.
17800
17801         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
17802         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
17803
17804         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
17805         Rename this to mono_arch....
17806         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
17807
17808         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
17809
17810         * mini-amd64.c (emit_call): If both the caller and the callee is
17811         guaranteed to have 32 bit addresses, emit a normal call.
17812
17813         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
17814
17815         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
17816         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
17817         method_ptr inside delegates.
17818
17819 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
17820
17821         * mini.c (mono_jit_free_method): Free the method info even if the native code is
17822         invalidated. Fixes #73001.
17823
17824         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
17825
17826         * mini-x86.c: Only use stdcall for pinvokes on windows.
17827
17828 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
17829
17830         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
17831         * mini-x86.c: remove unreliable __thread var offset detection,
17832         use the correct accessors and enable by default.
17833
17834 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17835
17836         * mini.c (mono_jit_free_method): Fix memory leak.
17837
17838 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
17839
17840         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
17841
17842 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
17843
17844         * cpu-amd64.md: Fix lengths of atomic opcodes.
17845
17846 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17847
17848         * driver.c: try to not imply using ICU is any good.
17849
17850 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
17851
17852         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
17853         functions as inline ops.
17854
17855         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
17856         some Interlocked functions as inline ops.
17857
17858         * mini.c (move_basic_block_to_end): Fix bug in last patch.
17859
17860         * mini.h (MonoBasicBlock): Reorganize fields a bit.
17861
17862         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
17863
17864         * mini.c: Add support for OP_NOT_TAKEN.
17865
17866         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
17867         structures in registers for pinvoke wrappers.
17868
17869         * mini-amd64.c: Fix warnings.
17870
17871 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
17872
17873         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
17874
17875         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
17876
17877         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
17878         address instead of loading the address from it.
17879
17880         * mini-x86.c: Add support for returning small structs in registers
17881         on Win32. Fixes part of #70864.
17882         
17883 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
17884
17885         * trace.c (get_token): Improve error checking.
17886
17887 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17888
17889         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
17890
17891 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
17892  
17893         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
17894         it can be reused for MonoClass.
17895         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
17896         _LINKDEMAND.
17897
17898 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
17899
17900         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
17901         instead of a MonoReflectionMethod. The method information wasn't used
17902         when displaying SecurityException details (but will be now).
17903
17904 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
17905
17906         * Makefile.am : windows build fix.
17907
17908 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17909
17910         * iltests.il: Add new regression test.
17911
17912         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
17913         #72522.
17914
17915 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
17916  
17917         * mini.c: Moved linkdemand check into helper function check_linkdemand
17918         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
17919         LDFTN, LDVIRTFTN).
17920
17921 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
17922
17923         * declsec.c: Added statistics counter for different kinds of 
17924         LinkDemands.
17925         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
17926         (and commented) declaration.
17927         * mini.c: Added statistics counter for security Demand code 
17928         generation. Added display of security statistics.
17929
17930 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
17931
17932         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
17933         Fix compilation errors under gcc-2.95.
17934
17935 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
17936
17937         * mini.c, driver.c: Use the new jit trampoline hashtable
17938
17939 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
17940
17941         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
17942
17943 2005-02-11  Martin Baulig  <martin@ximian.com>
17944
17945         * debug-mini.c (mono_debug_close_method): Free the line number array.
17946
17947 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
17948
17949         * aot.c: Break up large methods into smaller ones. Share GOT slots for
17950         icalls.
17951
17952         * mini.h: Bump AOT file format version. 
17953
17954 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
17955
17956         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
17957         APTC and P/Invoke.
17958         * declsec.h: Added macros to get/set lazyly initialized security 
17959         informations about assemblies. Added new enum for different type of
17960         possible LinkDemand violation. Added function to check LinkDemands.
17961         * mini.h: Added a field to MonoCompile to hold any security violation
17962         detected when JITting a method (so it can be thrown later).
17963         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
17964         and CEE_CALLVIRT. Added code to throw exception at the end of
17965         mini_method_compile (note: the exception is unhandled right now).
17966
17967 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
17968
17969         * mini.c, jit-icalls.c: use the managed implementation of
17970         memset for initobj and memset, to avoid managed <-> unmanaged
17971         transitions.
17972
17973 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
17974
17975         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
17976         optimization if it would need a GOT var.
17977
17978         * basic.cs: Add tests for constant propagation and switch statements.
17979
17980         * ssa.c: Fix out-of-range constant propagation and switch statements.
17981
17982 2005-02-09    <vargaz@freemail.hu>
17983
17984         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
17985
17986 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
17987
17988         * cpu-amd64.md (load_membase): Fix max length of load_membase.
17989
17990 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
17991
17992         * mini.c: update to new signature of mono_class_get_allocation_ftn().
17993
17994 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
17995
17996         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
17997         arithmetic operations.
17998
17999 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
18000
18001         * mini-ppc.c: add a workaround for broken user code that
18002         DllImports vararg functions with non-vararg signatures.
18003
18004 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
18005
18006         * mini.c (mono_jit_compile_method_inner): Add detection and a 
18007         meaningfull error message for assemblies written in Managed C++.
18008
18009         * tramp-amd64.c mini-amd64.h: Add support for 
18010         create_trampoline_from_token ().
18011
18012         * aot.c mini-x86.c abcremoval.c: Applied patch from
18013         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
18014
18015 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
18016
18017         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
18018         which takes a MonoImage/token as parameter instead of a MonoMethod.
18019
18020         * aot.c: Use the new trampoline for initializing vtables.
18021
18022         * aot.c: Add support for ldfld/stfld_remote wrappers.
18023
18024         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
18025         rules for compare <MEM>, IMM.
18026
18027         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
18028
18029         * aot.c: Handle inherited finalizers correctly.
18030
18031 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
18032
18033         * inssel.brg (stmt): Add a missing _setup_... ().
18034
18035         * aot.c: Save some parts of the class state to the AOT file and use it
18036         to recompute that state when a class is initialized.
18037
18038         * mini.c: Install AOT hooks into the runtime.
18039
18040         * mini.h: Bump AOT file format version.
18041         
18042         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
18043         Fixes #72148.
18044
18045         * iltests.il: Add new test.
18046
18047 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
18048
18049         * mini.c: fix typo.
18050
18051 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
18052
18053         * mini.c: setup the statistical profiler in the thread attach
18054         callback to cope with the new single thread code.
18055
18056 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
18057
18058         * mini-ppc.c: ensure we have enough room for the profiler
18059         calls (fixed bug#72084).
18060
18061 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
18062
18063         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
18064         it.
18065
18066 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
18067
18068         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
18069
18070 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
18071
18072         * ssapre.c: Fixed an issue with down safety (this allows IronPython
18073         to succesfully execute parrotbench).
18074         * ssapre.h: Likewise.
18075
18076 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
18077
18078         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
18079         variable for stores to method arguments (fixes a SSAPRE issue).
18080
18081 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18082
18083         * mini.c: handle value types in dup, fixes gen-112.cs.
18084
18085 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
18086
18087         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
18088         sequence for calls in dynamic methods to avoid thunks.
18089
18090 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
18091
18092         * mini.c: correctly remove dynamic methods from the hashtable.
18093
18094 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18095
18096         * driver.c: Disabled SSAPRE until fix the bug that appears
18097         in IronPython's parrotbench.
18098
18099 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
18100
18101         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
18102
18103         * mini.c (mono_method_to_ir): Revert the previous change.
18104         
18105         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
18106         when AOT compiling.
18107
18108         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
18109         mono_jit_info_table_find () etc. when running under valgrind.
18110
18111         * inssel.brg: Fix warnings.
18112
18113         * mini-exceptions.c: Fix warnings.
18114
18115 2005-01-31  Martin Baulig  <martin@ximian.com>
18116
18117         * driver.c (compile_all_methods_thread_main): Don't try to compile
18118         generic methods or anything which has type parameters.
18119
18120 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
18121
18122         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
18123
18124         * TestDriver.cs: Add --verbose flags.
18125
18126         * graph.c ssa.c: Fix 64 bit warnings.
18127         
18128         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
18129         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
18130         Fix 64 bit warnings.
18131
18132         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
18133         variable not spotted by gcc.
18134         
18135         * mini-amd64.c inssel-amd64.brg: Applied patch from  
18136         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
18137         X86_COMPARE_MEMBASE opcodes.
18138
18139         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
18140
18141 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
18142
18143         * *: MonoMethod->signature might be NULL now. You *MUST* use
18144         mono_method_signature.
18145
18146 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
18147
18148         * driver.c (compile_all_methods_thread_main): Compile the methods
18149         without invoking cctors.
18150
18151 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18152
18153         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
18154         * basic-calls.cs: test for the above.
18155
18156 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
18157
18158         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
18159         MonoJitInfo changes.
18160
18161 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
18162
18163         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
18164         eagerly if it contains dynamic methods.
18165         
18166         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
18167
18168         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
18169         trace, it is now computed by an icall from trace_ips.
18170         
18171         * mini-exceptions.c: Fix a warning.
18172
18173 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
18174
18175         * mini-exceptions.c: don't bother getting stack trace info if
18176         it's not going to be used.
18177
18178 2005-01-27  Raja R Harinath  <rharinath@novell.com>
18179
18180         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
18181         ssapre-mini-ops.h.
18182
18183 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
18184
18185         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
18186
18187         * aot.c: Avoid calling mono_method_get_header () if not needed.
18188
18189         * mini.h: Bump AOT file format version.
18190         
18191         * mini.c (mono_emit_native_call): Allocate a GOT var here.
18192
18193         * mini.c (mono_print_tree): Print more info for calls.
18194
18195 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
18196
18197         * declsec.h: Remove warning by adding missing include for marshal.h
18198
18199 2005-01-26  Martin Baulig  <martin@ximian.com>
18200
18201         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
18202         `ip' twice.
18203
18204 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
18205
18206         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
18207         flags.
18208
18209         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
18210
18211         * aot.c (mono_compile_assembly): Fix a warning.
18212
18213 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
18214
18215         * declsec.c: Look for security attributes on the original MonoMethod 
18216         (and not the wrapped one). This fix permissions on icalls.
18217
18218 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
18219
18220         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
18221
18222         * mini.c (mono_allocate_stack_slots): Add a fixme.
18223
18224         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
18225
18226 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
18227
18228         * inssel.brg: optimize casts of sealed types (more
18229         optimizations waiting for fixes in remoting).
18230
18231 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
18232
18233         * inssel.brg (stmt): Add another dummy rule.
18234
18235         * driver.c: Fix warnings.
18236
18237         * driver.c (mono_main): If running under valgrind, instruct glib to use
18238         the system allocation functions so valgrind can track the memory
18239         allocated by the g_... functions.
18240
18241         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
18242
18243         * mini-ops.h: Add OP_DUMMY_STORE opcode.
18244
18245         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
18246
18247         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
18248         variables in try regions.
18249
18250         * mini.c (mini_method_compile): Don't disable optimizations on large
18251         methods when AOT compiling.
18252
18253         * mini.c (mono_allocate_stack_slots): New arch independent method to 
18254         allocate stack slots. Not yet used.
18255
18256 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
18257
18258         * debug-mini.c (mono_debug_close_method): Plug some leaks.
18259
18260 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
18261
18262         * mini-ppc.c: make the branch info relative as the code
18263         buffer can be reallocated.
18264
18265 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
18266
18267         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
18268         * driver.c: Removed the AOT/security restriction. Now initialize the
18269         security manager (in metadata) if --security is used.
18270         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
18271         rather than the pointer to declarative security, when AOT is used.
18272
18273 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
18274
18275         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
18276         basic blocks, reduced intrinsic exception throwing code size.
18277
18278 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
18279
18280         * driver.c (mini_usage): Reorder the usage screen.
18281
18282 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
18283
18284         * mini.c (mono_resolve_patch_target): Fix warning.
18285
18286 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
18287
18288         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
18289         previous patch.
18290
18291         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
18292
18293         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
18294         breaks the amd64 build.
18295
18296         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
18297         register allocation. Fixes #71454.
18298
18299         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
18300
18301         * arrays.cs: Add new regression test.   
18302
18303 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18304
18305         * ssapre.c: Turned usage of snprintf to GString.
18306         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
18307         (I left it on by mistake in my previous commit).
18308
18309 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
18310
18311         * mini.c, cfold.c, basic-calls.cs: preserve side effects
18312         on cond branch optimization (fixes bug# 71515).
18313
18314 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18315
18316         * abcremoval.c: Fixed bug 71062.
18317         * abcremoval.h: Likewise.
18318
18319 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18320
18321         * mini.c: Added a new functionality to optimize_branches, the removal
18322         of useless basic blocks, and fixed some problem in the removal of
18323         critical edges; some utility functions added for both purposes.
18324         * ssapre.c: Added complex expression support, and fixed bug 70637.
18325         * ssapre.h: Likewise.
18326         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
18327         enabled in SSAPRE.
18328         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
18329         * driver.c: Re-enabled SSAPRE.
18330
18331 2005-01-19  Martin Baulig  <martin@ximian.com>
18332
18333         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
18334         the result of mono_get_method_constrained().
18335
18336 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
18337
18338         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
18339         manager.
18340
18341 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
18342
18343         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
18344         be detected.  Fixes #59296.
18345
18346 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18347
18348         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
18349         which can happen. Fixes #71361.
18350
18351 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18352
18353         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
18354         manager.
18355
18356 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18357
18358         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
18359         appdomain-unload.exe to fail.
18360         
18361         * mini.c: Fix some memory leaks.
18362
18363 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
18364
18365         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
18366         Fixed bug and sped up some codepaths.
18367
18368 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18369
18370         * mini.c: Fix some memory leaks.
18371
18372         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
18373         conversion.
18374
18375         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
18376
18377         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
18378         #71320.
18379
18380         * iltests.il: Add regression test for #71320.
18381
18382 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
18383
18384         * mini.c (mono_codegen): Fix installation of profiler hooks.
18385
18386         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
18387
18388 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
18389
18390         * mini.h, mini.c, cfold.c: optimize access to enum
18391         readonly fields, too. Eval conditional branches if possible
18392         to perform unreachable code removal in more cases.
18393
18394 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
18395
18396         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
18397
18398         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
18399         code manager.
18400
18401         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
18402         WinXP DEP. Fixes #71244.
18403
18404 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
18405
18406         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
18407
18408 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
18409
18410         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
18411
18412 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18413
18414         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
18415         changes.
18416
18417         * mini.h: Bump AOT version.
18418
18419         * mini.h (MonoCompile): Change exvar to a hash table.
18420
18421         * mini.c: Allocate a separate exvar for each handler block.
18422
18423         * mini.c: Get rid of the computation of filter_lengths, its not needed.
18424
18425         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
18426         ex var with the pending exception and only throw if the two are equal.
18427         Fixes #68552.
18428         
18429         * exceptions.cs: Add tests for rethrow and nested catch clauses.
18430
18431         * mini-x86.c: Fix warnings.
18432
18433         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
18434         used by all the ports now.
18435
18436         * aot.c: Add write-symbols and save-temps options.
18437
18438 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
18439
18440         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
18441
18442 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
18443
18444         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
18445         operations.
18446
18447         * tramp-s390.c: Check vtable slot belongs to the domain.
18448
18449         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
18450         as per other platforms.
18451
18452         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
18453
18454 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
18455
18456         * driver.c: we don't run the Main() code in a subthread anymore.
18457
18458 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
18459
18460         * mini.c: added experimental rtc support in the statistical
18461         profiler: if the user has the permission, more accurate statistics
18462         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
18463         The MONO_RTC value must be restricted to what the linux rtc allows:
18464         power of two from 64 to 8192 Hz.
18465
18466 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
18467
18468         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
18469
18470 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
18471
18472         * mini-ppc.c: better icache flush for smp.
18473
18474 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
18475
18476         * mini-amd64.c (emit_move_return_value): Fix memory leak.
18477
18478         * mini-x86.c (get_call_info): Add the get_call_info () code from the
18479         amd64 port, not yet used.
18480
18481 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18482
18483         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
18484         a struct type.
18485
18486 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
18487
18488         * driver.c: Added --security option to activate the security manager.
18489         Right now this will allow code generation for declarative demands and
18490         is disabled when AOT is specified.
18491         * mini.c: Add code generation for declarative security demands.
18492         * mini.h: Add mono_use_security_manager as an extern gboolean.
18493
18494 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18495
18496         * aot.c (mono_compile_assembly): Speed up compilation a bit by
18497         emitting more dense assembly code.
18498
18499         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
18500         exception throwing stuff.
18501
18502 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
18503
18504         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
18505         dead code.
18506
18507         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
18508         left in by mistake.
18509
18510         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
18511         fixed.
18512
18513         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
18514
18515         * tramp-*.c: Only patch vtable slots if the object is in the current
18516         domain. Fixes appdomain-unload.exe.
18517
18518         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
18519         
18520         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
18521         x86 branch.
18522
18523 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18524
18525         * mini.c (reverse_branch_op): New helper function.
18526
18527         * mini.c (optimize_branches): Run the new optimization only on 
18528         platforms which support it. Also reverse all kinds of branches.
18529
18530         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
18531
18532         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
18533         a throw statement.
18534
18535         * mini.c (optimize_branches): Reverse not-equals branches if the false
18536         bblock is a throw. This happens a lot of time with argument checking in
18537         corlib.
18538
18539         * mini.c (mono_codegen): Add support for placing basic blocks after
18540         the function epilogue.
18541
18542         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
18543         function epilogue.
18544         
18545 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
18546
18547         * mini.c (setup_stat_profiler): Only set this up if the platform
18548         supports ITIMER_PROF.
18549
18550 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18551
18552         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
18553         previous patch.
18554
18555         * inssel.brg: Fix a warning.
18556
18557 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
18558
18559         * mini.c: added support for statistical profiler 
18560         (run with: --profile=default:stat).
18561
18562 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
18563
18564         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
18565
18566         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
18567
18568         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
18569         related to global registers from the amd64 port.
18570
18571 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
18572
18573         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
18574
18575         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
18576         with global registers.
18577         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
18578
18579         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
18580
18581 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
18582
18583         * debug-mini.c (encode_value): Fix off-by-one.
18584
18585         * aot.c (encode_value): Likewise.
18586
18587         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
18588
18589 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
18590
18591         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
18592         AOT.
18593
18594         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
18595         
18596         * aot.c (emit_method_info): Increase size of temp buffer.
18597
18598         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
18599         the AOT case.
18600
18601 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18602
18603         * aot.c (emit_method_info): Fix build.
18604         
18605         * aot.c: Further rework of the AOT file format to reduce the size of
18606         the method info data.
18607
18608         * mini.h: Bump AOT file format version.
18609
18610 2004-12-27  Martin Baulig  <martin@ximian.com>
18611
18612         * mini.c (mini_get_method): New static method; call
18613         mono_get_method_full() and mono_get_inflated_method().
18614         (mono_method_to_ir): Use mini_get_method() instead of
18615         mono_get_method_full(). 
18616
18617 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
18618
18619         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
18620
18621 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
18622
18623         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
18624
18625         * inssel-amd64.brg: Add some optimization rules.
18626
18627 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
18628
18629         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
18630         standard not GC'd stuff is fine.
18631
18632 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
18633
18634         * aot.c: Rework the AOT file format to get rid of most of the global
18635         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
18636
18637         * mini.h: Bump AOT file format version.
18638         
18639 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
18640
18641         * mini.h: Bump AOT file format version.
18642
18643         * aot.c (mono_aot_is_got_entry): New function to determine if an 
18644         address is inside a GOT.
18645
18646         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
18647
18648         * cpu-pentium.md: Increase the maximum size of some instructions which
18649         might involve a got access.
18650         
18651         * mini.c (get_method_from_ip): Another debug helper function.
18652
18653         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
18654         when got var accesses are created during the decompose phase.
18655
18656         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
18657
18658         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
18659         argument mini_compile_method and to MonoCompile, and use this to
18660         determine whenever a given method is compiled for AOT. This allows the
18661         other methods compiled during AOT compilation to be free of AOT stuff,
18662         so the backends does not need to add special support for them by
18663         creating a fake GOT etc.
18664
18665         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
18666         longer needed.
18667
18668 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
18669
18670         * mini.c (mono_method_to_ir): It turns out that some of the
18671         x-appdomain wrappers are lax with types, so just ignore this for
18672         all wrappers.
18673
18674         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
18675         at the vtable->klass. If it is non-shared code we can just use the
18676         vtable.
18677
18678 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
18679
18680         * mini-ppc.c: access MonoDomain from tls, too.
18681
18682 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
18683
18684         * declsec.c: Removed unused variable (and related warning ;-)
18685
18686 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
18687
18688         * iltests.il: New test for LDELEMA on an array of ref types.
18689
18690         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
18691         all ldelema's on reftypes.
18692         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
18693         it was the wrong place to put it.
18694
18695         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
18696         register to pop to make this cleaner, at the request of Paolo.
18697
18698 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
18699
18700         * mini-ops.h (OP_GETHASHCODE): New op.
18701
18702         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
18703
18704         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
18705         operation.
18706
18707         For a microbenchmark, this reduces the cost of Hashtable.get_Item
18708         by 25%.
18709         
18710         * mini-x86.c (mono_arch_output_basic_block): Rather than
18711
18712         add ebp, 4
18713
18714         Emit
18715
18716         pop edx
18717
18718         The first is 3 bytes while the second is 1. This saves 36 kb on
18719         mscorlib, quite a big saving. When bootstraping mcs, I was able to
18720         see a small boost because of icache locality.
18721
18722         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
18723
18724 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
18725
18726         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
18727         started code sharing with the generic code.
18728
18729 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
18730
18731         * mini-ppc.c, cpu-g4.md: added code for direct access to
18732         tls data slots.
18733
18734 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
18735
18736         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
18737          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
18738         to OP_TLS_GET.
18739
18740 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
18741
18742         * declsec.c|h: Added functions to cache the declarative stack modifiers
18743         in MonoJitInfo and to create a security frame from a MonoJitInfo 
18744         structure.
18745         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
18746         created. Register internal calls for System.Security.SecurityFrame::
18747         _GetSecurityFrame and _GetSecurityStack.
18748         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
18749         the definitions for the new stack walk/callback mechanism.
18750         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
18751         first security frame for LinkDemands and InheritanceDemands) and
18752         GetSecurityStack for Demands. Both use the new mono_walk_stack code
18753         from lupus.
18754         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
18755         walk initialization (lupus).
18756
18757 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
18758
18759         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
18760         idiom.
18761         (handle_loaded_temps): Do not create a temporary variable for
18762         things that we know are temps. They will never be modified.
18763         (mono_spill_call): Set MONO_INST_IS_TEMP
18764         (mono_emulate_opcode): ditto
18765         (emit_tree): ditto
18766         (mono_method_to_ir.CEE_DUP): ditto
18767
18768 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
18769
18770         * mini.c (type_to_eval_stack_type): Make this handle the void type
18771         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
18772         (emit_tree): use ip_in_bb to special case some common idioms
18773         Update all callers to pass in the IP.
18774         (mono_method_to_ir): Make CEE_CALL* do the above as well.
18775
18776         This gives us a nice 2% speedup in mcs bootstrap.
18777
18778         * mini-x86.c (peephole_pass): Peephole pass to make
18779         mov  [foo], eax
18780         push [foo]
18781
18782         into
18783
18784         mov [foo], eax
18785         push eax
18786
18787         * mini.c (ip_in_bb): new method.
18788         (mono_method_to_ir): use this method rather than doing the hash
18789         lookup ourselves.
18790
18791         * linear-scan.c (mono_linear_scan): When expiring actives, you
18792         don't need to keep around variables that expire on this
18793         instruction. This makes it so that:
18794              a = b + 1
18795         will turn into:
18796              store (ebx add (ebx, 1))
18797         which will become
18798              add ebx, 1
18799
18800 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
18801
18802         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
18803         combination to avoid doing two copies. Fix up problems with previous
18804         patch.
18805
18806         * mini.c: Fix 64 bit warnings.
18807
18808         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
18809
18810 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
18811
18812         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
18813         changes from the x86 code.
18814
18815         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
18816
18817 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
18818
18819         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
18820         throwing code to reduce its size, unify the AOT and non-aot code and 
18821         get rid of relocations in the AOT case.
18822
18823         * mini-x86.h mini.c exceptions-x86.c 
18824         (mono_arch_get_throw_corlib_exception): New arch specific function to 
18825         raise corlib exceptions which doesn't require relocations in the 
18826         caller.
18827
18828         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
18829
18830 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
18831
18832         * mini.c (mono_emit_method_call): Only allocate the got var when it is
18833         needed.
18834
18835         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
18836         in the AOT case.
18837
18838 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
18839
18840         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
18841         with add function when used from Inc/dec atomic 
18842         functions. Re-enabled optimization on x86.
18843         * mini-ops.h: renamed atomic_add functions to
18844         allow _add to match the Interlocked::Add and
18845         _add_next to match Interlocked::Inc/Dec.
18846
18847 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
18848
18849         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
18850         linking of BBs to the end BB, and enabled SSAPRE also with
18851         consprop and copyprop (which was prevented by that bug).
18852
18853 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
18854
18855         * mini-x86.c: disabling the Interlocked optimizing code. 
18856
18857 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
18858
18859         * aot.c (load_aot_module): Move reading of got_addr after the AOT
18860         file version check.
18861         
18862 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
18863
18864         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
18865         interlocked optimization due lack of support on x86, rewrote 
18866         exchange to take into account that base may be in eax.
18867         
18868         xsp works again; activated Interlocked optimizing code.
18869         
18870 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
18871
18872         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
18873
18874 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
18875
18876         * mini-ops.h: Add new opcodes.
18877
18878         * mini.h: Add new patch types. Add got_var to MonoCompile.
18879
18880         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
18881         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
18882         make it work with all kinds of patchable code.
18883
18884         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
18885         address of the GOT, and referencing entries in the GOT.
18886
18887         * mini.c: Add code to load the GOT address if needed by an opcode.
18888
18889         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
18890         independent AOT code on the x86 using an elf-style Global Offset Table.
18891
18892 2004-12-14  Raja R Harinath  <rharinath@novell.com>
18893
18894         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
18895
18896 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18897
18898         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
18899         when running xsp.
18900
18901 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
18902
18903         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
18904         of Interlocked:Increment/Decrement/Add as inline ops.
18905         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
18906
18907 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
18908
18909         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
18910         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
18911
18912 2004-12-12  Duncan Mak  <duncan@ximian.com>
18913
18914         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
18915         again. `patch_info->table_size' is no longer valid after Zoltan's
18916         commit #37636.
18917
18918 2004-12-12  Martin Baulig  <martin@ximian.com>
18919
18920         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
18921         if we are the "real" method, ie. not an inlined method inside it.
18922
18923 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
18924
18925         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
18926         before we look in the special fields table. This fixes
18927         ../tests/thread-static-init.cs.
18928
18929 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18930
18931         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
18932         for Array get_Rank and get_Length. Fixes bug #70465.
18933
18934 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
18935
18936         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
18937         separate structure to reduce the size of MonoJumpInfo.
18938
18939 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
18940
18941         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
18942
18943 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
18944
18945         * mini.c (mini_get_inst_for_method): Changed to allow ports
18946         to return a MonoInst instead of opcode 
18947         (renamed mini_get_opcode_for_method to better reflect the new functionality)
18948         
18949         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
18950         Allow ports to return a created MonoInst instead of op-code, will enable
18951         new optimizations.
18952         (renamed mini_get_opcode_for_method to better reflected the functionality)
18953
18954 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
18955
18956         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
18957
18958 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18959
18960         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
18961         Fixes #69985.
18962
18963 2004-12-08  Martin Baulig  <martin@ximian.com>
18964
18965         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
18966         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
18967
18968 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18969
18970         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
18971         correctly.
18972
18973         * exceptions.cs: Disable some tests which depend on properties of x86 fp
18974         arithmetic.
18975
18976 2004-12-08  Raja R Harinath  <rharinath@novell.com>
18977
18978         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
18979
18980 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
18981
18982         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
18983         bug introduced by the previous patch.
18984
18985 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
18986
18987         * mini-ppc.c, objectc.cs: handle large structs passed by value
18988         (fixes bug #69972).
18989
18990 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
18991
18992         * mini-ppc.c: OP_ARGLIST implementation from
18993         Geoff Norton  <gnorton@customerdna.com>.
18994
18995 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
18996
18997         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
18998         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
18999
19000 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
19001
19002         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
19003
19004 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19005
19006         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
19007         support.
19008
19009 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
19010
19011         * mini-sparc.c: Zero out localled-ed memory.
19012
19013         * iltests.il: Add tests for zeroing out localloc-ed memory.
19014
19015 2004-12-04  Martin Baulig  <martin@ximian.com>
19016
19017         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
19018         mono_method_get_signature_full().       
19019
19020 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
19021
19022         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
19023         and some utility functions (always for SSAPRE), integrated SSAPRE.
19024         * mini.h: Likewise.
19025         * driver.c: Added ssapre option.
19026         * ssa.c: Small fix on OP_ARG handling.
19027         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
19028         * Makefile.am: Likewise.
19029
19030 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
19031
19032         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
19033         now in the xp code.
19034
19035         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
19036         icall.
19037
19038 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19039
19040         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
19041         
19042         * cpu-s390.md : Increase instruction length of oparglist.
19043
19044         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
19045
19046 2004-11-30  Martin Baulig  <martin@ximian.com>
19047
19048         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
19049         virtual generic methods.  We call a special helper_compile_generic_method()
19050         icall to retrieve the method from the vtable, inflate and compile
19051         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
19052
19053         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
19054
19055 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
19056
19057         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
19058
19059 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
19060
19061         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
19062         Fixes #69929.
19063
19064 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
19065
19066         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
19067         platforms with PIC aot.
19068
19069 2004-11-28  Martin Baulig  <martin@ximian.com>
19070
19071         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
19072         Fixes gen-112.cs.
19073
19074 2004-11-28  Martin Baulig  <martin@ximian.com>
19075
19076         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
19077         the result of mono_type_get_underlying_type() to check whether
19078         we're byref.
19079
19080 2004-11-26  Martin Baulig  <martin@ximian.com>
19081
19082         * mini.c
19083         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
19084         in the g_assert().
19085
19086 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
19087
19088         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
19089         the same way as the other arguments so they won't get clobbered.
19090
19091         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
19092         calls through R11 since it is clobbered by the trampoline code.
19093
19094 2004-11-26  Raja R Harinath  <rharinath@novell.com>
19095
19096         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
19097         pick up in-tree mscorlib.dll.
19098
19099 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
19100
19101         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
19102
19103         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
19104         runtime data/code are now stored in a table similar to the GOT in ELF. 
19105         This allows the code itself to be position independent.
19106
19107         * aot.c: Fix loading of referenced assemblies after the lazy assembly
19108         loading changes.
19109
19110         * aot.c: Attach ELF type (object/function) directives to all global
19111         symbols.
19112
19113         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
19114
19115         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
19116
19117         * mini-amd64.h: Turn on PIC AOT code.
19118
19119         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
19120         returning the offset within an OP_AOTCONST instruction where the GOT
19121         offset needs to be added.
19122
19123         * mini.h: Bump AOT file format version.
19124
19125 2004-11-25  Martin Baulig  <martin@ximian.com>
19126
19127         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
19128         uninflated generic methods.
19129
19130 2004-11-25  Martin Baulig  <martin@ximian.com>
19131
19132         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
19133
19134 2004-11-24  Martin Baulig  <martin@ximian.com>
19135
19136         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
19137         original klass (this only applies for generic instances).
19138
19139 2004-11-24  Martin Baulig  <martin@ximian.com>
19140
19141         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
19142         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
19143         that array).
19144
19145 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
19146
19147         * mini.c (mono_method_to_ir): Disable inlining for methods containing
19148         localloc. Fixes #69678.
19149
19150         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
19151         
19152 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
19153
19154         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
19155         used SSE registers on pinvoke calls. Fixes #69774.
19156
19157 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
19158
19159         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
19160         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
19161
19162 2004-11-23  Raja R Harinath  <rharinath@novell.com>
19163
19164         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
19165         Refer directly to the mcs/ tree.
19166
19167 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19168
19169         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
19170         Check if a trampoline for a synchronized method is required. 
19171
19172 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
19173
19174         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
19175         with localloc if needed. Throe arithmetric exception in
19176         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
19177         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
19178
19179 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
19180
19181         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
19182         types before switching on type.  Fixes #69622.
19183
19184 2004-11-19  Raja R Harinath  <rharinath@novell.com>
19185
19186         * Makefile.am (check-local): New.  Integrate into 'make check'.
19187         (MCS,RUNTIME): Define using in-tree mono and mcs.
19188         (ILASM): New.
19189         (%.exe): Use $(ILASM).
19190
19191 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
19192
19193         * mini-ppc.c: adjust initial prolog size (bug #69691).
19194
19195 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
19196
19197         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
19198         #69664.
19199
19200 2004-11-17  Raja R Harinath  <rharinath@novell.com>
19201
19202         * Makefile.am (clean-local): Rename from 'clean'.
19203
19204 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19205
19206         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
19207         to mono_arch_is_int_overflow. 
19208         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
19209         SIGFPE events.
19210
19211 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
19212
19213         * declsec.c|h: New files to support declarative security attributes.
19214         Added function to check if a method has (applicable) security.
19215         * mini.c|h: Add check for declarative security attributes in
19216         mono_method_check_inlining.
19217         * Makefile.am: Added declsec.c and declsec.h to the build.
19218
19219 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
19220
19221         * mini.c, mini.h: update to keep dynamic code info per-domain.
19222
19223 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
19224
19225         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
19226         (mini_init): Get rid of it from here too.
19227
19228 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
19229
19230         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
19231         implemented OP_RETHROW (patch by Geoff Norton
19232         <gnorton@customerdna.com>).
19233
19234 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
19235
19236         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
19237         between appdomains.  Fixes appdomain-unload on PPC.
19238
19239 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
19240
19241         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19242         mini-exceptions.c: handle the new wrapper types.
19243         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
19244         token value as a MonoClass* when compiling a wrapper.
19245         mono_jit_create_remoting_trampoline now takes an additional
19246         MonoRemotingTarget parameter.
19247         
19248 2004-11-10  Martin Baulig  <martin@localhost>
19249
19250         * mini.c (mono_method_to_ir): Use `generic_container->context'
19251         rather than creating a new one.
19252
19253 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19254
19255         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
19256
19257         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
19258
19259 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
19260
19261         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
19262         the experimental aot cache stuff.
19263
19264 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
19265
19266         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19267         mini-exceptions.c: update to exception clause structure changes.
19268
19269 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19270
19271         * exceptions-x86.c (throw_exception): Fix warnings.
19272
19273         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
19274         for OP_RETHROW.
19275
19276 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19277
19278         * exceptions-sparc.c (get_throw_exception): Really fix this.
19279
19280 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
19281
19282         * tramp-*.c: we no longer support icalls without wrappers, so
19283         a bit of code can be removed here
19284
19285 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
19286
19287         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
19288         patch.
19289
19290         * cpu-sparc.md: Add op_rethrow.
19291
19292         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
19293
19294         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
19295
19296         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
19297         * mini-ops.h: Add OP_RETHROW.
19298
19299         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
19300
19301         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
19302
19303 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
19304         
19305         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
19306         Makes the output much easier to read
19307
19308 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
19309
19310         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
19311         prevents another huge leak when compiling with ssa. Secondly, the
19312         performance of doing this rather than freeing the lists is much
19313         better. GList does a lock every time you allocate a list link,
19314         so that it can use a memory pool. So, it is better to just use
19315         a memory pool of our own.
19316         
19317         * ssa.c, linear-scan.c: replace g_list_remove_link with
19318         g_list_delete.  The remove one does not free the GList, so we were
19319         leaking memory. On -O=all --compile-all with corlib, this cut down
19320         3 MB of allocations.
19321
19322 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
19323
19324         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
19325
19326         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
19327
19328         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
19329         into a new function mono_create_jit_trampoline ().
19330
19331 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
19332
19333         * trace.c (get_spec): Allow tracing of classes without a namespace.
19334
19335 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
19336
19337         * mini.c: Fix pointer overwrite in mini_method_compile.
19338
19339 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
19340
19341         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
19342         The darwin ABI needs some special handling for 1 and 2 byte structs
19343         Lets use lbz/lhz instead of lwz everywhere.
19344         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
19345         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
19346         Use stb/sth for the former, and put the latter always on stack instead of in
19347         argument registers.
19348
19349 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
19350
19351         * trace.c (is_filenamechar): Add '_'.
19352
19353 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
19354
19355         * mini-s390.c: Fix prolog length to allow for large trace requirements.
19356
19357         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
19358
19359 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
19360
19361         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
19362         depends on libmonogc. Fixes #68805.
19363
19364 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
19365
19366         * mini.c (mono_jit_free_method): Provide extra information for
19367         this error.  Currently this leaks, but will be turned into a
19368         developer option in the future.
19369
19370 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
19371
19372         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
19373
19374 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
19375
19376         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
19377         boundary. Fixes reading of PATCH_INFO_R4 and R8.
19378         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
19379
19380 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
19381
19382         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
19383         trampolines for AOT code.
19384
19385 2004-10-22    <vargaz@freemail.hu>
19386
19387         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
19388         constructed types. Fixes #68136.
19389
19390 2004-10-21  Martin Baulig  <martin@ximian.com>
19391
19392         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
19393         if it returns true, unwind the stack to the call instruction.
19394
19395 2004-10-21    <vargaz@freemail.hu>
19396
19397         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
19398
19399         * mini.h: Bump AOT version number.
19400
19401         * objects.cs: Add another test for unbox trampolines.
19402
19403         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
19404         valuetype methods.
19405
19406 2004-10-20    <vargaz@freemail.hu>
19407
19408         * driver.c: Add SHARED to the set of optimizations tested.
19409
19410         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
19411
19412         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
19413         used by CEE_NEWARR.
19414
19415         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
19416
19417 2004-10-20  Martin Baulig  <martin@ximian.com>
19418
19419         * mini-exceptions.c (mono_handle_exception): Call
19420         mono_debugger_handle_exception() to tell the debugger about
19421         catch/finally clauses.
19422
19423 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
19424
19425         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
19426
19427         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
19428         #68447.
19429
19430 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
19431
19432         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
19433         methods as their native size, fixed bug #57543, #57545.
19434         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
19435         This saves a temporary register and mullw call down into 1 (minor perf
19436         increase for cases like sum = sum * 5;  This use to translate into:
19437             li r11,5
19438             mullw r28,r28,r11
19439         It now translates to
19440             mulli r28,r28,5
19441
19442 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
19443
19444         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
19445         #68388.
19446
19447 2004-10-11  Martin Baulig  <martin@ximian.com>
19448
19449         * mini.c (mono_method_to_ir): If we're a generic method, get the
19450         MonoGenericContainer from our MonoMethodNormal and create a
19451         MonoGenericContext from it.
19452
19453 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
19454
19455         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
19456
19457         * basic-long.cs: Add test for checked i8->i2 cast.
19458
19459 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
19460
19461         * inssel-ppc.brg: added a couple of speedup rules.
19462
19463 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
19464
19465         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
19466         to speed up rebuilds.
19467
19468 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19469
19470         * mini-s390.c: Minor fix to OP_OR_IMM.
19471
19472 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
19473
19474         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
19475         better. Fixes appdomain-unload.exe on sparc.
19476
19477 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
19478
19479         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
19480         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
19481         see bug 67324.
19482
19483 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
19484
19485         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
19486
19487 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
19488
19489         * mini.c: Always generate a field read/write wrapper for members
19490         of the class MarshalByRefObject since the actual instance could
19491         be a CBO.
19492
19493 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19494
19495         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
19496
19497 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19498
19499         * driver.c mini.h trace.c: Move the setting of the main assembly into
19500         a separate function called mono_trace_set_assembly () and call it after
19501         actually loading the main assembly. Fixes #66872.
19502
19503 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
19504
19505         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
19506         using the code manager.
19507
19508 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
19509
19510         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
19511
19512 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
19513
19514         * cpu-amd64.md: Fix bug in previous patch.
19515         
19516         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
19517         #66650.
19518
19519 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
19520
19521         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19522         mini-exceptions.c: updates for changed stack walk interface.
19523
19524 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19525
19526         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
19527
19528 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
19529
19530         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
19531
19532 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
19533
19534         * driver.c (mini_regression_list): Do not call mono_assembly_close 
19535         since assemblies can't be unloaded.
19536         
19537 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
19538
19539         * cpu-amd64.md: Fix more instruction lengths.
19540
19541         * cpu-amd64.md: Fix lengths of some instructions.
19542
19543 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
19544
19545         * inssel.brg: Make the array ldelema check aot friendly.
19546
19547 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
19548
19549         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
19550
19551         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
19552
19553 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
19554
19555         * mini-x86.c: Fix build.
19556
19557         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
19558         mono_type_get_underlying_type () helper function to simplify code.
19559         
19560 2004-09-09  Martin Baulig  <martin@ximian.com>
19561
19562         * mini-amd64.c: Don't access `type->data.klass' directly, call
19563         mono_class_from_mono_type() instead since the type may be a
19564         generic instance.
19565
19566 2004-09-09  Martin Baulig  <martin@ximian.com>
19567
19568         * mini-amd64.c (get_call_info): Fix support for generic instances.
19569         (add_valuetype): Use mono_class_from_mono_type() to get the class
19570         since we can be a generic instance.
19571
19572 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
19573
19574         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
19575
19576 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
19577
19578         * liveness.c: reset spill costs on each scan: bug 62107
19579
19580 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
19581
19582         * exceptions-sparc.c (mono_arch_find_jit_info): remove
19583         unnecessary line that doesn't compile
19584
19585 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19586
19587         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
19588         trampolines, make them call an error function so people can fix their
19589         code.
19590
19591 2004-09-06  Martin Baulig  <martin@ximian.com>
19592
19593         * mini.c (mono_method_to_ir): When initializing locals, handle a
19594         generic instances like a valuetype if it's a valuetype and like a
19595         class if it's a class.
19596
19597 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
19598
19599         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
19600         stack. Fixes #64674.
19601
19602         * exceptions.cs: Add test for unwinding of call arguments.
19603
19604 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
19605
19606         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
19607         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
19608         set the carry/borrow flag). The sparc and s390 implementations
19609         can now use optimized versions (and simplify the code). ppc bugfixes.
19610
19611 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
19612
19613         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
19614
19615 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
19616
19617         * inssel-amd64.brg: Remove leftover 32 bit rule.
19618
19619         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
19620
19621 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
19622
19623         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
19624         mono_arch_find_jit_info functions into a new function. Fix a memory
19625         leak.
19626
19627         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
19628         refactored code.
19629         
19630 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
19631
19632         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
19633         as well.
19634         
19635         * exceptions.cs: Add array size tests.
19636
19637         * mini.c: Allocate a separate icall wrapper for each arity of 
19638         mono_array_new_va. Fixes #59509.
19639
19640         * exceptions.cs: Add testcase for 64578.
19641
19642         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
19643
19644         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
19645         
19646 2004-09-02  Martin Baulig  <martin@ximian.com>
19647
19648         * mini.c (mono_method_to_ir): When initializing the locals, call
19649         handle_initobj() on the generic instance itself, not its
19650         underlying type.
19651
19652 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
19653
19654         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
19655         MonoJitInfo for dynamic methods.
19656
19657         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
19658
19659         * mini.c: Add support for freeing JIT data for dynamic methods.
19660         
19661 2004-09-01  Martin Baulig  <martin@ximian.com>
19662
19663         * mini-x86.c (is_regsize_var): Added support for generic
19664         instances.
19665         (mono_arch_emit_prolog): Make this compile again, use
19666         `x86_push_imm_template (code)'.
19667
19668 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
19669
19670         * mini-x86.c: make all push_imm instructions that get
19671         patched always emit the long form
19672
19673 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
19674
19675         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
19676         in a per-domain hash.
19677
19678         * mini-amd64.c (merge_argument_class_from_type): Handle generic
19679         types.
19680
19681 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
19682
19683         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
19684         work.
19685         
19686         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
19687         work.
19688
19689         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
19690         Beginnings of SSE2 support.
19691
19692         * exceptions.cs: Add more tests for checked int<->uint casts.
19693
19694 2004-08-28  Martin Baulig  <martin@ximian.com>
19695
19696         * mini-x86.c (mono_arch_instrument_epilog): Added support for
19697         generic instances.
19698
19699         * mini.c
19700         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
19701         Handle generic instances recursively.
19702
19703 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
19704
19705         * iltests.il: test for conv.u8 on a constant
19706
19707 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
19708
19709         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
19710         LCONV_x4 (shrun_32 (membase)).
19711
19712 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
19713
19714         * inssel-x86.brg: c&p rules for push/setret of long
19715
19716 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
19717
19718         * inssel-x86.brg: c&p rules for compare (base, regvar) and
19719         compare (regvar, base)
19720
19721         * inssel-x86.brg: more burg love
19722
19723         * inssel.brg: more cleanup
19724
19725         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
19726
19727 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
19728
19729         * basic-long.cs, basic-calls.cs: new tests for optimization.
19730
19731 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
19732
19733         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
19734         patch.
19735
19736 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
19737
19738         * mini-amd64.c (read_tls_offset_from_method): Add another case.
19739         
19740 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
19741
19742         * inssel.brg (mini_emit_memcpy): use 
19743         NO_UNALIGNED_ACCESS to disable memcpy optimization
19744
19745 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
19746
19747         * mini-amd64.c: Handle generic types in various places.
19748
19749         * mini.c (mono_method_to_ir): Handle generic types in init locals.
19750
19751 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
19752
19753         * mini.c (handle_box): Fix warning.
19754
19755         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
19756
19757         * mini-amd64.h: Enable the emit_state optimization.
19758
19759         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
19760
19761         * mini-amd64.c: Add some new 64 bit peephole opts.
19762
19763         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
19764
19765         * cpu-amd64.md: sreg1 of div instructions must be %rax.
19766
19767         * mini-amd64.c: Register allocator fixes.
19768
19769         * mini.c: Add an optimization to emit_state to avoid allocation of new
19770         registers on some platforms.
19771
19772 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
19773
19774         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
19775
19776         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
19777         allocation. Fixes #63085.
19778
19779         * basic-long.cs: Add new regression test.
19780
19781         * mini-amd64.c: Register allocator improvements.
19782
19783 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
19784
19785         * mini-amd64.c (read_tls_offset_from_method): Add another code
19786         sequence.
19787
19788         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
19789         instruction sequence for nullifying class init trampolines.
19790
19791         * objects.cs: Add new regalloc test.
19792
19793         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
19794
19795 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
19796
19797         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
19798         
19799         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
19800         arguments.
19801
19802         * driver.c: Fix profiling after TLS changes.
19803         
19804         * driver.c (mono_main): Set mono_stats.enabled if needed.
19805
19806         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
19807         CEE_BOX.
19808
19809 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
19810
19811         * mini-x86.c: use a 1 op rather than a 2 op tls access
19812         instruction -> faster.
19813
19814 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
19815
19816         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
19817         x86 backend.
19818
19819 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
19820
19821         * exceptions-sparc.c (throw_exception): fix typo
19822
19823 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
19824
19825         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
19826         set tree->dreg correctly with tls. Allow any
19827         register to be used.
19828
19829         * mini-x86.c (read_tls_offset_from_method): add new code
19830         generation pattern seen with GCC.
19831
19832
19833 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
19834
19835         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
19836         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19837         exceptions-sparc.c: fix some performance issues in exception
19838         handling and setting of the stack trace for exceptions that were
19839         already thrown.
19840
19841 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
19842
19843         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
19844         x86 backend.
19845         
19846         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
19847         registers.
19848
19849 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
19850
19851         This patch inlines tls access, when possible.
19852         
19853         * mini.h: new arch functions for TLS intrinsics.
19854         All platforms updated with a stub.
19855
19856         * mini.c: use the new intrinsics
19857
19858         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
19859         arch specific intrinsic for tls variables
19860
19861 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
19862
19863         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
19864         under windows.
19865
19866 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
19867
19868         * mini.c: thread local allocation
19869
19870 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
19871
19872         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
19873
19874         * Makefile.am: Link against the static version of libmonogc.
19875         
19876         * Makefile.am: Link the static versions of the convenience libraries
19877         into the mono executable.
19878
19879         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
19880
19881 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
19882
19883         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
19884         on integer overflow.
19885
19886         * mini-amd64.c: Reorganize function call code.
19887
19888         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
19889
19890 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
19891
19892         * inssel-x86.brg: use xor eax,eax.
19893         
19894         * basic.cs: new tests
19895
19896 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
19897
19898         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
19899         in exception throwing code.
19900         
19901 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
19902
19903         * inssel-x86.brg: use xor esi,esi.
19904
19905 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
19906
19907         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
19908         can trace methods compiled during mini_init () too.
19909
19910         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
19911         CEE_CONV_U4.
19912
19913 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
19914
19915         * Makefile.am: static link on x86 (r=zoltan)
19916
19917 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
19918
19919         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
19920         code since it causes some programs to fail.
19921
19922 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
19923
19924         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
19925
19926 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
19927
19928         * mini.c: ovfops_op_map - add STACK_OBJ case for
19929         CONV_I 
19930         * basic.cs: add test_0_pin_string as test
19931         case for above.
19932
19933 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
19934
19935         * Makefile.am: build C# if srcdir != builddir
19936
19937 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
19938
19939         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
19940         fall-through blocks.
19941
19942 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
19943
19944         * driver.c: enable loop by default again and include abcrem in -O=all.
19945
19946 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
19947
19948         * iltests.il: Add some localloc tests.
19949
19950         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
19951
19952         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
19953         Fixes #62574.
19954
19955         * inssel-amd64.brg: Add some optimizations.
19956
19957         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
19958         for gcc-3.4.
19959
19960         * Makefile.am: Statically link mono against libmono on AMD64.
19961         
19962         * mini-amd64.c inssel-amd64.brg: Optimizations.
19963
19964 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
19965
19966         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
19967
19968         * tramp-amd64.c: Patch calling code in trampolines.
19969
19970 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
19971
19972         * mini-amd64.c: pinvoke struct passing fixes.
19973
19974 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
19975
19976         * mini-sparc.c: redo change, make mono_arch_cpu_init call
19977         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
19978
19979 2004-08-05  Duncan Mak  <duncan@ximian.com>
19980
19981         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
19982         CEE_LDELEM_ANY.
19983
19984 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
19985
19986         * mini-amd64.c (emit_move_return_value): Move return value for normal
19987         calls too.
19988
19989 2004-08-05  Martin Baulig  <martin@ximian.com>
19990
19991         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
19992         `type->type'; just modify `type' itself when dealing with enums
19993         and generic instances.
19994         (check_call_signature): Make `simple_type' a `MonoType *'.
19995
19996 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
19997
19998         * mini.c: Use OP_PADD to add offsets to addresses.
19999
20000         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
20001
20002 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
20003
20004         * mini-sparc.c (mono_arch_emit_epilog): fix check
20005         for folding last op into restore instruction
20006
20007 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20008
20009         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
20010         helper methods using the code manager.
20011         
20012         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
20013
20014         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
20015
20016 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20017         
20018         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
20019           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
20020
20021         * mini-s390.c: fix tail processing
20022
20023 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
20024
20025         * mini-ppc.c: mul.ovf.un exception name fix.
20026
20027 2004-08-03  Martin Baulig  <martin@ximian.com>
20028
20029         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
20030         instances; before jumping to `handle_enum', also modify `ptype'.
20031
20032 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
20033
20034         * cpu-sparc.md: fcall maximal length too small.
20035
20036 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
20037
20038         * mini-amd64.c mini.h: Add initial support for passing/returning 
20039         structures to/from pinvoked methods.
20040
20041 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
20042
20043         * mini-ppc.c: reg allocator fix.
20044
20045 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
20046
20047         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
20048
20049         * inssel.brg: Optimize memset on 64 bit machines.
20050
20051         * mini-amd64.c: Fix some vararg cases.
20052
20053 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20054
20055         * mini-s390.c: Corrected macro in emit_float_to_int
20056
20057         * s390-abi.cs: Tests to exercise the s390 ABI
20058
20059 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20060
20061         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
20062         caller saved regs.
20063
20064         * basic.cs: Add a test for add.ovf.un.
20065
20066 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
20067
20068         * mini-sparc.c: add case for OP_IDIV_UN
20069
20070 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20071
20072         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
20073         
20074         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
20075
20076 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
20077
20078         * basic.cs: regression tests.
20079
20080         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
20081         regressions.
20082
20083 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20084
20085         * basic.cs: Add a new test.
20086
20087         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
20088         and AOT. Various fixes and optimizations.
20089
20090         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
20091
20092 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20093
20094         * mini-ppc.c: make sure temp regs are not used for global reg
20095         allocation.
20096
20097 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
20098
20099         * cpu-sparc.md: conv_i8 fix for 64bits
20100
20101         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
20102
20103 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
20104         
20105         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
20106         add opcode for cmp BYTE PTR [eax], imm.
20107
20108         * inssel.brg: Make memcpy and memset takes bases.
20109
20110 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
20111
20112         * *-amd64.*: More AMD64 work.
20113         
20114 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
20115
20116         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
20117         add a compare-not-equal opcode.
20118         
20119 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
20120
20121         * mini.c: Use mono_init_from_assembly instead of mono_init.
20122         
20123 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
20124
20125         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
20126
20127         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
20128
20129         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
20130
20131         * inssel.brg: 64 bit fixes.
20132
20133         * mini.h (MonoCallInst): Add some AMD64 specific data.
20134
20135         * mini.h: Add some OP_P opcodes.
20136
20137 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
20138
20139         * basic.cs: tests for 61797 and 61740
20140
20141 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20142
20143         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
20144         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
20145
20146 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
20147
20148         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
20149
20150         * *-amd64*.*: Ongoing AMD64 work.
20151
20152 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
20153
20154         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
20155
20156         * *-amd64*: Ongoing AMD64 work.
20157
20158         * mini-arch.h: Add AMD64 support.
20159
20160         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
20161
20162         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
20163
20164         * mini-ops.h: Add new opcodes.
20165
20166         * Makefile.am: Add AMD64 support.
20167
20168         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
20169         rules into the inssel-long*.brg files.
20170
20171         * *-amd64.*: Add beginnings of AMD64 backend.
20172
20173 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
20174
20175         * mini.c (print_dfn): commenting out the code that prints
20176         the cil. With -O=deadce, this makes -v -v crash.
20177         
20178         * cpu-pentium.md: make checkthis have a length of 2
20179
20180 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
20181
20182         * mini-sparc.h: fix implementations of __builtin
20183         functions for Sun compiler for V9.
20184
20185 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
20186
20187         * mini.c: use the new stelem.ref wrapper
20188         * exceptions.cs, arrays.cs: new stelem.ref tests
20189
20190 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20191
20192         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
20193         new XSP should work with these changes).
20194
20195 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
20196         
20197         * inssel-{long32,x86,}.brg: trivial optimizations.
20198         
20199 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
20200
20201         * mini.c: load value when emitting box operation in
20202         constrained calls.
20203
20204 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
20205
20206         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
20207         is one byte shorter than cmp DWORD PTR [eax], 0.
20208
20209 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
20210
20211         * inssel-ppc.brg: arguments on the stack are always
20212         relative to the stack pointer (spotted by Neale Ferguson).
20213
20214 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20215
20216         * exceptions-x86.c: delay appending the method name to the trace until
20217         after mono_jit_info_table_find is called, as this gets the real
20218         MonoMethod.
20219
20220 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
20221
20222         * aot.c: register roots
20223
20224 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
20225
20226         * aot.c : I could just use PLATFORM_WIN32 flag.
20227
20228 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
20229
20230         * aot.c : Reverting the previous fix. This time it broke linux build.
20231
20232 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
20233
20234         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
20235
20236 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
20237
20238         * mini.c (handle_stack_args): Remove some more debugging code.
20239         
20240         * mini.c (handle_stack_args): Remove debug output left in by mistake.
20241
20242         * driver.c mini.h aot.c: Allow additional options to be specified with
20243         --aot and pass them to mono_compile_assembly.
20244
20245         * aot.c: Add experimental code to AOT compile all loaded assemblies
20246         on demand and save the code into a cache in the filesystem.
20247
20248         * aot.c: Add support for more wrapper methods.
20249         
20250         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
20251         58863.
20252
20253         * cpu-*.md: Remove removed opcodes.
20254
20255         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
20256         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
20257         related icalls to marshal.c.
20258
20259 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
20260
20261         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
20262
20263         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
20264
20265         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
20266
20267 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
20268         * liveness.c: If liveness is recomputated we need to reset the information
20269         for each variable. This way, if the liveness range has been narrowed
20270         by optimizations that happened after the last computation, we can return
20271         a smaller range.
20272         
20273         For example, if you have
20274         
20275         {
20276                 int i = 0;
20277                 
20278                 // Tons of code that does not affect i
20279                 
20280                 i = foo ();
20281                 ...
20282         }
20283         
20284         i = 0 is dead code and will be removed by SSA. However, when
20285         linear scan gets to the code, i will still appear to be live
20286         throughout the entire block. This prevents good register allocation.
20287
20288 2004-07-06  Martin Baulig  <martin@ximian.com>
20289
20290         * debug-mini.c (mono_debug_init_method): Allow
20291         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
20292         (mono_debug_add_icall_wrapper): New method.
20293
20294         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
20295
20296 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
20297
20298         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
20299         optimization.
20300
20301 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
20302
20303         * aot.c (mono_aot_load_method): Fix loading of debug info.
20304
20305 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20306
20307         * aot.c: Add logging support.
20308
20309 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
20310
20311         * mini.h: Add prototype for mono_print_method_from_ip.
20312
20313         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
20314
20315         * inssel.brg: 64 bit fixes.
20316
20317         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
20318         inssel-long32.brg.
20319
20320         * Makefile.am: Add SPARC64 support.
20321
20322 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20323
20324         * aot.c: Fix alignment problems on 32 bit platforms.
20325
20326 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
20327
20328         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
20329         SPARC64.
20330
20331         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
20332         problems.
20333
20334         * mini.h: Bump AOT file version. Some 64 bit fixes.
20335
20336 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20337
20338         * inssel-sparc.brg: Add new rule to avoid register moves.
20339
20340         * inssel.brg: Add ldind_to_load_membase helper function.
20341
20342 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
20343
20344         * mini.c: OffsetToStringData intrinsic.
20345         
20346 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20347
20348         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
20349
20350         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
20351         regression tests.
20352
20353         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
20354 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
20355
20356         * mini.c: reinstated mono_compile_get_interface_var()
20357         on x86, too, since the change breaks the Gtk# build there as well.
20358
20359 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20360
20361         * driver.c: remove loop from the default optimizations: it seems to
20362         interact badly with some of the other options (see bug #60613).
20363
20364 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
20365
20366         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
20367         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
20368
20369 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
20370
20371         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
20372         vararg-using methods.
20373
20374 2004-06-21  Martin Baulig  <martin@ximian.com>
20375
20376         * mini/mini-exceptions.c
20377         (mono_handle_exception): Added `gpointer original_ip' argument.
20378         After calling mono_unhandled_exception(), call
20379         mono_debugger_unhandled_exception() and if that returns true,
20380         restore the context and return.
20381
20382 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
20383
20384         * mini-ppc.c: prefer the use of relative branches so
20385         they won't need to be patched in aot code (patch from Patrick Beard).
20386
20387 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
20388
20389         * aot.c: patch from Patrick Beard to make the output assembly
20390         more correct for the MacOSX assembler. Small tweak to
20391         generate sane images on Linux/PPC, too.
20392
20393 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20394
20395         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
20396         case until bug #59509 is fixed (shows up in #60332).
20397
20398 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20399
20400         * mini.c: make sure the needed wrappers are compiled, too, with
20401         precomp.
20402
20403 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
20404
20405         * driver.c: remove NPTL reference in --version output.
20406
20407 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20408
20409         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
20410         generate valid assembly for the Mach-O assembler.
20411
20412 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
20413
20414         * driver.c: don't include abcrem in the all optimization specifier
20415         since it slows down jit compilation too much for now.
20416
20417 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
20418
20419         * mini.c: use BIGMUL only if both operands have the same signage.
20420         * iltests.il: Test for bug 60056. (errors related to signage in
20421         BIGMUL).
20422
20423         r=lupus.
20424
20425 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
20426
20427         * mini.c, aot.c: memory leak fixes.
20428
20429 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20430
20431         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
20432
20433 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
20434
20435         * Makefile.am: remove the -static hack completely, it links in
20436         statically glib as well.
20437
20438 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
20439
20440         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
20441         * exceptions.cs: make it compile with new mcs/csc.
20442
20443 2004-06-03 Massimiliano Mantione <massi@ximian.com>
20444         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
20445         and added relevant test case.
20446
20447 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
20448
20449         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
20450         regressions in gtk-sharp.
20451
20452 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
20453
20454         * exceptions.cs: New regression tests.
20455
20456         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
20457
20458 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
20459
20460         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
20461
20462 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
20463
20464         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
20465
20466         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
20467
20468 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
20469
20470         * mini.c (mono_jit_runtime_invoke): Init class in this
20471         method instead of trusting mono_jit_compile_method to
20472         do the work (because wrappers can be in object class)
20473
20474 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
20475
20476         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
20477
20478         * basic-long.cs: New regression test.
20479
20480 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
20481
20482         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
20483         and div/rem checks.
20484
20485 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
20486
20487         * Makefile.am: fix miguel's change to build mono statically against
20488         libmono (track build dependencies).
20489
20490 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
20491
20492         * cfold.c: Some glib versions do not have G_MININT32.
20493
20494 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
20495
20496         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
20497         with precision of tan, atan, sin and cos, and implemented related
20498         regressions tests (fixes bug 54467, but one new problem appeared and
20499         is not fixed yet).
20500
20501 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
20502
20503         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
20504
20505         * exceptions.cs: Add test for constant folding && division by zero.
20506
20507         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
20508         since driver.c is in libmono too, so the optimization was useless.
20509
20510         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
20511         variable to driver.c so the compiler can emit more efficient code to
20512         access them.
20513
20514 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20515
20516         * Makefile.am: don't distribute generated inssel.[ch] files.
20517
20518 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
20519
20520         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
20521         into the default appdomain. Fixes #58707.
20522
20523         * jit-icalls.c: Remove the broken approximation for truncl, doing
20524         no conversion is better.
20525
20526         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
20527         Fixes #58863.
20528
20529 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
20530
20531         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
20532         of the mcrxr instruction which is not available on some processors
20533         even if it's documented to be. Implement add and sub overflow correctly
20534         (still not complete for long unsigned). Speed up icalls a bit.
20535
20536 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
20537
20538         * mini.c (mono_jit_compile_method_with_opt): Make sure that
20539         we run .cctor in the current domain instead of target_domain.
20540         
20541         Fixes bug #58558, .cctor not being called in -O=shared.
20542
20543 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20544
20545         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
20546
20547 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
20548
20549         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
20550         which can be done with an imm8, do it that way.
20551         (mono_arch_output_basic_block): ditto for a jmp
20552         (mono_arch_emit_prolog): Computate maximum offset of a label.
20553
20554 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
20555
20556         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
20557         now tries to allocate prefered physical reg's for virtual
20558         regs. This reduces the number of emited spills/loads with
20559         20-30% on our core assemblies.
20560
20561 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20562
20563         * jit-icalls.c: truncl() is not needed and trunc() is
20564         the correct thing to do anyway (bug #58287).
20565
20566 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
20567
20568         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
20569         if available.
20570
20571 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20572
20573         * driver.c: enable loop optimizations by default.
20574
20575 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
20576
20577         * mini-x86.c: fix calc of max loop size when aligning loops start.
20578
20579 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
20580
20581         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
20582         the stack.
20583
20584 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
20585
20586         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
20587         should set carry.
20588
20589         * basic-long.cs: Add tests for add/subtract of immediates with carry.
20590
20591         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
20592         
20593         * mini.c (inline_method): Allways inline some wrappers even if the cost
20594         is too large. Fixes #58785.
20595
20596         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
20597         
20598 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
20599
20600         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
20601         (crichton@gimp.org). Beginning of support for sparc/linux.
20602
20603         * mini-sparc.c: Optimize retrieval of LMF address.
20604
20605 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
20606
20607         * exceptions-ppc.c:  handle alloca in methods with clauses.
20608
20609 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
20610
20611         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
20612
20613 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
20614
20615         * mini.c: Delegate most of the abort signal work to 
20616           mono_thread_request_interruption, which also handles Stop and Suspend
20617           states.
20618
20619 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
20620
20621         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
20622         supports the save/restore lmf opcodes.
20623
20624 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
20625
20626         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
20627         by gcc-3.4 as well.
20628
20629         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
20630
20631 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
20632
20633         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
20634         methods which contain array accesses.
20635
20636         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
20637         boundaries. Fixes #58537.
20638
20639         * iltests.il: Add regression test for #58537.
20640
20641 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
20642
20643         * mini-x86.c (mono_arch_local_regalloc): Last part of
20644         fix for bug #58633 (releasing register to early).
20645
20646 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
20647
20648         * basic-long.cs: Add new regression test.
20649
20650 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
20651
20652         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
20653         register too early on the chain.
20654
20655 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
20656
20657         * mini.c (create_helper_signature): Use a helper function to reduce
20658         the code which needs to be written. Also set the calling convention of
20659         icalls on windows. Fixes #57840.
20660
20661 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
20662
20663         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
20664         exceptions-ppc.c: added helper function to get the instruction address
20665         from a signal handler context.
20666
20667 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20668
20669         * helpers.c: use g_get_tmp_dir. Invokes happyness 
20670         from gonzalo.
20671
20672 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20673
20674         * helpers.c: Add new env variable to pass args to objdump.
20675         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
20676
20677 2004-05-17  Radek Doulik  <rodo@ximian.com>
20678
20679         * Makefile.am (common_sources): added abcremoval.h so it get
20680         disted and daily mono packages on go-mono.com will build again
20681
20682 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
20683
20684         * abcremoval.c: Fixed coding style, added copyright header.
20685
20686         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
20687
20688         * mini.h: Added prototype for abc removal main function.
20689
20690         * build_relations_propagation_table.pl: Added copyright header.
20691
20692 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
20693
20694         * basic-long.cs: reg test for complex ceq_long bug.
20695
20696 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
20697
20698         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
20699         reg in long and clob case (bug #58343). Fixed/added comments.
20700
20701 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
20702
20703         * mini.c (mono_jit_runtime_invoke): Follow new convention
20704         of calling the invoke method with an function pointer.
20705
20706 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
20707
20708         * ChangeLog: Fix author of memory leak patch.
20709
20710 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
20711
20712         * Makefile.am: fix make dist as well...
20713
20714
20715 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
20716
20717         * cfold.c: Made so that conversions from pointer to int4 are no-ops
20718         on archs where pointers are 4 bytes long.
20719
20720         * Makefile.am: Added abcremoval.c source file.
20721
20722         * abcremoval.c: Added abcremoval.c.
20723
20724         * abcremoval.h: Added abcremoval.h.
20725
20726         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
20727
20728         * inssel.brg: Enabled bounds check removal.
20729
20730         * mini.c: Added support for abcrem optimization.
20731
20732         * mini.h: Added abcrem optimization label.
20733
20734         * driver.c: Added support for abcrem optimization.
20735
20736         * propagated_relations_table.def: Added propagated_relations_table.def.
20737
20738 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
20739
20740         * mini.c, cfold.c: fix style.
20741
20742 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
20743
20744         * mini.c: handle issue with the low-level implementation of
20745         some long opcodes (bug #54209).
20746
20747 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
20748
20749         * basic.cs: test for my new cmov stuff.
20750
20751 2004-05-13      Patrik Torstensson
20752
20753         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
20754         opt and added peephole documentation.
20755
20756 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
20757
20758         * tramp-ppc.c: rewrote the generic trampoline code.
20759
20760 2004-05-11      Patrik Torstensson
20761
20762         * mini-x86.c: optimize long shl/shr asm code (one less branch)
20763
20764 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
20765
20766         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
20767
20768         * mini.h mini.c dominators.c: Applied patch from Derek Woo
20769         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
20770
20771         * mini.c: Add new icalls for AsAny marshalling.
20772
20773 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
20774
20775         * tramp-ppc.c, mini-ppc.c: more cleanups.
20776
20777 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20778
20779         * mini.c: no warnings.
20780
20781 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20782
20783         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
20784
20785 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
20786
20787         * mini.c: In the thread abort signal handler, if the thread is in the
20788         process of being stoped, don't throw the Abort exception, just stop the
20789         thread.
20790
20791 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
20792
20793         * tramp-ppc.c: removed old code.
20794
20795 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20796
20797         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
20798         do some simple speed optimizations on ppc.
20799
20800 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
20801
20802         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
20803         and large offsets in load/store.
20804
20805 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
20806
20807         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
20808         it causes regressions.
20809
20810 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
20811
20812         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
20813         support.
20814
20815 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20816
20817         * jit-icalls.c: remove warnings.
20818         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
20819         speedups for unsafe code.
20820
20821 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
20822
20823         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
20824
20825 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
20826
20827         * basic-calls.cs: Add new regression test.
20828
20829         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
20830         more portable.
20831
20832         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
20833
20834         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
20835         is no longer used.
20836
20837 2004-05-06      Patrik Torstensson
20838
20839         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
20840         long reg allocation in any reg (not only eax:edx) and implemented 
20841         long shl/shr ops in asm instead of helpers.
20842
20843 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
20844
20845         * mini-sparc.h: Fix warnings.
20846
20847         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
20848         stack.
20849
20850         * mini-exceptions.c (mono_handle_exception): Call the filter in a
20851         separate statement for clarity.
20852
20853         * mini-sparc.c: Update status.
20854
20855 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
20856
20857         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
20858         here.
20859
20860 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20861
20862         * inssel-ppc.brg: another small pre-release workaround:
20863         we don't do overflow detection for long_sub_un.
20864
20865 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
20866
20867         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
20868         (also works around a weird ppc bug: 57957).
20869
20870 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
20871
20872         * tramp-ppc.c: trampoline fixes.
20873
20874 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
20875
20876         * mini-ppc.c: fixed typos.
20877
20878 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20879
20880         * mini-ppc.c, exceptions-ppc.c: more code saves registers
20881         at the top of the stack. Fixed typos. Use a frame registers
20882         for all the methods with exception clauses.
20883
20884 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
20885
20886         * exceptions-ppc.c: restore fp registers.
20887
20888 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
20889
20890         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
20891         order from the stack top (moved the stack room to save the
20892         return value for trace after the param area). Fixed corruption
20893         in restoring registers on unwind.
20894
20895 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20896
20897         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
20898
20899 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20900
20901         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
20902         and prolog/epilog for methods that use it. Allow
20903         enough param area room for varargs methods. Fix miguel's
20904         breakage in exception handling.
20905
20906 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20907
20908         * Makefile.am: run genmdesc only on current arch.
20909
20910 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20911
20912         * exceptions-x86.c:
20913         * mini-x86.h: fix the build on windows.
20914
20915 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
20916
20917         * 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.
20918
20919         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
20920
20921         * mini-exceptions.c: New file.
20922         
20923         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
20924         Move some parts of the x86 exception handling code to an 
20925         arch-independent file so it can be shared with other ports.
20926
20927 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
20928
20929         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
20930
20931 2004-04-26  David Waite  <mass@akuma.org>
20932
20933         * driver.c: remove comma from end of enumeration declaration
20934
20935 2004-04-26  Jackson Harper  <jackson@ximian.com>
20936
20937         * driver.c: parse config file before loading first assembly. This
20938         allows the user gac to be enabled/disabled. 
20939         
20940 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
20941
20942         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
20943         simpler mechanism: we do not care what is encoded initially
20944         (branch absolute or relative), we care about the code and its
20945         target.  I kept the old code for reference for now.
20946
20947         The new code tries first to determine if the jump is anywhere in
20948         the -/+32 absolute meg range, if it succeeds, it encodes using the
20949         absolute branch;  If not, it tried to find something in the
20950         relative range, if not, it uses the handle_thunk code. 
20951
20952 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
20953
20954         * exceptions-ppc.c: use the correct ip register on macosx.
20955
20956 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
20957
20958         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
20959
20960 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
20961
20962         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
20963         Raise exception on integer divide by zero by hand since the hw
20964         doesn't support it. Handle NaNs in FP compares.
20965
20966 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
20967
20968         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
20969         code reducing duplication between the platforms and enabled
20970         signal exception handling (on linux for now).
20971
20972 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
20973
20974         * exceptions-ppc.c: more macosx support.
20975
20976 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20977
20978         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
20979
20980 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
20981
20982         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
20983
20984 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
20985
20986         * iltests.il: more tests.
20987
20988 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
20989
20990         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
20991         vars as well.
20992
20993 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
20994
20995         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
20996
20997 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
20998
20999         * liveness.c: Mark variables as volatile in all basic blocks reachable
21000         from exception clauses.
21001
21002 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
21003
21004         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
21005         inlining.
21006
21007 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
21008
21009         * iltests.il, basic.cs: more tests for regalloc.
21010
21011 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
21012
21013         * iltests.il: Some tests for register allocation modifications
21014         I have locally.
21015
21016 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
21017
21018         * exceptions.cs: Add regression test for bug #56782.
21019
21020         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
21021         original stack trace if an exception is rethrown. Fixes #56782. Oh,
21022         the beauty of fixing the same thing in 5 different files...
21023
21024 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
21025
21026         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
21027         methods.
21028
21029 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
21030
21031         * mini.c: Add support for STRWLPARRAY marshalling convention.
21032
21033 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
21034
21035         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
21036         to init the context to setup the regs pointer).
21037
21038 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
21039
21040         * exceptions-ppc.c: more exceptions work.
21041
21042 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21043
21044         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
21045         not allowed.
21046
21047 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
21048
21049         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
21050         can use the memory directly.
21051
21052         * cpu-pentium.md: Update documentation from a post from Zoltan. 
21053
21054         add x86_add_membase, x86_sub_membase, x86_mul_membase
21055
21056 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
21057
21058         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
21059         GENERAL_REGS they were also hardcoded for all PPC ports.
21060
21061         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
21062
21063         Remove hard-coded limit for floating point registers, use
21064         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
21065
21066         Notice that in MacOS X calling conventions you can fit a lot more
21067         floating point values in registers, so I should update the PInvoke
21068         test to excercise the passing of floating point values on the
21069         stack (currently broken).
21070         
21071 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
21072
21073         * tramp-ppc.c (create_trampoline_code): Added
21074         JUMP_TRAMPOLINE_SIZE. 
21075         (ppc_magic_trampoline): Follow the pattern from
21076         x86_magic_trampoline: if code is set to zero, return. 
21077         (create_trampoline_code): Always pass MonoMethod to the jump
21078         trampoline, before it was passing a null.
21079         (mono_arch_create_jump_trampoline): Implement the jump stub, could
21080         share the code with mono_arch_create_jit_trampoline. 
21081
21082         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
21083         implemented.
21084         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
21085         implemented.  
21086
21087         * cpu-g4.md: Added length for jmp instruction, the worst case
21088         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
21089         for save_lmf).
21090
21091 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
21092
21093         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
21094
21095 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
21096
21097         * mini.c: Only set bblock->real_offset when adding a new bblock, and
21098         before each IL instruction.
21099
21100         * mini.c (CEE_BOX): Fix warnings.
21101
21102 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21103
21104         * mini.c: removed a few unused vars and extra whitespace.
21105
21106 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
21107
21108         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
21109         checks.
21110         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
21111         index.
21112         (OP_GETCHR): use the above
21113         (CEE_LDELEMA): use the above.
21114
21115         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
21116         version of the generic impl.
21117         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
21118         (CEE_LDELEMA): use the above.
21119
21120 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
21121
21122         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
21123         Fixes #56317.
21124
21125         * iltests.il: Added new regression test for #56317.
21126
21127 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
21128
21129         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
21130         under NetBSD. Fixes #56450.
21131
21132         * liveness.c (update_gen_kill_set): Fix previous patch.
21133
21134 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21135
21136         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
21137
21138 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
21139
21140         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
21141         ldsfld and ldsflda.
21142
21143         * inssel-sparc.brg: Add more optimizations.
21144
21145         * mini-sparc.c: Replace multiply/divide with shifts if possible.
21146
21147 2004-04-01  Martin Baulig  <martin@ximian.com>
21148
21149         * mini.c (handle_box): New static function; moved the
21150         implementation of CEE_BOX here.
21151         (mono_method_to_ir): Added `constrained_call' variable.
21152         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
21153         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
21154         mono_method_get_constrained() to get the method.
21155
21156 2004-04-01  Martin Baulig  <martin@ximian.com>
21157
21158         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
21159         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
21160         (mono_method_to_ir): We don't need these macros anymore since
21161         mono_class_get_full() already takes care of it. 
21162
21163 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21164
21165         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
21166         use @function (as doesn't accept #function here) and check the return
21167         value of system and stop if fails.
21168
21169 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21170
21171         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
21172
21173 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
21174
21175         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
21176
21177         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
21178
21179         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
21180         #56223.
21181
21182         * basic-long.cs: Add test for negation of Int64.MinValue.
21183
21184 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
21185
21186         * mini-sparc.c: Update status.
21187
21188         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
21189
21190         * exceptions-sparc.c: Fix return value in filters.
21191
21192         * inssel-sparc.brg: Fix register allocation in some rules.
21193
21194 2004-03-28  Martin Baulig  <martin@ximian.com>
21195
21196         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
21197         if neccessary.  
21198
21199 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
21200
21201         * mini-x86.c (mono_arch_patch_code): Fix warnings.
21202         
21203         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
21204         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
21205         remove unused conv_u4 opcode.
21206
21207         * mini-x86.c: Remove valgrind workaround since it slows down things
21208         even when mono is not run under valgrind.
21209
21210 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
21211
21212         * mini-sparc.c: Update status.
21213
21214         * inssel-sparc.brg: Add some optimizations.
21215
21216         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
21217         future delay slot filling. Add support for varargs, tail calls and JMP.
21218
21219         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
21220         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
21221
21222         * inssel.brg: Fix register allocation in OP_ARGLIST.
21223
21224         * inssel.brg: Fix warnings.
21225
21226 2004-03-25  Martin Baulig  <martin@ximian.com>
21227
21228         * mini.c (inflate_generic_field): Removed.
21229         (mini_get_method): Removed, use mono_get_method_full(),
21230         (mini_get_class): Removed, use mono_class_get_full().
21231         (mono_method_to_ir): Pass our generic context to
21232         mono_field_from_token().        
21233
21234 2004-03-25  Martin Baulig  <martin@ximian.com>
21235
21236         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
21237         of a `MonoMethod *'.
21238         (mini_get_method): Take a `MonoGenericContext *' instead
21239         of a `MonoMethod *'.
21240         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
21241         a new local variable called `generic_context' which holds the
21242         current `MonoGenericContext *'; use it to lookup things.
21243
21244 2004-03-24  Martin Baulig  <martin@ximian.com>
21245
21246         * mini.c (mini_get_class): New static method; if we're inside a
21247         generic instance, inflate the class if neccessary.
21248         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
21249
21250 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
21251
21252         * iltests.il: New regression test for #55976.
21253
21254         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
21255         #55976.
21256
21257 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
21258
21259         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
21260         output.
21261
21262 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
21263
21264         * liveness.c: Consider SSA stores as well as loads when making vars
21265         volatile.
21266
21267         * exceptions.cs: New regression tests for register allocation.
21268         
21269 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
21270
21271         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
21272         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
21273           domain lock only to protect puntual access to data structures.
21274           Added access lock for sighash, jit_icall_hash_name, 
21275           jit_icall_hash_addr and domain->code_mp.
21276
21277 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
21278
21279         * driver.c: Print SIGSEGV handling method.
21280
21281         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
21282
21283         * mini.c (setup_jit_tls_data): Handle case when this is called
21284         multiple times for a thread.
21285
21286         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
21287         is different from fbxx_un. Fixes #54303. Also use constants instead of
21288         magic numbers in a lot of places.
21289
21290 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
21291
21292         * exceptions.cs: Fix cctor test when --regression is used.
21293
21294 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
21295
21296         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
21297         for Linux/ppc.
21298
21299 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
21300
21301         * inssel-ppc.brg: fixed register assignments for some rules.
21302
21303 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
21304
21305         * exceptions.cs: Add test for exceptions in static constructors.
21306
21307         * mini.c (mono_jit_compile_method_with_out): Move the calling of
21308         static constructors outside the domain lock. Fixes #55720.
21309
21310 2004-03-17  Martin Baulig  <martin@ximian.com>
21311
21312         * mini.c (get_generic_field_inst): Removed, this'll never happen.
21313         (inflate_generic_field): Take the `MonoMethod *' instead of the
21314         `MonoClass *' and added support for generic method.
21315         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
21316         have a `field->parent->gen_params', only inflate the field if it's
21317         an open constructed type.
21318
21319 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
21320
21321         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
21322         exception object instead of the preconstructed ones.
21323
21324 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21325
21326         * mini.c: reverted changed to sigsegv_signal_handler commited
21327         accidentally in the previous patch.
21328
21329 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21330
21331         * mini.c:
21332         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
21333         running --aot with an old assembly.
21334
21335 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
21336
21337         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
21338         point values.
21339
21340         * mini-sparc.c: Add support for v9 branches with prediction.
21341
21342 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
21343
21344         * mini.c (mini_init): #warning is GNUC only
21345
21346         * mini-sparc.h: implement __builtin_frame_address
21347         and __builtin_return_address for Sun C compiler
21348
21349 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
21350
21351         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
21352
21353 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
21354
21355         * basic-calls.cs: Add test for unaligned byref long argument passing.
21356
21357         * mini-ops.h: Add sparcv9 compare and branch instructions.
21358
21359         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
21360         v9 instructions if we have a v9 cpu.
21361
21362         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
21363         registers for global allocation.
21364
21365         * exceptions-sparc.c: Fixes.
21366         
21367 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
21368
21369         * liveness.c (mono_analyze_liveness): Optimized version.
21370
21371         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
21372
21373         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
21374         sparc work.
21375
21376         * basic-float.cs basic-calls.cs: New regression tests.
21377
21378 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
21379
21380         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
21381         sigaltstack implementation.
21382
21383         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
21384         
21385         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
21386         stuff if SIGSEGV_ON_ALTSTACK is not defined.
21387
21388 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
21389
21390         * mini.c: Fix warnings.
21391         
21392         * mini.c (mono_resolve_patch_target): New function which contains the
21393         arch independent part of the patching process.
21394
21395         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
21396         patching code to a separate function.
21397
21398 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
21399
21400         * mini.c (add_signal_handler): ifdef out on Windows
21401
21402 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
21403
21404         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
21405         cpu-sparc.md: Add exception handling support + other fixes.
21406
21407         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
21408         typed GC detection in --version.
21409
21410         * basic.cs exceptions.cs: New regression tests.
21411
21412         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
21413         the arch specific code can store data during a compilation.
21414
21415         * mini-ops.h: Add OP_SETFRET.
21416
21417         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
21418         function, register a separate icall for each arity, so the icalls can
21419         get a wrapper.
21420         
21421         * mini.c (mono_print_tree): Print negative offsets in a more readable
21422         form.
21423         
21424         * mini.c: Make signal handling work on sparc.
21425         
21426         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
21427
21428         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
21429
21430         * jit-icalls.c: Emulate truncl by aintl on solaris.
21431
21432         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
21433
21434 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
21435
21436         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
21437
21438 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
21439
21440         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
21441         a MarshalByRef type, inline a method that performs the check, taking into
21442         account that the object can be a proxy. Also implemented tow new opcodes:
21443         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
21444         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
21445         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
21446
21447 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
21448
21449         * mini-ppc.c: if a relative branch displacement is too big
21450         but it points to and area reachable with an absolute branch, 
21451         avoid the thunks.
21452
21453 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
21454
21455         * mini.c: optimize small copies in cpblk.
21456
21457 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
21458
21459         * basic-calls.cs basic-float.cs: New regression tests.
21460
21461         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
21462         negative offsets from %fp. Implement localloc. Fix local register 
21463         allocation. Fix the case when the this argument needs to be saved to
21464         the stack. Implement some missing opcodes.
21465
21466 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
21467
21468         * mini.c (mini_method_compile): Reenable global regalloc in methods
21469         with exception handlers.
21470
21471         * linear-scan.c (mono_varlist_sort): Fix warning.
21472
21473         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
21474
21475         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
21476         regalloc costs.
21477
21478         * liveness.c: Make all variables uses in exception clauses volatile, to
21479         prevent them from being allocated to registers. Fixes #42136.
21480
21481 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
21482
21483         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
21484         causes regressions.
21485
21486         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
21487         argument to mono_arch_regalloc_cost.
21488
21489         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
21490         precisely.
21491
21492 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
21493
21494         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
21495         Make the cost of allocating a variable to a register arch dependent.
21496
21497         * basic-calls.cs: Fix compilation of tests.
21498         
21499         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
21500         helper function to cut back on the number of #ifdefs needed.
21501
21502         * mini-ppc.c: Fix compilation.
21503
21504         * basic-calls.cs: New regression tests.
21505
21506         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
21507
21508         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
21509         of l0 since that is callee saved.
21510
21511         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
21512         to virtual calls.
21513
21514         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
21515         of delay instruction.
21516
21517         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
21518
21519         * mini.h (MonoCallInst): Add 'virtual' flag.
21520
21521         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
21522
21523 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
21524
21525         * *.cs: New regression tests.
21526
21527         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
21528         work.
21529
21530         * mini.c (mono_runtime_install_handlers): Fix build.
21531
21532         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
21533         'signal_stack_size' members.
21534
21535         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
21536         alternate signal stack.
21537
21538         * exceptions-x86.c: Add stack overflow handling.
21539
21540         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
21541         functions to arch independent code.
21542
21543         * mini.c (mono_print_tree): Print more detailed info for load_membase
21544         opcodes.
21545         
21546 2004-02-23  Martin Baulig  <martin@ximian.com>
21547
21548         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
21549
21550 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
21551
21552         * mini-x86.c: fixed reg allocation for div/rem.
21553
21554 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
21555
21556         * driver.c (mono_main): Report some configuratio options on --version.
21557
21558 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
21559
21560         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
21561         low in the address space. Correctly flush memory in thunks where we
21562         output native code.
21563
21564 2004-02-20  Martin Baulig  <martin@ximian.com>
21565
21566         * mini.c (mini_get_method): New static method; inflate all generic
21567         methods and methods in open generic instances.
21568         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
21569         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
21570
21571 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
21572
21573         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
21574
21575         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
21576
21577 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
21578
21579         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
21580
21581         * mini-sparc.c (flushi mono_arch_output_basic_block): make
21582         it compile using Sun's compiler.
21583
21584 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
21585
21586         * 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.
21587
21588         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
21589
21590 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
21591
21592         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
21593         code.
21594         * mini-ppc.c: handle calls outside of the allowed range with thunks
21595         allocated using the code manager.
21596         * tramp-ppc.c: use the code manager to hold generated native code.
21597         Fixed the magic trampoline to just patch vtable entries.
21598
21599 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
21600
21601         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
21602         independent file.
21603
21604 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
21605
21606         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
21607         PPC.
21608
21609         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
21610         if we have a working __thread implementation.
21611
21612         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
21613         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
21614
21615 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
21616
21617         * mini-x86.c: Fix compilation under gcc 2.
21618         
21619 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
21620
21621         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
21622         contains a call to the wrapped function.
21623
21624         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
21625         OP_<CALL>_IMM opcodes, and use them under X86.
21626         
21627         * mini.c (mono_jit_find_compiled_method): Fix warning.
21628
21629         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
21630
21631         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
21632
21633         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
21634         functionality to mini.c.
21635
21636         * mini.c (mono_create_jump_trampoline): New function to create a jump
21637         trampoline. Return a compiled method instead of a trampoline if it
21638         exists. Add a cache for jump trampolines.
21639
21640         * mini.c (mono_jit_find_compiled_method): New function to return a
21641         compiled method if it exists.
21642
21643         * mini-x86.c: Call mono_create_jump_trampoline instead of 
21644         mono_arch_create_jit_trampoline.
21645
21646         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
21647         a jump trampoline. Fixes #52092.
21648         
21649 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
21650
21651         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
21652         which is not up-to-date. Add check_corlib_version () instead.
21653
21654         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
21655         have to call it.
21656         
21657         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
21658         since newer valgrind versions do not need it.
21659
21660         * mini.c (mono_jit_compile_method_with_opt): New helper function to
21661         compile a method with a given set of optimizations.
21662
21663         * mini.c: Compile icall wrappers on-demand instead of at startup.
21664
21665         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
21666         wrapper for an icall.
21667
21668 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
21669
21670         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
21671         #54063.
21672
21673         * iltests.il: Add test for non-empty stack before switch instruction.
21674
21675 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
21676
21677         * mini.c: Add support for new stringbuilder marshalling conventions.
21678
21679         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
21680
21681 2004-02-01  Martin Baulig  <martin@ximian.com>
21682
21683         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
21684         in `ginst->mtype_argv'.
21685
21686 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
21687
21688         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
21689         facilitate grepping.
21690
21691 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
21692
21693         * mini.c: fixed buglet in initobj generic implementation for references.
21694
21695 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
21696
21697         * Makefile.am: make the version script conditional.
21698         * jit-icalls.c: handle missing truncl().
21699
21700 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
21701
21702         * exceptions.cs: Add more tests for double->int conversion.
21703
21704         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
21705         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
21706
21707 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
21708
21709         * driver.c: make --verbose --version emit an error
21710         if the loaded corlib doesn't match the runtime version.
21711
21712 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
21713
21714         * mini-ppc.h: export ppc_patch().
21715         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
21716         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
21717         on par or better than on MacOSX.
21718
21719 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
21720
21721         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
21722         mono_lookup_pinvoke_call.
21723
21724         * mini-x86.c: Under windows, the default pinvoke calling convention is
21725         stdcall. Fixes #52834.
21726
21727         * mini.c (optimize_branches): Add an upper bound to the number of
21728         iterations to prevent infinite loops on strange loops. Fixes #53003.
21729
21730 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21731
21732         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
21733         and ISINST. Fixes #52093.
21734
21735         * objects.cs (test_0_vector_array_cast): New tests.
21736         
21737 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
21738
21739         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
21740         checking in Array.Set ().
21741
21742         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
21743         #52590.
21744
21745         * object.cs (test_0_multi_array_cast): New regression test.
21746
21747 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
21748
21749         * exceptions-ppc.c: fix build on Linux/PPC.
21750
21751 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
21752
21753         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
21754         running under valgrind.
21755         (x86_magic_trampoline): Fix build bustage.
21756
21757         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
21758         negative values as well. This is needed for the encoding of the line number
21759         info, since sometimes the line numbers are not in increasing order.
21760
21761 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
21762
21763         * cpu-pentium.md (localloc): Increase the size of the localloc 
21764         instruction since it is a loop under Win32.
21765
21766         * debug-mini.c (record_line_number): Get rid of unneccesary memory
21767         allocation.
21768
21769 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
21770
21771         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
21772         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
21773         Max Horn (max@quendi.de). Fix file names in comments.
21774
21775 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
21776
21777         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
21778         avoid stack overflow.
21779         (replace_usage): Avoid uninitialized variable warnings.
21780
21781         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
21782         and taking the address of valuetype variables.
21783
21784 2004-01-03  Patrik Torstensson
21785
21786         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
21787         for other purposes than FP later on.
21788
21789 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
21790
21791         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
21792         of tail calls.
21793
21794 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
21795
21796         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
21797
21798 2003-12-30  Patrik Torstensson <p@rxc.se>
21799
21800         * mini-x86.h: Decreased number of availiable fp regs.
21801         Solves corner cases with FP spilling.
21802
21803 2003-12-23  Patrik Torstensson <p@rxc.se>
21804
21805         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
21806         for floating point stack tracking / spilling on x86. 
21807         Fixes bug #49012.
21808         
21809         * basic-float.cs: added float mul overflow test.
21810
21811 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
21812
21813         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
21814
21815 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
21816
21817         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
21818         supports for cond branches that overflow the immediate
21819         overflow offset. mcs can compile simple programs.
21820
21821 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
21822
21823         * exceptions-ppc.c: exception handling support wip:
21824         finally handlers get run on exception.
21825
21826 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
21827
21828         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
21829         profiling.
21830
21831 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
21832
21833         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
21834         initial support for stack walking and unwinding.
21835
21836 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
21837
21838         * driver.c (mono_main): Make corlib-out-of-sync message more 
21839         descriptive. Also remove verify_corlib call.
21840
21841 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
21842
21843         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
21844         not overlap with other call's arguments, too.
21845
21846 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
21847
21848         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
21849         move to arch-specific code the choice of arch-specific
21850         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
21851         * mini.c: ensure emulation calls will not interleave
21852         with other calls.
21853
21854 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
21855
21856         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
21857         the magic trampoline stack frame is dropped before executing
21858         the new method.
21859
21860 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
21861
21862         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
21863         and integer to fp conversions. Added support for overflowing
21864         arguments on the stack. Reserve a couple more registers as temps.
21865         Added support for aot compilation (as output still needs to be
21866         tweaked, though).
21867
21868 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
21869
21870         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
21871         Don't overwrite return register in some corner cases.
21872
21873 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
21874
21875         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
21876         static constructors when AOT compiling.
21877
21878         * driver.c (mono_main): Call mono_check_corlib_version.
21879
21880 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
21881
21882         * cpu-g4.md, basic.cs: fixed div target register.
21883
21884 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
21885
21886         * mini-ppc.c, basic.cs: shl_imm fix with test.
21887
21888 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
21889
21890         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
21891         structures by value. Misc fixes.
21892         * objects.cs: more tests.
21893
21894 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
21895
21896         * mini-ppc.c: lconv.ovf.i implemented.
21897
21898 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21899
21900         * mini.c:
21901         (mini_init): don't error out if someone already called g_thread_init.
21902
21903 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
21904
21905         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
21906         to be any type per the spec. Fix abnormal memory usage when
21907         the same object is repeatedly thrown.
21908
21909 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
21910
21911         * mini.c: check for overruns in IL code.
21912
21913 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
21914
21915         * TODO: Add/remove some todo entries.
21916
21917 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
21918
21919         * driver.c (mono_main): Call mono_verify_corlib.
21920
21921 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
21922
21923         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
21924         This has been moved to mini.c
21925         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
21926         type being casted is marshalbyref it could be a proxy, so instead of
21927         emitting the type check code, emit a call to a runtime method that will
21928         perform the check by calling CanCastTo if needed.
21929
21930 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
21931
21932         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
21933         methods with large stack frames under Win32.
21934
21935 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21936
21937         * Makefile.am: Distribute regression tests.
21938
21939         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
21940         at the end instead of inserting each variable into the sorted list.
21941
21942         * linear-scan.c (mono_varlist_sort): New helper function.
21943         
21944 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
21945
21946         * mini.c: ensure arguments and locals are within bounds.
21947
21948 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
21949
21950         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
21951         related fixes.
21952
21953 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21954
21955         * mini.c (mono_cprop_copy_values): Fix crash.
21956
21957         * aot.c: Set verbosity back to 0.
21958         
21959 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
21960
21961         * regalloc.c: complete memory leak fix by Laurent Morichetti
21962         (l_m@pacbell.net).
21963
21964 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21965
21966         * driver.c (main_thread_handler): Revert the previous patch.
21967
21968         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
21969         under valgrind.
21970
21971         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
21972         memory from the memory pool.
21973
21974         * driver.c (main_thread_handler): Turn on all optimizations when
21975         --aot is used.
21976
21977         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
21978         an array for better performance.
21979
21980         * regalloc.c (mono_regstate_assign): Fix memory leak.
21981
21982         * debug-mini.c (mono_debug_serialize_debug_info): New function to
21983         serialize the debug info.
21984
21985         * debug-mini.c (mono_debug_add_aot_method): New function to load the
21986         debug info from the serialized representation.
21987
21988         * aot.c: Save debug info into the generated file and load it when 
21989         loading a method.
21990
21991         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
21992
21993 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
21994
21995         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
21996         More FP-related fixes.
21997
21998 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
21999
22000         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
22001         and register allocation buglet. Hello world now runs.
22002
22003 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
22004
22005         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
22006         * tramp-ppc.c: fixed class init trampoline.
22007         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
22008
22009 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
22010
22011         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
22012         mini.c: more ppc changes/fixes.
22013
22014 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
22015
22016         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
22017         Also optimize the case when the arguments are the same in the caller 
22018         and in the callee.
22019
22020         * iltests.il: Add tests for tail calls with valuetype arguments.
22021
22022 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
22023
22024         * mini-ppc.c: fixes for struct return type.
22025
22026 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
22027
22028         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
22029         mono_spillvar_offset() to arch-specific code.
22030
22031 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
22032
22033         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
22034
22035 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
22036
22037         * exceptions-x86.c: Fix stack space leaks.
22038         
22039         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
22040         registers from the lmf if the method has save_lmf set.
22041
22042 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
22043
22044         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
22045         of icall wrappers into InvokeInDomain, since these are now per-domain.
22046
22047 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
22048
22049         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
22050         make some opcode emulation and intrinsic ops enabled/disabled 
22051         according to the architecture. More fixes.
22052
22053 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
22054
22055         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
22056
22057 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
22058
22059         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
22060         arch-specific handling for 'this' and struct return type to
22061         arch-specific code.
22062
22063 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22064
22065         * aot.c: prevent divide by zero error when reporting (it happened with
22066         Accessibility.dll).
22067
22068 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
22069
22070         * mini.h (inst_switch): Remove unused macro.
22071
22072 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22073
22074         * aot.c:
22075         (load_aot_module): free 'info->methods' and 'info' properly. No more
22076         "free(): invalid pointer blah" messages when you have an old aot
22077         compiled assembly.
22078
22079 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
22080
22081         * jit-icalls.c, mini.c: Added support for context static fields.
22082
22083 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
22084
22085         * mini.c (mono_method_blittable): Methods which set LastError are not 
22086         blittable either. Fixes #51108.
22087         
22088 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
22089
22090         * mini.c: flush icache.
22091         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
22092
22093 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
22094
22095         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
22096
22097 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
22098
22099         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
22100         safe on IA32.
22101
22102         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
22103         vararg calls.
22104
22105         * inssel.brg (CEE_MKREFANY): Fix AOT case.
22106
22107 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
22108
22109         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
22110         instruction when the result is discarded.
22111
22112         * iltests.il (test_0_div_regalloc): New regression test.
22113
22114         * arrays.cs: Fix compilation error.
22115
22116 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
22117
22118         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
22119         float rules to inssel-x86.brg: sane architectures with FP registers
22120         don't need to implement these rules.
22121
22122 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
22123
22124         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
22125
22126 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
22127
22128         * mini.h, inssel-long32.brg: fixed endianess issues in int64
22129         implementation of 32 bit systems.
22130
22131 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
22132
22133         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
22134         (Jeroen Zwartepoorte).
22135
22136 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
22137
22138         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
22139         the caller and the callee matches.
22140         
22141         * mini.c (mono_method_to_ir): Add comment.
22142
22143         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
22144         signbit is missing on some platforms.
22145
22146 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
22147
22148         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
22149
22150         * mini.c (setup_jit_tls_data): Call the new function.
22151         
22152         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
22153
22154         * mini-x86.c: Add experimental support for fast access to the lmf
22155         structure under NPTL/Linux 2.6.x.
22156
22157 2003-11-06  Martin Baulig  <martin@ximian.com>
22158
22159         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
22160         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
22161         the debugger.
22162
22163 2003-11-02  Martin Baulig  <martin@ximian.com>
22164
22165         * mini.c (inflate_generic_field): New static method.
22166         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
22167         generic instance and the field is declared in a generic type, call
22168         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
22169
22170 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
22171
22172         * mini.h mini.c (mono_method_same_domain): New function to return
22173         whenever the caller and the callee are in the same domain.
22174
22175         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
22176
22177 2003-10-30  Martin Baulig  <martin@ximian.com>
22178
22179         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
22180         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
22181         method parameters.
22182         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
22183         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
22184
22185 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
22186
22187         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
22188         propagation.
22189
22190         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
22191         object here, so it is in the correct appdomain etc.
22192
22193 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
22194
22195         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
22196         already done.
22197         (mono_method_to_ir): Avoid freeing the type created returned from
22198         mono_type_create_from_typespec, since it is put into an internal cache
22199         by the function. Fixes pointer.exe.
22200
22201         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
22202         trampolines for icalls and pinvokes as well. Fixes #33569.
22203
22204 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
22205
22206         * mini.c: Update after appdomain changes.
22207
22208         * mini.c (mono_jit_compile_method_inner): Allways compile native
22209         method wrappers in the root domain, since there can only be one
22210         instance of them, whose address is stored in method->info.
22211
22212 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
22213
22214         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
22215         environment variable. Instead detect automatically whenever running
22216         under valgrind using the magic macro RUNNING_ON_VALGRIND from
22217         valgrind.h.
22218
22219 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
22220
22221         * trace.c, trace.h: New files that implement the new trace option
22222         parsing. 
22223
22224         * driver.c: Document new --trace options.
22225
22226         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
22227         mini-x86.c: Apply:
22228
22229         -       if (mono_jit_trace_calls)
22230         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
22231
22232         * mini.h: prototypes.
22233         
22234 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
22235
22236         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
22237
22238         * mini.c inssel.brg: Implement typedefbyref opcodes.
22239
22240         * mini.c (mono_jit_compile_method): Remove unused local variable.
22241
22242         * mini.c (mono_jit_compile_method_inner): Ditto.
22243         
22244 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
22245
22246         * tramp-x86.c (x86_class_init_trampoline): Fix build.
22247         
22248         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
22249
22250 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22251
22252         * mini.c (mono_no_aot): Remove unused global variable.
22253
22254         * mini.c: Thread safety fixes.
22255
22256 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22257
22258         * mini.c (mono_create_class_init_trampoline): Add a lock around
22259         class_init_hash_addr.
22260
22261         * arrays.cs (test_0_newarr_emulation): Add new regression test for
22262         #30073.
22263
22264         * mini.c: Decompose the NEWARR instruction before decomposing its
22265         arguments. Fixes #30073.
22266
22267 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
22268
22269         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
22270         convention.
22271
22272 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22273
22274         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
22275
22276         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
22277
22278         * driver.c: Add support for compiling icall wrappers to --compile.
22279
22280 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22281
22282         * inssel.brg: The empty value in class->interface_offsets is -1, not
22283         0. Fixes #49287.
22284
22285 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22286
22287         * objects.cs: New test for 'is' operator on an array of interfaces.
22288
22289 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
22290
22291         * tramp-ppc.c: update trampoline code to support jumps
22292         and class initialization.
22293
22294 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22295
22296         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
22297
22298         * inssel.brg (OP_UNBOXCAST): Fix #46027.
22299
22300         * inssel.brg (OP_UNBOX): Remove unused rule.
22301
22302         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
22303         region instead of one for each method. Fixes #47813.
22304
22305 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22306
22307         * exceptions.cs (test_0_nested_finally): New regression test for
22308         nested exception handlers.
22309
22310         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
22311
22312         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
22313
22314         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
22315         inlining.
22316
22317         * mini.c (mono_method_check_inlining): Make the inlining limit 
22318         configurable by an environment variable.
22319         
22320         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
22321
22322         * mini.h: Bump AOT file version.
22323
22324         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
22325         token, store the image along with the token, since the token might not 
22326         refer to the same image as the method containing the relocation, 
22327         because of inlining.
22328
22329 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
22330
22331         * mini.c (mono_precompile_assemblies): New function to compile
22332         all methods in all loaded assemblies.
22333
22334         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
22335
22336         * regalloc.h regalloc.c (MonoRegState): Change the type of 
22337         iassign and fassign to int*, since they can contain large negative
22338         values if the register is spilled. Also added some comments. Fixes
22339         #45817.
22340
22341         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
22342         under Win32. Fixes #42964.
22343
22344 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22345
22346         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
22347
22348         * aot.c: Added support for AOT compiling methods which contain calls
22349         to wrappers. Currently, only remoting-invoke-with-check wrappers are
22350         handled.
22351         
22352         * driver.c (compile_all_methods): Run the compilation in a thread
22353         managed by mono. Fixes #44023.
22354
22355         * mini.c (mono_codegen): Print full method name in verbose output.
22356
22357         * mini-x86.c (mono_arch_patch_code): Fix warning.
22358         
22359         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
22360         jumps, since the method we are jumping to might be domain-specific.
22361
22362         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
22363
22364 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
22365
22366         * inssel.brg: string chars are unsigned.
22367
22368 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22369
22370         * TODO: New todo item.
22371
22372         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
22373         which calls mono_runtime_class_init and patches the call site to
22374         avoid further calls.
22375         (mono_arch_create_class_init_trampoline): New arch specific function 
22376         to create a class init trampoline.
22377         (create_trampoline_code): Generalized so it can create
22378         class init trampolines as well.
22379
22380         * mini.c (helper_sig_class_init_trampoline): New helper variable.
22381         (mono_create_class_init_trampoline): New function to create and cache
22382         class init trampolines.
22383         (mono_find_class_init_trampoline_by_addr): New function to lookup the
22384         vtable given the address of a class init trampoline. Used by the
22385         patching process.
22386         (mono_codegen): Generate a call to a trampoline instead of
22387         mono_runtime_class_init in LDSFLD[A].
22388         (mono_codegen): Add relocations for the new trampoline.
22389         
22390         * mini.h mini-x86.c aot.c: Added a new relocation type: 
22391         MONO_PATCH_INFO_CLASS_INIT.
22392
22393         * mini.h: Bump AOT version number.
22394
22395         * aot.c: Create a copy of the loaded code instead of using the original
22396         so methods which call each other will be close in memory, improving
22397         cache behaviour.
22398         
22399         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
22400         patch since it breaks the regression tests.
22401         
22402         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
22403         for the register saving instruction sequence since the 
22404         frame_state_for function in glibc 2.3.2 don't seem to detect it.
22405
22406 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
22407
22408         * TODO: Fix todo item && remove another.
22409
22410 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
22411
22412         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
22413         previous checkin.
22414
22415         * aot.c: Moved the check for MONO_LASTAOT into the initialization
22416         function of the module.
22417
22418         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
22419         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
22420         --no-aot command line option.
22421
22422 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22423
22424         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
22425         by Bernie Solomon (bernard@ugsolutions.com).
22426
22427         * inssel.brg: Refactor the interface offset table related code into
22428         its separate functions and add support for the AOT case.
22429
22430 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22431
22432         * aot.c (mono_aot_get_method_inner): Fix memory leak.
22433         
22434         * aot.c: Added mono_aot_verbose variable and made all debugging
22435         output depend on the value of this variable.
22436
22437         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
22438         method_label and info_label.
22439
22440         * mini.h mini-x86.c aot.c: Added a new relocation type 
22441         MONO_PATCH_INFO_IID for klass->interface_id.
22442
22443         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
22444         the MonoJitInfo structure.
22445
22446         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
22447         a non-root appdomain in shared mode.
22448
22449 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
22450
22451         * aot.c: make aot loader less verbose. Remove free of unused variable.
22452
22453 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22454
22455         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
22456
22457         * .cvsignore: Added *.dll.
22458
22459         * mini.c (mono_print_tree_nl): New function callable while debugging.
22460
22461         * mini.c (mono_print_code): Export this.
22462
22463         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
22464         patched code.
22465
22466 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
22467
22468         * mini.h (MonoCompile): Added 'jit_info' field.
22469
22470         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
22471         the cfg structure, since it is needed by the AOT compiler.
22472
22473         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
22474
22475         * aot.c: A major rewrite. Changes include:
22476         - save exception tables for methods which have them.
22477         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
22478         to g_module_symbol.
22479         - reworked the file format so it is now much smaller and needs
22480         fewer relocation entries.
22481         
22482 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22483
22484         * aot.c (load_aot_module): Fix build bustage on platforms without
22485         Boehm GC.
22486
22487 2003-09-04  Martin Baulig  <martin@ximian.com>
22488
22489         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
22490
22491 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22492
22493         * TODO: Some new optimization ideas.
22494
22495         * aot.c: Move AOT module loading logic here from mono_assembly_open.
22496
22497         * aot.c: Save the optimization flags used to compile the code into
22498         the AOT module.
22499
22500         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
22501         support emitting domain specific code.
22502         
22503         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
22504         no longer domain neutral. It can be made domain neutral by compiling 
22505         with --optimize=shared.
22506
22507         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
22508         between appdomains.
22509
22510         * driver.c mini.h mini.c: New --no-aot debugging option which disables
22511         loading of AOT code.
22512
22513         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
22514         
22515         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
22516         if there is no domain neutrality information.
22517
22518 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22519
22520         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
22521         format version into the generated library.
22522
22523         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
22524         callee method into the caller since one of them could be shared.
22525
22526         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
22527         system exceptions from AOT code now works.
22528
22529         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
22530         method if it is domain neutral and the callee is not.
22531
22532         * graph.c (cfg_emit_one_loop_level): Fix warning.
22533
22534 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22535
22536         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
22537         last checkin.
22538
22539 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22540
22541         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
22542         is needed  by code which is executed before mono_runtime_init ().
22543         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
22544         
22545         * mini.c (mono_thread_abort): Fix warning.
22546         (mono_jit_compile_method): Call static constructor in the AOT case too.
22547
22548         * aot.c (mono_compile_assembly): Fix warning.
22549
22550 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22551
22552         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
22553
22554 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
22555
22556         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
22557
22558         * cpu-pentium.md: Fix the length of call opcodes so they include the
22559         ESP restoring instruction. Fixes #47968.
22560
22561 2003-08-28  Martin Baulig  <martin@ximian.com>
22562
22563         * mini-x86.c (mono_arch_call_opcode): Added support for
22564         MONO_TYPE_GENERICINST.
22565
22566         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
22567
22568 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
22569
22570         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
22571         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
22572
22573         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
22574         metadata_section.
22575
22576 2003-08-26  Martin Baulig  <martin@ximian.com>
22577
22578         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
22579         when reporting an error, set this to the actual error location.
22580         (mono_method_to_ir): Report the correct error location if
22581         get_basic_blocks() returned an error.
22582
22583 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22584
22585         * mini.c (mono_type_blittable): OBJECT is not blittable.
22586         (mono_method_blittable): Methods which have marshalling descriptors
22587         are not blittable either. Fixes #47842.
22588
22589 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
22590
22591         * driver.c mini.c: Use an environment variable instead of a global 
22592         variable. Also fix the build.
22593
22594         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
22595         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
22596         reporting this. 
22597
22598         * driver.c mini.c: Added --with-valgrind option to turn off some
22599         code which prevents mono from running under valgrind.
22600
22601         * mini.c (mono_emit_call_args): Fixed warning.
22602
22603         * mini.c (mono_emulate_opcode): Fixed warning.
22604
22605 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22606
22607         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
22608         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
22609         regalloc.c, regalloc.h: specify available registers in arch-specific
22610         code and support floats in the regallocator (patch by Laurent Morichetti 
22611         <l_m@pacbell.net>)
22612
22613 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
22614
22615         * mini.c: mono_thread_current() can be called only after
22616         mono_runtime_init(): rearrange code to not call it early on.
22617
22618 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
22619
22620         * mini.c: allocate jump tables in the code mempools.
22621
22622 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22623
22624         * mini.c, mini.h: make sure per-thread data allocated by the jit is
22625         freed.
22626
22627 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
22628
22629         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
22630         12 to 16.  This fixes bug #47453.
22631
22632
22633 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
22634
22635         * mini-ppc.c: fixed indexed load and unsigned compares.
22636
22637 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
22638
22639         * mini.c: reenabled installation of handler for
22640           thread abort signal.
22641
22642 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22643
22644         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
22645         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
22646         until it's fixed and actually useful.
22647
22648 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22649
22650         * inssel-long32.brg: couple more opcodes implemented.
22651
22652 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
22653         
22654         * mini-sparc.c: Even more opcodes implemeted.
22655
22656 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
22657
22658         * mini-sparc.c: More opcodes implemented.
22659
22660 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
22661
22662         * mini-sparc.c: More opcodes implemented.
22663
22664 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
22665
22666         * inssel-sparc.brg: Add some needed rules.  Direct
22667         copy from PPC.
22668         * Makefile.am: Use inssel-sparc.brg
22669         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
22670         an assert happy for now.
22671
22672 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
22673
22674         * mini-sparc.c: Fixed compile errors.
22675         * exceptions-sparc.c: Same.  We now produce a mono binary 
22676         on sparc-linux.  Yea.
22677
22678 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
22679
22680         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
22681         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
22682         They compile, but do not work.
22683
22684 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22685
22686         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
22687         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
22688         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
22689         (ct@gentoo.org).
22690
22691 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22692
22693         * mini.c: more opcodes implemented and better support for generics.
22694
22695 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
22696
22697         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
22698         * mini.c, mini.h: first cut at generics support: some new instructions 
22699         added and changed the behaviour of some of the existing ones.
22700
22701 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
22702
22703         * mini.c: Removed definition of metadata_shared mutex here.
22704
22705 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
22706
22707         * mini-x86.c: make vararg calls work for instance methods.
22708
22709 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
22710
22711         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
22712         returns the arguments in a separte list, now.
22713
22714 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
22715
22716         * aot.c, mini.c: updates for array type representation changes.
22717
22718 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
22719
22720         * mini.c: register function to perform jit shutdown.
22721
22722 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
22723
22724         * mini.c: use a faster allocator if possible.
22725
22726 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
22727
22728         * aot.c: some cleanups and portability changes.
22729
22730 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
22731
22732         * mini.c: use faster allocation for CEE_BOX if possible.
22733
22734 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
22735
22736         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
22737         Moved inlined mempcy code to its own function so that is can be
22738         reused. Added an inline memset function as well (optimized initobj).
22739         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
22740
22741 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
22742
22743         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
22744
22745 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
22746
22747         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
22748         arch code can setup the cpu for CLR execution, if needed.
22749         We use it on x86 to set the precision of FP operations.
22750
22751 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
22752
22753         * mini.c: disable some optimizations if we can guess they'll cost too
22754         much for a given method.
22755
22756 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22757
22758         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
22759         
22760 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
22761         * mini.h mini.c mini-x86.c: Added instruction level coverage 
22762         info collection support.
22763
22764 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22765
22766         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
22767         is now implemented in the profiling API. Get rid of a couple of
22768         unnecessary global variables.
22769
22770 2003-06-15  Nick Drochak <ndrochak@gol.com>
22771
22772         * basic-long.cs: tests for negative values for bigmul, and unsigned.
22773         * cpu-g4.md: add op_bigmul and op_bigmul_un
22774         * cpu_pentium.md: add op_bigmul_un
22775         * inssel-long32.brg: add rule for unsigned bigmul
22776         * mini-ops.h: define OP_BIGMUL_UN
22777         * mini-x86.c: THE BUG: handle (un)signed properly
22778         * mini.c: choose unsigned opcode if needed.
22779         This set of patches fixes bug #44291
22780
22781 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
22782
22783         * mini.c (optimize_branches): improved to handle all kinds of
22784         conditional branches.
22785
22786 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
22787
22788         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
22789         don't raise exceptions.
22790
22791 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
22792
22793         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
22794         to arch-specific files.
22795
22796 2003-06-09  Martin Baulig  <martin@ximian.com>
22797
22798         * Makefile.am (libs): Added $(LIBGC_LIBS).
22799
22800 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
22801
22802         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
22803         and OP_ATAN (fixes bug#44293).
22804
22805 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
22806
22807         * Makefile.am, mini-x86.c: rename cpu description array to
22808         pentium_desc, since some compilers define the 'pentium' preprocessor
22809         symbol.
22810
22811 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
22812
22813         * mini.c (mini_select_instructions): add explicit branch if the
22814         following block is not the false target of a conditional branch -
22815         we need this with any optimization that reorder or remove bblocks
22816
22817         * mini.c (optimize_branches): bug fixes
22818
22819 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
22820
22821         * mini.c (mono_method_to_ir): inline static readonly fields
22822
22823         * ssa.c (fold_tree): start cfold support for long (very simple
22824         cases only)
22825
22826         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
22827
22828 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
22829
22830         * inssel.brg: fixed memcpy (bug #44219).
22831
22832 2003-06-05  Dick Porter  <dick@ximian.com>
22833
22834         * driver.c: Set the glib log levels to not abort if g_message
22835         recurses.
22836
22837         g_set_prgname() has to happen before mini_init() so that the
22838         process handle gets the info.
22839         
22840 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
22841
22842         * driver.c: add intrins to the default optimizations to get wider
22843         exposure.
22844
22845 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
22846
22847         * mini.h: some large basic blocks will overflow a 16-bit
22848         integers for symbolic registers.
22849
22850 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
22851
22852         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
22853         (mono_arch_output_basic_block): fix bug 43499 
22854
22855 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
22856
22857         * mini.c: kill duplicated definition of mono_debug_format.
22858
22859 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
22860
22861         * mini-x86.c, arrays.cs: fixed register allocation bug.
22862
22863 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
22864
22865         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
22866
22867         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
22868
22869 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22870
22871         * mini.c:
22872         (print_method_from_ip): also print source location information if
22873         available.
22874
22875 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
22876
22877         * mini.c (mono_find_block_region): bug fix in region code
22878         (mini_method_compile): enable removing unreachable code again, but
22879         only in methods without exception clauses.
22880
22881 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
22882
22883         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
22884         Implemented arglist opcode and handling of TypedReference type.
22885         Fixed x86 call convention when a structure is returned.
22886         Minimal support for calling static vararg methods.
22887
22888 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
22889
22890         * mini.c (mini_method_compile):  always remove unreachable code,
22891         because the code in them may be inconsistent  (access to dead
22892         variables for example).
22893
22894 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
22895
22896         * driver.c, debug-mini.c: warning fixes.
22897
22898 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
22899
22900         * Makefile.am, jit.h, mini.h: install header for embedding mono.
22901
22902 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
22903
22904         * mini.c: thread-static fields are registered in mono_class_vtable(),
22905         so ensure the function is called before checking for them.
22906
22907 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
22908
22909         * mini.c (optimize_branches): fix for bug 43586
22910
22911         * jit-icalls.c (mono_llmult_ovf): added an additional check for
22912         overflow (fixes Bug #43639)
22913
22914 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22915
22916         * mini.c, objects.cs: allow the use of stobj for primitive types.
22917
22918 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22919
22920         * mini.c: be less strict about argument checking until we support
22921         running the verifier.
22922
22923 2003-05-27  Nick Drochak <ndrochak@gol.com>
22924
22925         * basic-long.cs: tests for (ulong)int * (ulong)int also
22926         * mini.c: use the same trick for (ulong)int * (ulong)int
22927
22928 2003-05-27  Nick Drochak <ndrochak@gol.com>
22929
22930         * basic-long.cs: add regression test for (long)int * (long)int
22931         * cpu-pentium.md: add op_bigmul specification
22932         * inssel-long32.brg: add OP_BIGMUL rule
22933         * mini-ops.h: add OP_BIGMUL
22934         * mini-x86.c: register allocator: handle case where src1 needs to be
22935         in EAX.
22936         * mini.c: substitute special BIGMUL opcode in the tree for 
22937         (long)int * (long)int
22938
22939 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
22940
22941         * jit-icalls.c: call the type ctor on field access if needed.
22942
22943 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
22944
22945         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
22946         to a method (including results of ldelema, bug#43207).
22947
22948 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
22949
22950         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
22951         colors to show exception handler blocks.
22952
22953         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
22954         (fix for pinvoke7.cs).
22955
22956 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22957
22958         * mini.h, mini.c: ensure correct initialization order for types that
22959         require it. Prepare for lazy compilation of jit icall wrappers.
22960         Provide a name for opcode emulation to reduce unneeded mallocing.
22961
22962 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
22963
22964         * mini-x86.c: better register restoring code and profiling
22965         support for tail calls.
22966
22967 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22968
22969         * mini.h, driver.c: prepare for leaf methods optimization.
22970
22971 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
22972
22973         * mini.c: get targets of branches before converting a method.
22974
22975 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
22976
22977         * mini.c (optimize_branches): added some experimental code (disbaled) 
22978
22979 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
22980
22981         * mini.c (optimize_branches): fix branch to branch optimization 
22982
22983         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
22984
22985         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
22986
22987         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
22988
22989         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
22990         if needed.
22991
22992 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
22993
22994         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
22995         enable use of interface variables again.
22996
22997         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
22998         I1 to registers because there is no simply way to sign extend 8bit
22999         quantities in caller saved registers on x86.
23000
23001         * inssel-float.brg: set costs of some rules to 2 so
23002         that monobure always select the arch. specific ones if supplied,
23003         regardless of the order we pass the files to monoburg.
23004
23005 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23006
23007         * mini.c, mini-x86.c: since the magic trampoline for jumps
23008         can't patch the code directly, we do it as soon as the
23009         method gets compiled.
23010
23011 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23012
23013         * mini-x86.c, mini.h: introduce a new patching method
23014         to support CEE_JMP and tail calls.
23015         * mini.c: obey tail.call. Don't precompile methods target
23016         of CEE_JMP.
23017         * tramp-x86.c: new trampoline code to handle methods
23018         reached through a jump.
23019
23020 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
23021
23022         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
23023         bit values to registers
23024
23025 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
23026
23027         * mini.c (mono_compile_get_interface_var): share interface
23028         variables if possible.
23029
23030 2003-05-16  Martin Baulig  <martin@ximian.com>
23031
23032         * debug-mini.c (mono_init_debugger): New function to initialize
23033         the debugger.  This is not in the debugger since it needs to
23034         access some of mini's internals.
23035
23036 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
23037
23038         * mini.c (mono_method_to_ir): inlining fixes/cleanups
23039
23040 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
23041
23042         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
23043         for value type handling.
23044
23045 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
23046
23047         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
23048         (mono_method_check_inlining): enable inlining of all kinds of wrappers
23049
23050 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
23051
23052         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
23053           the constructor through a proxy.
23054
23055 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23056
23057         * jit-icalls.c, inssel.brg: fixes to array element address
23058         calculations.
23059
23060 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
23061
23062         * mini-x86.c (is_regsize_var): allocate pointer to registers
23063
23064 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23065
23066         * driver.c: fixed typo, added intrins to the set of optimizations
23067         tested with regressions.
23068
23069 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23070
23071         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
23072         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
23073         test case.
23074
23075 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
23076
23077         * inssel.brg: remove some common pop instructions without side effects
23078
23079 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23080
23081         * inssel-x86.brg: fixed thinko in int to double conversions.
23082
23083 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23084
23085         * mini.c, jit-icalls.c: added runtime thread-static variable support.
23086
23087 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23088
23089         * inssel-long32.brg: two more missing instructions.
23090
23091 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23092
23093         * mini.c (mono_emit_call_args): set the cil_code for all arguments
23094         if not already set.
23095
23096 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
23097
23098         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
23099         correctly.
23100
23101         * basic-float.cs: Added tests for negative zero.
23102
23103 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23104
23105         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
23106         a couple of missing operations for long casts, with test cases.
23107
23108 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23109
23110         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
23111
23112 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
23113
23114         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
23115         code size estimation.
23116
23117 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23118
23119         * mini.c (mono_jit_create_remoting_trampoline): make it work with
23120         abstract methods (fix bug 42542)
23121
23122         * aot.c: add ability to handle array types
23123         
23124 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
23125
23126         * mini.c: Call the _specific versions of the object allocation
23127         functions if possible.
23128
23129 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
23130
23131         * driver.c: call setlocale ().
23132
23133 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23134
23135         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
23136         windows build.
23137
23138 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23139
23140         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
23141
23142         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
23143         wrappers (fix bug 42122)
23144
23145 2003-05-04  Martin Baulig  <martin@ximian.com>
23146
23147         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
23148
23149         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
23150         s/mini_set_defaults/mono_set_defaults/g.
23151
23152 2003-05-04  Martin Baulig  <martin@ximian.com>
23153
23154         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
23155
23156 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23157
23158         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
23159         (reported by Don Roberts).
23160
23161 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
23162
23163         * mini.c: temporarily work around two bugs for this release.
23164
23165 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23166
23167         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
23168         that contains -export-dynamic and it makes using the ld script
23169         useless.
23170         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
23171
23172 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23173
23174         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
23175         specific cpu.
23176
23177 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23178
23179         * mini.c: make sure leave calls all the needed finally blocks,
23180         even when the target jumps out of multiple exception clauses.
23181
23182 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23183
23184         * ldscript, Makefile.am: add linker script to reduce the number of
23185         exported symbols (should also fix the issues with libwine defining
23186         some of the same symbols in io-layer).
23187
23188 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
23189
23190         * driver.c (mini_main): Avoid assertion when no file name is given on 
23191         the command line.
23192
23193 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
23194
23195         * driver.c: added --version/-V command line option.
23196         Added the inline optimization in the regression tests.
23197
23198 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23199
23200         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
23201         to the type in the method signature (fixes bug#42134).
23202
23203 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
23204
23205         * mini.c: when inlining, check this is not null only when needed (bug #42135).
23206
23207 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
23208
23209         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
23210
23211 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23212
23213         * driver.c: fixed bug #42100.
23214
23215 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23216
23217         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
23218
23219 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23220
23221         * mini.c: moved most of the code required to do inlining to its own
23222         function so it can be reused. Inline also ctors if appropriate.
23223
23224 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23225
23226         * Makefile.am: Link with -export-dynamic so shared libs loaded by
23227         the runtime can call mono API functions.
23228
23229 2003-04-27  Martin Baulig  <martin@ximian.com>
23230
23231         * debug-mini.c (mono_debug_init_method): Added
23232         `guint32 breakpoint_id' argument; if the method has a breakpoint,
23233         send a notification to the debugger.
23234
23235         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
23236         running in the Mono Debugger, just pass the breakpoint number to
23237         mono_debug_init_method().
23238
23239         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
23240
23241 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
23242
23243         * mini.c: allow some more unsafe compares.
23244
23245 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23246
23247         * mini-x86.c, Makefile.am: make distcheck works (partially from
23248         a patch by Richard Lee <r.h.lee@attbi.com>).
23249         * regset.c, regset.h: removed, they are unused.
23250
23251 2003-04-25  Dick Porter  <dick@ximian.com>
23252
23253         * driver.c: Usage reports the name as 'mono' not 'mini'
23254         * exceptions-x86.c: Build and run on freebsd
23255
23256 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23257
23258         * Makefile.am: install the program with the 'mono' name and
23259         the library as libmono instead of mini and libmini.
23260
23261 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23262
23263         * driver.c: provide the APIs for the embedding interface of the old jit.
23264
23265 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
23266
23267         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
23268
23269 2003-04-23  Martin Baulig  <martin@ximian.com>
23270
23271         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
23272
23273         * driver.c: Added `--debug' command line argument to enable
23274         debugging support.
23275
23276 2003-04-23  Martin Baulig  <martin@ximian.com>
23277
23278         * debug.[ch]: Removed.  The code is now in
23279         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
23280
23281         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
23282         last six months.
23283
23284 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
23285
23286         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
23287
23288 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23289
23290         * mini.c:
23291         (mini_cleanup): moved mono_runtime_cleanup call after the call to
23292         mono_domain_finalize.
23293         (mini_method_compile): use mono_method_profile* if the the option is
23294         enabled.
23295
23296 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23297
23298         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
23299         methods with their wrapper.
23300
23301         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
23302         methods with their wrapper.
23303
23304         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
23305         their wrapper.
23306
23307         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
23308         wrapper.
23309
23310         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
23311         methods.
23312
23313 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
23314
23315         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
23316
23317 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
23318
23319         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
23320         of the mempool. This is slightly faster and uses less memory
23321
23322 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23323
23324         * mini.c: avoid O(n) allocation for variables.
23325
23326 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23327
23328         * mini.c: handle items on the stack after inlining methods.
23329
23330 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23331
23332         * mini.c: make the method->opcode optimization dependent
23333         on MONO_OPT_INSTRINS and do it lazily.
23334
23335 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23336
23337         * driver.c: print overall results at the end of regression run.
23338
23339 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
23340
23341         * inssel.brg: don't overwrite symbolic registers.
23342
23343 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
23344
23345         * inssel-x86.brg: fix conversion from long to float.
23346
23347 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
23348
23349         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
23350
23351 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23352
23353         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
23354
23355         * driver.c: Added --print-vtable option as in the old JIT.
23356
23357 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23358
23359         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
23360
23361 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
23362
23363         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
23364
23365 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23366
23367         * mini.c regalloc.c regalloc.h: Fix memory leak.
23368
23369 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
23370
23371         * aot.c (mono_aot_get_method): register all used strings
23372
23373 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
23374
23375         * mini.c: always intern strings references with ldstr at compile time.
23376
23377 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23378
23379         * Makefile.am: add BUILT_SOURCES.
23380
23381 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
23382
23383         * driver.c: give a better error message when the assembly to execute
23384         doesn't have an entry point.
23385
23386 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
23387
23388         * Makefile.am: added hack for automake
23389
23390         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
23391         correct sematics.
23392
23393         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
23394
23395 22003-04-07  Martin Baulig  <martin@ximian.com>
23396
23397         * Makefile.am: Added Makefile.am.
23398
23399         * debugger-main.c: Removed, this is now in the debugger where it
23400         belongs.
23401
23402         * mini.pc.in: Call this package `mini' for the moment.
23403
23404
23405
23406
23407
23408
23409
23410
23411
23412
23413
23414
23415
23416
23417