c6965e4c0ba83e5a597cccdcf0363c7ca9d5de24
[mono.git] / mono / mini / ChangeLog
1 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2
3         * method-to-ir.c (mono_method_to_ir): Fix a warning.
4
5         * exceptions-<ARCH>.c: Introduce a MONO_ARCH_HAVE_THROW_EXCEPTION_BY_NAME
6         define for platforms still using it (s390). Get rid of the
7         mono_arch_get_throw_exception_by_name () routines on all other platforms.
8
9         * exceptions-x86.c: Rework the throw trampolines so there is only one function
10         which can generate throw/rethrow/corlib trampolines for llvm/not llvm code.
11
12         * exceptions-x86.c: Add LLVM specific throw trampolines which doesn't assume
13         the caller pushed the arguments.
14
15         * mini-llvm.c: Enable throwing exceptions on x86.
16
17         * mini-posix.c (SIG_HANDLER_SIGNATURE): Avoid
18         "Thread (nil) may have been prematurely finalized" messages if this is called
19         on a thread not registered with the runtime.
20
21         * mini-exceptions.c (mono_handle_native_sigsegv): Ditto.
22
23 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
24
25         * jit-icalls.c (mono_array_new_3): New jit icall.
26
27         * aot-compiler.c aot-runtime.c: Add support for ElementAddr wrappers.
28
29         * arrays.cs: Add a test for 3 dimensional arrays.
30
31 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
32
33         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Emit xdebug info.
34         (mono_arch_find_jit_info_ext): Disable the popping of arguments when LLVM is
35         used.
36
37         * mini-llvm.c (emit_cond_system_exception): Abort when an implicit exception is
38         thrown on x86.
39
40         * unwind.c (mono_unwind_decode_fde): Fix an assert on x86.
41
42         * mini-x86.h (MONO_CONTEXT_SET_LLVM_EXC_REG): Define this for x86.
43
44         * mini-llvm.c: Disable OP_THROW on x86, it doesn't work yet.
45
46 2010-01-18  Bill Holmes  <billholmes54@gmail.com>
47
48         * debugger-agent.c : Changing the PLATFORM_WIN32 preprocessor check to
49           HOST_WIN32.  Also including winsock2. to define struct in_addr.
50
51         * mini-amd64.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
52
53         * mini-x86.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
54
55         Code is contributed under MIT/X11 license.
56
57 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
58
59         * mini.h (MonoCompile): Add 'disable_out_of_line_bblocks' flag.
60
61         * branch-opts.c (mono_optimize_branches): Honor the new flag.
62
63         * mini.c (mini_method_compile): Set the new flag when running under the
64         debugger.
65
66 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
67
68         * mini-gc.c: Change the GC map to use a ref/noref/pin value instead of just
69         a ref/noref value + a global pin flag, so parts of stack frames can still be
70         precisely marked even if they include stuff which needs pinning. Improve logging.
71         Fix many bugs. Not enabled yet.
72
73         * gc-test.cs: Add a few tests.
74
75         * liveness.c (mono_analyze_liveness): Make the debug output controllable by
76         the normal -v options. Avoid propagating liveness information through bblocks
77         which end with a NOT_REACHED opcode.
78
79         * mini.c (mono_jit_compile_method_inner): Avoid reading cfg->prof_options
80         after cfg has been freed.
81
82 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
83
84         * branch-opts.c (mono_branch_optimize_exception_target): Stop the optimization
85         if a clause is skipped because it uses the exception object, since it could
86         have caught the exception.
87
88         * exceptions.cs: Add a test.
89
90 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
91
92        * mini-trampolines.c (mono_create_static_rgctx_trampoline): Add an assert.
93
94         * aot-runtime.c (mono_aot_get_method): Handle ftnptr's correctly for the
95         ICollection<T> wrappers.
96
97 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
98
99         * debugger-agent.c (decode_value): Fix the decoding of I/U/PTR.
100
101 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
102
103         * mini-amd64.c (emit_call_body): Always use near calls when AOTing even if
104         NOMAP32BIT or optimize_for_xen is set.
105
106 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
107
108         * aot-compiler.c aot-runtime.c: Get rid of mono_aot_str_hash (), use
109         mono_metadata_str_hash () instead.
110
111 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
112
113         * ir-emit.h (MONO_EMIT_NEW_ICOMPARE_IMM): Use sizeof (mgreg_t) instead of
114         sizeof (void*).
115
116         * unwind.c (mono_unwind_frame): Use mgreg_t instead of gssize.
117
118 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
119
120         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): Emit an explicit null check if the
121         flag is set.
122
123         * mini-ppc.c (mono_arch_emit_exceptions): Compute the size of the exception
124         throwing code correctly.
125
126         * mini.h (MONO_AOT_FILE_VERSION): Bump this because of the IMT hashing changes.
127
128 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
129
130         * aot-runtime.c (mono_aot_plt_resolve): Reenable the previous assert for
131         ftnptrs created by us, handle RGCTX_FETCH correctly.
132         (mono_aot_get_lazy_fetch_trampoline): Add an ftnptr.
133
134         * mini-trampolines.c (mono_create_generic_class_init_trampoline): Remove the
135         ftnptr added by mono_aot_get_named_code ().
136
137 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
138
139         * mini-arm.c: Fix a few LLVM problems.
140
141         * mini-llvm.c (simd_class_to_llvm_type): Fix compilation on !x86/amd64.
142
143 2010-01-13  Mark Probst  <mark.probst@gmail.com>
144
145         * method-to-ir.c (mini_emit_stobj): Use EMIT_NEW_CLASSCONST when
146         AOT compiling.
147
148 Wed Jan 13 15:54:53 CET 2010 Paolo Molaro <lupus@ximian.com>
149
150         * jit.h, method-to-ir.c: added ability to set the policy for
151         inserting breakpoints from the break IL instruction or the
152         Debugger.Break () API call.
153
154 2010-01-13  Zoltan Varga  <vargaz@gmail.com>
155
156         * aot-runtime.c (load_aot_module): Add more comments to explain why referenced
157         assemblies need to be eagerly loaded.
158
159 2010-01-12  Zoltan Varga  <vargaz@gmail.com>
160
161         * dwarfwriter.c (emit_line_number_info): Fix the eglib case so it doesn't crash.
162
163 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
164
165         * debugger-agent.c (mono_debugger_agent_parse_options): Allow onthrow without
166         an argument which matches any exception.
167
168 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
169
170         * method-to-ir.c (mono_emit_method_call_full): Avoid the virt->nonvirt
171         optimization if the called method is gshared and marshalbyref, since gshared
172         methods can' have wrappers. Fixes #569390.
173
174         * generics.cs: Add a test.
175
176 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
177
178         * mini-exceptions.c (mono_print_thread_dump_from_ctx): New helper function
179         callable from gdb.
180
181 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
182
183         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
184
185 2010-01-09  Zoltan Varga  <vargaz@gmail.com>
186
187         * debugger-agent.c (transport_connect): comment out freeaddrinfo calls under win32,
188         since it is not supported in win2000.
189
190 2010-01-08  Zoltan Varga  <vargaz@gmail.com>
191
192         * aot-runtime.c (load_image): Add a SET_ERROR argument to set the loader
193         error if loading an assembly fails.
194         (mono_aot_plt_resolve): Return NULL instead of asserting if loading fails.
195
196         * mini-trampolines.c (mono_aot_plt_trampoline): Throw a pending loader error
197         if exists.
198
199         * aot-runtime.c (decode_exception_debug_info): Set jinfo->from_llvm for LLVM
200         compiled methods.
201
202         * mini-llvm-cpp.cpp: Remove the unused ctx variable.
203
204         * mini-llvm.c (mono_llvm_emit_method): Add some comments about why aot+clauses
205         is not supported yet.
206
207         * unwind.c (DW_EH_PE_absptr): Add more DW_EH_PE_ constants.
208
209 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
210
211         * method-to-ir.c: All types with variant arguments must fallback to the
212         slow path. This makes cast of variant delegates work.
213
214         * mini-trampolines.c (mono_get_vcall_slot_addr): Add new variance_used out
215         argument that is set to TRUE is the returned vtable slot is for a variant
216         interface. Changed a g_print + g_assert_not_reached to a g_error.
217
218         * mini-trampilines.c (common_call_trampoline): Handle variant interfaces in
219         a similar fashion of generic virtual methods.
220
221 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
222
223         * helpers.c (mono_disassemble_code): Fix a g_hash_table warning
224         when cfg is null.
225
226         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Convert a given
227         method using a variance aware function.
228
229         * mini-x86.c: Add support for dumping IMT thunks if DEBUG_IMT is defined.
230
231 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
232
233         * method-to-ir.c (mono_method_to_ir): Casts to variant interfaces
234         do an icall for now.
235
236 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
237
238         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add an ugly hack to fix #564695.
239         If LLVM decides to set the code model to Large, reset it to Default.
240
241 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
242
243         * aot-compiler.c (mono_xdebug_flush): Export it so it is present in
244         stripped binaries as well.
245
246 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
247
248         * mini-trampolines.c (common_call_trampoline): Add an rgctx trampoline if a shared
249         method is called from LLVM compiled code, as that code can't pass an rgctx arg.
250
251         * mini-llvm.c (mono_llvm_emit_method): Enable calls to methods needing an rgctx
252         reg.
253
254 2010-01-06  Zoltan Varga  <vargaz@gmail.com>
255
256         * mini.c (mini_method_compile): Extract the JIT info creation code into a
257         separate function.
258
259         * mini-llvm.c (mono_llvm_emit_method): Pass the info in MonoExceptionClause
260         as the type info to llvm.eh.selector.
261         (exception_cb): Use the type info for filling out some fields of
262         MonoJitExceptionInfo like the flags and the exception class. This is needed
263         because the LLVM produced exception handling clauses might not match the original
264         IL clauses, i.e. there might be more than one LLVM clause for one IL clause.
265
266         * unwind.c (mono_unwind_decode_fde): Extract the LSDA decoding code into a
267         separate function. Add an extra argument which returns the type infos
268         corresponding to the exception clauses.
269
270         * mini.c (mini_method_compile): Enable LLVM compilation of methods having
271         exception handling clauses.
272
273 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
274
275         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
276         mono_method_get_vtable_slot () instead of accessing imt_method->slot directly,
277         to fix an AOT case.
278
279 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
280
281         * mini.c (mono_compile_is_broken): Skip methods from serialization's
282         internal assembly.
283
284 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
285
286         * mini.c (mini_method_compile): Fix a few memory leaks introduced by the
287         llvm code.
288
289 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
290
291         * mini.c (mini_method_compile): Verify the method before calling
292         mono_compile_create_vars as this might crash since it uses method
293         information.
294
295         Fixes #560196.
296
297 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
298
299         * method-to-ir.c (mono_method_to_ir): Avoid calling mono_class_vtable () in
300         one case if AOTing, since the class might not be a concrete class.
301
302 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
303
304         * mini-codegen.c abcremoval.c: Remove the duplicate g_slist_append_mempool
305         functions which are now defined in mempool-internals.h.
306
307         * mini.c (mini_free_jit_domain_info): Free the seq point hash tables.
308
309         * mini-llvm.c (mono_llvm_emit_method): Handle OP_ABS.
310
311 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
312
313         * mini.c:
314         * method-to.ir.c:
315         * mini-*.c: Properly handle generic enums.
316
317         Fixes #566294
318
319 2009-12-28  Zoltan Varga  <vargaz@gmail.com>
320
321         * method-to-ir.c (mono_method_to_ir): Handle the failure of mono_class_vtable ()
322         in a few more places.
323
324 2009-12-27  Zoltan Varga  <vargaz@gmail.com>
325
326         * aot-compiler.c (add_wrappers): Don't use dyn runtime invoke for methods with
327         nullable parameters. Fixes #567351.
328
329 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
330
331         * mini-trampolines.c (common_call_trampoline): Add assert for NULL resolved generic method.
332
333 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
334
335         * mini-trampolines.c: Use mono_arch_get_this_arg_from_call () to avoid the slow
336         mono_get_generic_context_from_code () call.
337
338         * mini-<ARCH>.c: Get rid of mono_arch_find_this_arg (), it is no longer used.
339
340 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
341
342         * aot-runtime.c (decode_klass_ref): Don't call mono_class_init (), its not
343         needed.
344
345 2009-12-24  Sebastien Pouliot  <sebastien@ximian.com>
346
347         * method-to-ir.c (mono_method_to_ir): Avoid SIGSEGV when
348         mono_method_get_signature returns NULL. Fix #567084
349
350 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
351
352         * aot-runtime.c (find_extra_method): Call mono_aot_wrapper_name only once,
353         instead of once for each module.
354
355 2009-12-22  Zoltan Varga  <vargaz@gmail.com>
356
357         * debugger-agent.c (ss_start): Implement step over for the last sequence
358         point in methods.
359
360         * mini.c (mono_save_seq_point_info): Don't link sequence points which don't
361         have the STEP_LOC flag set.
362
363         * aot-runtime.c (decode_klass_ref): Avoid a crash if a decode_klass_ref () call
364         fails. Fixes #566689.
365
366 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
367
368         * mini.c (mono_add_seq_point): New helper function.
369         (mono_save_seq_point_info): New function to save sequence point info, extracted
370         from mini_method_compile ().
371
372         * mini-<ARCH>.c: Call mono_add_seq_point to remember sequence points.
373
374         * mini.h (MonoSeqPointInfo): New structure containing information about
375         the sequence points of a JITted method.
376         (MonoBasicBlock): Add 'seq_points' and 'last_seq_point' fields. Remove unused
377         'bucket' field.
378
379         * mini.c debugger-agent.c aot-compiler.c aot-runtime.c: Change the way sequence
380         point information is stored, use a MonoSeqPointInfo structure instead of a
381         GPtrArray. For each seq point, compute a list of successor seq points.
382
383         * debugger-agent.c: Use the successor list to implement step-over more
384         efficiently: instead of single stepping until a different line/IL offset is
385         reached, place breakpoints into all successor seq points.
386
387         * mini.h: Bump AOT file format version.
388
389 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
390
391         * Makefile.am (AM_CFLAGS): Include LLVM_CFLAGS.
392
393         * mini-llvm.c: Avoid defining the __STDC_... macros if already defined.
394
395 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
396
397         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): Fix the cross-compiler
398         build.
399
400 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
401
402         * mini-x86.c (mono_arch_get_argument_info): Allocate memory for CallInfo using
403         alloca as g_malloc is not signal safe.
404
405 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
406
407         * tramp-x86.c (mono_arch_patch_callsite): Fix the call to
408         VALGRIND_DISCARD_TRANSLATIONS.
409
410         * *.c: Include mono/utils/memcheck.h, and remove #ifdef HAVE_VALGRIND_MEMCHECK_H
411         checks, they are no longer needed.
412
413         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): New helper function to set
414         a function into a sigctx which can handle function pointers.
415
416         * mini-ppc.c: Implement soft debugger support on ppc64.
417
418         * mini-ppc.c: Implement soft debugger support.
419
420 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
421
422         * mini-llvm.c: Handle OP_LADD_OVF_UN. Place all alloca's into the entry bb.
423
424 2009-12-17  Marek Habersack  <mhabersack@novell.com>
425
426         * mini.c (mono_get_runtime_build_info): include Mono version in
427         the returned value.
428
429         * driver.c (mono_main): VERSION is now included in the string
430         returned from mono_get_runtime_build_info()
431
432 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
433
434         * method-to-ir.c (mono_method_to_ir): Add support for CALLI with unmanaged
435         signatures. Fixes #565143.
436
437         * jit-icalls.c (mono_get_native_calli_wrapper): New JIT icall.
438
439 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
440
441         * aot-compiler.c (arch_emit_autoreg): Align code to 4 in the ppc case.
442
443 2009-12-16 Rodrigo Kumpera  <rkumpera@novell.com>
444
445         * mini-x86.h: Forgot to add a 0x to MONO_ARCH_MAX_FRAME_SIZE define
446         making max stack 10x smaller.
447
448 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
449
450         * mini.c (mono_resolve_patch_target): Comment out an assert which could be hit.
451
452 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
453
454         * method-to-ir.c (mini_emit_memcpy): Assert if size is too big.
455
456 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
457
458         * mini-x86.c (mono_arch_allocate_vars): Fail compilation if the frame size is
459         bigger than MONO_ARCH_MAX_FRAME_SIZE.
460
461         * mini-x86.c (mono_arch_emit_prolog): Handle huge frames.
462
463         * mini-x86.h: Define MONO_ARCH_MAX_FRAME_SIZE to be 1Mb.
464
465         * mini-amd64.c / mini-amd64.h: Same fixes as of above.
466
467         * mini.c (mini_method_compile): Check if mono_arch_allocate_vars failed
468         the compilation.
469
470 2009-12-14  Miguel de Icaza  <miguel@novell.com>
471
472         * method-to-ir.c (mono_method_to_ir): CEE_UNUSUED opcodes now
473         raise an invalid program exception.   
474
475         For other opcodes that we might not handle use a g_warning and
476         raise the exception.   Beats termination.
477
478         Fixes #561724
479
480 2009-12-14  Zoltan Varga  <vargaz@gmail.com>
481
482         * method-to-ir.c (mono_emit_rgctx_method_call_full): Fix a warning.
483
484         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix the LLVM support
485         by merging the LLVM and !MAP_32BIT cases.
486
487 2009-12-13 Jonathan Chambers <joncham@gmail.com>
488
489         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Handle a NULL
490         sigctx being passed in, as we have no CONTEXT available in the APC.
491
492         (mono_debugger_agent_cleanup): Use explicit cond wait implementation
493         for now.
494
495         Code contributed under MIT/X11 license.
496
497 2009-12-13  Zoltan Varga  <vargaz@gmail.com>
498
499         * method-to-ir.c mini-llvm.c: Fix support for monitor enter/exit trampolines
500         in the LLVM backend on AMD64.
501
502         * aot-runtime.c (decode_eh_frame): Initialize the clauses from the info in the
503         FDE.
504
505         * unwind.c (mono_unwind_decode_fde): Implement decoding of a couple more formats.
506
507         * mini-llvm.c: Export mono_personality for AOT.
508
509         * mini.c (mini_method_compile): Fix some problems with llvm+aot+clauses.
510
511         * mini-ops.h (OP_IMPLICIT_EXCEPTION): New opcode marking the place where an
512         implicit exception can occur.
513
514         * ir-emit.h (MONO_EMIT_NEW_IMPLICIT_EXCEPTION): New macro to emit an
515         OP_IMPLICIT_EXCEPTION instruction.
516
517         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): New macro.
518
519         * method-to-ir.c: Use MONO_EMIT_NEW_CHECK_THIS in a few places.
520
521         * mini-llvm.c: Handle OP_IMPLICIT_EXCEPTION by disabling llvm if it occurs
522         inside a protected block.
523
524         * mini-llvm.c: Revert the last change, the signature of monitor entry/exit
525         trampolines doesn't include the argument.
526
527         * mini-llvm.c (mono_llvm_emit_method): Enable calls to monitor entry/exit
528         trampolines on amd64.
529
530         * mini-amd64.h (MONO_ARCH_MONITOR_OBJECT_REG): Use MONO_AMD64_ARG_REG1 instead
531         of RDI.
532
533         * mini.c (mini_method_compile): Add some comments as to why LLVM is currently
534         disabled for methods with clauses.
535
536         * mini-llvm.c: Enable support for catch clauses.
537
538         * mini-exceptions.c (mono_resume_unwind): New function to resume unwinding at the
539         end of an LLVM compiled finally clause.
540         (mono_handle_exception_internal): Save the exception handling state in TLS
541         before calling an LLVM compiled finally clause, so mono_resume_unwind () can
542         resume unwinding from that point.
543
544         * unwind.c (mono_unwind_get_ops_from_fde): Rename this to
545         mono_unwind_decode_fde, decode the Language Specific Data Area (LSDA) too,
546         to obtain the addresses of the exception handling regions.
547
548         * mini-llvm.c: Add beginnings of support for exception handling, currently only
549         finally clauses are supported.
550
551         * mini.c (mini_method_compile): Add support for LLVM code with exception
552         handlers.
553
554 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
555
556         * mini-llvm.c (mono_llvm_emit_method): Allocate the 'pindexes' array with the
557         proper size.
558
559 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
560
561         * debugger-agent.c: Encode the this argument of vtype methods as a struct, not
562         as a primitive type.
563
564 2009-12-11  Zoltan Varga  <vargaz@gmail.com>
565
566         * driver.c: Applied patch from Matt McClellan (matt@mc-c.net). Add a check
567         for 2 parameter sched_setaffinity in older glibc versions. Fixes
568         #564000.
569
570 2009-12-11  Marek Habersack  <mhabersack@novell.com>
571
572         * method-to-ir.c (mini_redirect_call): do not redirect the
573         InternalAllocateStr internal call if string profiling is enabled.
574
575 2009-12-10  Zoltan Varga  <vargaz@gmail.com>
576
577         * aot-compiler.c (add_wrappers): Avoid generating synchronized wrappers for
578         generic methods.
579
580         * unwind.h: Rename this to mini-unwind.h to avoid conflicts with the gcc
581         unwind.h header file.
582
583         * tramp-x86.c (mono_arch_patch_callsite): Patch the code when using valgrind,
584         newer valgrind versions seems to handle this fine.
585
586 2009-12-09  Zoltan Varga  <vargaz@gmail.com>
587
588         * debugger-agent.c (start_runtime_invoke): Fix a crash if this is called
589         on the debugger thread.
590
591 2009-12-08  Zoltan Varga  <vargaz@gmail.com>
592
593         * mini-llvm.c (mono_llvm_emit_method): Add more SIMD opcodes.
594
595         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
596
597         * mini-codegen.c (mono_local_regalloc): Allow non-call opcodes with cloc:c.
598
599         * cpu-<ARCH>.md: Make call_handler clob:c.
600
601         * mini.c: Reenable SSA for methods with clauses.
602
603         * mini.c (mini_method_compile): Disable SSA for now for methods with clauses,
604         as it causes failures on x86.
605
606 2009-12-08  Sebastien Pouliot  <sebastien@ximian.com>
607
608         * driver.c: Fail gracefully with --compile-all if mono_method_signature
609         returns NULL (e.g. a bad assembly).
610
611 2009-12-08  Geoff Norton  <gnorton@novell.com>
612
613         * debugger-agent.c:  Refactor the mono_runtime_invoke guarding against
614         stepping out into native code.  There were issues with nested invokes
615         like .cctors.
616
617 2009-12-07  Zoltan Varga  <vargaz@gmail.com>
618
619         * mini.c (mini_method_compile): Do the disable_llvm checks early
620         and avoid the LLVM compile pass if the checks fail.
621
622         * mini.c ssa.c abcremoval.c: Enable SSA for methods with exception clauses.
623
624         * mini-llvm.c: Put our methods/globals into the 'llvm.used' array, so the
625         LLVM optimizations don't try to remove them.
626
627         * aot-compiler.c (emit_llvm_file): Save the result of opt into a
628         different file so the original remains.
629
630 2009-12-06  Zoltan Varga  <vargaz@gmail.com>
631
632         * mini-llvm.c mini.c: Fix alignment issues with SIMD vars.
633
634         * aot-runtime.c (decode_arm_exidx): Handle most descriptors created by gas.
635
636         * aot-runtime.c (decode_arm_exidx): Refactor this into two functions, add
637         support for non-inline unwind descriptors.
638
639 2009-12-07  Geoff Norton  <gnorton@novell.com>
640
641         * debugger-agent.c:  Darwin can colesce signals, so we need to handle
642         the interrupt_count slightly differently.  Native threads were never
643         marked as resumed.
644
645 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
646
647         * aot-runtime.c (decode_arm_exidx): New function to initialize a MonoJitInfo
648         based on the contents of the ARM .exidx section. Not yet used since llvm doesn't
649         yet generate this info.
650
651         * mini-llvm.c: Fix the conversion of call results if they are unsigned.
652
653         * debugger-agent.c (buffer_add_value): Treat I/U as a valuetype, so the
654         client can distinguish between intptrs and longs.
655
656 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
657
658         * aot-compiler.c (emit_trampoline): Emit the trampoline info into the global
659         blob.
660
661         * aot-runtime.c (load_function): Update after the change above.
662
663         * mini.h: Bump AOT file format version.
664
665         * method-to-ir.c (mono_method_to_ir): Disallow the delegate optimization
666         if the delegate class is dynamic.
667
668         * method-to-ir.c (handle_delegate_ctor): Allow the method_code optimization
669         in gshared code too using the new rgctx info type
670         MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
671
672 2009-12-04  Geoff Norton  <gnorton@novell.com>
673
674         * debugger-agent.c: When doing a func-eval invoke on a suspended runtime,
675         we need to track the original suspend count so the thread properly
676         wakes up in resume_thread.
677
678 2009-12-04  Zoltan Varga  <vargaz@gmail.com>
679
680         * method-to-ir.c (handle_delegate_ctor): Add support for using this from gshared
681         code.
682
683         * generics.cs: Add a test.
684
685         * method-to-ir.c (emit_get_rgctx_method): Make this work even if context_used
686         is 0. Simplify a lot of code using this.
687
688         * mini-trampolines.c (mono_delegate_trampoline): Call
689         mono_create_static_rgctx_trampoline () before saving the final address in
690         delegate->method_code, to avoid calling it each time a delegate is first called.
691
692         * method-to-ir.c (mono_method_to_ir): Allow fast delegate creation for methods
693         which need static rgctx trampolines.
694
695         * mini-trampolines.c (mono_create_static_rgctx_trampoline): Use a cache
696         keyed on the method+addr pair, since addr could be either the method addr or
697         an unbox trampoline in the AOT case. Fixes #560246.
698
699 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
700
701         * mini.c (mini_method_compile): Call handle_exception_clauses () in the same
702         place it was called before too.
703
704 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
705
706         * mini.c (mono_jit_runtime_invoke): Avoid the call to mono_class_setup_vtable ()
707         if no security manager is present, to speed up the AOT case. Call
708         mono_class_vtable () full with raise_on_error == TRUE instead.
709
710 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
711
712         * mini.c (mini_method_compile): Call handle_exception_clauses earlier so
713         the local optimization passes can take its result into account. Fixes
714         #559876.
715
716         * exceptions.cs: Add a test.
717
718 2009-01-24  Steven Munroe  <munroesj@us.ibm.com>
719
720         This patch is contributed under the terms of the MIT/X11 license
721
722         * cpu-ppc64.md (load_memindex): Add loadi8_memindex.
723
724 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
725
726         * mini.h (MonoInst): Remove unused 'ssa_op' field.
727
728         * debugger-agent.c: Rework the handling of stack traces of running threads to
729         avoid crashes if compute_frames () tries to walk the stack of running thread.
730
731         * mini.c (mono_print_method_from_ip): Use mini_jit_info_table_find.
732
733         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): Set frame->lmf.
734
735         * mini.h (StackFrameInfo): Add an 'lmf' field.
736
737 2009-12-02  Zoltan Varga  <vargaz@gmail.com>
738
739         * debugger-agent.c (suspend_current): Always set really_suspended.
740
741         * debugger-agent.c (clear_event_request): Clear method entry/exit requests too.
742
743         * exceptions-x86.c (mono_arch_get_restore_context): Restore EAX too.
744
745 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
746
747         * debugger-agent.c (vm_commands): Don't allow invokes on threads which are not
748         really suspended.
749
750 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
751
752         * cpu-ppc64.md (store_memindex): Add storei8_memindex.
753
754 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
755
756         * mini-trampolines.c: Fix MSVC build.
757
758 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
759
760         * mini-trampolines.c: Check for mono_method_get_vtable_slot failures.
761
762 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
763
764         * mini-arm.c (mono_arch_lowering_pass): Fix an assert which is hit when
765         the instruction following an OP_FCOMPARE is optimized away.
766
767 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
768
769         * aot-compiler.c (arch_emit_autoreg): Extract the auto-registration code from
770         emit_autoreg () into this arch-specific function.
771
772         * aot-compiler.c (emit_exception_debug_info): Don't emit the length of the
773         code, it is no longer needed.
774
775         * aot-runtime.c (decode_exception_debug_info): Don't read the code length.
776
777         * mini.h: Bump AOT file format version.
778
779         * aot-runtime.c (mono_aot_find_jit_info): Compute the length of the method
780         using the sorted_code_offsets array, instead of reading it from the
781         exception debug info.
782         (load_method): Call mono_aot_find_jit_info instead of
783         decode_exception_debug_info ().
784
785         * aot-compiler.c (emit_exception_debug_info): Emit whenever the method was
786         LLVM compiled as a flag.
787
788 2009-11-29  Zoltan Varga  <vargaz@gmail.com>
789
790         * debugger-agent.c (resume_thread): Fix a warning.
791
792         * aot-compiler.c: Add an option to set the number of static rgctx trampolines
793         generated.
794
795 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
796
797         * aot-compiler.c aot-runtime.c: Get rid of a few global symbols, move their
798         contents to MonoAotFileInfo.
799
800 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
801
802         * aot-compiler.c aot-runtime.c: Reorganize the AOT file format once again.
803         Put all binary data into a giant blob, similarly to the way .net assemblies
804         store binary data. Emit offset tables in a compact form to reduce their size.
805
806         * mini.h: Bump AOT file format version.
807
808         * aot-compiler.c (emit_globals_table): Use temp_prefix instead of .L in a few
809         places.
810
811         * aot-compiler.c (emit_globals_table): Emit a hash table for the globals, to
812         avoid linear searches at runtime.
813
814         * aot-runtime.c (find_symbol): Update this to use the hash.
815
816         * mini.h: Bump AOT file format version.
817
818 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
819
820         * aot-compiler.c (emit_klass_info): Save whenever the class has a generic
821         container.
822
823         * aot-runtime.c (decode_cached_class_info): Set the is_generic_container field
824         too.
825
826         * aot-compiler.c (mono_compile_assembly): Add a 'stats' option to print out
827         the distribution of got slot types.
828
829         * mini.h (MonoDebugOptions): Add 'explicit_null_checks' option.
830
831         * method-to-ir.c: Add support for generating explicit null checks.
832
833 2009-11-25  Zoltan Varga  <vargaz@gmail.com>
834
835         * debugger-agent.c (vm_commands): Implement EXIT by invoking Environment.Exit ()
836         on a random thread if possible.
837
838         * aot-runtime.c (mono_aot_plt_resolve): Clean up the handling of function
839         descriptors a bit, add comments, handle RGCTX_FETCH/GENERIC_CLASS_INIT_TRAMPOLINE
840         correctly.
841
842         * exceptions-ppc.c (mono_arch_find_jit_info_ext): Use mgreg_t as the type of
843         regs. Pass the real size of the regs array to mono_unwind_frame ().
844
845         * unwind.c (mono_unwind_frame): Remove an incorrect assert, add more correct
846         ones instead.
847
848 2009-11-24  Geoff Norton  <gnorton@novell.com>
849
850         * mini-darwin.c: Work around apple bug rdar://7209349  See
851         http://openradar.appspot.com/7209349 for details.  Synopsis,
852         CoreFoundation SIGTRAP's if you dlopen it off the main thread if its
853         never been initialized before.
854
855 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
856
857         * tramp-arm.c: Use blx instead of mov pc, reg to improve support for thumb.
858
859         * mini-arm.c (mono_arm_thumb_supported): New helper function.
860
861 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
862
863         * cfold.c (mono_constant_fold_ins): Fix a problem in the previous change,
864         OP_SHL_IMM is not 32 bit.
865
866 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
867
868         * aot-compiler.c (encode_patch): Fix the encoding of R8 on big-endian systems.
869
870 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
871
872         * aot-compiler.c: Avoid infinite recursion when generic virtual recursion is
873         encountered.
874
875         * debugger-agent.c (resume_vm): Signal the suspend_cond even if suspend_count
876         > 0 since some threads can resume if their resume_count is > 0.
877         (invoke_method): Avoid reading freed memory.
878
879         * debugger-agent.c (process_suspend): Extract the suspend code from
880         process_single_step_inner () to a separate function. Rework the code to prevent
881         races between this function and thread interrupts.
882
883         * debugger-agent.c (suspend_current): Check the resume_count field instead
884         of resume_one so suspends+resumes during single threaded invokes work
885         correctly.
886
887 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
888
889         * aot-compiler.c (emit_llvm_file): Enable some llvm optimizations which seem
890         to make the generated code smaller.
891
892         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Add a code
893         sequence generated by recent LLVM versions.
894
895         * mini-llvm.c: Add support for a few simple cases which weren't supported
896         before.
897
898         * mini-trampolines.c (mono_magic_trampoline): Don't call
899         mono_arch_get_vcall_slot () when llvm is enabled.
900
901         * aot-compiler.c (emit_llvm_file): Add code to run the 'opt' llvm tool.
902
903         * mini-trampolines.c (mono_magic_trampoline): Extract the bulk of this function
904         into a new function called common_call_trampoline () which is used by the
905         llvm vcall trampoline as well.
906
907         * debugger-agent.c: Implement single threaded invokes.
908
909         * debugger-agent.c: Revert change which broke the agent on linux.
910
911         * method-to-ir.c (inline_method): Prevent infinite recursion. Fixes
912         #557606.
913
914         * generics.cs: Add a test.
915
916 2009-11-22  Zoltan Varga  <vargaz@gmail.com>
917
918         * debugger-agent.c: Fix the cygwin build.
919
920 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
921
922         * cprop.c: Remove this unused file.
923
924 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
925
926         * cfold.c (mono_constant_fold_ins): Fix constant folding of shr_imm. Fixes
927         #557262.
928
929         * basic.cs: Add a test.
930
931 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
932
933         * method-to-ir.c (mono_method_to_ir): Use mono_use_llvm instead of ENABLE_LLVM
934         in one more place.
935
936 2009-11-20  Zoltan Varga  <vargaz@gmail.com>
937
938         * mini.c mini-trampolines.c driver.c: Add a 'mono_use_llvm' flag to control
939         whenever the runtime uses LLVM code. Add a '--llvm' command line option to set
940         it. Use this flag to control llvm related code paths instead of #ifdef
941         ENABLE_LLVM, so a runtime configured without --enable-llvm can use LLVM compiled
942         AOT code.
943
944         * aot-runtime.c aot-compiler.c: Add a 'flag' field to MonoAotFileInfo.
945
946         * mini.h: Bump AOT file format version.
947
948         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline_full): These
949         receive their argument in MONO_ARCH_VTABLE_REG, not in the first argument reg.
950
951         * debugger-agent.c (create_event_list): Fix a crash if an empty assembly list
952         was used as an assembly filter.
953
954 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
955
956         * unwind.c: Fix support for ppc.
957
958         * exceptions-ppc.c (mono_arch_find_jit_info): Change this to use dwarf frame
959         unwind info. Change to the mono_arch_find_jit_info_ext () interface.
960
961 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
962
963         * mini-ppc.c (mono_arch_emit_prolog): Fix a copy-paste error to fix the ppc64
964         port.
965         (mono_arch_cpu_init): Don't set cpu_hw_flags to 0 at the end, this was somehow
966         added by the ps3 changes.
967
968 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
969
970         * mini-gc.c: Resurrect this, so at least it compiles.
971
972         * debugger-agent.c (assembly_commands): Implement GET_NAME command.
973
974 2009-11-18  Zoltan Varga  <vargaz@gmail.com>
975
976         * debugger-agent.c (mono_debugger_agent_handle_exception): Pass a MonoJitInfo to
977         create_event_list () so assembly filters can be used.
978
979         * exceptions-ppc.c (mono_arch_find_jit_info): Fix the restoration of registers
980         from the LMF.
981
982 2009-11-17  Zoltan Varga  <vargaz@gmail.com>
983
984         * debugger-agent.c (mono_debugger_agent_breakpoint_hit): Fix a warning.
985         (mono_debugger_agent_thread_interrupt): Make this return FALSE if the agent
986         is disabled.
987
988         * aot-compiler.c (add_generic_instances): Emit instances of common generic
989         classes for char/bool too.
990
991         * debugger-agent.c (DebuggerTlsData): Honor the DISABLE_SOFT_DEBUG option.
992
993         * debugger-agent.c (DebuggerTlsData): Add a 'really_suspended' flag, not yet
994         used.
995
996         * debugger-agent.c: Add some definitions to make backporting to 2.6 easier.
997         Fix warnings.
998
999 2009-11-15  Andreas Faerber  <andreas.faerber@web.de>
1000
1001         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Signature fix.
1002         
1003         Code contributed under MIT/X11 license.
1004
1005 2009-11-14  Zoltan Varga  <vargaz@gmail.com>
1006
1007         (mono_debugger_agent_thread_interrupt): Save the context so stacktraces for
1008         threads in native code work.
1009
1010         * debugger-agent.c: Pass the 'flags' argument to VM_INVOKE_METHOD earlier in
1011         the parameter list, so it can be acted upon by vm_commands (). Bump protocol
1012         version.
1013
1014 2009-11-13 Jonathan Chambers <joncham@gmail.com>
1015
1016         * debugger-agent.c: Implementation for Windows platform.
1017
1018         * mini-x86.c: Add support for Windows. Use mono-* synchronization
1019         primitives. Use SEH to implement breakpoints and single stepping.
1020
1021         * mini-x86.h: Enable soft debugger on Windows.
1022
1023         Code contributed under MIT/X11 license.
1024
1025 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
1026
1027         * mini-amd64.c (emit_call_body): Disable usage of near calls when running
1028         under XEN. Fixes #522894.
1029
1030         * patch-info.h: Add LLVM_IMT_TRAMPOLINE.
1031
1032         * mini-llvm.c aot-compiler.c aot-runtime.c mini.c: Add support for making
1033         interface calls in LLVM AOT code.
1034
1035         * aot-compiler.c mini-llvm.c: Abort llvm compilation if a non-encodable patch
1036         is found.
1037
1038         * mini-llvm.c: Add support for OP_VPHI.
1039
1040         * objects.cs: Add a test.
1041
1042 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
1043
1044         * debugger-agent.c (mono_debugger_agent_single_step_event): Avoid a crash if
1045         this is called on the debugger thread.
1046
1047 2009-11-12  Zoltan Varga  <vargaz@gmail.com>
1048
1049         * mini-llvm.c: Add soft-float support.
1050
1051         * method-to-ir.c (mono_decompose_soft_float): Restart after decomposing an
1052         FCALL which returns an R4.
1053
1054         * driver.c (mono_main): Add a missing '\n'.
1055
1056         * mini-trampolines.c (mono_create_llvm_imt_trampoline): Fix the build on
1057         platforms which doesn't support the LLVM IMT trampoline.
1058
1059 2009-11-11  Zoltan Varga  <vargaz@gmail.com>
1060
1061         * mini-llvm.c (mono_llvm_emit_method): Fix LOCALLOC.
1062
1063         * mini-llvm-cpp.cpp: Update to latest LLVM SVN.
1064
1065         * mini-llvm.c (mono_llvm_emit_method): Avoid creating plt entries for
1066         virtual calls.
1067
1068         * aot-runtime.c: Don't define HAVE_DL_ITERATE_PHDR, configure now does that.
1069
1070 2009-11-10  Zoltan Varga  <vargaz@gmail.com>
1071
1072         * aot-compiler.c aot-runtime.c: Change how mono_arch_find_jit_info () works.
1073         Instead of emitting a method_order table, sort the contents of the code_offsets
1074         table and do a binary search in the sorted table. The previous approach doesn't
1075         work with LLVM which emits methods in a arbitrary order.
1076
1077         * aot-runtime.c: Add support for creating MonoJitInfo structures by searching
1078         in the .eh_frame section in ELF files.
1079
1080         * mini.h: Bump corlib file format version.
1081
1082         * mini-llvm.c aot-compiler.c: Add support for AOT to the LLVM back end.
1083
1084         * exceptions-arm.c (mono_arch_get_call_filter_full): Update after the
1085         LDMIA->LDM macro name change.
1086
1087 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1088
1089         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Fix and enable this for
1090         x86.
1091
1092         * mini-llvm-cpp.cpp (JITMemoryManager): Fix compilation with LLVM 2.7
1093         SVN.
1094
1095         * aot-compiler.c: Ditto.
1096
1097         * mini-arm.c (mono_arch_allocate_vars): Fix the previous change by passing
1098         &align to mini_type_stack_size_full ().
1099
1100         * mini-arm.c (mono_arch_emit_prolog): Implement support for varargs.
1101
1102         * mini-ops.h: Add documentation for the OP_ARGLIST opcode.
1103
1104 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
1105
1106         * mini-arm.c: Compute the stack space used by arguments using
1107         mini_type_stack_size_full ().
1108
1109 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
1110
1111         * optflags-def.h: Remove dead TREEPROP optimization.
1112
1113 2009-11-08  Rodrigo Kumpera  <rkumpera@novell.com>
1114
1115         * mini-ppc.h: Make mono compiler under FreeBSD/ppc64. 
1116
1117         Patch by Justin Hibbits <chmeeedalf@gmail.com>.
1118
1119 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
1120
1121         * driver.c (mono_jit_parse_options): New public API function to parse options
1122         as done by the runtime executable.
1123
1124         * debugger-agent.c (buffer_add_cattrs): Fix reading an uninitialized variable
1125         when handling named arguments.
1126
1127 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
1128
1129         * mini-arm.c: Implement support for returning vtypes in registers, fix support
1130         for passing small vtypes in registers, make the CallInfo structures more
1131         similar to the code on the other platforms.
1132
1133         * mini-arm.c (mono_arch_allocate_vars): Align small vtypes to 4 bytes too since
1134         the code in the prolog requires it.
1135
1136 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
1137
1138         * mini-arm.c debugger-agent.c: Android changes from Koushik K. Dutta
1139         (koush@koushikdutta.com).
1140
1141         * mini-arm.c (handle_thunk): Add a domain argument to control the domain
1142         where the thunk memory should be allocated from. Fixes appdomain unloading
1143         on arm.
1144
1145 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
1146
1147         * mini-arm.c exceptions-arm.c: Make ctx->regs map directly to the 16 hardware
1148         registers, instead of r4..r11,ip,lr. Make restore_context () restore r0..r3 too.
1149
1150 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1151
1152         * mini-amd64.c (mono_arch_output_basic_block): Don't allow OP_SEQ_POINT in
1153         AOT, as it is not implemented yet.
1154
1155         * mini-x86.c (mono_arch_output_basic_block): Ditto.
1156
1157 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1158
1159         * debugger-agent.c: Fix windows build.
1160
1161 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1162
1163         * debugger-agent.c (debugger_thread): Call mono_set_is_debugger_attached ()
1164         after the client connects/disconnects.
1165
1166         * debugger-agent.c: Add an 'onthrow' option to start the debugger agent
1167         when an exception of a given type is thrown.
1168
1169         * debugger-agent.c: Add a 'onuncaught' option to start the debugger agent
1170         only on an uncaught exception.
1171
1172         * mini-exceptions.c: Notify the debugger agent on an uncaught exception.
1173
1174         * debugger-agent.c: Add a 'launch' option.
1175
1176 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1177
1178         * debugger-agent.c: Add a 'timeout' option.
1179
1180 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1181
1182         * debugger-agent.c: Implement the 'server' and 'suspend' options supported by
1183         the JDWP agent.
1184
1185 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1186
1187         * debugger-agent.c (set_breakpoint): Emit a log message.
1188
1189 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1190
1191         * mini-arm.c: Fix the arm build.
1192
1193 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1194
1195         * aot-compiler.c: don't leak the value returned from
1196         mono_type_full_name().
1197
1198 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1199
1200         * debugger-agent.c: defer including mono-mutex.h until we know the
1201         agent is supported.
1202
1203 2009-11-04 Jonathan Chambers <joncham@gmail.com>
1204
1205         * debugger-agent.c: Changes to build on windows. Use mono-mutex instead
1206         of pthreads directly.
1207
1208         * mini.c (mono_sigfpe_signal_handler): Changed signature of Windows
1209         exception handlers. Pass info argument.
1210
1211         * mini.h: Adjust signatures of soft debugger functions to pass void*
1212         instead of siginfo_t. Adjust SIG_HANDLER_SIGNATURE on Windows.
1213
1214         * mini-amd64.c (mono_arch_is_single_step_event): Adjust signature to pass void*
1215         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
1216         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
1217         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
1218
1219         * mini-amd64.h: Adjust MonoW32ExceptionHandler signature.
1220
1221         * mini-x86.c (mono_arch_is_single_step_event): Adjust signature to pass void*
1222         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
1223         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
1224         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
1225
1226         * mini-x86.h: Adjust MonoW32ExceptionHandler signature.
1227
1228         * exceptions-x86.c: Adjust W32_SEH_HANDLE_EX for new signature.
1229
1230         * exceptions-amd64.c: Adjust W32_SEH_HANDLE_EX for new signature.
1231
1232         * mono-semaphore.h: Skeleton implementation for Windows.
1233
1234         Code contributed under MIT/X11 license.
1235
1236 2009-11-04 Jonathan Chambers <joncham@gmail.com>
1237
1238         * simd-intrinsics.c (simd_intrinsic_emit_setter): Unfix my fix.
1239
1240         Code contributed under MIT/X11 license.
1241
1242 2009-11-04 Jonathan Chambers <joncham@gmail.com>
1243
1244         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix windows build.
1245
1246         Code contributed under MIT/X11 license.
1247
1248 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1249
1250         * aot-compiler.c (mono_save_xdebug_info): Bump the threshold for flushing
1251         debug info to 100 because 10 still slows down gdb too much.
1252
1253         * method-to-ir.c (mono_method_to_ir): Avoid rethrowing thread abort exceptions
1254         inside runtime invoke wrappers. This avoids the need to call ResetAbort () on
1255         them in the wrappers.
1256
1257 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1258
1259         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
1260
1261         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix a warning.
1262
1263         * aot-runtime.c (mono_aot_get_method): Refactor some code into a new helper
1264         function mono_aot_get_array_helper_from_wrapper ().
1265
1266         * aot-compiler.c (add_generic_class): Refactor the code a bit, really emit
1267         array helper methods.
1268
1269 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1270
1271         * simd-intrinsics.c (load_simd_vreg): Add extra argument to signal if
1272         the value was loaded from memory.
1273
1274         * simd-intrinsics.c (simd_intrinsic_emit_setter): Store back to memory if
1275         the value was loader from there.
1276
1277         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Fail correctly for Shuffle
1278         without constant swizzle.
1279
1280 2009-11-02 Jonathan Chambers <joncham@gmail.com>
1281
1282         * mini-amd64.c: Put soft debugger functions behind a
1283         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
1284
1285         * mini-amd64.h: disable the soft debugger in windows.
1286
1287         Code contributed under MIT/X11 license.
1288
1289 2009-11-02 Jonathan Chambers <joncham@gmail.com>
1290
1291         * mini-x86.c: Put soft debugger functions behind a
1292         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
1293
1294         Code contributed under MIT/X11 license.
1295
1296 2009-11-02 Jonathan Chambers <joncham@gmail.com>
1297
1298         * exceptions-x86.c (win32_handle_stack_overflow): Fix parameters
1299         to mono_arch_find_jit_info_ext.
1300
1301         Code contributed under MIT/X11 license.
1302
1303 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1304
1305         * debugger-agent.c: Include netinet/in.h to fix the bsd build.
1306
1307         * debugger-agent.c: Add support for filtering events by assemblies.
1308
1309         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Return false if
1310         the agent is not enabled.
1311
1312 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1313
1314         * exceptions-x86.c: hopefully last change to fix the windows build.
1315         This one courtesy of Jonathan Chambers.
1316
1317 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1318
1319         * debugger-agent.c: remove unused function.
1320
1321 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1322
1323         * debugger-agent.c: add #ifdefs for a few header files.
1324         * mini-x86.h: disable the soft debugger in windows.
1325         Step 1 of 2 to make this compile on windows with gcc.
1326
1327 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1328
1329         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Comment this out for now
1330         as it breaks the build.
1331
1332 2009-07-01  Zoltan Varga  <vargaz@gmail.com>
1333
1334         Merge the soft debugger branch.
1335
1336         * debugger-agent.h debugger-agent.c: New files containing the soft
1337         mode debugger module.
1338
1339         * method-to-ir.c (mono_method_to_ir): Generate OP_SEQ_POINT opcodes
1340         at the appropriate locations.
1341
1342         * mini-<ARCH>.c (mono_arch_output_basic_block): Handle OP_SEQ_POINT
1343         opcode.
1344
1345         * mini-<ARCH>.c: Add new arch-specific functions to set/clear breakpoints,
1346         enable/disable single stepping.
1347
1348         * exceptions-<ARCH>.c (mono_arch_find_jit_info_ext): New stack unwinding api
1349         which returns all information in a StackFrameInfo structure, and can handle the
1350         LMF frames added by the debugger.
1351
1352         * mini-<ARCH>.h (MonoLMFExt): New structure containing additional information
1353         about an LMF frame.
1354
1355         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): New stack
1356         walker function which works on a specific thread and passes a StackFrameInfo
1357         structure to its callback.
1358
1359         * mini.c (mini_init): Initialize the debugger agent.
1360
1361         * aot-compiler.c aot-runtime.c: Add soft-debug support.
1362
1363         * mini-ops.h: Add OP_SEQ_POINT opcode.
1364
1365         * driver.c (mono_main): Add new '--debugger-agent' option for passing
1366         arguments to the debugger agent.
1367
1368 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1369
1370         * mini.c (mini_method_compile): Disable llvm for methods with an lmf here to
1371         speed things up.
1372
1373         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOCALLOC.
1374
1375         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Implement this for x86.
1376
1377         * mini.c (mini_init): Avoid using the IMT trampoline in the LLVM case.
1378
1379         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add a static rgctx trampoline
1380         if needed.
1381         (mono_create_llvm_imt_trampoline): New function to create a trampoline which
1382         sets the IMT argument and makes a virtual call.
1383
1384         * mini-llvm.c: Enable interface calls using the llvm imt trampoline.
1385
1386 2009-11-01  Zoltan Varga  <vargaz@gmail.com>
1387
1388         * Makefile.am (llvm_sources): Enable the llvm option since it no longer breaks
1389         the windows build.
1390
1391 2009-10-30  Zoltan Varga  <vargaz@gmail.com>
1392
1393         * mini.c (mini_cleanup): Call profiler shutdown before shutting down the
1394         runtime. Fixes #551228.
1395
1396 2009-10-29  Zoltan Varga  <vargaz@gmail.com>
1397
1398         * mini-x86.c (mono_arch_output_basic_block): Fix % 1. Fixes #550970.
1399
1400         * basic.cs: Add a test.
1401
1402         * method-to-ir.c (mono_method_to_ir): Use EMIT_NEW_LOAD_MEMBASE_TYPE to
1403         load vtypes instead if OP_LOADV_MEMBASE in the implementation of
1404         CONSTRAINED. Fixes #550964.
1405
1406         * generics.cs: Add a test.
1407
1408 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1409
1410         * mini-posix.c (add_signal_handler): Use
1411         mono_gc_get_suspend_signal() instead of GC_get_suspend_signal().
1412
1413 2009-10-28 Jerry Maine <crashfourit@gmail.com>
1414
1415         Contributed under the terms of the MIT/X11 license by
1416         Jerry Maine <crashfourit@gail.com>.
1417
1418         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
1419         sse4a for simd intrinsics.
1420
1421         * mini-amd64.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
1422         sse4a for simd intrinsics.
1423
1424 2009-10-27  Zoltan Varga  <vargaz@gmail.com>
1425
1426         * ir-emit.h method-to-ir.c: Change a few _IMM macros to assign to inst_imm
1427         instead of inst_p1 which is not the same on ILP32 platforms.
1428
1429 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1430
1431         * mini-ppc.c (mono_arch_emit_prolog): Load the current got address,
1432         not the mscorlib one before calling mono_get_lmf_addr.
1433
1434         * tramp-ppc.c (mono_arch_create_trampoline_code_full): Fix the storing
1435         of the ip to the LMF.
1436
1437         * method-to-ir.c (mono_method_to_ir): Fix the handling of the
1438         immediate in the op->op_imm optimization.
1439
1440         * mini-ppc.c: Add a 'vtregs' field to ArgInfo to make the code easier to
1441         understand. VTypes now work, but are not abi compliant, as they are
1442         split into 4 byte parts instead of 8.
1443         (emit_memcpy): Fix the unrolled case to work on the PS3.
1444
1445         * mini-ppc.c (get_delegate_invoke_impl): Fix this for the PS3.
1446
1447         * aot-compiler.c (mono_compile_assembly): Make the autoreg option
1448         the default when static linking.
1449
1450         * mini-ppc.c (mono_arch_emit_prolog): Fix handling of I8 arguments.
1451
1452         * aot-compiler.c: Add an autoreg option to automatically register
1453         statically linked aot modules using ELF .ctors.
1454
1455         * genmdesc.pl: Add __ppc64__ to allowed defines.
1456
1457 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1458
1459         * mini-posix.c (add_signal_handler): Delay the GC suspend signal while
1460         executing a SIGSEGV handler on an altstack, since libgc can't handle that.
1461
1462 2009-10-24  Mark Probst  <mark.probst@gmail.com>
1463
1464         * exceptions-x86.c (mono_arch_find_jit_info): Fix build.
1465
1466 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1467
1468         * mini-exceptions.c (mini_jit_info_table_find): Add an 'out_domain' argument
1469         which will contain the domain where the method was found.
1470
1471         * exceptions-<ARCH>.c mini-exceptions.c: Update callers of
1472         mini_jit_info_table_find ().
1473
1474         * aot-compiler.c (xdebug_end_emit): Remove so stray debug code.
1475
1476         * branch-opts.c (mono_if_conversion): Avoid running deadce if it is disabled.
1477
1478 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1479
1480         * mini-x86.c (mono_arch_emit_prolog): Disable aot for methods with save_lmf
1481         set, its not supported yet.
1482
1483 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1484
1485         * aot-runtime.c (mono_aot_get_method): Avoid asserting if a array generic
1486         iface wrapper is not found.
1487         (mono_aot_get_method): Ditto for GetGenericValueImpl.
1488
1489 2009-10-21  Zoltan Varga  <vargaz@gmail.com>
1490
1491         * aot-runtime.c (mono_aot_get_method): Fix support for the IList<T> wrappers,
1492         which have a different name.
1493
1494         * aot-runtime.c (mono_aot_get_method): Special case the array generic iface
1495         wrappers and Array.GetGenericValueImpl ().
1496
1497         * aot-compiler.c: Avoid emitting some wrappers which are not needed anymore
1498         because of the change above.
1499
1500         * generics.cs: Add a test for full aot + generic array ifaces.
1501
1502 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1503
1504         * aot-compiler.c (emit_plt): Remove duplicate 'debug_sym' variable 
1505         that hides the previous one.
1506
1507 2009-10-18  Zoltan Varga  <vargaz@gmail.com>
1508
1509         * aot-compiler.c (can_marshal_struct): Allow some System.dll structs to be
1510         marshalled. Fixes #541623.
1511
1512 2009-10-16  Zoltan Varga  <vargaz@gmail.com>
1513
1514         * aot-compiler.c (emit_extra_methods): Remove some asserts which are not needed.
1515
1516 2009-10-15  Zoltan Varga  <vargaz@gmail.com>
1517
1518         * mini.c (mono_op_imm_to_op): Handle OP_AND/OR/XOR_IMM.
1519
1520 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1521
1522         * mini-posix.c (sigprof_signal_handler):
1523         Implemented support for building stat call chans in different ways.
1524
1525 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1526
1527         * mini-exceptions.c (mono_find_jit_info):
1528         Also check that a jit info has been found (fixes a profiler crash).
1529
1530 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1531
1532         * mini.c (mono_codegen):
1533         Call mono_profiler_code_buffer_new with correct code address.
1534
1535 2009-10-14  Zoltan Varga  <vargaz@gmail.com>
1536
1537         * driver.c (mono_main): Change the date in the copyright.
1538
1539 2009-10-14  Mark Probst  <mark.probst@gmail.com>
1540
1541         * method-to-ir.c (mono_method_to_ir): Don't use a managed array
1542         allocator in shared generic code for open classes, because we
1543         can't get those classes' vtables.  We need to make managed
1544         allocators not depend on the vtable at compile-time to solve this.
1545
1546 2009-10-13  Martin Baulig  <martin@ximian.com>
1547
1548         * debug-mini.c (mono_debugger_trampoline_compiled): Add
1549         `const guint8 *trampoline' argument; send both the old and the new
1550         notification.
1551
1552 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1553
1554         * aot-compiler.c (add_wrappers): Add a runtime invoke wrapper which is used by
1555         mono_runtime_capture_context () without calling mono_runtime_invoke ().
1556         (can_marshal_struct): Skip structures with auto layout.
1557
1558         * tramp-arm.c (GEN_TRAMP_SIZE): Increase this by 4.
1559
1560 2009-10-02  Zoltan Varga  <vargaz@gmail.com>
1561
1562         * mini-sparc.c (mono_arch_emit_setret): Emit long return values using OP_LMOVE.
1563         (mono_arch_create_vars): Instead of allocating a stack slot by hand, allocate
1564         a variable to hold the stack slot used by the int<->float conversion opcodes.
1565
1566         * mini-sparc.c (mono_arch_build_imt_thunk): Implement support for fail_tramp.
1567
1568 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1569
1570         * aot-compiler.c (add_generic_class): Only add GetGenericValueImpl wrappers
1571         when using full-aot.
1572
1573 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1574
1575         * aot-compiler.c (add_generic_class): Add an instance of GenericComparer<T> for
1576         each instance of Comparer<T>.
1577
1578         * generics.cs: Add a new test.
1579
1580 2009-10-09  Zoltan Varga  <vargaz@gmail.com>
1581
1582         * driver.c (parse_debug_options): Add a 'gdb' option.
1583
1584         * mini.c (mini_parse_debug_options): Add a 'gdb' option.
1585
1586         * image-writer.c: Add support for emitting the image into a memory buffer.
1587
1588         * dwarfwriter.c: Add support for sharing one IL file between multiple images.
1589
1590         * aot-compiler.c: Add support for registering debug info with GDB using the
1591         new JIT debugging interface in GDB 7.0. It can be turned on by setting
1592         MONO_XDEBUG to 'gdb'.
1593
1594 2009-10-10  Zoltan Varga  <vargaz@gmail.com>
1595
1596         * aot-compiler.c (mono_save_trampoline_xdebug_info): Implement this for the
1597         gdb mode.
1598
1599 2009-10-11  Zoltan Varga  <vargaz@gmail.com>
1600
1601         * aot-compiler.c (mono_save_xdebug_info): Emit a symbol for the method which
1602         can be used to set breakpoints in gdb.
1603
1604         * image-writer.c (bin_writer_emit_writeout): Add support for setting the text
1605         segment to an absolute address.
1606
1607 2009-10-13  Mark Probst  <mark.probst@gmail.com>
1608
1609         * method-to-ir.c: Use the managed array allocator method if
1610         available.
1611
1612 2009-10-13  Bill Holmes  <billholmes54@gmail.com>
1613
1614         * aot-compiler.c : Fix the MSVC builds
1615
1616         Code is contributed under MIT/X11 license.
1617
1618 2009-10-13  Zoltan Varga  <vargaz@gmail.com>
1619
1620         * aot-compiler.c (mono_save_xdebug_info): Group methods into groups of 10 to
1621         avoid registering 1 symbol file per method with gdb.
1622
1623 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1624
1625         * mini-sparc.c: Fix the handling of enums with base type long.
1626
1627         * mini-sparc.c (mono_arch_output_basic_block): Fix IREM_UN_IMM.
1628
1629         * mini-sparc.c (mono_arch_allocate_vars): Use mono_class_from_mono_type ()
1630         instead of using type->data.klass as the later doesn't work with generics.
1631
1632 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1633
1634         * method-to-ir.c, mini.h, mini-alpha.c, mini-amd64.c, mini-arm.c,
1635         mini-hppa.c, mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c,
1636         mini-s390x.c, mini-sparc.c, mini-x86.c: Thread.get_CurrentThread
1637         works differently now and we don't handle it in the JIT anymore.
1638
1639         * mini.c, mini-exceptions.c, mini-posix.c, debug-debugger.c,
1640         debug-mini.c, tramp-amd64.c, tramp-x86.c: Changes resulting from
1641         the Thread class split.
1642
1643 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * driver.c: Don't run tests with the obsolete treeprop optimization.
1646
1647         * mini-sparc.c (mono_arch_create_vars): Make the component vars of a long ret
1648         variable volatile. Fixes #541577.
1649
1650         * basic-calls.cs: Add a new test.
1651
1652         * basic-long.cs: Remove tests which are now in basic-calls.cs.
1653
1654 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1655
1656         * dwarfwriter.c (emit_debug_info_end): Disable this as it doesn't seem to
1657         work/required with recent iphone sdk versions.
1658
1659         * aot-compiler.c (add_wrappers): Generate PtrToStructure wrappers for more
1660         structures.
1661
1662         * decompose.c (mono_decompose_vtype_opts): Avoid reading uninitialized memory
1663         in the VCALL decomposition code.
1664
1665 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1666
1667         * mini-ia64.c (mono_arch_output_basic_block): Fix ISHR/ISHR_IMM.
1668
1669         * basic.cs: Add a test.
1670
1671         * mini-ia64.c (mono_arch_build_imt_thunk): Implement support the virtual
1672         generic invokes.
1673
1674         * mini-exceptions.c (mini_jit_info_table_find): New helper function which
1675         searches all the domains of the current thread.
1676
1677         * exceptions-<ARCH>.c: Use it. Fixes #539394.
1678
1679 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1680
1681         * exceptions-arm.c (mono_arm_throw_exception): Set ctx->ebp to fp instead of sp
1682         so catching exceptions thrown in the same method works. Fixes exception17.exe.
1683
1684         * tramp-arm.c (mono_arch_create_trampoline_code_full): Store NULL into lmf->method
1685         for non-jit trampolines.
1686
1687         * mini.c (mono_jit_runtime_invoke): Allow string ctors with dyn runtime invoke.
1688
1689         * aot-compiler.c (add_wrappers): Ditto.
1690
1691         * mini-arm.c: Implement support for passing vtypes and floats, and increase
1692         the size of the param area used by dyn_call to 6 which covers the majority of
1693         methods.
1694
1695         * mini.c aot-compiler.c: Allow dyn_call for string methods except ctors.
1696
1697         * mini-arm.c: Implement support for passing/receiving
1698         longs and receiving floats in the dyn_call code.
1699
1700         * mini-amd64.c: Implement support for receiving vtypes in registers in
1701         the dyn_call code.
1702
1703         * mini.c mini-amd64.c: Implement partial support for passing vtypes in
1704         the dyn_call code.
1705
1706 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1707
1708         * mini-arm.c (get_call_info): Return more precise information in
1709         ArgInfo->regtype.
1710         (dyn_call_supported): Use the information in CallInfo.
1711
1712         * mini-arm.c: Enable support for returning vtypes in the dyn_call code.
1713
1714         * mini.c mini-amd64.c: Enable support for returning vtypes in the dyn_call
1715         code.
1716
1717         * mini-arm.c: Update after the dyn_call api changes.
1718
1719         * mini.c (mini_create_jit_domain_info): Register a destructor function
1720         for the runtime_invoke_hash.
1721
1722         * mini-amd64.c (mono_arch_get_dyn_call_args): Rename this to
1723         'mono_arch_dyn_call_start'. Pass the pointer to the return value buffer to
1724         this function.
1725         (mono_arch_get_dyn_call_ret): Rename this to 'mono_arch_dyn_call_finish'.
1726         (dyn_call_supported): Simplify this by using get_call_info ().
1727         (mono_arch_dyn_call_free): New destructor function.
1728
1729         * generics.cs: Remove a printf.
1730
1731         * method-to-ir.c (mono_method_to_ir): Allocate some param area for DYN_CALL.
1732
1733         * mini-arm.c: Add support for enum return values and passing a few arguments
1734         on the stack.
1735         
1736         * mini.c (mono_jit_runtime_invoke): Add support for enum return values to
1737         dyn invoke.
1738
1739         * mini-amd64.c (mono_arch_get_dyn_call_ret): Ditto.
1740
1741         * aot-compiler.c (add_wrappers): Add a few restrictions for the use of
1742         the dynamic invoke wrappers.
1743
1744         * mini-arm.c: Implement OP_DYN_CALL for arm.
1745
1746         * aot-compiler.c (add_wrappers): Avoid aot-ing runtime invoke wrappers
1747         supported by the dynamic runtime invoke wrapper.
1748
1749         * aot-compiler.c aot-runtime.c: Add support for encoding the dynamic
1750         runtime invoke wrapper.
1751
1752         * mini.c (mono_jit_runtime_invoke): Use the dynamic runtime invoke wrappers
1753         if possible when running with full-aot.
1754
1755         * mini-ops.h: Add OP_DYN_CALL opcode.
1756
1757         * mini-amd64.c method-to-ir.c: Add infrastructure for making method calls
1758         with dynamic arguments lists similar to libffi.
1759
1760 2009-09-19  Zoltan Varga  <vargaz@gmail.com>
1761
1762         * method-to-ir.c: Fix the previous change on 64 bit platforms.
1763         
1764         * method-to-ir.c: Applied patch from Rodrigo Kumpera. Allow an i8 argument
1765         to NEWARR.
1766
1767         * iltests.il.in: Add a new test.
1768         
1769 2009-09-18  Zoltan Varga  <vargaz@gmail.com>
1770
1771         * aot-compiler.c (add_generic_instances): Add more instances of
1772         GenericEqualityComparer.
1773
1774 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1775
1776         * mini.c: Add asserts for mono_class_vtable calls that are not meant to fail.
1777
1778 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1779
1780         * method-to-ir.c: Handle failures from mono_class_vtable. Added some
1781         comments on some functions that now can fail.
1782
1783 2009-09-17  Andrew Jorgensen  <ajorgensen@novell.com>
1784
1785         * Makefile.am: Add Info.plist to EXTRA_DIST
1786
1787 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1788
1789         * method-to-ir.c (mono_method_to_ir): Allow AOT for CEE_LDTOKEN in
1790         static synchronized wrappers. Fixes #539500.
1791
1792 2009-09-14  Rodrigo Kumpera  <rkumpera@novell.com>
1793
1794         * jit-icalls.c (mono_class_static_field_address): handle vtable failure
1795         properly.
1796
1797 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1798
1799         * mini-exceptions.c (mono_handle_exception_internal): Store the computed
1800         lmf before calling filter clauses as well. Fixes #539550.
1801
1802         * exceptions.cs: Add a test.
1803         
1804 2009-09-14  Zoltan Varga  <vargaz@gmail.com>
1805
1806         * aot-compiler.c (add_generic_class): Add instances of
1807         Array.GetGenericValueImpl as well.
1808
1809         * Makefile.am (fullaotcheck): Copy and aot more assemblies so linq
1810         can be tested too.
1811
1812         * generics.cs: Add a fullaot linq test.
1813
1814 2009-09-10  Zoltan Varga  <vargaz@gmail.com>
1815
1816         * aot-compiler.c (arch_emit_static_rgctx_trampoline): Don't clobber argument
1817         reg r1 on arm.
1818
1819 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1820
1821         * mini-trampolines.c (mono_delegate_trampoline) : Call
1822           mono_cominterop_get_invoke if the delegate target object
1823           is a COM object.
1824
1825         Code is contributed under MIT/X11 license.
1826
1827 2009-09-09  Sebastien Pouliot  <sebastien@ximian.com>
1828
1829         * method-to-ir.c: For CoreCLR throw a SecurityException if an 
1830         internal call is defined outside platform code. Reduce code 
1831         duplication with existing [Method|Field]AccessException
1832
1833 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1834
1835         * mini-x86.c (mono_arch_emit_call): Don't reduce stack usage by 4
1836         if the return value is a small struct passed on regs.
1837
1838 2009-09-09  Zoltan Varga  <vargaz@gmail.com>
1839
1840         * cpu-arm.md mini-arm.c: Remove unused opcodes.
1841
1842         * mini-codegen.c: Enable the cpu description validation for arm.
1843
1844 2009-09-08  Zoltan Varga  <vargaz@gmail.com>
1845
1846         * basic-calls.cs: Move the test_0_float_load_and_store_with_big_offset ()
1847         test which depends on structs to objects.cs.
1848         
1849         * basic-calls.cs: Remove calls to Console.WriteLine and throws, since those
1850         require object model related stuff working.
1851
1852         * cpu-x86.md mini-x86.c: Remove more unused opcodes.
1853
1854         * mini-ops.h: Fix OP_BIGMUL instruction descriptions.
1855
1856         * mini-codegen.c (mono_local_regalloc): Validate the cpu description 
1857         against the instruction metadata in mini-ops.h. amd64 only for now.
1858
1859         * mini-ops.h: Fix some instruction descriptions.
1860
1861         * mini-ops.h mini-x86.c mini-amd64.c cpu-<ARCH>.md: Remove some
1862         unused instructions.
1863
1864 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
1865
1866         * exceptions.cs: Add a new test.
1867
1868 2009-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
1869
1870         * mini-x86.c (needs_stack_frame): OSX requires full frames to keep proper alignment.
1871
1872 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
1873
1874         * mini-llvm.c (mono_llvm_emit_method): Add a few more missing casts,
1875         skip empty phi opcodes.
1876         
1877         * mini-llvm.c (mono_llvm_emit_method): Handle unsigned volatile variables
1878         correctly by zero extending after loads. Skip methods containing calls
1879         to the monitor enter/exit trampolines.
1880
1881         * tramp-x86.c (mono_arch_create_trampoline_code): Align the stack
1882         when calling mono_thread_force_interruption_checkpoint ().
1883
1884         * mini.c (mini_method_compile): Disable llvm when AOT compiling.
1885
1886         * tramp-amd64.c (mono_arch_patch_callsite): Add support for 32 bit ->
1887         64 bit thunks.
1888         (mono_arch_nullify_class_init_trampoline): Read 'buf' instead of 'code'.
1889
1890         * mini-llvm.c (mono_llvm_emit_method): Add a few missing conversions so a 
1891         bootstrap could run.
1892
1893 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1894
1895         * mini.c (mini_init): Set callbacks.get_runtime_build_info ().
1896
1897 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1898
1899         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass the start
1900         of the method to
1901         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
1902         LLVM might be very short.
1903
1904         * mini-x86.c (mono_arch_output_basic_block): Maintain stack alignment
1905         in OP_THROW/RETHROW.
1906
1907         * exceptions-x86.c: Rewrite the throw trampolines so they maintain stack
1908         alignment on osx.
1909
1910 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1911
1912         * mini-amd64.c (mono_arch_get_vcall_slot): Pass the start of the method to
1913         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
1914         LLVM might be very short.
1915
1916 2009-09-01  Zoltan Varga  <vargaz@gmail.com>
1917
1918         * exceptions-x86.c (throw_exception): Fix the previous change by substracting
1919         the alignment for the value of sp.
1920
1921 2009-09-01  Geoff Norton  <gnorton@novell.com>
1922
1923         * mini.c (mono_get_lmf_addr): Fix jit_thread_attach for native to 
1924         managed wrappers in full aot.
1925
1926 2009-08-31  Zoltan Varga  <vargaz@gmail.com>
1927
1928         * exceptions-x86.c (get_throw_exception): Align the stack on osx.
1929
1930 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1931
1932         * mini-llvm-cpp.cpp mini-llvm.c: Update to latest llvm api.
1933
1934 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
1935
1936         * aot-compiler.c (emit_exception_debug_info): Emit ei->flags too.
1937
1938         * aot-runtime.c (decode_exception_debug_info): Decode ei->flags from the
1939         saved info.
1940
1941         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
1942
1943         * aot-runtime.c aot-compiler.c: Emit exception causes fully so we don't
1944         depend on the info MonoMethodHeader which could be missing in IL stripped
1945         assemblies.
1946
1947 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
1948
1949         * mini-arm.c (add_general): Fix the passing of 64 bit values on darwin, where
1950         they are only 4 byte aligned.
1951
1952 2009-08-21  Zoltan Varga  <vargaz@gmail.com>
1953
1954         * mini-arm.c (mono_arch_allocate_vars): Use FP as the frame pointer as
1955         was done previously, since using SP causes too many problems.
1956
1957         * exceptions-arm.c: Fix the handling of sp/fp so unwinding through
1958         frames without a frame pointer works.
1959
1960         * mini-arm.c (mono_arch_get_global_int_regs): Avoid using V5 as a
1961         global register in methods with calls, since the calls can go through
1962         a static rgctx trampoline which doesn't save it.
1963
1964 2009-08-19  Zoltan Varga  <vargaz@gmail.com>
1965
1966         * mini-arm.c (mono_arch_context_get_int_reg): Handle SP as well.
1967
1968 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1969
1970         * aot-compiler.c (add_generic_instances): Fix the net 1.1 build.
1971
1972 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1973
1974         * method-to-ir.c: Fix warnings for uninitialized variables.
1975
1976 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1977
1978         * mini-exceptions.c:
1979         * aot-compiler.c: Fix printf warnings.
1980
1981 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1982
1983         * aot-compiler.c (add_generic_instances): Add string[] wrapper methods.
1984         Add GetGenericValueImpl<string>.
1985         
1986         * aot-compiler.c (add_generic_instances): Add instances of
1987         GenericEqualityComparer<T> for primitive types. Only emit the array
1988         wrappers into the mscorlib image.
1989
1990 2009-08-15  Zoltan Varga  <vargaz@gmail.com>
1991
1992         * aot-runtime.c (load_method): Rename 'aot_module' -> 'amodule'. Allocate
1993         the methods_loaded array using amodule->info->nmethods.
1994
1995         * mini.h (MonoAotFileInfo): Add an 'nmethods' field.
1996         (MONO_AOT_FILE_VERSION): Bump this.
1997
1998         * aot-compiler.c: Emit more generic instances allowing some parts of linq
1999         to work.
2000
2001         * aot-runtime.c (mono_aot_get_unwind_info): Handle the case when the
2002         MonoJitInfo doesn't belong to its methods aot image.
2003
2004 2009-08-14  Zoltan Varga  <vargaz@gmail.com>
2005
2006         * mini-arm.c (mono_arch_allocate_vars): Use SP as the default frame reg.
2007
2008         * mini-arm.c: Fix warnings.
2009         
2010         * mini-arm.c (mono_arm_emit_load_imm): Only emit a movt if needed.
2011
2012         * mini-arm.c (mono_arm_emit_load_imm): Use movt/movw if the cpu
2013         supports it.
2014
2015 2009-08-12  Zoltan Varga  <vargaz@gmail.com>
2016
2017         * aot-compiler.c (arch_emit_imt_thunk): Rework the arm code to
2018         avoid clobbering IP.
2019
2020         * mini-trampolines.c (mono_magic_trampoline): Allocate a local to
2021         hold the trampoline argument, so its initial value is available during
2022         debugging.
2023
2024 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2025
2026         * exceptions-arm.c:
2027         * exceptions-hppa.c:
2028         * mini.c:
2029         * exceptions-s390x.c:
2030         * exceptions-mips.c:
2031         * exceptions-ppc.c:
2032         * exceptions-sparc.c:
2033         * exceptions-alpha.c:
2034         * aot-runtime.c:
2035         * mini-trampolines.c:
2036         * exceptions-x86.c:
2037         * exceptions-s390.c: add and use #define's instead of sizeof()
2038         for MonoJitInfo and MonoJitInfoTable.
2039
2040 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2041
2042         * tramp-arm.c:
2043         * tramp-amd64.c:
2044         * tramp-ppc.c:
2045         * tramp-x86.c: use a #define instead of sizeof() for a few
2046         structures that use a zero-length array.
2047
2048 2009-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
2049
2050         * method-to-ir.c (mono_method_to_ir/CEE_CONSTRAINED_): Handle the
2051         case when the method is dynamic. Fixes #529238.
2052
2053 2009-08-06  Zoltan Varga  <vargaz@gmail.com>
2054
2055         * mini.c (mono_jit_compile_method_inner): Throw an exception instead
2056         of asserting when a method is JIT compiled in full-aot mode.
2057
2058 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
2059         
2060         Contributed under the terms of the MIT/X11 license by
2061         Jerry Maine <crashfourit@gail.com>.
2062         
2063         * fixed wrong dates in changelog.
2064
2065 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
2066         
2067         Contributed under the terms of the MIT/X11 license by
2068         Jerry Maine <crashfourit@gail.com>.
2069
2070         * basic-simd.cs: added test for packed double square root.
2071         * cpu-amd64.md: added opcode info for packed double square root.
2072         * cpu-x86.md: added opcode info for packed double square root.
2073         * mini-ops.h: added IR opcode for packed double square root.
2074         * mini-x86.c: added IR to native translation code for packed double square root.
2075         * mini-amd64.c: removed todo for packed double square root.
2076         * simd-intrinsics.c: added method to IR opcode converstion for
2077         packed double square root.
2078
2079 2009-08-03 Jerry Maine <crashfourit@gmail.com>
2080
2081         Contributed under the terms of the MIT/X11 license by
2082         Jerry Maine <crashfourit@gail.com>.
2083
2084         * mini-amd64.c: Added a change to help tell the difference as 
2085         to what perpose the xmm register is being used--mainly to help
2086         with debuging.
2087         * mini-amd64.h: Changed callee regs to use 15 out of 16 
2088         (one used for special cases) xmm registers for both fp
2089         and simd ops. Added define to turn on new feature in the regalloc
2090         that allows fp and simd ops to share the xmm regs happily.
2091         * codegen.c: Added code to detect for which perpose an xmm reg is
2092         being used (fp or simd) and to translate back and forth to the
2093         correct logical reg bank (fp or simd) for 'spill load's.
2094
2095 2009-08-03 Jerry Maine <crashfourit@gmail.com>
2096
2097         Contributed under the terms of the MIT/X11 license by
2098         Jerry Maine <crashfourit@gail.com>.
2099
2100         * basic-simd.cs: Added tests for stressing the regalloc when running with
2101         16 simd regs and when simd and fp ops share the same reg bank.
2102
2103 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2104
2105         * method-to-ir.c (mini_emit_stobj): If we call mono_value_copy()
2106         in shared generic code, we might have to look up the class in the
2107         RGCTX.  If we use the class directly, compute its GC descriptor.
2108
2109 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2110
2111         * mini.c (mono_jit_runtime_invoke): Fix a warning.
2112
2113 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2114
2115         * mini.c (mono_jit_runtime_invoke): Initialize the class and
2116         check for errors. Fixed the case when the class with the Main
2117         method is broken.
2118
2119 2009-07-31 Jerry Maine <crashfourit@gmail.com>
2120
2121         Contributed under the terms of the MIT/X11 license by
2122         Jerry Maine <crashfourit@gail.com>.
2123
2124         * cpu-amd64.md: Fixed simple bug in machine discrition file.
2125
2126 2009-07-31  Zoltan Varga  <vargaz@gmail.com>
2127
2128         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_IREM_UN_IMM.
2129
2130 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2131
2132         * method-to-ir.c: Fix naming of stelem and ldelem.
2133
2134 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2135
2136         * driver.c (main_thread_handler): Check that the assembly loaded
2137         matches the filename when doing AOT.
2138
2139 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2140
2141         * mini.c: get_ip_from_sigctx installer has been removed, so don't
2142         call it anymore.
2143
2144         * mini-x86.h, mini-amd64.h, mini-ppc.h: UCONTEXT macros moved (to
2145         utils/mono-sigcontext.h).
2146
2147         * exceptions-amd64.c: Use the UCONTEXT_GREGS macro instead of an
2148         #ifdef.
2149
2150 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2151
2152         * mini.c (mono_codegen):
2153         Call profiler hook to keep track of method code buffers.
2154
2155 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2156
2157         * method-to-ir.c: Invoke write barriers for the
2158         Interlocked.(Compare)Exchange JIT intrinsics.
2159
2160 2009-07-26  Raja R Harinath  <harinath@hurrynot.org>
2161
2162         * Makefile.am (version.h): Fix issues when built out of tree.
2163         Remove some redundant 'grep's piped through 'sed's.
2164
2165 Fri Jul 24 17:28:37 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
2166
2167         This patch is contributed under the terms of the MIT/X11 license
2168
2169         * mini-ppc.c (mono_arch_output_basic_block):
2170         (OP_STOREI1_MEMBASE_REG): Handle 32-bit offsets combining addis
2171         for bits 32-47 with signed load/store diplacements for bits
2172         48-63.  Use prefered base/offset order for indexed form.
2173         (OP_STOREI2_MEMBASE_REG, OP_STORE_MEMBASE_REG): Same.
2174         (OP_LOAD_MEMBASE, OP_LOADI4_MEMBASE, OP_LOADU4_MEMBASE,
2175         OP_LOADI1_MEMBASE, OP_LOADU1_MEMBASE, OP_LOADU2_MEMBASE,
2176         OP_LOADI2_MEMBASE): Same.
2177         (OP_STORER8_MEMBASE_REG, OP_LOADR8_MEMBASE,
2178         OP_STORER4_MEMBASE_REG, OP_LOADR4_MEMBASE): Same.
2179         (OP_STOREI1_MEMINDEX): Use prefered base/offset order for
2180         indexed form.
2181         (OP_STOREI2_MEMINDEX, OP_STORE_MEMINDEX): Same.
2182         (OP_LOAD_MEMINDEX, OP_LOADI4_MEMINDEX, OP_LOADU4_MEMINDEX,
2183         OP_LOADU2_MEMINDEX, OP_LOADI2_MEMINDEX, OP_LOADU1_MEMINDEX,
2184         OP_LOADI1_MEMINDEX): Same
2185         (OP_LOADR4_MEMINDEX, OP_LOADR8_MEMINDEX, OP_STORER4_MEMINDEX,
2186         OP_STORER8_MEMINDEX): Same
2187         (OP_JMP): Use addis/addi sequence for int cfg->stack_usage
2188         computations.
2189         (mono_arch_emit_prolog): Handle 32-bit offsets combining addis
2190         for bits 32-47 with signed load/store diplacements for bits
2191         48-63.  Use prefered base/offset order for indexed form.
2192
2193 Fri Jul 24 16:57:12 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
2194
2195 This patch is contributed under the terms of the MIT/X11 license
2196
2197         * mini-ppc.c: Define PPC_MOVE_FPR_GPR and PPC_ISA_64.
2198         (mono_arch_get_vcall_slot): Fx pointer to int cast warning.
2199         (mono_arch_decompose_opts): Make OP_ICONV_TO_R4 and
2200         OP_ICONV_TO_R8 decompose conditional on !PPC_ISA_64.
2201         (mono_arch_output_basic_block) [OP_JMP]: Use ppc_load32 for
2202         cfg->stack_usage to avoid size warnings.
2203         (mono_arch_output_basic_block) [__mono_ppc64__]: Replace
2204         store/load sequence with mffgpr if PPC_MOVE_FPR_GPR is true.
2205         (mono_arch_output_basic_block) [!__mono_ppc64__]: For
2206         OP_ICONV_TO_R4 or OP_ICONV_TO_R8 and PPC_ISA_64 use fcfid
2207         to convert.
2208         (mono_arch_emit_prolog): Move mono_emit_unwind_op_def_cfa 
2209         after code varible is initialized.
2210         Add g_assert ppc_is_imm16 for ainfo->offset. Handle
2211         ainfo->size == 8 when ainfo->offset !ppc_is_imm16.
2212         (mono_arch_emit_epilog): 
2213         Move Use ppc_load32 for cfg->stack_usage to avoid size
2214         warnings.
2215
2216 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2217
2218         * method-to-ir.c: The write barrier doesn't do the store anymore,
2219         so we have always to emit it.  Also, emit the wbarrier after the
2220         store.
2221
2222 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2223
2224         * mini-arm.c (mono_arch_get_delegate_invoke_impls): Add a trampoline
2225         for argument count 3 too.
2226
2227 2009-07-23  Zoltan Varga  <vargaz@gmail.com>
2228
2229         * mini.c (mono_jit_compile_method_with_opt): Add an 'ex' argument to let
2230         the caller handle the exceptions.
2231         (mono_jit_runtime_invoke): Handle exceptions thrown while compiling the
2232         method. Fixes #524498.
2233
2234 2009-07-22  Geoff Norton  <gnorton@novell.com>
2235
2236         * mini-exceptions.c: Fix build on ia64.
2237
2238 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2239
2240         * mini-exceptions.c (ves_icall_get_frame_info): Use write
2241         barriers.
2242
2243 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2244
2245         * mini-arm.c (mono_arch_emit_prolog): Fix thread attaching in aot
2246         code.
2247
2248 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
2249
2250         * basic-simd.cs (Main): Pass args to the test driver.
2251
2252 2009-07-20  Geoff Norton  <gnorton@novell.com>
2253
2254         * mini-x86.h: Fix the x86 version guards to use Apple's
2255         properly defined macros.
2256
2257 2009-07-20  Geoff Norton  <gnorton@novell.com>
2258
2259         * mini-x86.c: Fix --trace on darwin-x86 and other systems which require
2260         aligned access.
2261
2262 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
2263
2264         * mini.c (mono_jit_runtime_invoke): Speed this up by adding a hash to
2265         MonoJitDomainInfo which maps MonoMethod's to a structure containing all
2266         the information which is needed for invokes, so only one locking+hash table
2267         lookup is needed.
2268
2269         * aot-compiler.c: Add a 'tool-prefix' option to be used when cross-compiling.
2270         
2271         * aot-compiler.c (add_generic_instances): Emit instances of 
2272         GenericComparer<T> for primitive types.
2273
2274 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2275
2276         * mini-posix.c: Fix linux build.
2277
2278 2009-07-19  Geoff Norton  <gnorton@novell.com>
2279
2280         * mini.h: Add prototypes for mono_runtime_syscall_fork and
2281         mono_gdb_render_native_backtraces
2282         * mini-darwin.c: Apple's syscall(SYS_fork) is very weird on x86,
2283         so we implement the sane semantics to the runtime here
2284         (mono_gdb_render_native_backtraces).  Apple also uses an ancient gdb
2285         so we need to call it differently (mono_gdb_render_native_backtraces)
2286         * mini-posix.c: Move the old semantics from mini.c to the prototypes
2287         here for default implementations.
2288         * mini.c: Refactor mono_handle_native_sigsegv so that we can properly
2289         support Apple's weird syscall (SYS_fork) implementation and not busy
2290         loop in abort() on native crashes on OSX anymore.
2291
2292 2009-07-18  Zoltan Varga  <vargaz@gmail.com>
2293
2294         * aot-runtime.c (load_method): Change the handling of the
2295         MONO_LASTAOT env variable so MONO_LASTAOT=0 means that no aot methods
2296         are used.
2297
2298         * mini.c (mono_patch_info_equal): Really fix the handling of RGCTX_FETCH.
2299
2300 2009-07-17  Zoltan Varga  <vargaz@gmail.com>
2301
2302         * mini.c (mono_patch_info_equal): Revert the last change for now as it
2303         seems to break the aot tests.
2304         
2305         * mini.c (mono_patch_info_equal): Fix the handling of 
2306         MONO_PATCH_INFO_RGCTX_FETCH.
2307
2308 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
2309
2310         * unwind.c: Use TARGET_AMD64 instead of __x86_64__.
2311
2312         * mini.c (mono_patch_info_hash): Fix the handling of 
2313         MONO_PATCH_INFO_INTERNAL_METHOD.
2314         (mono_patch_info_equal): Ditto.
2315
2316 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
2317
2318         * mini-llvm.c (mono_llvm_emit_method): Use module instead of ctx->module
2319         in a few places.
2320         
2321         * mini-llvm.c: Add some infrastructure for AOT support.
2322
2323 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
2324
2325         * mini-llvm-cpp.c: Update to the latest llvm api.
2326         
2327         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Set the EnablePrettyStackTrace
2328         option to false to prevent llvm from installing signal handlers which
2329         trip up the gc.
2330         
2331 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2332
2333         * cpu-x86.md:
2334         * cpu-amd64.md: Revert previous change as those instructions
2335         take 2 separate arguments. Remember to read the arch docs more
2336         carefully next time.
2337
2338 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
2339
2340         * mini-llvm-cpp.cpp (mono_llvm_build_alloca): Update to latest llvm api.
2341
2342 Wed Jul 15 17:20:27 CEST 2009 Paolo Molaro <lupus@ximian.com>
2343
2344         * mini-ppc.c: exploit multiple load/store units if available (rest of
2345         the change from Steven Munroe (<munroesj@us.ibm.com>) first patch at 
2346         http://bugzilla.novell.com/show_bug.cgi?id=487846).
2347
2348 Wed Jul 15 16:24:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2349
2350         * mini-ppc.c: integrate most of Steven Munroe (<munroesj@us.ibm.com>)
2351         first patch at http://bugzilla.novell.com/show_bug.cgi?id=487846.
2352
2353 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2354
2355         * cpu-x86.md: Fix missing clobbering from trancendental simd
2356         ops.
2357
2358         * cpu-amd64.md: Same.
2359
2360 2009-07-14 Jerry Maine <crashfourit@gmail.com>
2361
2362         Contributed under the terms of the MIT/X11 license by
2363         Jerry Maine <crashfourit@gail.com>.
2364
2365         * basic-simd.cs: Added tests for single and doulble indexers.
2366
2367         * cpu-amd64.md: Added simd opcode information.
2368
2369         * mini-amd64.c: Added IR to native simd generation code.
2370         Added simd register names and function that returns them.
2371
2372         * mini-amd64.h: Added marcos to turn on simd code compilation in
2373         amd64. Added max simd register count marco. Added caller/callee
2374         register mask marcos. Added marcos to use simd register bank.
2375
2376         * mini.h: Added helper marco for shufling dwords and simple
2377         floats.
2378
2379 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2380
2381         * mini-llvm-cpp.cpp: Update to latest llvm SVN api.
2382
2383         * Makefile.am (mono_LDADD): Pass LLVM_LDFLAGS to the linked.
2384
2385         * unwind.c (mono_unwind_get_ops_from_fde): Make this return
2386         the length of the native code as well.
2387
2388         * basic-simd.cs: Add a test for #521662.
2389
2390 Mon Jul 13 17:58:50 CEST 2009 Paolo Molaro <lupus@ximian.com>
2391
2392         * mini-ppc.c: fixed bug introduced by Steven's TLS changes.
2393
2394 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2395
2396         * mini.c: Register function for getting the IP from a signal
2397         context with metadata.
2398
2399 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2400
2401         * method-to-ir.c (mono_method_to_ir): When calling a gshared method,
2402         call a generic class init trampoline if needed. Fixes #519336.
2403
2404         * generics.cs: Add a test.
2405         
2406 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2407
2408         * method-to-ir.c: When doing a call which might be remote from
2409         shared generic code to other shared code with open type arguments,
2410         get the remoting invoke wrapper from the RGCTX and do an indirect
2411         call to it.
2412
2413 2009-07-03  Zoltan Varga  <vargaz@gmail.com>
2414
2415         * mini-trampolines.c (get_unbox_trampoline): Add an rgctx trampoline
2416         after the unbox trampoline in the full-aot case.
2417
2418 2009-07-02  jonas echterhoff <jonas@unity3d.com>
2419         
2420         * mini.c: Move initialization of jit_mutex before debugger initialization
2421         
2422         to avoid crashes.
2423         
2424         
2425         * Info.plist: added Info.plist and link flag to enable the mono executable
2426         to access other processes. Requires codesigning of the executable to work.
2427         
2428         * mdb-debug-info32-darwin.s: The same as mdb-debug-info32.s, changed to 
2429         
2430         compile on OS X.
2431         
2432
2433 2009-06-30  Zoltan Varga  <vargaz@gmail.com>
2434
2435         * driver.c (mini_regression): Handle loading errors. Fixes #508869.
2436
2437 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2438
2439         * mini-exceptions.c (get_generic_context_from_stack_frame): Fix the case
2440         when the generic instance is an instantiation of a subclass of the
2441         methods class. Fixes #517166.
2442
2443 2009-06-26  Zoltan Varga  <vargaz@gmail.com>
2444
2445         * mini-amd64.c (mono_arch_emit_prolog): Fix thread attaching in AOTed
2446         code.
2447
2448         * mini.c (mono_jit_thread_attach): Allow domain to be NULL for calls from
2449         AOTed code.
2450
2451         * CMakeLists.txt: Add minimal support for installation.
2452
2453 2009-06-25  Zoltan Varga  <vargaz@gmail.com>
2454
2455         * aot-compiler.c (emit_and_reloc_code): Factor out the code to
2456         determine whenever a method is directly callable to a separate function.
2457
2458         * mini-<ARCH>.c tramp-<ARCH>.c: Remove needless casts and add new
2459         needed ones as a result of the previous change.
2460
2461         * mini-<ARCH>.c tramp-<ARCH>.c: Use mgreg_t* as the
2462         type of register arrays.
2463
2464         * mini-trampolines.c tramp-<ARCH>.c aot-runtime.c: Use mgreg_t* as the
2465         type of register arrays.
2466
2467 2009-06-24  Jerry Maine  <crashfourit@gmail.com>
2468         
2469         Contributed under the terms of the MIT/X11 license by
2470         Jerry Maine <crashfourit@gail.com>.
2471
2472         * mini-amd64.c: Added code to convert simd IR to native amd64 sse.
2473
2474 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2475
2476         * aot-compiler.c (emit_plt): Define debug labels for most plt entries.
2477
2478 2009-06-24  Neale Ferguson <neale@sinenomine.net>
2479
2480         * mini-s390x.c: Correct LCONV_TO_Ix and ICONV_TO_Ix routines. Fix leave_method
2481         dump of structure return value. Fix some formatting.
2482         * cpu-s390x.md: Fix lengths of instruction sequences.
2483         * mini-s390.c: Minor formatting changes.
2484
2485 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2486
2487         * mini-x86.h: Applied patch from Romain Tartiere (romain@blogreen.org).
2488         Use sigaction on freebsd as well.
2489
2490 2009-06-23  Zoltan Varga  <vargaz@gmail.com>
2491
2492         * mini.h: Don't define MONO_ARCH_HAVE_TLS_GET to 0, as some code
2493         uses #ifdef on it.
2494         
2495         * mini.c (mini_init): Revert a change which breaks cross-compilation.
2496
2497 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2498
2499         * mini-ppc.c, cpu-ppc.md: Enable TLS on Darwin/G4.
2500
2501 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2502
2503         * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
2504
2505 2009-06-20  Martin Baulig  <martin@ximian.com>
2506
2507         * debug-mini.c
2508         (MonoDebuggerThreadFlags): New enum typedef.
2509         (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
2510         (mono_debugger_thread_created): Added `gpointer func' argument;
2511         initialize the new `thread_flags' field.
2512
2513 2009-06-18  Martin Baulig  <martin@ximian.com>
2514
2515         * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
2516         (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
2517
2518         * debug-debugger.c
2519         (mini_debugger_set_attach_ok): New function; sets the attach-ok
2520         flag in `MONO_DEBUGGER__info.runtime_info'.
2521
2522         * driver.c
2523         (mono_main): Call mini_debugger_set_attach_ok() if generics
2524         sharing is disabled.
2525
2526 2009-06-22  Zoltan Varga  <vargaz@gmail.com>
2527
2528         * aot-compiler.c (add_wrappers): Fix a warning.
2529
2530         * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
2531         the ppc load/store macro changes.
2532
2533 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2534
2535         * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
2536
2537         * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
2538         not just the got symbol.
2539
2540         * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
2541         on ppc.
2542
2543         * aot-compiler.c unwind.c: Add infrastructure for unwind support on
2544         ppc.
2545         
2546         * aot-compiler.c: Remove some fixmes.
2547
2548         * driver.c (mono_main): Print a helpful message when cross-compiling.
2549
2550         * mini.c (mini_init): Disable signal handlers when cross-compiling.
2551
2552         * method-to-ir.c (initialize_array_data): Do the optimization if the
2553         target byte order is little endian, instead of the host byte order.
2554
2555         * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
2556         wrappers into the mscorlib image, Emit a unique plt symbol for each
2557         image, emit symbols for plt entries.
2558
2559         * image-writer.c (img_writer_emit_symbol_size): New function to emit
2560         a .size directive.
2561         
2562 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
2563
2564         * aot-compiler.c (add_wrappers): Avoid calling 
2565         mono_marshal_get_type_info () since it can assert for some types.
2566
2567         * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of 
2568         ldtoken are used inside wrappers.
2569
2570         * helpers.c: Add support for prefixing tools with the arch name.
2571
2572         * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
2573         quantities when using ilp32.
2574
2575         * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
2576         spill slots. Use sizeof(mgreg_t) for the spill slot size.
2577
2578         * image-writer.c: Use .long on ilp32.
2579
2580         * aot-compiler.c: Use 32 bit loads on ilp32.
2581         
2582 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2583
2584         * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
2585
2586         * mini-ops.h: Use TARGET_POWERPC define for consistency.
2587
2588         * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
2589
2590         * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the 
2591         second got slot of every aot image.
2592         
2593         * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
2594         aot on platforms with function pointers.
2595
2596         * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
2597         support for aot/full aot on ppc/ppc64.
2598         
2599         * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
2600         arguments which are needed on ppc.
2601
2602         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
2603         argument.
2604
2605         * mini-trampolines.c aot-runtime.c: Update after the above changes.
2606         
2607         * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
2608
2609         * regalloc2.c (BITS_PER_CHUNK): Ditto.  
2610
2611         * aot-compiler.c (emit_got_info): Fix reading unused memory.
2612
2613         * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
2614
2615 2009-06-17  Geoff Norton  <gnorton@novell.com>
2616
2617         * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
2618
2619 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2620
2621         * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
2622         to control whenever the dwarf writer is in xdebug or aot mode.
2623         (emit_class_dwarf_info): Use a separate abbrev for structures without
2624         children.
2625
2626         * aot-compiler.c: Pass the appending parameter to 
2627         mono_dwarf_writer_create ().
2628
2629         * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
2630         falls through to its next bblock. Fixes #513931.
2631
2632         * iltests.il: Add a test.
2633
2634         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
2635         infor even if emit_line is FALSE, as the apple linker seems to require it.
2636
2637         * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
2638
2639         * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
2640         gcc does.
2641         (emit_fde): Ditto.
2642
2643 2009-06-15  Zoltan Varga  <vargaz@gmail.com>
2644
2645         * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
2646         mips build.
2647
2648 2009-06-13  Zoltan Varga  <vargaz@gmail.com>
2649
2650         * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and 
2651         'has_call_handler' fields.
2652
2653         * method-to-ir.c (mono_method_to_ir): Set them if needed.
2654
2655         * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
2656         first bblock if not needed. Fixes #512790.
2657         
2658 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2659
2660         * aot-compiler.c (mono_compile_assembly): Fix a warning.
2661         
2662         * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
2663         wrappers.
2664
2665         * aot-runtime.c (mono_aot_get_method): Use the original method's code for
2666         remoting-invoke-with-check wrappers, which are not needed when running with
2667         full-aot, since it doesn't support remoting.
2668         
2669 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2670
2671         * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
2672
2673         * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
2674         method info, it is not used anymore.
2675
2676         * mini.h: Bump AOT file format version.
2677         
2678         * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
2679         word smaller.
2680
2681         * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
2682         change above.
2683         
2684         * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
2685
2686         * mini.h: Bump AOT file format version.
2687         
2688 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2689
2690         * image-writer.c (asm_writer_emit_symbol_diff): Disable the 
2691         TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
2692         iphone.
2693
2694         * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
2695         of CKFINITE and FBGE for VFP.
2696
2697 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
2698
2699         * aot-compiler.c: Don't align code to 16 bytes on arm.
2700         
2701         * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
2702         before the methods they belong to.
2703
2704         * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
2705         the full-aot case if possible, since the trampoline will be called right 
2706         away.
2707
2708         * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
2709         trampolines to 1024 after the change above.
2710
2711         * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
2712         trampoline to save 8 bytes per trampoline.
2713
2714         * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
2715         change above.
2716
2717 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
2718
2719         * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
2720
2721 2009-06-08  Martin Baulig  <martin@ximian.com>
2722
2723         * debug-mini.c
2724         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
2725         (_mono_debugger_throw_exception): Don't make this static.
2726         (_mono_debugger_unhandled_exception): Likewise.
2727         (mono_debugger_handle_exception): Moved to mini-exceptions.c
2728
2729         * debug-mini.c
2730         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
2731         (_mono_debugger_throw_exception): Add function prototype.
2732         (_mono_debugger_unhandled_exception): Likewise.
2733
2734         * mini-exceptions.c
2735         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
2736         arg; return the first exception handler if the exception is caught
2737         and we're running inside the debugger.
2738         (mono_debugger_handle_exception): Moved here from debug-mini.c;
2739         improve exception handle inside runtime-invoke, check whether the
2740         exception is actually caught in the method being invoked and not
2741         by the runtime-invoke-wrapper.
2742
2743 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
2744
2745         * image-writer.c: Improve support for the osx assembler.
2746
2747         * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
2748         support them.
2749
2750 2009-06-08  Martin Baulig  <martin@ximian.com>
2751
2752         * debug-mini.c
2753         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
2754         (_mono_debugger_throw_exception): Don't make this static.
2755         (_mono_debugger_unhandled_exception): Likewise.
2756         (mono_debugger_handle_exception): Moved to mini-exceptions.c
2757
2758         * debug-mini.c
2759         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
2760         (_mono_debugger_throw_exception): Add function prototype.
2761         (_mono_debugger_unhandled_exception): Likewise.
2762
2763         * mini-exceptions.c
2764         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
2765         arg; return the first exception handler if the exception is caught
2766         and we're running inside the debugger.
2767         (mono_debugger_handle_exception): Moved here from debug-mini.c;
2768         improve exception handle inside runtime-invoke, check whether the
2769         exception is actually caught in the method being invoked and not
2770         by the runtime-invoke-wrapper.
2771
2772 2009-06-07  Zoltan Varga  <vargaz@gmail.com>
2773
2774         * image-writer.c (append_subsection): Don't align subsections of the
2775         debug_line section as a workaround.
2776
2777         * dwarfwriter.c: Emit line number info in the AOT case as well.
2778
2779 2009-06-06  Steven Munroe  <munroesj@us.ibm.com>
2780
2781         This patch is contributed under the terms of the MIT/X11 license
2782
2783        * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
2784        code_len <= code_size
2785
2786 2009-06-06  Zoltan Varga  <vargaz@gmail.com>
2787
2788         * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
2789
2790 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2791
2792         * aot-compiler.c aot-runtime.c: Delete references to static rgctx
2793         invoke wrappers, we now use trampolines instead.
2794
2795 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2796
2797         * mini-darwin.c: The exception thread must not be registered with
2798         the GC.
2799
2800 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2801
2802         * mini-gc.c: Disable the code because it makes SGen crash.
2803
2804 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
2805
2806         * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
2807         instead of asserting.
2808
2809 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2810
2811         * aot-compiler.c (mono_compile_assembly): Move the creation of the
2812         output file after the code has been compiled.
2813
2814 2009-05-30  Zoltan Varga  <vargaz@gmail.com>
2815
2816         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
2817
2818 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2819
2820         * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
2821         entries distinction to simplify the code.
2822
2823         * mini.h: Bump AOT file format version.
2824         
2825 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
2826
2827         * objects.cs: Fix the signature of one of the tests.
2828
2829         * mini.c (mini_create_ftnptr): New helper function, moved here from
2830         object.c.
2831         (mini_get_addr_from_ftnptr): Ditto.
2832         (mini_init): Install the new helpers.
2833
2834 2009-05-28  Martin Baulig  <martin@ximian.com>
2835
2836         Correctly initialize the debugger when embedding Mono.
2837
2838         * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
2839         `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
2840         see documentation in mini_debug_running_inside_mdb().
2841
2842         * debug-debugger.c
2843         (mini_debug_running_inside_mdb): New function to check whether
2844         we're running inside mdb.
2845
2846         * mini.c (mini_init): Call mini_debugger_init() if we're running
2847         inside the debugger.
2848
2849         * driver.c (mono_main): Moved the call to mini_debugger_init()
2850         into mini_init() to make this work when embedding Mono.
2851
2852         * debug-debugger.c (mini_debugger_init): Warn about duplicate
2853         calls to mini_debugger_init().
2854
2855         * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
2856         mono_debugger_main() -> mini_debugger_main() and put them inside a
2857         `MONO_DEBUGGER_SUPPORTED' conditional.
2858
2859 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
2860
2861         * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
2862         this is no longer in use.
2863         * mini.h: Same.
2864
2865 2009-05-26  Zoltan Varga  <vargaz@gmail.com>
2866
2867         * mini-sparc.c (add_outarg_load): Fix the sparc build.
2868
2869         * aot-compiler.c (emit_method_code): Always write out C style symbols for
2870         methods.
2871
2872 2009-05-27  Martin Baulig  <martin@ximian.com>
2873
2874 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2875
2876         * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
2877         long_conv_to_r_un to 64 bits.
2878
2879         * cpu-x86.md: Increase the instruction size due to the changes.
2880
2881         * iltests.il.in: Add regression test.
2882
2883         Fixes #467201.
2884
2885 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2886
2887         * objects.cs: Move the previous test from basic.cs to here.
2888
2889 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2890
2891         * basic.cs: Add regression test for #506915.
2892
2893 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2894
2895         * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
2896         optimization we must check the bb of the first byte of stobj as
2897         it's the only one set in cil_offset_to_bb.
2898
2899         Fixes #506915.  
2900
2901 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
2902
2903         * image-writer.c: Fix pointer directive on ppc64.
2904
2905 2009-05-24  Zoltan Varga  <vargaz@gmail.com>
2906
2907         * image-writer.c (asm_writer_emit_section_change): Avoid using
2908         .bss subsections on ppc too.
2909
2910 2009-05-23  Zoltan Varga  <vargaz@gmail.com>
2911
2912         * image-writer.c: Fix the definition of TARGET_ASM_....
2913         
2914         * image-writer.c: Fix the emission of assembler directives in the last
2915         change.
2916
2917         * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
2918         exception throwing code to accomodate ppc64.
2919
2920         * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
2921         size to work on ppc64 too.
2922
2923         * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
2924         too.
2925
2926         * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
2927         the assembler dialect instead of using platform specific defines.
2928
2929 2009-05-22  Geoff Norton  <gnorton@novell.com>
2930
2931         * mini-arm.c (get_call_info): If a structure is split between the stack
2932         and argument registers, we should not advance the stack pointer by the entire
2933         native size, but just by the amount that spilled.
2934
2935 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
2936
2937         * mini-arm.c (get_call_info): Handle structures with alignment requirements
2938         correctly.
2939
2940 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2941
2942         * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
2943         wrappers normally.
2944         
2945         * aot-compiler.c (add_extra_method): Fix up the collection of extra
2946         methods so wrapper don't get added twice.
2947         (add_generic_instances): Don't add methods of arrays.
2948
2949         * generics.cs: Mark one test as !FULLAOT.
2950
2951 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2952
2953         * mini-x86.c (emit_move_return_value): Remove unused vars.
2954
2955 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
2956
2957         * mini-x86.c (mono_arch_emit_call): The decompose code now supports
2958         decomposing 8 bytes structs into a LCALL.
2959
2960         * mini-x86.c (emit_move_return_value): We no longer push the vtype
2961         pointer for where to store the returned regs.
2962
2963         * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
2964         state the concern.
2965
2966         Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
2967
2968 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2969
2970         * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
2971         without getenv.
2972
2973 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2974
2975         * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
2976
2977         * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
2978         generics.
2979
2980 2009-05-20 Rodrigo Kumpera  <rkumpera@novell.com>
2981
2982         * local-propagation.c (mono_local_cprop): Avoid local propagation
2983         across paired add/sub if the first instruction dest reg is it's
2984         source reg. For example:
2985
2986         int_add_imm R12 <- R12 [1] clobbers: 1
2987         int_sub_imm R42 <- R12 [1] clobbers: 1
2988
2989         The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
2990         maintain the math identify.
2991
2992         Fixes #505375.
2993
2994 2009-05-20  Andreia Gaita  <avidigal@novell.com>
2995
2996         * Makefile.am: avoid going on the network just to get the revision,
2997         use git log instead
2998
2999 2009-05-19  Massimiliano Mantione  <massi@ximian.com>
3000
3001         Fixed estimate for short branches on amd64 (they were off mark, and
3002         enabling call prolog-epilog instrumentations caused assertions).
3003         * mini.h (struct MonoBasicBlock): added max_length field to hold the
3004         estimate for the maximum length of this basic block.
3005         * mini-amd64.c:
3006         - mono_arch_emit_prolog: compute max_length for each basic block
3007           (instead of max_offset), and inflate size estimate also for entry bb
3008           in case of code instrumentation.
3009         - mono_arch_output_basic_block: get rid of "cpos" (the current
3010           estimated "position" in the code), and always use "offset" instead,
3011           which is accurate; at the beginning of the function quickly recompute
3012           max_offset for all the remaining blocks, starting from the current
3013           cfg->code_len (which is correct, and not estimated) and using the
3014           estimated block lengths computed previously.
3015
3016 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3017
3018         * exceptions-ppc.c: Remove the caching from the trampoline creation 
3019         functions, it is already done in the caller.
3020
3021         * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
3022
3023         * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add 
3024         MONO_ARCH_GSHARED_SUPPORTED define.
3025
3026         * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
3027
3028         * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
3029         function.
3030
3031 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3032
3033         * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the 
3034         call to mono_marshal_get_rgctx_invoke ().
3035
3036         * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
3037         mono_marshal_get_static_rgctx_invoke (), all platforms which support
3038         gshared use the static rgctx trampolines now.
3039         
3040         * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
3041         platform supports it.
3042
3043 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3044
3045         * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
3046
3047         * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
3048
3049 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3050
3051         * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
3052
3053         * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
3054         for ppc.
3055
3056 2009-05-15  Massimiliano Mantione  <massi@ximian.com>
3057
3058         Made it possible for mono_arch_instrument_epilog to preserve
3059         argument registers, otherwise instrumenting the "epilogue" before
3060         a tail call would clobber them.
3061         * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
3062         if like mono_arch_instrument_epilog but with an additional parameter
3063         that states if argument registers must be preserved.
3064         * mini.c: implemented mono_arch_instrument_epilog as a call to
3065         mono_arch_instrument_epilog_full without asking to preserve argument
3066         registers (this makes the existing code work as usual).
3067         * mini-amd64.c:
3068         - mono_arch_instrument_epilog: add parameter to transform it into
3069         mono_arch_instrument_epilog_full, and preserve argument registers
3070         when required.
3071         - mono_arch_output_basic_block, OP_TAILCALL case: call
3072         mono_arch_instrument_epilog_full.
3073         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
3074         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
3075         only transformed mono_arch_instrument_epilog into
3076         mono_arch_instrument_epilog_full.
3077
3078 2009-05-15  Geoff Norton  <gnorton@novell.com>
3079
3080         * mini-darwin.c: This works on arm now.
3081
3082 2009-05-14  Geoff Norton  <gnorton@novell.com>
3083
3084         * jit.h, driver.c: Allow full-aot to be decided programatically by the
3085         embedding api.
3086
3087 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
3090         label names.
3091
3092         * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
3093         wrappers during full aot mode correctly.
3094
3095         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
3096         methods correctly.
3097
3098         * aot-compiler.c (mono_aot_method_hash): Use our internal version of
3099         mono_metadata_type_hash ().
3100
3101 2009-05-14  Massimiliano Mantione  <massi@ximian.com>
3102
3103         * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
3104         mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
3105         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
3106         Removed MONO_INST_BRLABEL from the instruction flags, and the
3107         remaining code that used it, because we do not support branches inside
3108         basic blocks (and branch target labels) anymore.
3109         * Makefile.am: As part of the above cleanup, remove reference to
3110         BURG files which don't exist anymore.
3111
3112 2009-05-14  Zoltan Varga  <vargaz@gmail.com>
3113
3114         * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
3115         osx.
3116
3117         * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
3118         to use mono_arch_throw_corlib_exception.
3119
3120         * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use 
3121         mono_arch_throw_corlib_exception for throwing corlib exceptions.
3122
3123         * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
3124         domain mempool.
3125
3126         * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
3127
3128         * aot-compiler.c: Emit a local symbol prefixed with the assembly name 
3129         for the got to make debugging easier and to avoid confusing it with the
3130         system got.
3131         
3132         * aot-compiler.c (emit_method_code): Emit a C style symbol for each
3133         method so a breakpoint can be set when using gdb.
3134
3135 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3136
3137         * aot-compiler.c (mono_aot_method_hash): Implement this properly based
3138         on mono_method_get_imt_slot ().
3139
3140         * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
3141         num_decodes variables.
3142
3143         * aot-compiler.c (mono_aot_method_hash): Revert part of the last
3144         change as it doesn't seem to work.
3145         
3146         * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
3147         wrappers.
3148
3149 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3150
3151         * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill 
3152         MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
3153
3154         * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
3155         builder when using full aot.
3156
3157         * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
3158         here, it is already handled.
3159         
3160         * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
3161         correctly for IMT.
3162
3163         * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
3164
3165         * mini-arm.h: Enable IMT for full aot.
3166         
3167         * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
3168         arch doesn't support it.
3169
3170         * mini.c (mini_init): Don't disable IMT for full aot if the
3171         architecture supports it.
3172
3173         * mini.h (MonoAotTrampoline): New enum containing the different types
3174         of 'numerous' trampolines.
3175         (MONO_AOT_FILE_VERSION): Bump this.
3176
3177         * aot-compiler.c aot-runtime.c: Unify the handling of specific and
3178         static rgctx trampolines. Add support for full-aot IMT thunks.
3179
3180         * mini-amd64.h: Enable IMT for full aot.
3181
3182         * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
3183         to exclude tests belonging to a category.
3184
3185         * generics.cs: Mark some tests with a !FULLAOT category.
3186
3187         * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
3188         generics tests.
3189
3190 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
3191
3192         * aot-compiler.c (emit_and_reloc_code): Move the implementation of
3193         MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
3194         (emit_plt): Fix a warning.
3195
3196 2009-05-10  Zoltan Varga  <vargaz@gmail.com>
3197
3198         * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
3199         back into aot-compiler.c to a place where the other functions shared by
3200         the runtime and aot compiler are.
3201         
3202         * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
3203         as done previously, instead of in MonoAotFileInfo, since pointers might have
3204         alignment requirements.
3205
3206         * mini.h: Bump AOT file format version.
3207
3208 2009-05-10  Miguel de Icaza  <miguel@novell.com>
3209
3210         * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
3211         that is used at runtime from the aot-compiler.c, this makes it
3212         work on setups that remove the AOT compiler from the output
3213         image. 
3214
3215 2009-05-09  Zoltan Varga  <vargaz@gmail.com>
3216
3217         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
3218         PPC.
3219
3220         * mini-ppc.h: Enable static rgctx trampolines for ppc.
3221
3222         * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
3223
3224         * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific 
3225         stuff to mono_arch_decompose_long_opts ().
3226         (mono_decompose_opcode): Remove some dead code.
3227
3228 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
3229
3230         * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
3231         cmethod can be null for quite a some reasons.
3232
3233 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
3234
3235         * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
3236
3237 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3238
3239         * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
3240
3241 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3242
3243         * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
3244         (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
3245         whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
3246         calls returning structures by addr on amd64.
3247
3248         * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
3249
3250         * iltests.il.in: Restructure the tail call tests a bit.
3251         
3252 2009-05-07  Zoltan Varga  <vargaz@gmail.com>
3253
3254         * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
3255         for virtual methods too.
3256
3257 2009-05-06  Raja R Harinath  <harinath@hurrynot.org>
3258
3259         * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
3260         due to regression in verifying System.dll.
3261
3262 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3263
3264         * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
3265         in dynamic methods.
3266
3267         * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
3268         instances.
3269
3270         * aot-compiler.c aot-runtime.c: Use our own hash function instead of
3271         g_str_hash () which can change.
3272
3273         * driver.c (mini_regression): Disable optimizations not supported by
3274         the cpu. Fixes #500019.
3275
3276         * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
3277         build.
3278
3279 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3280
3281         * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
3282         to the latest LLVM code.
3283
3284 2009-05-05  Zoltan Varga  <vargaz@gmail.com>
3285
3286         * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
3287
3288 2009-05-04  Zoltan Varga  <vargaz@gmail.com>
3289
3290         * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on 
3291         x86/amd64.
3292
3293         * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
3294         no longer saving offsets, so just save the patch types along with the other
3295         info.
3296         * aot-runtime.c (load_patch_info): Update after the changes to 
3297         encode_patch_list ().
3298         (decode_got_entry): Removed, merged into load_patch_info ().
3299         (is_shared_got_patch): Removed, call the same function from
3300         aot-compiler.c.
3301
3302         * mini.h: Bump aot file format version.
3303         
3304         * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
3305         half-finished no-dlsym code.
3306
3307         * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
3308         option.
3309
3310         * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the 
3311         MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
3312
3313 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3314
3315         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
3316         buffer length to work with AOT code.
3317
3318         * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
3319         ldfld/stfld opcodes.
3320
3321         * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
3322         as it is not used.
3323
3324         * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
3325
3326         * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
3327
3328         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
3329         LLVM API.
3330
3331         * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
3332         if needed. Don't decompose long operations when using llvm.
3333
3334 2009-05-01  Zoltan Varga  <vargaz@gmail.com>
3335
3336         * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
3337         PAGESIZE constant.
3338
3339         * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
3340
3341 2009-05-03  Martin Baulig  <martin@ximian.com>
3342
3343         * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
3344         mono_debugger_insert_method_breakpoint() since the class init
3345         handler we're inserting at the top of the method already gives us
3346         a notification.
3347
3348 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3349
3350         * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
3351         to mono_arch_decompose_long_opts () for x86 and arm.
3352
3353 2009-04-29  Zoltan Varga  <vargaz@gmail.com>
3354
3355         * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
3356         TARGET_AMD64 here.
3357
3358 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3359
3360         * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
3361         JIT code.
3362
3363 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
3364
3365         * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
3366         number of trampolines used in full-aot mode.
3367
3368         * aot-compiler.c: Add an ntrampolines option to set the number of 
3369         trampolines emitted in full-aot mode.
3370
3371 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3372
3373         * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
3374         a volatile load. Get rid of get_tempname (), llvm assigns names
3375         automatically.
3376
3377         * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
3378         builder function.
3379
3380         * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
3381         a value.
3382
3383         * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
3384         level 1.
3385
3386         * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
3387         to the same register as a fixed sreg2. Fixes #497271.
3388
3389         * iltests.il.in: Add a new test.
3390
3391 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
3392
3393         * mini-amd64.c: Use moves instead of pushes for passing arguments on the
3394         stack, since pushes complicate exception handling.
3395
3396         * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
3397         the stack if they are passed using moves.
3398
3399         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
3400
3401         * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
3402         when using llvm.
3403
3404         * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the 
3405         icalls themselves. Convert arguments of FCOMPARE. Convert the destination
3406         of FMOVE if it is an R4.
3407
3408 2009-04-25  Zoltan Varga  <vargaz@gmail.com>
3409
3410         * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
3411
3412         * mini.h (LLVMCallInfo): New structure to store calling convention 
3413         information for the LLVM back end similar to the CallInfo structures in 
3414         the back-ends.
3415
3416         * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
3417         call information in a format usable by LLVM.
3418         (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
3419
3420         * method-to-ir.c (mono_emit_call_args): Emit calls using 
3421         mono_llvm_emit_call () when compiling using LLVM.
3422
3423         * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
3424         comments to all functions. Fix memory leaks. Add a public init/cleanup
3425         function.
3426
3427         * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
3428
3429         * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
3430         mono_array_new_va () jit icall.
3431         
3432 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
3433
3434         * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
3435         multiple machine description files to be specified.
3436         * mini-ops.h: fixes for cross-compilation.
3437
3438 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3439
3440         * aot-runtime.c (make_writable): Use mono_mprotect to simplify
3441         some porting work.
3442
3443 2009-04-22  Zoltan Varga  <vargaz@gmail.com>
3444
3445         * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
3446         to prevent asserts in various passes. Fixes #497220.
3447
3448 2009-04-21  Zoltan Varga  <vargaz@gmail.com>
3449
3450         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
3451         a racy assert.
3452
3453         * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
3454         table to avoid duplicates.
3455
3456         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3457         
3458         * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
3459         option is used.
3460
3461 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3462
3463         * mini.c (mini_method_verify): Fail fulltrust code if the exception
3464         is for method or field access.
3465
3466 2009-04-20  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
3469         a Value to stdout.
3470
3471         * mini-llvm.c (mono_llvm_emit_method): Use it.
3472         
3473         * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
3474         (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
3475         on volatile values.
3476
3477         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for 
3478         synchronized methods.
3479
3480         * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
3481
3482         * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
3483
3484         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
3485         OP_LOADI8_MEM.
3486
3487         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
3488         allowing some options to be set dynamically.
3489
3490 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3491
3492         * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
3493         unconditional branch.
3494
3495         * mini.h (MonoTrampolineType): Add new trampoline type 
3496         'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
3497         compiled code.
3498
3499         * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline 
3500         function.
3501
3502         * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
3503         creation function.
3504
3505         * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
3506         is enabled. Instead, use the llvm vcall trampoline.
3507         
3508         * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
3509
3510         * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
3511         
3512         * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
3513         functions.
3514
3515         * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of 
3516         MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
3517
3518         * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
3519         OP_IA64_CSET opcode.
3520
3521         * mini.c: Fix a warning.
3522
3523         * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
3524         THROW to the appropriate llvm type.
3525
3526 2009-04-18  Zoltan Varga  <vargaz@gmail.com>
3527
3528         * mini.c (mini_method_compile): Add statistics for methods JITted
3529         with/without LLVM.
3530
3531 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
3532
3533         * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
3534         OP_IA64_CMP_<cond>_IMM opcodes.
3535
3536 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
3537
3538         * mini-llvm.c (emit_cond_system_exception): Implement throwing of
3539         corlib exceptions.
3540
3541         * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
3542         correctly.
3543
3544         * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
3545         GENERICINST.
3546
3547 2009-04-17  Atsushi Enomoto  <atsushi@ximian.com>
3548
3549         * mini-exceptions.c : add thread id to EXCEPTION trace message.
3550
3551 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
3552
3553         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
3554         support.
3555
3556         * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
3557         rgctx invoke trampolines for x86.
3558
3559         * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
3560         indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
3561         (mono_arch_get_vcall_slot): Simplify this.
3562
3563 2009-04-16  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
3566         mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
3567
3568 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3569
3570         * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx 
3571         trampolines for ARM. Add full-aot support for delegate invokes for ARM.
3572
3573         * mini-trampolines.c (mono_magic_trampoline): Fix the build.
3574
3575         * liveness.c (visit_bb): Remove a needless assert.
3576
3577 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
3578
3579         * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
3580         full aot support to the arch specific code.
3581
3582         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
3583
3584         * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
3585
3586         * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
3587         
3588         * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
3589         collect information about the delegate invoke impl trampolines.
3590
3591         * mini.h (MonoAotTrampInfo): New structure collecting the information needed
3592         to save trampolines during full-aot mode.
3593
3594         * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
3595         creation function which returns a trampoline which sets the rgctx
3596         argument.
3597         (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
3598         wrapper if possible.
3599         (mono_delegate_trampoline): Ditto.
3600
3601         * mini.c (mono_jit_runtime_invoke): Ditto.
3602
3603         * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
3604         
3605         * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
3606
3607         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3608         
3609 2009-04-12  Zoltan Varga  <vargaz@gmail.com>
3610
3611         * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
3612         just setting the opcode to OP_NOP.
3613
3614 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
3615
3616         * mini.c (mini_method_compile): Put the last change inside an 
3617         #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
3618         
3619         * mini.c (mini_method_compile): Disable sharing of stack slots/registers
3620         and extend live ranges to cover the whole method when using xdb.
3621
3622         * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
3623         do it in the trampolines.
3624
3625         * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
3626         needed.
3627
3628         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
3629         
3630         * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
3631         call code in full-aot mode since IMT is disabled there.
3632         (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
3633         new JIT no longer has that restriction.
3634
3635         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3636
3637         * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
3638         a more compact format.
3639         (mono_aot_wrapper_name): New function to return a unique name for a
3640         wrapper method, also used by the AOT runtime.
3641
3642         * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
3643         aot-compiler.c.
3644
3645         * aot-compiler.c (add_generic_class): Add the helper methods from T[]
3646         when a ICollection<T> etc is encountered.
3647         (add_generic_instances): Process method arguments/locals too.
3648         (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
3649         trampoline names.
3650
3651         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
3652         
3653 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
3654
3655         * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
3656
3657         * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
3658
3659         * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
3660         representing the result of the decomposition. Nullify instructions
3661         instead of setting them to OP_NOP since nops can't have registers
3662         set.
3663
3664 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
3665
3666         * aot-compiler.c (mono_compile_assembly): Split this huge function into
3667         smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
3668         info. Strip 'mapping symbols' on ARM.
3669
3670         * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
3671         
3672         * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
3673         this with the native genmdesc.
3674
3675 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
3676
3677         * aot-runtime.c:  Fixing the MSVC build.
3678
3679         Code is contributed under MIT/X11 license.
3680
3681 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
3682
3683         * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since 
3684         JITted code depends on it.
3685
3686 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3687
3688         * aot-compiler.c: Use new MonoGenericParam accessors.
3689
3690 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3691
3692         Reduce memory usage and improve correctness wrt MonoGenericParam
3693         * aot-runtime.c (decode_klass_ref): Simplify generic parameter
3694         handing.  Avoid allocating MonoGenericParams, but use the ones in
3695         the container itself.
3696
3697 2009-04-07  Miguel de Icaza  <miguel@novell.com>
3698
3699         * tasklets.c: Return exceptions in the out argument.
3700
3701 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
3702
3703         * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
3704         opcode. Use pointer types in more places instead of casting them to 
3705         integers.
3706
3707         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
3708         optimizations.
3709         (mono_llvm_optimize_method): New helper function to optimize a method.
3710
3711         * method-to-ir.c (mono_emit_widen_call_res): Extract the call result 
3712         widening code so it could be called from more places.
3713         (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
3714         code paths in the call opcodes.
3715
3716 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
3717
3718         * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
3719
3720 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
3721
3722         * dwarfwriter.c: Use _ to separate class name 
3723         components as gdb can't handle '.'. Represent reference variables
3724         as 'class <NAME>&'.
3725         
3726         * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
3727
3728         * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
3729         
3730         * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
3731
3732         * gc-test.cs: New file with GC stack marking tests.
3733         
3734         * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
3735         negative numbers for vfp.
3736
3737         * basic-float.cs: Add a test.
3738         
3739 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
3740
3741         * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
3742
3743 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
3744
3745         * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
3746         part of tasklet/continuation support.
3747
3748 2009-04-05  Zoltan Varga  <vargaz@gmail.com>
3749
3750         * mini-llvm.c (mono_llvm_emit_method): Move the handling of
3751         amd64 opcodes inside an ifdef.
3752
3753         * dwarfwriter.c: Emit inheritance information for classes, emit fields
3754         of complex types.
3755         
3756         * dwarfwriter.c (emit_type): Emit the class info for classes.
3757
3758 2009-04-04  Zoltan Varga  <vargaz@gmail.com>
3759
3760         * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
3761
3762         * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
3763
3764         * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
3765
3766         * ssa.c (mono_ssa_compute): Fix some memory leaks.
3767
3768 2009-04-03  Zoltan Varga  <vargaz@gmail.com>
3769
3770         * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
3771
3772         * mini-llvm.c: Update comments.
3773
3774         * mini.h (COMPILE_LLVM): New macro.
3775
3776         * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
3777
3778         * ssa.c (mono_ssa_compute): Ditto.
3779         
3780         * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
3781         the unwind ops from a DWARF FDE.
3782
3783         * mini-llvm.c: Implement generation of unwind info for LLVM compiled
3784         methods by extracting the dwarf unwind ops from the unwind info generated
3785         by LLVM.
3786         
3787         * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
3788         calls.
3789
3790         * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
3791         addressing modes.
3792
3793 2009-04-02  Zoltan Varga  <vargaz@gmail.com>
3794
3795         * Makefile.am (llvm_sources): Enable this.
3796
3797         * mini.c (mini_method_compile): Add support for compiling with LLVM, 
3798         failing back to the JIT if something cannot be handled.
3799
3800         * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
3801         compiling with LLVM.
3802
3803         * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
3804         compiling with LLVM.
3805
3806         * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when 
3807         compiling with LLVM.
3808
3809         * mini-ops.h: Add a few opcodes needed by LLVM.
3810
3811         * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
3812         has no unwind info.
3813
3814         * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
3815         backend.
3816
3817         * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
3818
3819         * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
3820
3821 2009-04-01  Mark Probst  <mark.probst@gmail.com>
3822
3823         * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
3824         ridiculously large methods.
3825
3826 2009-03-31  Martin Baulig  <martin@ximian.com>
3827
3828         * debug-debugger.c (debugger_remove_breakpoint): Call
3829         mono_debugger_remove_class_init_callback ().
3830
3831 2009-03-31  Zoltan Varga  <vargaz@gmail.com>
3832
3833         * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
3834         right before emitting code, not at the start.
3835
3836         * mini.c (mono_postprocess_patches): Extract this into a separate function
3837         from mono_codegen ().
3838
3839         * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
3840         byref types correctly.
3841
3842 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
3843
3844         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
3845         by the last change.
3846
3847 2009-03-29  Zoltan Varga  <vargaz@gmail.com>
3848
3849         * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before 
3850         indirect calls, this avoids problems where get_vcall_slot () would get
3851         confused by the native code for the instruction preceeding the call.
3852         (mono_arch_get_vcall_slot): Simplify this.
3853         (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
3854
3855         * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
3856         register allocator now seems to depend on them instead of the data in
3857         cpu-<ARCH>.md.
3858
3859         * mini.c (mini_method_compile): Throw the correct type of exception if
3860         mono_method_get_header () fails because of a loading error.
3861
3862 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
3863
3864         * mini.c (mini_method_compile): Clear the loader error if the method
3865         header cannot be decoded.
3866
3867         * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual 
3868         interface methods on proxies correctly.
3869
3870         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
3871         this argument for vtype methods. Add precise liveness info for arguments.
3872
3873         * mini-codegen.c (mono_print_ins_index): Print the vreg of the
3874         LIVERANGE_START/END opcodes.
3875
3876         * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
3877         for arguments and values in registers.
3878
3879 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
3880
3881         * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
3882         return a valuetype. Fixes #487518.
3883
3884         * iltests.il: Add a test.
3885         
3886         * aot-compiler.c: Use mono_thread_create () to create helper threads.
3887
3888         * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
3889         closed over a null reference correctly.
3890
3891 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3892
3893         * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
3894
3895 2009-03-25  Mark Probst  <mark.probst@gmail.com>
3896
3897         * mini-codegen.c (mono_local_regalloc): Don't let sregs get
3898         allocated to the same registers as fixed sregs.
3899
3900 2009-03-24  Mark Probst  <mark.probst@gmail.com>
3901
3902         * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
3903         ATOMIC_CAS_IMM ops.
3904
3905         * method-to-ir.c: Handle more cases for
3906         Interlocked.CompareExchange.
3907
3908         * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
3909         mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
3910         ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
3911
3912 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
3913
3914         * aot-runtime.c (decode_method_ref): Fix a warning.
3915
3916         * unwind.c (mono_unwind_frame): Ditto.  
3917
3918 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
3919
3920         * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
3921         (mono_compile_assembly): Enable the binary writer for full-aot as well.
3922
3923         * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
3924         fix the handling of large values in the ALU_PC_G0_NC relocation.
3925
3926 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
3927
3928         * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
3929
3930 2009-03-22  Mark Probst  <mark.probst@gmail.com>
3931
3932         * method-to-ir.c (mono_spill_global_vars): Support for ternary
3933         ops.
3934
3935 2009-03-22  Mark Probst  <mark.probst@gmail.com>
3936
3937         * method-to-ir.c: MINI_OP3 needs a comma.
3938
3939         * method-to-ir.c, mini.h, mini.c: Remove
3940         mono_init_op_sreg_counts ().
3941
3942 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
3943
3944         * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
3945         OP_JMP.
3946         
3947         * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
3948         assertion.
3949
3950         * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
3951
3952         * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
3953         code somewhat.
3954
3955 2009-03-21  Mark Probst  <mark.probst@gmail.com>
3956
3957         * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
3958         liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
3959         mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
3960         operations.
3961
3962 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
3963
3964         * driver.c: Change location of gc_wrapper.h.
3965
3966         * method-to-ir.c (mono_find_block_region): Handle try clauses nested
3967         inside finally clauses correctly. Fixes #485721.
3968
3969         * mini.c (mono_find_spvar_for_region): This needs to handle try regions
3970         after the change above.
3971
3972         * exceptions.cs: Add a test.
3973         
3974 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3975
3976         * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
3977
3978         * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
3979         into cfg->used_int_regs, it is not needed with the dwarf unwinder.
3980         (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
3981
3982         * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
3983         the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
3984
3985 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
3986
3987         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
3988         Simplify logic for ensure_method_is_allowed_to_call_method. 
3989         Handle wrappers on callers.
3990
3991 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3992
3993         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
3994         them don't run yet.
3995
3996         * basic-simd.cs: Fix the names of some test methods.
3997
3998 2009-03-18  Geoff Norton  <gnorton@novell.com>
3999
4000         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
4001
4002 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4003
4004         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
4005
4006 2009-03-17  Jb Evain  <jbevain@novell.com>
4007
4008         * driver.c: remove now uneeded call to mono_gc_base_init before
4009         mono_profiler_load.
4010
4011 2009-03-17  Jb Evain  <jbevain@novell.com>
4012
4013         * dwarfwriter.c (token_handler): handle more cases.
4014
4015 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
4016
4017         * method-to-ir.c: Remove more dead code (that was required only
4018         because of method_is_safe). Fix compiler warnings.
4019
4020 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4021
4022         * method-to-ir.c: Remove unneeded/useless method_is_safe
4023         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
4024
4025 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4026
4027         * mini.c (mini_method_compile): Print the method been compiled with
4028         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
4029         for people not familiar with the runtime.
4030
4031 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4032
4033         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
4034         a managed object which is later put into a GList. Return its class instead.
4035
4036         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
4037         stack slots when using sgen.
4038
4039 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
4040
4041         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
4042
4043 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
4044
4045         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
4046         > so it works on the first vreg as well.
4047
4048 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
4049
4050         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
4051         trigger randomly.
4052
4053         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
4054         
4055         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
4056         implement GArray.
4057
4058 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4059
4060         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
4061         native->IL offset mapping.
4062
4063 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
4064
4065         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
4066
4067         * basic.cs: Add a test.
4068
4069 2009-03-11  Mark Probst  <mark.probst@gmail.com>
4070
4071         * mini-x86.c (mono_arch_output_basic_block): Use different
4072         registers in case the ones we want to overwrite are used by the
4073         other operand.  Fixes regression in #480807.
4074
4075 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4076
4077         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
4078
4079         * dwarfwriter.c (emit_line_number_info): The line number info for
4080         IL code was off by one. Fix that.
4081
4082         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
4083         stack.
4084
4085 2009-03-09  Mark Probst  <mark.probst@gmail.com>
4086
4087         Contributed under the terms of the MIT/X11 license by Steven
4088         Munroe <munroesj@us.ibm.com>.
4089
4090         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
4091         Fixes #483462.
4092
4093 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4094
4095         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
4096         as well.
4097
4098 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4099
4100         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
4101         the delegate ctor handling code. Fixes #482638.
4102         
4103         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
4104         #481458.
4105
4106         * iltests.il.in: Add a test.
4107         
4108         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
4109         mini-posix.c.
4110
4111 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4112
4113         * mini-trampolines.c (mono_create_jump_trampoline): If the method
4114         is shared generic code, return the trampoline, even if the method
4115         has already been compiled.  Fixes #479763.
4116
4117         * mini.c, mini.h: New function
4118         mono_jit_find_compiled_method_with_jit_info() which is the same as
4119         mono_jit_find_compiled_method() but also returns the jit info.
4120
4121 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4122
4123         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
4124         for methods which actually have one.  For all other methods, make
4125         sure the this argument var is live the whole method.
4126
4127         * mini.c (mini_method_compile): Every shared method has a
4128         this/vtable/mrgctx info.  Fixes #480807.
4129
4130 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4131
4132         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
4133         generic/imt thunks where some entries branch through the vtable,
4134         while other entries branch directly.
4135
4136 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4137
4138         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
4139
4140         * mini-windows.c: Ditto.
4141         
4142         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
4143         ctors.
4144
4145 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
4146
4147         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
4148         down an assert.
4149
4150 2009-03-04  Mark Probst  <mark.probst@gmail.com>
4151
4152         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
4153         #481403.
4154
4155 2009-03-04  Mark Probst  <mark.probst@gmail.com>
4156
4157         * exceptions-x86.c: Include debug-mini.h - fixes build.
4158
4159 2009-03-04  Martin Baulig  <martin@ximian.com>
4160
4161         * debug-mini.c: Clean up the exception API and add documentation.
4162         (mono_debugger_handle_exception): New public method; this is
4163         called when throwing an exception or encountering an unhandled one.
4164         (mono_debugger_call_exception_handler): Formerly known as
4165         mono_debugger_handle_exception(); this is used to tell the
4166         debugger that we're about to invoke an exception handler.
4167
4168 2009-03-04  Martin Baulig  <martin@ximian.com>
4169
4170         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
4171         ../metadata/mono-debug-debugger.c; save and reset exception state.
4172
4173 2009-03-02  Martin Baulig  <martin@ximian.com>
4174
4175         * debug-mini.c: Moved the debugger exception handling here from
4176         ../metadata/mono-debug-debugger.c.
4177
4178         * debug-mini.h
4179         (MonoDebuggerExceptionAction): New exception typedef.
4180
4181         * debug-mini.c
4182         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
4183
4184         * exceptions-amd64.c
4185         (mono_amd64_throw_exception): Use the new debugger exception
4186         handling code.
4187
4188         * mini-exceptions.c
4189         (mono_handle_exception_internal): Don't call
4190         mono_debugger_unhandled_exception() here.
4191
4192 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4193
4194         * mini.c aot-compiler.c: Update after the changes to 
4195         mono_marshal_get_runtime_invoke ().
4196
4197         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
4198         Virtual generic methods might not have method->slot set, work around
4199         that.
4200
4201         * generics.cs: Add a test.
4202
4203 2009-03-02  Geoff Norton  <gnorton@novell.com>
4204
4205         * mini.c:
4206         * driver.c: Allow signal chaining of SIGFPE as well.
4207
4208 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4209
4210         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
4211         this since it now receives the method not its generic context in the
4212         IMT reg.
4213
4214         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
4215         generic/imt thunks where some entries branch through the vtable, while
4216         other entries branch directly.
4217
4218         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
4219
4220         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
4221         support for interface methods as well.
4222
4223         * mini-trampolines.c: Add support for virtual generic methods in interfaces
4224         using the normal IMT thunks.
4225
4226         generics.cs: Add new tests.
4227         
4228         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
4229         the generic inst to the generic imt thunks. This fixes AOT support, 
4230         improves consistency with the normal IMT thunks, and makes it easier to
4231         add support for interface generic virtual methods later.
4232
4233         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
4234         
4235 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
4236
4237         * driver.c (mono_set_signal_chaining): New public API function to enable
4238         signal chaining on POSIX platforms.
4239
4240         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
4241         (si@lindenlab.com) to implement signal chaining. The original patch was
4242         contributed under the MIT X/11 license:
4243         https://bugzilla.novell.com/show_bug.cgi?id=318894
4244
4245 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4246
4247         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
4248         too until it can be made to run on amd64.
4249
4250 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4251
4252         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
4253         to  get_generic_context_from_code () + get_call_info () if possible.
4254
4255 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4256
4257         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
4258         suspend-on-sigsegv functionality.
4259
4260         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
4261         to suspend when a native SIGSEGV is received. This is useful for debugging
4262         crashes which don't happen under gdb, since a live process contains more
4263         information than a core file.
4264
4265         * mini-exceptions.c (mono_print_thread_dump): Use 
4266         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
4267
4268         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
4269
4270         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
4271         
4272         * basic-float.cs: Disable the tests which currently fail on amd64.
4273
4274         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
4275         value to mono_arch_patch_callsite () to fix crashes.
4276         
4277         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
4278
4279 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4280
4281         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
4282         nop code by patching the call address to point to the nullified class init
4283         trampoline, as the former does not seem to be safe on SMP machines.
4284
4285 2009-02-23  Mark Probst  <mark.probst@gmail.com>
4286
4287         * mini-ops.h: Fix the argument types for a few x86 opcodes where
4288         they were wrong.
4289
4290 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4291
4292         * basic-float.cs basic-calls.cs: Fix warnings.
4293
4294 2009-02-22  Mark Probst  <mark.probst@gmail.com>
4295
4296         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
4297         correct frame pointer in the LMF.  Should fix #478394.
4298
4299 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4300
4301         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
4302
4303         * image-writer.c: Make the binary writer less verbose.
4304
4305 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4306
4307         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
4308         are called from runtime invoke wrappers.
4309
4310 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4311
4312         * cpu-ppc.md (store_memindex): Increase the size of this.
4313
4314 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4315
4316         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4317
4318         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
4319
4320         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
4321         OP_LCONV_TO_R_UN.
4322
4323         Last fix for of #467201.
4324
4325
4326 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4327
4328         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4329
4330         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
4331         and long_conv_to_r8_2:
4332
4333         Fixed part of #467201.
4334
4335 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4336
4337         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4338
4339         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
4340         conversion to 32 bits.
4341
4342         * cpu-x86.md: Increase the size of int_conv_to_r4.
4343
4344         * basic-float.cs: Add a test for this.
4345
4346         Fixed part of #467201.
4347
4348 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4349
4350         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4351
4352         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
4353         conversion to 64 bits.
4354
4355         * basic-float.cs: Add a test for this.
4356
4357         Fixed part of #467201.
4358
4359 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4360
4361         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4362
4363         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
4364         This behavior is compatible with MS.
4365
4366         * iltest.il.in: Add a test for this.
4367
4368         Fixed part of #467201.
4369
4370 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
4371
4372         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
4373
4374         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
4375         change the precision of the value.
4376
4377         * cpu-x86.md: Define len for float_conv_to_r4.
4378
4379         * basic-float.cs: Add a test for this.
4380
4381         Fixed part of #467201.
4382
4383 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4384
4385         * mini.c: Adjust locking order to the new semantics where the loader lock
4386         comes first.
4387
4388 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
4389
4390         * aot-runtime.c:
4391         * mini-amd64.c:
4392         * mini-arm.c:
4393         * mini-ia64.c:
4394         * mini-mips.c:
4395         * mini-ppc.c:
4396         * mini-sparc.c:
4397         * mini-trampolines.c:
4398         * mini-x86.c:
4399         * mini.c:
4400         * tramp-alpha.c:
4401         * tramp-amd64.c:
4402         * tramp-arm.c:
4403         * tramp-hppa.c:
4404         * tramp-ia64.c:
4405         * tramp-mips.c:
4406         * tramp-ppc.c:
4407         * tramp-s390.c:
4408         * tramp-s390x.c:
4409         * tramp-sparc.c:
4410         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
4411
4412 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4413
4414         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
4415         as it is incorrect.
4416
4417 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4418
4419         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
4420         for cctors if needed.
4421
4422 2009-02-17  Mark Probst  <mark.probst@gmail.com>
4423
4424         * mini-ppc.c: Fix build on Darwin.
4425
4426 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4427
4428         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
4429         version instead of 3 as valgrind doesn't like version 3.
4430
4431         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
4432
4433         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
4434         usable for hashing methods.
4435         (emit_extra_methods): Use the new hash to avoid putting every method in the
4436         same hash bucket.
4437
4438         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
4439
4440         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
4441         whenever a method ref could match a method.
4442         
4443         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
4444         test to fail.
4445         
4446         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
4447         methods refs.
4448
4449         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
4450
4451         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
4452         the encoding buffer.
4453
4454         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
4455         mono_method_get_header () on inflated methods as an optimization.
4456
4457 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4458
4459         * ssa.c (fold_ins): Fix another crash if the instruction following the
4460         switch was optimized away.
4461
4462 2009-02-16  Mark Probst  <mark.probst@gmail.com>
4463
4464         Contributed under the terms of the MIT/X11 license by Steven
4465         Munroe <munroesj@us.ibm.com>.
4466
4467         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
4468
4469 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4470
4471         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
4472         around the mono_domain_alloc calls, it is now done by the functions
4473         themselves.
4474
4475         * aot-compiler.c (compile_method): Only add wrappers referenced by
4476         the method if compiling with full AOT.
4477         (mono_compile_assembly): Error out if --aot=full is specified on
4478         a platform where it is not supported.
4479
4480         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
4481         on ARM too.
4482
4483         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
4484         AOT support.
4485
4486         * aot-runtime.c (load_named_code): Handle 
4487         mono_arm_throw_exception_by_token.
4488
4489         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
4490
4491         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
4492         unaligned.
4493
4494         * Makefile.am (fullaotcheck): Exit if a test fails.
4495
4496         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
4497         on ARM.
4498         (mono_compile_assembly): Handle the assembler failing.
4499
4500         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
4501         accepting subsections of .bss.
4502
4503         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
4504         was optimized away.
4505
4506         * aot-compiler.c: Remove some unused includes.
4507         
4508         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
4509         now in MonoImageWriter.
4510
4511         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
4512         code sequence which matches a non-virtual call. Fixes #472654.
4513
4514 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
4515
4516         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
4517         xdebug code.
4518         
4519         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
4520         use the image/dwarf writers directly.
4521
4522         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
4523         field.
4524
4525         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
4526         MonoDwarfWriter.
4527
4528         * image-writer.h: Fix some typos.
4529
4530         * dwarfwriter.h dwarfwriter.c: New files.
4531         
4532         * aot-compiler.c: Extract the DWARF info writing functionality into a 
4533         separate module.
4534
4535         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
4536         argument to return unwind info.
4537
4538         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
4539
4540         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
4541         
4542         * aot-runtime.c (decode_method_ref): Add a case for 
4543         MONO_AOT_METHODREF_WRAPPER_NAME.
4544
4545         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
4546         for AOT.
4547
4548         * aot-compiler.c (encode_method_ref): Use the new constants.
4549
4550         * aot-runtime.c (decode_method_ref): Ditto.
4551
4552         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
4553         be compiled, not the icall itself.
4554
4555 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
4556
4557         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
4558         using decode_method_ref ().
4559
4560         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
4561         convert it to an in32. Fixes #475859.
4562
4563         * arrays.cs: Add a test.
4564
4565 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
4566
4567         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
4568         OP_LCONV_TO_U2.
4569
4570         * basic-long.cs: Add a test.
4571
4572 2009-02-12  Mark Probst  <mark.probst@gmail.com>
4573
4574         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
4575         remove the frame pointer in leaf methods which don't receive any
4576         arguments, don't throw exceptions and don't do dynamic stack
4577         allocations.
4578
4579 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
4580
4581         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
4582         the fail_tramp changes. Hopefully fixes #475132.
4583
4584 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
4585
4586         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
4587         instead of mono_metadata_signature_dup_full.
4588
4589 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
4590
4591         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
4592         for processing jump tables. Fixes #473787.
4593
4594 2009-02-11  Mark Probst  <mark.probst@gmail.com>
4595
4596         * mini-generic-sharing.c: mini_method_get_context() just calls
4597         mono_method_get_context_general() now.
4598
4599         * mini.c, mini.h: Moved get_object_generic_inst(),
4600         construct_object_context_for_method() and
4601         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
4602
4603 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
4604
4605         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
4606         basic block fell through to its successor bblock without a branch. Fixes
4607         #474718.
4608
4609         * iltests.il.in: Add a test.
4610         
4611         * aot-compiler.c (encode_method_ref): Encode methods of array types.
4612         (can_encode_patch): We can now handle arrays of generic parameters and
4613         array methods.
4614
4615         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
4616
4617         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
4618         the AOT file to avoid some #ifdefs in aot-runtime.c
4619
4620         * mini.h: Bump AOT file format version.
4621
4622 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4623
4624         * Makefile.am (fullaotcheck): Make this run the tests.
4625
4626         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
4627
4628 2009-02-10  Mark Probst  <mark.probst@gmail.com>
4629
4630         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
4631         individually.  Fixes #473482.
4632
4633 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4634
4635         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4636
4637 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
4638
4639         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
4640         (mono_compile_assembly): Hush compile warnings about
4641         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
4642         code path.
4643
4644 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4645
4646         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
4647
4648         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
4649
4650         * aot-compiler.c: Fix arm support.
4651
4652         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
4653         img_writer_emit_unset_mode () function.
4654
4655         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
4656         (mono_unwind_get_dwarf_pc_reg): Ditto.
4657
4658         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
4659         Move almost all platform specific code to a set of arch_ functions, 
4660         and document them to ease porting.
4661         
4662         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
4663
4664         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
4665
4666         * aot-compiler.c: Extract the image writing functionality into a separate
4667         module to reduce the size of this file.
4668
4669 2009-02-09  Geoff Norton  <gnorton@novell.com>
4670
4671         * mini-s390.c: Fix the signature of emit_sig_cookie.
4672
4673 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
4674
4675         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
4676
4677         * aot-runtime.c (is_shared_got_patch): Ditto.
4678
4679         * aot-runtime.c (load_named_code): Cope with the fact that 
4680         decode_got_entry () won't decode the patch fully if its corresponding got
4681         entry is already filled.
4682         
4683         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
4684         Initialize *ji.
4685         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
4686
4687         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
4688         as the moving pointer instead of 'buf' for consistency with the rest of the
4689         codebase.
4690         (mono_arch_create_monitor_exit_trampoline): Ditto.
4691
4692         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
4693         generic_class_init trampolines.
4694         (add_generic_class): Extract some code from add_generic_instances () into a
4695         separate function so it can be called from other places too.
4696         (compile_method): Call add_generic_class () for the classes of inflated methods
4697         referenced by the method.
4698         (can_encode_patch): Allow references to generic parameters.
4699
4700         * aot-runtime.c: Add support the patches required by the new trampolines.
4701         
4702         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
4703         support.
4704
4705         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
4706         full-aot support.
4707
4708         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
4709         this from get_throw_pending_exception, make the signature full aot compatible.
4710
4711         * Makefile.am (fullaotcheck): New target to run full-aot tests.
4712
4713         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
4714
4715         * exceptions.cs: Add a test.
4716
4717 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4718
4719         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
4720         use the DWARF_DATA_ALIGN constant instead.
4721
4722         * exception-<ARCH>.c: Update after the above change.
4723
4724         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
4725         dwarf unwinder.
4726
4727         * mini-arm.c: Enable the dwarf unwinder.
4728
4729         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
4730         instead of mono_class_setup_vtable ().
4731
4732 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4733
4734         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
4735         dwarf unwinder.
4736
4737         * mini-x86.h: Enable the dwarf unwinder.
4738
4739 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
4740
4741         Fix mcs/tests/test-7.cs
4742         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
4743         2009-02-03.
4744
4745 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4746
4747         * mini.c (print_jit_stats): Remove some unused statistics.
4748
4749 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4750
4751         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
4752
4753 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4754
4755         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
4756         the method we get from mono_object_get_virtual_method() because
4757         that function does it properly, now.
4758
4759 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4760
4761         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
4762         opcodes. Fixes #472775.
4763
4764 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4765
4766         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
4767         fact that mono_find_jit_info() sometimes returns the context
4768         corresponding to the jit info in new_ctx.  Fixes #472600.
4769
4770 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4771
4772         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
4773         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
4774         klass->enum_basetype directly.
4775
4776         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
4777         enum subtypes.
4778
4779         * unwind.c: Avoid 0 sized arrays.
4780
4781 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4782
4783         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
4784         size on systems with 64k pages. Fixes #471389.
4785
4786 2009-02-04  Mark Probst  <mark.probst@gmail.com>
4787
4788         Contributed under the terms of the MIT/X11 license by Steven
4789         Munroe <munroesj@us.ibm.com>.
4790
4791         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
4792         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
4793         necessary.
4794
4795 2009-02-04  Mark Probst  <mark.probst@gmail.com>
4796
4797         Contributed under the terms of the MIT/X11 license by Steven
4798         Munroe <munroesj@us.ibm.com>.
4799
4800         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
4801         comparison fix.
4802
4803         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
4804         The trampoline can be longer on PPC64.
4805
4806 2009-02-04  Mark Probst  <mark.probst@gmail.com>
4807
4808         Contributed under the terms of the MIT/X11 license by Steven
4809         Munroe <munroesj@us.ibm.com>.
4810
4811         * mini-ppc.c: Compiler warning fixes and trivial code
4812         simplifications.
4813
4814 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4815
4816         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
4817         ins->dreg which could be a hardware register, not a vreg.
4818
4819         * aot-compiler.c (emit_method_dwarf_info): Ditto.
4820         
4821         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
4822         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
4823
4824         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
4825         
4826         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
4827         ->dreg, that is not the vreg we are looking for.
4828
4829         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
4830
4831         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
4832         LIVERANGE_END.
4833
4834         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
4835         strange crashes.
4836
4837 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
4838
4839         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
4840
4841         * aot-compiler.c (emit_line_number_info): Fix line number emission when
4842         the line diff is 0.
4843
4844         * aot-compiler.c: Add xdebug support on x86.
4845
4846         * unwind.c: Add x86 support.
4847         
4848         * aot-compiler.c (emit_exception_debug_info): Control the emission of
4849         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
4850
4851         * mini.c (mini_method_compile): Ditto.
4852         
4853         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
4854         the variable index.
4855
4856         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
4857         which mimic .push_section/.pop_section in GAS.
4858         
4859         * aot-compiler.c: Emit precise live range information for variables.
4860
4861         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
4862
4863         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
4864         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
4865         them.
4866
4867         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
4868         the live ranges of variables.
4869
4870         * mini.h (struct MonoMethodVar): Add two fields containing the live range
4871         of the variable in terms of native offsets.
4872
4873 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
4874
4875         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
4876         
4877 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4878
4879         Contributed under the terms of the MIT/X11 license by Steven
4880         Munroe <munroesj@us.ibm.com>.
4881
4882         * exceptions-ppc.c (restore_regs_from_context): Correct operand
4883         order (offset then base reg) for ppc_load_multiple_regs.
4884         (emit_save_saved_regs) Correct operand order for
4885         ppc_store_multiple_regs.
4886         (mono_arch_get_call_filter): Correct operand order for
4887         ppc_load_multiple_regs.
4888
4889         * mini-ppc.c (emit_memcpy): Fix operand order for
4890         ppc_load_reg_update and ppc_store_reg_update.
4891         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
4892         (mono_arch_emit_epilog): Correct operand order for
4893         ppc_load_multiple_regs.
4894
4895         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
4896         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
4897
4898 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4899
4900         * cpu-ppc64.md: Fixed storer4_memindex length.
4901
4902 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
4903
4904         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
4905         line number info.
4906         
4907         * aot-compiler.c (emit_line_number_info): Optimize this.
4908
4909 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
4910
4911         * aot-compiler.c: Disassemble tokens in the IL disassembly.
4912         
4913         * aot-compiler.c: Add debug info for methods without debug info by
4914         emitting an IL file and having the line number info referencing that file.
4915
4916         * aot-compiler.c: Optimize the size of the generated line number info.
4917
4918         * aot-compiler.c: Emit line number info in xdebug mode.
4919
4920         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
4921         million arguments.
4922
4923 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
4924
4925         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
4926
4927         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
4928         is used.
4929
4930 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
4931
4932         * basic-calls.cs: Test for the weird crash found on arm.
4933         
4934 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
4935
4936         * cpu-arm.md: Increase the size of storer8_membase_reg and
4937         loadr8_membase_reg to 24 bytes to accomodate the extra add.
4938
4939         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
4940         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
4941         reg to LR otherwise we'll be loading/storing from just the offset.
4942
4943 2009-01-30  Miguel de Icaza  <miguel@novell.com>
4944
4945         Question: if we are storing gint32's inside the "*native_offset",
4946         should we change the signature to "gint32 *native_offset" to
4947         ensure that we do not have type definition problems?
4948         
4949         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
4950         an int * as this is what the other function expects, causes
4951         problems with Freescale's compiler that defined int32_t to be a
4952         long and makes int incompatible 
4953
4954 2009-01-30  Miguel de Icaza  <miguel@novell.com>
4955
4956         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
4957         filename conflict with bjam.
4958
4959 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
4960
4961         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
4962         as it might use decomposed ops.
4963
4964 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
4965
4966         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
4967
4968         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
4969         is defined.
4970
4971         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
4972
4973         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
4974         offsets.
4975
4976         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
4977         way registers are stored in MonoContext on arm.
4978
4979         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
4980         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
4981
4982         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
4983
4984         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
4985
4986         * mini.c (mini_init): Register mono_isfinite.
4987
4988         * jit-icalls.c (mono_isfinite): New jit icall.
4989
4990         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
4991         
4992         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
4993         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
4994         the parent frame.
4995
4996 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
4997
4998         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
4999         separate frame and stack pointers, so we must use FP to find the register
5000         spill area.
5001         The FP reg is retrieved from the MonoContext::regs array.
5002
5003 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
5004
5005         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
5006         as FPA requires it.
5007
5008 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
5009
5010         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
5011         return R4 and R8 when not running under softfloat.
5012
5013         Fixes basic-calls.exe
5014
5015 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
5016
5017         * mini-arm.c: Implement some overflow opcodes.
5018
5019 2009-01-29  Miguel de Icaza  <miguel@novell.com>
5020
5021         * ssa.c: handle another alloca.h
5022
5023         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
5024         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
5025         MONO_ARCH_USE_SIGACTION. 
5026
5027         * aot-runtime.c, mini-exceptions.c: Replace platform define with
5028         capability defines.
5029
5030         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
5031
5032         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
5033         PPC targets as sigaction does not exist on all platforms, define
5034         this on a per-platform basis.
5035
5036         Instead of erroring out if the platform is not defined, include
5037         mini-ppc-os.h, and expect that the OS specific setting provides
5038         the required information.   
5039
5040 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
5041
5042         * aot-compiler.c: Fix --enable-minimal=aot.
5043
5044 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
5045
5046         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
5047         previous change.
5048
5049 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5050
5051         * exceptions-arm.c: Fix warnings.
5052
5053         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
5054         ARM.
5055
5056         * mini-x86.c: Fix --enable-minimal=jit build.
5057
5058         * mini.c: Really fix --enable-minimal=jit build.
5059         
5060         * mini.c (construct_object_context_for_method): Move this outside
5061         the DISABLE_JIT block to fix the --enable-minimal=jit build.
5062
5063         "Backported" of r124984 from 2.0 branch.
5064         
5065         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
5066
5067         "Backport" of r124977 + r124978 from 2.0 branch.
5068         
5069         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
5070         to avoid calling mono_exception_from_token () from the throw trampoline.
5071         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
5072         for throwing corlib exceptions, this fixes full-aot support for corlib
5073         exceptions.
5074
5075         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
5076
5077 2009-01-29  Miguel de Icaza  <miguel@novell.com>
5078
5079         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
5080         part of the changes to split the code in mini into operating
5081         system specific files.
5082
5083         This patch was done by copying mini.c to the respective files to
5084         preserve SVN history.
5085
5086 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5087
5088         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
5089
5090 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5091
5092         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
5093         remoting-invoke-with-check wrappers of shared methods.
5094
5095         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
5096
5097 2009-01-27  Mark Probst  <mark.probst@gmail.com>
5098
5099         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
5100         optimization if the top of stack is the last instruction in the
5101         bblock.  Otherwise it might have been used after its definition.
5102         Fixes #469742.
5103
5104 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5105
5106         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
5107         method as well when get_vcall_slot () fails to match a code sequence.
5108
5109         * mini-arm.c: Fix the android build, which doesn't have
5110         __aeabi_read_tp.
5111
5112 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5113
5114         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
5115         the s390x build.
5116
5117 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
5118
5119         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
5120
5121 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5122
5123         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
5124         and put its id into jinfo->used_regs. This is only used on amd64,
5125         which is currently the only platform generating unwind info.
5126
5127         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
5128         the dwarf unwinder. This is required to correctly handle async exceptions
5129         like thread abort and stack overflows, which can happen while a method
5130         is in the middle of its prolog or epilog.
5131         
5132         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
5133         the unwind info belonging to an AOTed method.
5134
5135         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
5136         into cfg->unwind_ops.
5137         
5138         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
5139
5140         * mini.c (mini_init): Call mono_unwind_init ().
5141         (mini_cleanup): Call mono_unwind_cleanup ().
5142
5143         * unwind.c: Add functions for managing a set of unwind info entries, allowing
5144         unwind info to be shared between methods.
5145
5146         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
5147         saved in the LMF.
5148
5149         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
5150         get_throw_pending_exception () to avoid initialization races.
5151
5152         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
5153         mono_arch_exceptions_init () function.
5154
5155         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
5156
5157 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
5158
5159         * mini.c (mono_get_domain_intrinsic): New helper function.
5160         (mono_get_thread_intrinsic): Ditto.
5161
5162         * mini-arm.c mini-ia64.c: Use the new helper functions.
5163         
5164         * method-to-ir.c (mono_method_to_ir): Fix the comment for
5165         the last constrained_call change, since it is needed in the non-AOT
5166         case as well.
5167
5168         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
5169         
5170         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
5171         mono_get_lmf_addr () on arm eabi linux.
5172
5173 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
5174
5175         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
5176         code sequence which matches a non-virtual call.
5177
5178 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5179
5180         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
5181         stack pointer (r1).
5182
5183 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5184
5185         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
5186         runtime-invoke wrappers, since they are also shared based on signature.
5187
5188 2009-01-22  Mark Probst  <mark.probst@gmail.com>
5189
5190         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
5191         info from the (correct) context.
5192
5193 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
5194
5195         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
5196         
5197         * unwind.c (mono_unwind_frame): New function to unwind through a frame
5198         using dwarf unwinding info. Not yet used.
5199
5200         * mini.c (mini_init): When using xdebug, disable freeing of domains.
5201
5202 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5203
5204         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
5205         descriptors.
5206
5207         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
5208         special case and handle mono_arch_delegate_invoke_impl() returning
5209         function descriptors.
5210
5211         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
5212         trampolines return function descriptors, too.
5213
5214 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5215
5216         * method-to-ir.c (handle_alloc): Avoid generic instances in the
5217         out_of_line optimization.
5218
5219 2009-01-21  Martin Baulig  <martin@ximian.com>
5220
5221         * mini.h
5222         (MonoCompile): Added `disable_deadce_vars' to disable removing
5223         unused variables.
5224
5225         * mini.c
5226         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
5227         inside the debugger.
5228
5229         * liveness.c (mono_analyze_liveness): Don't remove any unused
5230         variables if `cfg->disable_deadce_vars' is set.
5231
5232 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5233
5234         * method-to-ir.c: Only apply exception constructor optimization if
5235         the the method actually belongs to an exception class.  Fixes
5236         #467456.
5237
5238 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5239
5240         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
5241         change inside a #ifdef __mono_ppc64__.
5242
5243         * aot-compiler.c (compile_method): Remove the previous limitation.
5244
5245         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
5246         on type variables in AOTed code.
5247         
5248         * aot-compiler.c (compile_method): Skip generic methods having type 
5249         constraints on their generic parameters.
5250
5251         * aot-compiler.c (compile_method): Check for methods which cannot be
5252         encoded inside RGCTX_FETCH patches as well.
5253
5254         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
5255         build.
5256
5257 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5258
5259         * method-to-ir.c: Force the vtable variable in shared generic code
5260         for the case that they might show up on a stack trace where they
5261         are needed.
5262
5263         * mini-exceptions.c: Save and use generic sharing info as well as
5264         IP in stack traces to resolve shared generic instantiations.
5265
5266 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
5267
5268         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
5269         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
5270
5271 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5272
5273         * method-to-ir.c: Do generic sharing for array constructors.
5274
5275 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
5276
5277         * mini-exceptions.c (mono_print_thread_dump): Add information
5278         about the thread state using wapi_current_thread_desc.
5279
5280 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
5281
5282         * basic-simd.cs: Tests for the new constructors. 
5283
5284 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
5285
5286         * mini-ops.h: Added OP_EXPAND_*
5287
5288         * cpu-x86.md: Same.
5289
5290         * mini-x86.c (mono_arch_output_basic_block): Same.
5291         
5292         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
5293
5294 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5295
5296         * iltests.il.in: Add a test for #467385.
5297
5298 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
5299
5300         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
5301         thread been cleaned up is not the same currently in execution.
5302
5303         Fixes appdomain-unload crashes on windows, osx and linux variants
5304         without the __thread keyword.
5305
5306 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5307
5308         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
5309         (koush@koushikdutta.com). Implement this for android.
5310
5311         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
5312         begins with a digit.
5313
5314         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
5315         mono_marshal_get_write_barrier ().
5316
5317 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
5318
5319         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
5320         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
5321         that pass them on a register pair.
5322
5323         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
5324         test was crashing due to that.
5325
5326 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
5327
5328         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
5329         trampoline code. Include ucontext.h only if available.
5330
5331 2009-01-15  Mark Probst  <mark.probst@gmail.com>
5332
5333         * mini.c: mono_domain_lookup_shared_generic() takes an open method
5334         and doesn't check whether it's sharable, like it was before
5335         removing the shared generics hash.  This brings IronPython
5336         performance back to what it was before that change.
5337
5338 2009-01-14  Mark Probst  <mark.probst@gmail.com>
5339
5340         * method-to-ir.c: Handle delegate invocation optimization earlier,
5341         otherwise it would be handled (much more slowly) by the
5342         final/sealed optimization.
5343
5344 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5345
5346         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
5347         domain is not set. Fixes #465864.
5348
5349 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5350
5351         * method-to-ir.c: Don't stop sharing of generic methods with catch
5352         clauses - we already handle those.
5353
5354 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5355
5356         * mini.c, mini.h: lookup_generic_method() is now
5357         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
5358         making the shared_generics_hash obsolete.
5359
5360 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5361
5362         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
5363         use the red zone.  Make room on the stack first and then use it,
5364         not the other way around.
5365
5366 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5367
5368         * mini.c (mini_init): Call mono_xdebug_init ().
5369
5370         * aot-compiler.c (mono_xdebug_init): Make this non-static.
5371
5372 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
5373
5374         * TestDriver.cs: Add an --iter argument to run tests multiple times.
5375
5376         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
5377         trampolines.
5378
5379         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
5380         debug+unwind info for trampolines.
5381
5382         * mini.c (mono_create_unwind_op): New helper function.
5383
5384         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
5385
5386 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
5387
5388         * aot-compiler.c: Fix the build.
5389
5390 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5391
5392         * Makefile.am: Update dtrace-prelink.sh location.
5393
5394 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
5395
5396         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
5397         optimization. Fixes #464520.
5398
5399 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
5400
5401         * mini-amd64.c : Adding code to save/restore non-volatile registers
5402            on Winx64.
5403
5404         * exceptions-amd64.c : Adding code to save/restore non-volatile 
5405           registers on Winx64.
5406
5407         Contributed under MIT/X11 license.
5408
5409 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
5410
5411         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
5412         __GNUC_MINOR__ which can break when the major version changes.
5413
5414 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
5415
5416         * basic-simd.cs: Add tests for usage of the sizeof opcode.
5417
5418 2009-01-07  Geoff Norton  <gnorton@novell.com>
5419
5420         * helpers.c:  Allow mono -v -v -v to work on darwin.
5421
5422 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
5423
5424         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
5425           pattern. 
5426
5427         Contributed under MIT/X11 license.
5428
5429 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
5430
5431         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
5432         instead of directly accessing type->data.klass. Fixes #462016.
5433         (mono_allocate_stack_slots_full): Ditto.
5434
5435         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
5436         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
5437
5438         * aot-compiler.c (emit_plt): Fix ARM build.
5439
5440 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
5441
5442         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
5443         
5444         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
5445         change.
5446
5447         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
5448         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
5449         #463357.
5450
5451         * iltests.il.in: Add a regression test.
5452
5453 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5454
5455         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
5456
5457 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5458
5459         * basic-simd.cs: Add a regression test for #462457.
5460
5461 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5462
5463         * mini-ops.h: Add a definition of XPHI.
5464
5465         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
5466
5467         * ssa.c (op_phi_to_move): Handle XPHI.
5468
5469         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
5470
5471         Fixes #462457
5472
5473 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
5474
5475         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
5476
5477 2008-12-31  Geoff Norton  <gnorton@novell.com>
5478
5479         * mini-ppc.c: The prolog size allocated can be too small for darwin
5480         ppc32 under certain circumstances.  Also fix a small logic bug.
5481
5482 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
5483
5484         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
5485         while loading AOT methods.
5486
5487         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
5488         since only the former is nulled out after a successful cast. This prevents
5489         crashes with rethrown exceptions when using --debug=casts.
5490
5491 2008-12-24  Mark Probst  <mark.probst@gmail.com>
5492
5493         * mini.h: New macro for checking whether a method is final,
5494         i.e. whether the method or its class is marked final.
5495
5496         * method-to-ir.c: Use the new macro for all final-checks
5497         consistently.  Fixes the crash in the System.ServiceModel tests.
5498
5499 2008-12-23  Mark Probst  <mark.probst@gmail.com>
5500
5501         * mini-exceptions.c (get_exception_catch_class): Corrected another
5502         overly strict assertion.
5503
5504 2008-12-23  Mark Probst  <mark.probst@gmail.com>
5505
5506         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
5507         Clobbering it is not allowed because the caller might use it as
5508         the vtable register in the interface call.
5509
5510 2008-12-19  Mark Probst  <mark.probst@gmail.com>
5511
5512         * mini-exceptions.c (get_exception_catch_class): Corrected an
5513         overly strict assertion.
5514
5515 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
5516         
5517         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
5518
5519         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
5520
5521         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
5522
5523         * cpu-mips.md: correct lengths for certain long_ opcodes.
5524
5525         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
5526
5527         * 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().
5528         
5529 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
5530
5531         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
5532         
5533 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
5534         
5535         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
5536         
5537 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
5538
5539         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
5540         next basic block.
5541         
5542 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
5543
5544         * 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
5545
5546         * 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)
5547         
5548 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
5549         
5550         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
5551         
5552 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
5553
5554         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
5555         gshared code. Fixes #458947.
5556
5557         * generics.cs: Add a test.
5558
5559 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
5560         
5561         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5562         
5563         * mini-mips.c: first pass n32 code generation.
5564
5565         * mini-mips.h: datatypes and defines for n32 support.
5566
5567         * exceptions-mips.c: first pass n32 code generation.
5568         
5569         * tramp-mips.c: first pass n32 code generation.
5570         
5571         * cpu-mips.md: add long_ opcodes.
5572         
5573 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
5574
5575         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5576
5577         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5578         
5579         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5580         
5581         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5582
5583         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5584
5585         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5586
5587         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5588
5589         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
5590
5591         * helpers.c: for mips/n32, don't pass -mips32 to objdump
5592
5593 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
5594
5595         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
5596
5597 2008-12-12  Andres G. Aragoneses  <aaragoneses@novell.com>
5598
5599         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
5600
5601 2008-12-12  Mark Probst  <mark.probst@gmail.com>
5602
5603         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
5604         descriptors for helper functions directly in front of the code.
5605
5606 2008-12-11  Mark Probst  <mark.probst@gmail.com>
5607
5608         * method-to-ir.c: Removed an unnecessary assertion.
5609
5610 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5611
5612         * method-to-ir.c: Merge SGEN changes from the old JIT.
5613
5614 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5615
5616         * driver.c (compile_all_methods_thread_main): Handle failure of
5617         mono_get_method ().
5618
5619 2008-12-10  Mark Probst  <mark.probst@gmail.com>
5620
5621         * mini-ppc.c: Merged with mini-ppc64.c.
5622
5623         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
5624
5625         * Makefile.am: Use the same sources for PPC and PPC64.
5626
5627         * mini-ppc64.c: Removed.
5628
5629 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
5630
5631         * branch-opts.c (remove_block_if_useless): Extract fall through detection
5632         code to mono_bb_is_fall_through.
5633         
5634         * branch-opts.c (mono_remove_critical_edges): Same.
5635
5636 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
5637
5638         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
5639         expect that an OP_BR_REG will be there.
5640
5641 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
5642
5643         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
5644         for the many branch ops. The original check miss OP_BR_REG.
5645
5646         Fixes #457574.
5647         
5648 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
5649
5650         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
5651
5652 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5653
5654         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
5655         while holding the aot lock.
5656
5657 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
5658
5659         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
5660         
5661 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5662
5663         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
5664           to release all runtime callable wrappers held by the runtime.
5665
5666         Contributed under MIT/X11 license.
5667
5668 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5669
5670         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
5671           for Winx64.
5672
5673         Contributed under MIT/X11 license.
5674
5675 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5676
5677         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
5678         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
5679
5680 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
5681
5682         * cpu-mips.md: fix ckfinite length
5683
5684         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
5685         (mono_arch_lowering_pass): cleanup, rearrange for clarity
5686         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
5687         
5688 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
5689
5690         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
5691         
5692 2008-12-08  Geoff Norton  <gnorton@novell.com>
5693
5694         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
5695         size by 8 bytes as well.
5696
5697 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5698
5699         * basic-simd.cs: Fix method names for Vector16b.
5700         
5701 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5702
5703         * basic-simd.cs: Fix method names for Vector16sb.
5704
5705 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5706
5707         * basic-simd.cs: Fix method names for Vector8us.
5708         
5709 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5710
5711         * basic-simd.cs: Fix method names for Vector8s.
5712         
5713 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5714
5715         * basic-simd.cs: Fix method names for Vector4ui.
5716
5717 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5718
5719         * basic-simd.cs: Fix method names for Vector2l.
5720
5721 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5722
5723         * basic-simd.cs: Fix method names for Vector2d.
5724
5725 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5726
5727         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
5728         that are extension methods.
5729
5730 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
5731
5732         * basic-simd.cs: Fix method names for Vector4f.
5733
5734 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
5735
5736         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
5737         as such. Fixes #456669.
5738
5739 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
5740
5741         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
5742         
5743 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
5744
5745         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
5746         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
5747         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
5748         (mips_adjust_stackframe): handle FP spills
5749                 
5750         * mini-ops.h: add mips_mtc1_s2
5751         
5752         * cpu-mips.md: add mips_mtc1_s2
5753         
5754 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
5755
5756         * unwind.c: New file, move the unwind info encoding functions here from
5757         aot-compiler.c, so they could be used at runtime too.
5758
5759 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
5760
5761         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
5762         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
5763         
5764 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
5765
5766         * mini-mips.c: cleanup warnings
5767         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
5768         (mips_adjust_stackframe): handle case of taking the address of stack locals
5769         
5770 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
5771
5772         * aot-compiler.c: Implement a few functions missing from the asm writer.
5773         (emit_method_code): Only write symbols for methods when using the bin
5774         writer, since the assembler can't deal with the characters in our method
5775         names.
5776
5777         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
5778
5779         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
5780         call.
5781
5782         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
5783         a bit to also restore %rax.
5784
5785 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5786
5787         * mini-ppc.c: Some simple merges from mini-ppc64.c.
5788
5789 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
5790
5791         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
5792         arguments.
5793
5794 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5795
5796         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
5797
5798         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
5799         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
5800
5801         * exceptions-ppc64.c: Removed.
5802
5803         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
5804
5805 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5806
5807         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
5808         tramp-ppc64.c.
5809
5810         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
5811
5812         * tramp-ppc64.c: Removed.
5813
5814 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
5815
5816         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
5817         the TYPESPEC table.
5818
5819 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5820
5821         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
5822
5823         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
5824         mini-ppc.h instead of mini-ppc64.h.
5825
5826         * mini-ppc64.h: Removed.
5827
5828 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5829
5830         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
5831         
5832         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
5833         
5834 2008-12-05  Mark Probst  <mark.probst@gmail.com>
5835
5836         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
5837         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
5838         code easier.
5839
5840 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5841
5842         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
5843
5844 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5845
5846         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
5847
5848 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5849
5850         * basic-simd.cs: Tests for operator == and != on Vector4f.
5851
5852 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5853
5854         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
5855
5856         * simd-intrinsics.c: Kill useless enum.
5857
5858 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5859
5860         * cpu-mips.md: add long_conv_to_ovf_i4_2
5861         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
5862
5863 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5864
5865         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
5866         
5867         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
5868
5869 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5870
5871         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
5872         
5873 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
5874
5875         * basic-simd.cs: Add tests for new methods.
5876
5877 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
5878
5879         * simd-intrinsics.c: Add support for operator == and !=
5880         on Vector4(u)i.
5881
5882         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
5883
5884 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
5885
5886         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
5887
5888 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
5889
5890         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
5891
5892         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
5893         MONO_PATCH_INFO_ICALL_ADDR.
5894
5895         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
5896
5897         * aot-compiler.c: Resurrect full-aot support.
5898
5899 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5900
5901         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
5902         
5903 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
5904
5905         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
5906         
5907 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
5908
5909         * basic-simd.cs: Fix tests to work under ppc.
5910         Remove tests for methods that will be removed.
5911
5912 2008-12-03  Mark Probst  <mark.probst@gmail.com>
5913
5914         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
5915         generic type (via a typedef or typeref) correctly.
5916
5917 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
5918
5919         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
5920         diagnose an assertion failure.
5921
5922 2008-12-02  Mark Probst  <mark.probst@gmail.com>
5923
5924         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
5925         Fix trampoline size.
5926
5927         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
5928         conversion opcodes are implemented natively instead via emulation.
5929
5930 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
5931
5932         * cpu-mips.md: remove mips_xori
5933
5934         * mini-ops.h:  remove mips_xori
5935
5936         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
5937
5938         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
5939         
5940         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
5941         
5942 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
5943
5944         * cpu-mips.md: fix instruction lengths.
5945
5946         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
5947
5948         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
5949
5950         * mini-ops.h: fix slti / sltiu op profiles.
5951         
5952 2008-12-02  Martin Baulig  <martin@ximian.com>
5953
5954         * method-to-ir.c (mono_method_to_ir): Disable debugging
5955         information for the init locals block to make the debugger stop
5956         after all locals have been initalized.
5957
5958 2008-12-02  Martin Baulig  <martin@ximian.com>
5959
5960         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
5961         running inside the debugger.
5962
5963 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
5964
5965         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
5966         is enabled.
5967
5968         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
5969         alu->alu imm optimization which only shows if deadce is disabled.
5970
5971         * aot-compiler.c: Rename the function names for the binary and asm writers
5972         so they can coexist in the same process. Rework the xdebug code to use the
5973         asm writer. This avoids the need to call into the runtime to dump the
5974         debugging info. Add more debugging info for types.
5975
5976         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
5977
5978         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
5979         cpu description tables, they can't occur in cpu-<ARCH>.md.
5980
5981         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
5982         the stack in CEE_LDFLDA. Fixes #450542.
5983
5984         * generics.cs: Add a new test.
5985
5986 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
5987
5988         * mini-ops.h: updated MIPS opcodes
5989         * mini-mips.c: decompose long opts
5990         * mini-mips.h: decompose long opts
5991         
5992 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
5993
5994         * cpu-mips.md: fix length on int_rem_un
5995         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
5996         
5997 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
5998
5999         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
6000
6001         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
6002
6003 2008-11-29  Martin Baulig  <martin@ximian.com>
6004
6005         * mini-exceptions.c (mono_handle_native_sigsegv): Check
6006         mono_debug_using_mono_debugger() in addition to the
6007         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
6008
6009 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
6010
6011         * mini-ops.h: updated more MIPS opcodes
6012         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
6013         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
6014         
6015 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6016
6017         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
6018
6019 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
6020
6021         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
6022         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
6023         * mini-ops.h: correct selected mips opcode entries
6024         
6025 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6026
6027         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
6028         make them work.
6029
6030 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6031
6032         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
6033
6034 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
6035
6036         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
6037         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
6038         * mini-mips.h: disable IMT
6039         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
6040         
6041 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6042
6043         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
6044
6045 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6046
6047         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
6048
6049 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
6050
6051         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
6052         consistency.
6053
6054 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
6055
6056         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
6057         for Set/GetVector aligned versions.
6058
6059 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
6060
6061         * basic-simd.cs: Add tests for Get/SetVector.
6062
6063 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6064
6065         * mini.c: Removed g_slist_append_mempool().  Now in
6066         metadata/mempool.c.
6067
6068 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
6069
6070         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
6071         size properly and make the bounds check optional.
6072
6073         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
6074         for SetVector and IsAligned.
6075
6076 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
6077
6078         * mini.c: Remove unused mono_normalize_opcodes () function.
6079
6080 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6081
6082         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
6083         using the new atomic add ops now.
6084
6085         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
6086         add.
6087
6088 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6089
6090         * mini-ppc64.c: Several fixes.
6091
6092 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
6093
6094         * cpu-mips.md: added jump_table
6095         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
6096
6097 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
6098
6099         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
6100
6101 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
6102
6103         * mini-ops.h: corrected a handful of MIPS opcodes.
6104
6105 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
6106
6107         * aot-compiler.c: MIPS to use ELF writer
6108
6109 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
6110
6111         * mini-codegen.c: remove MIPS specific assert.
6112
6113 2008-11-25  Mark Probst  <mark.probst@gmail.com>
6114
6115         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
6116         fixes.  PPC64 now passes most of the runtime regressions.
6117
6118 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
6119
6120         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
6121         volatile intervals a bit.
6122
6123 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6124
6125         * basic-long.cs: New test case.
6126
6127 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
6128
6129         * mini.c (mini_method_compile): Disable globalra for large methods for 
6130         now.
6131
6132         * regalloc2.c (order_moves): Add fp support.
6133
6134         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
6135         source bblock ends with an OP_BR_REG.
6136
6137         * ratests.cs: Add a new test.
6138
6139 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6140
6141         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
6142         sharing.  PPC64 now passes generics.exe.
6143
6144 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6145
6146         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
6147
6148 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
6149
6150         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
6151         memory when mono_jit_info_table_find () can't find the method in the
6152         LMF case.
6153
6154         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
6155         AOTed code too.
6156         
6157         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
6158         writer too.
6159
6160 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6161
6162         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
6163         Several fixes.  PPC64 now runs exceptions.exe and
6164         devirtualization.exe.
6165
6166 2008-11-22  Mark Probst  <mark.probst@gmail.com>
6167
6168         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
6169         arrays.exe and basic-math.exe.
6170
6171 2008-11-22  Mark Probst  <mark.probst@gmail.com>
6172
6173         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
6174         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
6175
6176 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
6177
6178         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
6179
6180 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
6181
6182         * method-to-ir.c: Move bounds checking macros to ir-emit.h
6183
6184         * ir-emit.h: Move macros from method-to-ir.c to here.
6185
6186 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
6187
6188         * mini-ops.h: Correct the long simd ops to use LREG.
6189
6190 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
6191
6192         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
6193         
6194         * mini-ops.h: Correct the dreg type of a few long opcodes.
6195
6196         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
6197         Add netbsd support.
6198
6199 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
6200
6201         * mini-ppc.c: remove negative stack references in epilog
6202         for platforms that don't support the red zone.
6203
6204 2008-11-21  Mark Probst  <mark.probst@gmail.com>
6205
6206         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
6207         point regs.  Now PPC64 passes basic-calls.exe.
6208
6209 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6210
6211         * basic-simd.cs: Add tests for accessors of Vector2l.
6212
6213 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6214
6215         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
6216
6217         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
6218         
6219         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
6220
6221 2008-11-21  Mark Probst  <mark.probst@gmail.com>
6222
6223         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
6224         PPC64 passes basic-long.exe.
6225
6226 2008-11-20  Mark Probst  <mark.probst@gmail.com>
6227
6228         * decompose.c: Decompose carry and overflow add on PPC64 like on
6229         other 64 bit archs.  Don't decompose sub at all on PPC64.
6230
6231         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
6232         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
6233         basic-long.exe.
6234
6235 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6236
6237         * basic-simd.cs: Add tests for accessors of Vector2d.
6238
6239 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6240
6241         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
6242
6243         * cpu-x86.md: Same.
6244
6245         * mini-x86.c (mono_arch_output_basic_block): Same.
6246         
6247         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
6248
6249 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6250
6251         * basic-simd.cs: Add tests for accessors of Vector4f.
6252
6253 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6254
6255         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
6256
6257         * cpu-x86.md: Same.
6258
6259         * mini-x86.c (mono_arch_output_basic_block): Same.
6260         
6261         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
6262
6263 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6264
6265         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
6266
6267 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6268
6269         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
6270
6271         * cpu-x86.md: Same.
6272
6273         * mini-x86.c (mono_arch_output_basic_block): Same.
6274         
6275         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
6276
6277 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6278
6279         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
6280
6281 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6282
6283         * simd-intrinsics.c: Enable setters for Vector16sb.
6284
6285 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
6286
6287         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
6288
6289         * cpu-x86.md: Same.
6290
6291         * mini-x86.c (mono_arch_output_basic_block): Same.
6292         
6293         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
6294
6295 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
6296
6297         * simd-intrinsics.c: Implement setter for Vector8us.
6298
6299 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
6300
6301         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
6302         for dead variables.
6303
6304 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6305
6306         * mini-ppc.c: remove references to the red zone in the prolog
6307         (for systems that don't support it).
6308
6309 2008-11-19  Mark Probst  <mark.probst@gmail.com>
6310
6311         * cpu-ppc64.md: Fixed a few instruction lengths.
6312
6313         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
6314         now.
6315
6316 2008-11-19  Mark Probst  <mark.probst@gmail.com>
6317
6318         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
6319         basic.exe now.
6320
6321 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
6322
6323         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
6324
6325 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
6326
6327         * mini-ops.h: Added OP_INSERT_I2.
6328
6329         * cpu-x86.md: Same.
6330
6331         * mini-x86.c (mono_arch_output_basic_block): Same.
6332         
6333         * simd-intrinsics.c: Implement setter for Vector8s.
6334
6335         * simd-methods.h: Add the names of get setters of Vector8s.
6336
6337 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6338
6339         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
6340         
6341         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
6342         parameters.
6343
6344         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
6345
6346 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6347
6348         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
6349         for PPC64.  An empty program runs now.
6350
6351 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6352
6353         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
6354
6355         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
6356         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
6357         info for JITted code is emitted into a shared library, loadable into gdb.
6358
6359 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6360
6361         * Makefile.am: Changes to build PPC64.
6362
6363         * mini-arch.h: Include mini-ppc64.h on PPC64.
6364
6365 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6366
6367         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
6368         in PPC code up to r119147.
6369
6370 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6371
6372         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
6373         cpu-ppc64.md: Changes for PPC64.
6374
6375         Based on code submitted by andreas.faerber@web.de at
6376         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
6377         X11/MIT license.
6378
6379 2008-11-18  Mark Probst  <mark.probst@gmail.com>
6380
6381         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
6382         cpu-ppc64.md: Copied from the corresponding PPC files from
6383         r118846.
6384
6385 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
6386
6387         * mini-ops.h: Added OP_ROUND.
6388
6389         * cpu-x86.md: Added round.
6390
6391         * mini-x86.c: Added support for intrinsicing Math.Round (double).
6392
6393         * basic-math.cs: Added test_0_round to test rounding.
6394
6395         Contributed under MIT/X11 license.
6396
6397 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6398
6399         * aot-compiler.c : Fix the Winx64 build.
6400
6401         Contributed under MIT/X11 license.
6402
6403 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
6404
6405         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
6406         in OP_EXTRACT_R8 to avoid possible stack corruption.
6407
6408 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
6409
6410         * mini-ops.h: Added OP_EXTRACT_R8/I8.
6411
6412         * cpu-x86.md: Added extract_r8.
6413
6414         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
6415         
6416         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
6417         a couple of OP_EXTRACT_I4.
6418
6419         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
6420
6421         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
6422
6423 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
6424
6425         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
6426         and not 4.1. 
6427
6428 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
6429
6430         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
6431         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
6432
6433         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
6434         are not needed any more.
6435
6436         * mini.h: Remove the unused INS_LIST macros.
6437
6438         * mini.c (mini_method_compile): Remove a disable globalra case which is no
6439         longer needed.
6440
6441         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
6442         ir-emit.h.
6443
6444         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
6445         mono_alloc_ireg () instead.
6446
6447         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
6448         macros.
6449
6450         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
6451         on amd64.
6452
6453         * aot-runtime.c (load_aot_module): Disable AOT when running under
6454         CAS.
6455
6456         * mini-amd64.h: Change the monitor fastpath defines to check for
6457         !PLATFORM_WIN32 so they work on *bsd too.
6458
6459         * mini.h mini.c mini-hhpa.c: Remove more unused code.
6460
6461         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
6462
6463         * mini.h (MonoCompile): Remove new_ir flag.
6464
6465         * regalloc.h regalloc.c: Remove unused code.
6466
6467         * cpu-*.md: Remove more unused opcodes.
6468
6469         * simple-cee-ops.h simple-mini-ops.h: Removed.
6470
6471         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
6472         
6473 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
6474
6475         * aliasing.h: Removed.
6476
6477         * *.c: Remove references to aliasing.h and inssel.h.
6478
6479         * mini.c: Remove additional unused functions.
6480
6481         * mini-ops.h cpu-*.md: Remove unused opcodes.
6482
6483 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
6484
6485         Remove the old JIT code.
6486
6487         * inssel*.brg: Removed.
6488
6489         * ssa.c abcremoval.c aliasing.c: Removed.
6490
6491         * ssa2.c: Renamed to ssa.c.
6492
6493         * abcremoval2.c: Renamed to abcremoval.c.
6494
6495         * *.c: Removed all !cfg->new_ir code.
6496
6497         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
6498         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
6499
6500         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
6501         
6502 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
6503
6504         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
6505         to simplify the code and cut back on the number of global symbols in the AOT
6506         file.
6507         
6508         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
6509
6510 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
6511
6512         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
6513         with the got/got_info tables.
6514
6515         * mini.h: Bump AOT file format version.
6516         
6517         * unwind.h: New file, contains definitions for stack unwinding.
6518
6519         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
6520         to cfg->unwind_ops.
6521         
6522         * aot-compiler.c: Generalize the emitting of unwind information to use the
6523         information in cfg->unwind_ops.
6524
6525         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
6526
6527         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
6528         AOT method frames. Enable writing symbols for methods by default.
6529
6530 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
6531
6532         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
6533         and make it work with vectors of element sizes 1, 2 and 4.
6534
6535         * simd-intrinsics.c: Enable getter for all vectors with element size
6536         1, 2 or 4.
6537
6538         * simd-methods.h: Add the names of other getters.
6539
6540         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
6541
6542         * cpu-x86.md: Same.
6543
6544         * mini-x86.c: Same.
6545
6546 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
6547
6548         * mini-ppc.h: portability fix.
6549
6550 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
6551
6552         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
6553         buggy and will overwrite it.
6554
6555 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6556
6557         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
6558         Use it to emit local symbols for all methods so AOTed methods show up with
6559         their full name in gdb/valgrind output.
6560
6561 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6562
6563         * mini-ppc.c: portability fixes.
6564
6565 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6566
6567         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
6568         entries out of the if (!generic_shared...) code so it is always done.
6569         (mono_class_init_trampoline): Do the patching when running under valgrind
6570         too, newer versions of valgrind have no problems with it.
6571
6572 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
6573
6574         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
6575         further sections.
6576
6577 2008-11-13  Mark Probst  <mark.probst@gmail.com>
6578
6579         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
6580         filters.
6581
6582 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6583
6584         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
6585
6586 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6587
6588         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
6589
6590         * cpu-x86.md: Same.
6591
6592         * mini-x86.c: Same.
6593
6594         * simd-intrinsics.c: Same.
6595
6596 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6597
6598         * simd-intrinsics.c: Enable constructor intrinsics for all types.
6599
6600 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6601
6602         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
6603         to work with more Vector types.
6604
6605 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
6606
6607         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
6608         store the elemens directly instead of using and intermediate.
6609
6610 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
6611
6612         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
6613
6614         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
6615         to preserve %eax for aot plt trampolines.
6616
6617         * aot-compiler.c (compile_method): Don't skip synchronized methods.
6618         (encode_method_ref): Flag synchronized methods so they won't go through
6619         the AOT trampoline.
6620
6621         * aot-compiler.c: Additional work to support AOTing synchronized methods/
6622         wrappers.
6623
6624         * cpu-ia64.md (jmp): Increase max length.
6625
6626 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
6627
6628         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
6629         open generic classes.
6630
6631         * aot-compiler.c: Enable the ELF writer on ELF platforms.
6632
6633         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
6634         box+brtrue optimization since it causes test failures on x86.
6635
6636 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
6637
6638         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
6639
6640         * cpu-x86.md: Same.
6641
6642         * mini-x86.c: Same.
6643
6644         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
6645         for simd ctor values. 
6646
6647         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
6648         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
6649
6650 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
6651
6652         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
6653         LogicalRightShift.
6654
6655         * simd-instrincs.c: Same.
6656
6657         * basic-simd.cs: Same.
6658
6659 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
6660
6661         * ratests.cs: Add more tests.
6662
6663         * regalloc2.c (add_spill_code): Handle more corner cases.
6664
6665 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
6666
6667         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
6668         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
6669         both the source an destination of an instruction.
6670
6671 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
6672
6673         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
6674         wapihandles.c: more portability changes.
6675
6676 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
6677
6678         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
6679         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
6680         safe to execute in a signal handler and the kernel provides better
6681         the info in /proc/self/smaps. Avoid the assert on sigaction during
6682         cleanup.
6683
6684 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
6685
6686         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
6687         do the bblock linking hack if it is actually needed.
6688
6689         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
6690         up linking.
6691
6692         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
6693         crash problem is fixed.
6694
6695         * branch-opts.c (mono_remove_critical_edges): Link up newly added
6696         bblocks.
6697
6698         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
6699         for catch clauses.
6700         (mini_method_compile): Set the starting value of next_vreg to 
6701         MAX_IREGS + MAX_FREGS when using globalra.
6702
6703         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
6704         filter clauses with BB_EXCEPTION_HANDLER.
6705
6706         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
6707
6708 2008-11-10  Mark Probst  <mark.probst@gmail.com>
6709
6710         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
6711         space for stdcall.  Fixes regressions on Win32.
6712
6713 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
6714
6715         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
6716         bblocks.
6717         (linear_scan): Remove an assert which doesn't seem to be needed.
6718
6719         * local-propagation.c (mono_local_deadce): Avoid a call to
6720         MONO_DELETE_INS which would screw up the instruction linking.
6721
6722         * mini.c (mono_decompose_op_imm): Make this work with globalra.
6723
6724         * regalloc2.c: Upgrade to work the current JIT code.
6725
6726 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
6727
6728         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
6729         case.
6730
6731         * aot-runtime.c: Remove some dead code.
6732
6733         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
6734         consistency.
6735         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
6736
6737         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
6738         trampolines using sscanf since atoi doesn't work on large unsigned values.
6739
6740         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
6741         Initialize code_size.
6742
6743 2008-11-08  Mark Probst  <mark.probst@gmail.com>
6744
6745         * method-to-ir.c (mini_emit_inst_for_method): Make
6746         Interlocked.CompareExchange work for Int arguments on 32 bit
6747         archs, as well.
6748
6749 2008-11-07  Mark Probst  <mark.probst@gmail.com>
6750
6751         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
6752
6753 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
6754
6755         * main.c Fix MSVC build.
6756
6757         Contributed under MIT/X11 license.
6758
6759 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6760
6761         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
6762         alignment larger than 8 bytes are aligned correctly, too.
6763
6764         * mini.c: Honor the min_align field of MonoClass when laying out
6765         the stack.
6766
6767 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
6768
6769         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
6770
6771         * aot-compiler.c (emit_plt): Fix a warning.
6772         
6773         * aot-compiler.c: Implement ARM support in the binary writer.
6774
6775 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
6776
6777         * basic-simd.cs: Add test for getter with byref arg.
6778         Fix the naming of a few tests.
6779         Add missing checks to a test.
6780
6781 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
6782
6783         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
6784
6785         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
6786         most of the full-aot support for monitor enter/exit trampolines.
6787
6788         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
6789         enter/exit trampoline creation functions.
6790
6791         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
6792         make dist.
6793
6794 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
6795
6796         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
6797         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
6798         implement the needed functionality without adding crap to the runtime.
6799
6800 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
6801
6802         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
6803         non-x86 builds.
6804
6805         * mini.c (mono_build_date): New global version holding the build date in
6806         string format.
6807         
6808         * Makefile.am (buildver.c): Generate a file containing the build date.
6809
6810         * main.c: Set the build date from the generated file.
6811
6812         * mini.c (mono_get_runtime_build_info): New helper function returning build
6813         information in a string format.
6814         
6815         * driver.c (mono_main): Print the build date in --version.
6816
6817         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
6818         file when the bind-to-runtime-version option is used.
6819
6820 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
6821
6822         * simd-intrinsics.c: Fix bug when using getters and byref args. 
6823
6824 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
6825
6826         * simd-methods.h: Rename prefetch methods.
6827
6828         * simd-intrinsics.c: Same.      
6829
6830 2008-11-05  Mark Probst  <mark.probst@gmail.com>
6831
6832         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
6833         sizes.
6834
6835 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6836
6837         * aot-compiler.c: Use the bundled elf header files instead of depending on
6838         the system one.
6839         
6840         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
6841         mempool.
6842
6843         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
6844         on every call.
6845
6846 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
6847
6848         * cpu-x86.md: Add store nta ops.
6849
6850         * mini-ops.h: Same.
6851
6852         * mini-x86.c: Same.
6853
6854         * mini.h: Add an enum for simd prefetch modes.
6855
6856         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
6857         of store. Use the changed code to support store nta.
6858
6859         * simd-intrinsics.c: Add prefetch ops for all vector types.
6860
6861 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6862
6863         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
6864         threads.
6865         
6866         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
6867         names.
6868
6869         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
6870         trampolines.
6871
6872 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6873
6874         * mini-x86.c: Fixed commit.
6875
6876 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6877
6878         * aot-compiler.c (emit_plt): Align the plt section only on x86.
6879
6880 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6881
6882         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
6883         and MONITOR_EXIT, for the ASM fastpaths.
6884
6885         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
6886         available.
6887
6888         * mini.c, patch-info.h: Signature and patch infos for
6889         Monitor.Enter/Exit trampolines.
6890
6891         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
6892
6893         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
6894         Monitor.Enter/Exit ASM fastpath for Linux.
6895
6896 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6897
6898         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
6899
6900         * objects.cs: Add a new test.
6901         
6902         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
6903
6904         * aot-runtime.c (load_method): Run class initialization in the PLT case even
6905         if MONO_LOG_LEVEL is set.
6906
6907         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
6908
6909         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
6910
6911         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
6912         
6913         * aot-compiler.c: Change the relocation code to use virtual addresses instead
6914         of file offsets. Align the sections belonging to the data segment to 
6915         PAGESIZE.
6916
6917 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
6918
6919         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
6920         elf.h. Port it to amd64.
6921
6922 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
6923
6924         * driver.c: Enable SIMD by default.
6925
6926 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
6927
6928         * cpu-x86.md: Add prefetch op.
6929
6930         * mini-ops.h: Same.
6931
6932         * mini-x86.c: Same.
6933
6934         * mini.h: Add an enum for simd prefetch modes.
6935
6936         * simd-methods.h: Add prefetch function names.
6937
6938         * simd-intrinsics.c: Add prefetch ops for all vector types.
6939
6940 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
6941
6942         * aot-compiler.c (emit_bytes): Speed this up a little.
6943
6944 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6945
6946         * aot-compiler.c: Add JIT time etc. statistics.
6947         
6948         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
6949
6950         * mini.h (MonoCompile): Add 'got_offset' field.
6951
6952         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
6953         method_got_offsets array.
6954
6955         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
6956         wrappers.
6957
6958         * aot-compiler.c (compile_method): Add generic method instances referenced
6959         by the method to the list of methods to be compiled, this is required so if
6960         A<T> references B<T>, and another assembly references A<int>, then it will
6961         also get a copy of B<int>.
6962
6963         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
6964         when checking for monitor enter/exit.
6965
6966 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6967
6968         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
6969         for Monitor.Enter and Monitor.Exit if enabled.
6970
6971         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
6972         Solaris.
6973
6974 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
6975
6976         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
6977         of an OP_MOVE. Fixes #440046.
6978
6979         * basic-long.cs: Add a new test.
6980
6981 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
6982
6983         * mini.h: Add synchronization note for the managed counter-part.
6984
6985         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
6986         returns the simd caps of the current cpu.
6987
6988 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
6989
6990         * basic-simd.cs: Remove Console.WriteLine.
6991
6992 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6993
6994         * basic-simd.cs: New tests for Vector2ul.
6995
6996 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6997
6998         * simd-intrinsics.c: Add new vector type Vector2ul.
6999
7000 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7001
7002         * basic-simd.cs: New tests for Vector2l.
7003
7004 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7005
7006         * cpu-x86.md: Add long version of most packed int ops.
7007
7008         * mini-ops.h: Same.
7009
7010         * mini-x86.h: Same.
7011
7012         * simd-intrinsics.c: Add new vector type Vector2l.
7013
7014 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7015
7016         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
7017
7018         * simd-methods.h: Remove SN_op_BitwiseXor.
7019
7020 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
7021
7022         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
7023         alignment.
7024
7025 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7026
7027         * basic-simd.cs: Test for Vector2d.
7028
7029         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
7030         value.
7031
7032 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7033
7034         * cpu-x86.md: Add double version of all packed float ops.
7035
7036         * mini-ops.h: Same.
7037
7038         * mini-x86.h: Same.
7039
7040         * simd-intrinsics.c: Add new vector type Vector2d.
7041
7042         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
7043
7044         * simd-methods.h: Add Duplicate.
7045
7046 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7047
7048         * basic-simd.cs: Test for packing with signed saturation.
7049
7050 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
7051
7052         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
7053         found in the TYPESPEC table.
7054
7055 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7056
7057         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
7058         too.
7059
7060         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
7061
7062         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
7063         instead of the RVA, since the RVA can be changed by tools like the cil 
7064         stripper.
7065
7066         * method-to-ir.c (mono_method_to_ir2): Ditto.
7067
7068         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
7069         (deserialize_variable): Ditto.
7070
7071 2008-10-25  Martin Baulig  <martin@ximian.com>
7072
7073         * debug-mini.c (write_variable): Use
7074         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
7075
7076 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7077
7078         * cpu-x86.md: Add unsigned variants of packd and packw.
7079
7080         * mini-ops.h: Same.
7081
7082         * mini-x86.h: Emit the right instruction for packd and packw.
7083         Add unsigned variants of packd and packw.
7084
7085         * simd-intrinsics.c: Packd and packw were used in place of their
7086         unsigned variants. Change that.
7087         Add intrinsics for (Signed)PackWithSignedSaturation.
7088
7089         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
7090
7091 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7092
7093         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
7094
7095 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7096
7097         * mini-ops.h: Remove dword packed add/sub with saturation ops.
7098
7099         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
7100
7101         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
7102         sse instructions.
7103
7104         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
7105
7106 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7107
7108         * method-to-ir.c, mini.c: Special casing for the synchronized
7109         wrapper for the ldtoken+GetTypeFromHandle case.
7110
7111 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
7112
7113         * mini.c (mono_replace_ins): Move this to branch-opts.c.
7114
7115         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
7116         created/split bblocks.
7117
7118 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7119
7120         * mini-ops.h: Add packed signed mul high.
7121         
7122         * cpu-x86.md: Same.
7123
7124         * mini-x86.c (mono_arch_output_basic_block): Same.
7125
7126         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
7127
7128         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
7129
7130 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7131
7132         * basic-simd.cs: Tests for Vector16sb.
7133
7134 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
7135
7136         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
7137
7138 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7139
7140         * mini-ops.h: Add packed signed min, max and compare greater.
7141         
7142         * cpu-x86.md: Same.
7143
7144         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
7145         saturation.
7146
7147         * simd-methods.h: Add CompareGreaterThan.
7148
7149         * simd-methods.h: Remove CompareEquals.
7150
7151         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
7152
7153         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
7154
7155         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
7156         CompareEqual.
7157
7158 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7159
7160         * basic-simd.cs: Fix tests due to change in the API.
7161
7162 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7163
7164         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
7165
7166 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
7167
7168         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
7169
7170         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
7171         inst_offset as this has invalid values for LDADDR.
7172
7173 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
7174
7175         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
7176
7177         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
7178
7179 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7180
7181         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
7182         for accessing field->data.
7183
7184 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
7185
7186         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
7187
7188 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
7189
7190         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
7191
7192         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
7193
7194 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7195
7196         * dominators.c (mono_compute_natural_loops): Allocate GList enties
7197         from the cfg mempool.
7198
7199 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
7200
7201         * basic-simd.cs: Tests for new methods in Vector8us.
7202
7203 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
7204
7205         * mini-ops.h: Add multiply and store high.
7206         
7207         * cpu-x86.md: Same.
7208
7209         * mini-x86.c (mono_arch_output_basic_block): Same.
7210
7211         * simd-methods.h: Same.
7212
7213         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
7214         and CompareEqual.
7215
7216 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7217
7218         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
7219         mono_class_setup_vtable ().
7220
7221         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
7222         mono_class_get_vtable_entry () for accessing klass->vtable.
7223
7224         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
7225
7226         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
7227         found.
7228
7229         * method-to-ir.c (mono_save_token_info): Don't save references made from
7230         wrappers.
7231
7232         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
7233         of generic instances.
7234
7235         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
7236
7237 2008-10-19  Mark Probst  <mark.probst@gmail.com>
7238
7239         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
7240         OP_JMP depends on the method signature.  Calculate it properly.
7241
7242 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7243         
7244         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
7245         called directly.
7246
7247         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
7248         instances.
7249         (emit_extra_methods): Add another table mapping method indexes to 
7250         offsets in the extra_method_info table.
7251
7252         * mini.h: Bump AOT file format version.
7253         
7254         * aot-runtime.c: Merge most of the code from mono_aot_get_method
7255         and mono_aot_get_method_from_token () into one function.
7256
7257 2008-10-19  Mark Probst  <mark.probst@gmail.com>
7258
7259         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
7260         separate counter.
7261
7262 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
7263
7264         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
7265         methods.
7266
7267         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
7268         disable_aot.
7269
7270         * mini.c (mono_patch_info_equal): Compare the generic context as well.
7271
7272         * mini.h: Bump aot file format version.
7273
7274         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
7275         AOT file can contain native code for methods which are not in the METHOD
7276         table. Generate code for non-sharable generic instances of generic methods
7277         found in the METHODSPEC table.
7278         
7279         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
7280         encoding generic type handles.
7281
7282         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
7283         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
7284
7285         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
7286         macros + MONO_ADD_INS.
7287
7288         * mini.c (mono_jump_info_token_new2): New function which takes a generic
7289         context as well.
7290
7291         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
7292
7293         * mini.h: Bump aot file format version.
7294
7295         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
7296
7297 2008-10-17  Mark Probst  <mark.probst@gmail.com>
7298
7299         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
7300         platforms, with definable stack alignment value.  Set to 16 now
7301         for all platforms.
7302
7303         * mini.c, mini.h, driver.c: Command line option for disabling
7304         stack alignment.
7305
7306 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
7307
7308         * basic-simd.cs: Tests for new methods in Vector4ui.
7309
7310 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
7311
7312         * mini-ops.h: Add packed int shuffle.
7313         
7314         * cpu-x86.md: Same.
7315
7316         * mini-x86.c (mono_arch_output_basic_block): Same.
7317
7318         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
7319         extract mask, max, min, shuffle.
7320
7321         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
7322
7323 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
7324
7325         * basic-simd.cs: Tests for new methods in Vector8us.
7326
7327 2008-10-17  Mark Probst  <mark.probst@gmail.com>
7328
7329         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
7330         RuntimeTypeHandle, not a TypedReference.
7331
7332 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
7333
7334         * simd-intrinsics.c: remove relocations.
7335
7336 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
7337
7338         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
7339         optimizations from the x86 backend.
7340
7341 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
7342
7343         * simd-methods.h, simd-intrinsics.c: debloat method names and
7344         prepare for no relocations.
7345
7346 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7347
7348         * mini-ops.h: Add packed min/equal and sum of absolute differences.
7349         
7350         * cpu-x86.md: Same.
7351
7352         * mini-x86.c (mono_arch_output_basic_block): Same.
7353
7354         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
7355         extract mask, max, min and sum of absolute differences.
7356
7357         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
7358         method name.
7359
7360 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7361
7362         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
7363         Renamed one test for consistency.
7364
7365 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7366
7367         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
7368         fix to the code that deal with other blocks.
7369
7370 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7371
7372         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
7373
7374 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
7375
7376         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
7377         that deals with vreg interference. Explicitly check for OP_LDADDR to be
7378         able to process the source reg.
7379
7380 2008-10-16  Martin Baulig  <martin@ximian.com>
7381
7382         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
7383
7384         * inssel.brg: Add `OP_HARD_NOP'.
7385
7386         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
7387
7388         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
7389         `OP_HARD_NOP' instruction when running inside the debugger.
7390
7391         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
7392         `OP_HARD_NOP' instruction when running inside the debugger.
7393
7394 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7395
7396         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
7397         now works. The issue with the regalloc tripping up no longer
7398         happens.
7399
7400         * simd-intrinsics.c (load_simd_vreg): Same.
7401
7402 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7403         
7404         * basic-simd.cs: Tests for new Vector8ui methods.
7405
7406 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7407
7408         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
7409         only for type. This fixes crashes where MonoInst::klass is checked
7410         for ops of type != VTYPE or OBJ.
7411
7412         * simd-intrinsics.c (load_simd_vreg): Same.
7413
7414 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
7415
7416         * mini-ops.h: Add ops for packed shuffle/max/avg and
7417         extract mask.
7418         
7419         * cpu-x86.md: Same.
7420
7421         * mini-x86.c (mono_arch_output_basic_block): Same.
7422
7423         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
7424         extract mask.
7425
7426         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
7427         to emit extract mask op.
7428
7429         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
7430         to emit word shuffles.
7431
7432 2008-10-15  Mark Probst  <mark.probst@gmail.com>
7433
7434         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
7435         the largest alignment needed by a variable, but at least
7436         sizeof(gpointer).
7437
7438 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7439
7440         * basic-simd.cs: Tests for the fixes in the last commit.
7441
7442 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7443
7444         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
7445         no longer handles STACK_PTR input.
7446
7447         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
7448
7449         * simd-intrinsics.c (load_simd_vreg): New function that works like 
7450         get_simd_vreg   but handles STACK_PTR input.
7451
7452         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
7453         as the input can be an arbitrary pointer.
7454
7455         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
7456         LDADDR local optimization directly otherwise use a store op.
7457
7458 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7459
7460         * basic-simd.cs: Tests for dup low and dup high.
7461
7462 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
7463
7464         * mini-ops.h: Add dup low and dup high ops.
7465         
7466         * cpu-x86.md: Same.
7467
7468         * mini-x86.c (mono_arch_output_basic_block): Same.
7469
7470         * simd-intrinsics.c (vector4f_intrinsics): Same.
7471
7472 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
7473
7474         * basic-simd.cs: Tests for recently added functionality.
7475
7476 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
7477
7478         * mini-ops.h: Add remaining sse1 fp ops.
7479         
7480         * cpu-x86.md: Add remaining sse1 fp ops.
7481
7482         * mini-x86.c (mono_arch_output_basic_block): Same.
7483
7484         * mini.h: Add enum for simd FP compare conditions.
7485
7486         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
7487
7488         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
7489         so the backed can generate the appropriate op.
7490
7491 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
7492         This patch squeese one more byte from the SimdIntrinsc struct.
7493
7494         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
7495         a a shift amount intead of simply or'ing it.
7496
7497         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
7498
7499         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
7500         byte so we can have an aditional flags field without increasing struct size.
7501
7502         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
7503         against the simd_supported_versions bitmask.
7504
7505         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
7506
7507 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
7508
7509         * mini.c: remove rawbuffer code (the only use here is unsafe because
7510         it takes locks during signal handling and the kernel now provides much
7511         better info in proc/pid/smaps these days).
7512
7513 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7514
7515         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
7516         OP_X86_PUSH_OBJ. Fixes #434620.
7517
7518         * objects.cs: Add a test.
7519         
7520 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
7521
7522         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
7523         that the packuswb/packusdw don't work with unsigned numbers for what
7524         would be negative numbers in signed format.
7525
7526         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
7527         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
7528
7529         * mini-ops.h: Add doubleword forms of many ops and packing ones.
7530
7531         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
7532
7533         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
7534
7535         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
7536
7537         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
7538         add more ops.
7539
7540         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
7541         version as the enum in mini.h.
7542
7543         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
7544         for sse3 ops, check the simd_version field if present. This way the code
7545         works with all versions of sse.
7546
7547 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7548
7549         * simd-intrinsics.c: Fixed intrinsic name typo.
7550
7551         * mini.h: Added missing simd exported function.
7552
7553         * basic-simd.cs: Added tests for Vector4ui.
7554         Fixed broken test for Vector16b.
7555
7556 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7557
7558         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
7559         the max length to 64.
7560
7561 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7562
7563         * method-to-ir.c: Only do the fast virtual generic method call for
7564         non-wrapper methods.
7565
7566         * mini.h, mini-trampolines.c: The new generic virtual remoting
7567         trampoline handles virtual method calls via the vtable (as done by
7568         the fast virtual generic method calls) to remoting proxies.
7569
7570         * mini.c (mono_jit_create_remoting_trampoline): For generic
7571         methods reate a generic virtual remoting trampoline.
7572
7573         * mini-amd64.h: Enable fast virtual generic method calls again.
7574
7575 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7576
7577         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
7578         restore registers when doing tail calls.
7579
7580 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7581
7582         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
7583         Vector4ui.
7584
7585 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7586
7587         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
7588
7589 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7590
7591         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
7592
7593 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7594
7595         * basic-simd.cs: Retrofit for API changes.
7596
7597 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7598
7599         * mini-ppc.c: Handle integer stack arguments for tail calls.
7600
7601 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7602
7603         * optflags-def.h: Removed sse3 optimization.
7604
7605         * driver.c: Same.
7606
7607         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
7608         sse3.
7609
7610         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
7611
7612         * mini.h: Added enumeration with simd versions.
7613
7614         * simd-intrinsics.c (emit_intrinsics): Use the new static var
7615         for detecting SSE3.
7616
7617         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
7618
7619         * mini.c (mini_init): Call mono_simd_intrinsics_init.
7620
7621 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7622
7623         * basic-simd.cs: Added tests for Vector8u and Vector16u.
7624
7625         * basic-simd.cs: Fixed test naming.
7626
7627 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7628
7629         * mini-ops.h: Added ops for packed and saturated math, shifts
7630         and packing/unpacking.
7631
7632         * cpu-x86.md: Added descriptors for the above ops.
7633
7634         * mini-x86.c: Added code to emmit the above ops.
7635
7636         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
7637
7638 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7639
7640         * aot-compiler.c (compile_method): Enable AOT for generic code.
7641
7642         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
7643
7644 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
7645
7646         * mini.c: add a workaround for a common screwup that ends up blamed
7647         to mono (other processes blocking signal delivery).
7648
7649 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7650
7651         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
7652         in the LDFLD/STFLD opcodes. Fixes #432673.
7653
7654         * iltests.il.in: Add a new test.
7655
7656 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
7657
7658         * mini-arm.c: attach the thread in unmanaged->managed transitions
7659         using delegates (bug #433148).
7660
7661 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
7662
7663        * basic-simd.cs: Use new ShuffleSel constants.
7664
7665 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
7666
7667         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
7668
7669         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
7670         only disable simd intrinsics if no sse2 is detected.
7671
7672         * optflags-def.h: Added sse3.
7673
7674         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
7675         is disabled.
7676
7677 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7678
7679         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
7680         when adding delegate-invoke wrappers.
7681
7682 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7683
7684         * Makefile.am: Reenable the simd tests.
7685
7686 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7687
7688         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
7689           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
7690           other vreg is allocated to that hreg.
7691
7692         Contributed under MIT/X11 license.
7693
7694 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
7695
7696         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
7697         yet checked in.
7698
7699 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
7700
7701         * basic-simd.cs: New test suite for SIMD intrinsics.
7702
7703         * Makefile.am: Added new tests.
7704
7705 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
7706
7707         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
7708
7709         * mini-ops.h: Same.
7710
7711         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
7712
7713         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
7714         using SSE2 aware opcodes.
7715
7716         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
7717         is enabled, this code path is only reachable if conversion ops are emmited after
7718         mono_method_to_ir.
7719
7720         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
7721
7722         This optimization saves 6 bytes per conversion against the old version.
7723
7724 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7725
7726         * aot-compiler.c (compile_method): Don't skip methods referencing 
7727         generic methods without a corresponding entry in token_info_hash, since
7728         encode_method_ref () can handle all generic methods now.
7729
7730         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
7731         generic context is set.
7732         
7733         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
7734         generic sharing of LDTOKEN.
7735
7736 2008-10-06  Mark Probst  <mark.probst@gmail.com>
7737
7738         * mini-amd64.h: Temporarily disabled fast virtual generic method
7739         calls because it breaks the System.Runtime.Remoting tests.
7740
7741 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7742
7743         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
7744
7745         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
7746         so inlining actually works.
7747         (check_inline_caller_method_name_limit): Ditto.
7748
7749 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
7750
7751         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
7752         64 bit safety (from Olaf Hering and Andreas Farber).
7753
7754 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7755         
7756         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
7757         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
7758         unused virtual call support code.
7759
7760         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
7761         
7762         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
7763         which can't use aot trampolines.
7764         (decode_patch): Don't create aot trampolines for methods which can't use
7765         them.
7766
7767         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
7768         use aot trampolines.
7769
7770         * mini.h: Bump AOT image format version.
7771         
7772 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
7773
7774         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
7775         to save_token_info () since cmethod is inflated for constrained calls.
7776
7777         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
7778
7779 2008-10-04  Andreas Farber  <andreas.faerber@web.de>
7780
7781         * Makefile.am: Add build rules for ppc64.
7782         This avoids the build failing at pedump with unresolved symbols
7783         due to lack of arch_sources. Instead it will now fail earlier
7784         due to lack of cpu-ppc64.md.
7785
7786         Contributed under MIT/X11 license.
7787
7788 2008-10-04  Mark Probst  <mark.probst@gmail.com>
7789
7790         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
7791         tail calls.
7792
7793         * iltests.il.in: Add test case for tail call with many arguments.
7794
7795 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7796
7797         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
7798         to the fast virtual generic method code until the aot case is fixed.
7799
7800 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7801
7802         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
7803
7804 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7805
7806         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
7807         thunks.
7808
7809 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7810         
7811         * simd-intrinsics.c: Forgot to add this one.
7812
7813         * mini-codegen.c: Fix macro in case SIMD is not supported.
7814
7815 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7816         
7817         This patch land initial JIT support for simd intrinsics.
7818
7819         * mini-x86.h: Added new define to make --enable_minimal work on x86.
7820
7821         * Makefile.am: Added simd-intrinsics.c
7822
7823         * simd-intrinsics.c: New file with simd instrinsic related
7824         code.
7825
7826         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
7827
7828         * cpu-x86.md: Add simd related instructions.
7829
7830         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
7831
7832         * driver.c: Added two new --regression variants.
7833
7834         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
7835
7836         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
7837
7838         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
7839         extract some complicated logic to helper functions.
7840
7841         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
7842
7843         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
7844
7845         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
7846         the specialized simplification pass.
7847
7848         * method-to-ir.c (mono_spill_global_vars): Use new macro.
7849
7850         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
7851
7852         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
7853         table.
7854
7855         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
7856         if MONO_ARCH_NEED_SIMD_BANK is defined.
7857
7858         * mini-ops.h: Added the new simd ops.
7859
7860         * mini-x86.c: Added mono_arch_xregname.
7861
7862         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
7863
7864         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
7865
7866         * mini-x86.h: Define simd related MONO_ARCH macros.
7867
7868         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
7869
7870         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
7871
7872         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
7873         MONO_CLASS_IS_SIMD to deal with simd related IR.
7874
7875         * mini.h (MonoInst): Added spill_var to the backend union.
7876
7877         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
7878
7879         * mini.h: Added forward declarations of the new simd fuctions.
7880
7881         * optflags-def.h: Added new optimization names SIMD.
7882
7883         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
7884
7885         * regalloc.h: Added support for working with 3 register banks.
7886
7887         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
7888
7889         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
7890
7891 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
7892
7893         * mini-exceptions.c: remove 64 bit related ifdef clutter.
7894
7895 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7896
7897         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
7898         instead of one on 64 bit systems.
7899
7900         * method-to-ir.c: Remove unused includes.
7901
7902 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
7903
7904         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
7905         cfg->used_int_regs, since the two are different on arm.
7906
7907 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7908
7909         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
7910         mono_method_get_vtable_index() to get the vtable index.
7911
7912 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7913
7914         * method-to-ir.c (mono_method_to_ir2): Don't create native
7915         wrappers for array methods, because they're never called (and if
7916         they were called they wouldn't work).
7917
7918 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7919
7920         * method-to-ir.c (mono_method_to_ir2): Array methods are
7921         special-cased and must not be invoked indirectly via the (M)RGCTX
7922         when generic sharing is turned on.  Fixes #431413.
7923
7924 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7925
7926         * method-to-ir.c: When generic sharing is active, call
7927         non-interface virtual generic methods via the standard trampoline.
7928
7929         * mini-trampolines.c: Handle virtual generic shared methods.
7930
7931         * mini.h, mini-x86.c, mini-x86.h: New argument for
7932         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
7933         method thunks and which is the trampoline to call if the lookup
7934         fails.  Enable the virtual generic method thunk for x86.
7935
7936         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
7937         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
7938         argument but assert that it's NULL, because these archs don't yet
7939         implement the virtual generic method thunk.  Changes in the IMT
7940         thunk data structures.
7941
7942 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7943
7944         * aot-compiler.c (emit_globals): Avoid invalid characters in
7945         the static linking symbol.
7946
7947         * objects.cs: Add a test for the range check optimization. Fix warnings.
7948
7949         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
7950         optimization from the current JIT.
7951
7952         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
7953         later in decompose_array_access_opts () to allow more optimizations.
7954
7955         * method-to-ir.c (mono_handle_soft_float): Rename this to 
7956         mono_decompose_soft_float () for consistency.
7957
7958         * mini-ops.h: Fix arguments of OP_STRLEN.
7959
7960         * method-to-ir.c (save_cast_details): Extract the cast details saving code
7961         into a separate function.
7962         (reset_cast_details): Ditto.
7963         (handle_unbox): Save cast details. Fixes #431254.
7964
7965         * method-to-ir.c: Remove some obsolete FIXMEs.
7966
7967 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7968
7969         * ir-emit.h (alloc_dreg): Write a warning before crashing.
7970
7971 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7972
7973         * mini-codegen.c: More work on macros to make them
7974         ready for multiple regbanks.
7975
7976 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7977
7978         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
7979
7980         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
7981
7982 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7983
7984         * mini-codegen.c (mono_spillvar_offset): Proper support for
7985         multiple regbanks.
7986
7987 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
7988
7989         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
7990         the stack overflow changes.
7991
7992 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
7993
7994         * mini-codegen.c: Make all bank macros depend on reg_bank.
7995
7996         * mini-codegen.c (mono_local_regalloc): Make free mask
7997         initialization regbank aware.
7998
7999 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
8000
8001         * mini-codegen.c (mono_local_regalloc): Extract callee
8002         mask selection to a function and make it regbank aware.
8003
8004 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
8005
8006         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
8007         code to deal with many regbanks.
8008
8009 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
8010
8011         * mini-codegen.c: More fp->regbank changes.
8012
8013 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
8014
8015         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
8016         of a hardcoded constant.
8017
8018 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
8019
8020         * method-to-ir.c (type_from_stack_type): Fix typo.
8021
8022 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
8023
8024         * mini-ia64.c (emit_move_return_value): Convert float return values to
8025         double.
8026
8027         * objects.cs: Add a new test.
8028         
8029         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
8030         VARARG methods to fix an assert later.
8031
8032         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
8033         end so it at least compiles.
8034
8035 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
8036
8037         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
8038
8039 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
8040
8041         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
8042         optimization to a new function (emit_optimized_ldloca_ir) and enable
8043         it for both ldloca and ldloca_s.
8044
8045 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
8046
8047         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
8048         gshared CASTCLASS code.
8049
8050         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
8051         amd64, where the libc stack unwinder encounters stack frames referring to
8052         native code in unmapped memory.
8053
8054         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
8055         sharing.
8056
8057         * generics.cs: Add new test.
8058
8059 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
8060
8061         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
8062         add a check that one of the ARM_FPU_ constants is defined.
8063
8064         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
8065         
8066         * mini-exceptions.c: Fix build on non-altstack platforms.
8067
8068         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
8069         sharing of vtypes.
8070
8071         * ir-emit.h: Add a comment to NEW_PCONST.
8072
8073         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
8074
8075         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
8076
8077         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
8078         after the changes to MonoJitDomainInfo.
8079
8080 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8081
8082         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
8083
8084 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8085
8086         * mini-ppc.c: Compiler warning fixes.
8087
8088 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8089
8090         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
8091         for pinvokes.
8092
8093 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8094
8095         * exceptions-ppc.c, mini-ppc.h: Compile
8096         mono_arch_handle_altstack_exception() on Darwin, too.
8097
8098 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8099
8100         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
8101         work on archs which don't have generic sharing implemented, only
8102         without the vtable_arg.
8103
8104 2008-09-26  Mark Probst  <mark.probst@gmail.com>
8105
8106         * mini.c: Added comment explaining why delegate ctor icall
8107         wrappers are compiled.
8108
8109 2008-09-26  Mark Probst  <mark.probst@gmail.com>
8110
8111         * mini.c: Don't produce trampolines to delegate ctor icall
8112         wrappers but compile them upfront.
8113
8114 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8115
8116         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
8117         runtime-set function when going back to managed code. Currently this
8118         is used to set back the protection on the soft ovf pages and/or to
8119         throw the stack overflow exception that happened in unmanaged code.
8120
8121 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8122
8123         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
8124         runtime-set function when going back to managed code. Currently this
8125         is used to set back the protection on the soft ovf pages and/or to
8126         throw the stack overflow exception that happened in unmanaged code.
8127
8128 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
8129
8130         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
8131         the support code for restoring stack protection after stack overflows
8132         that happen in unmanaged code. Don't set the exec permission on the
8133         soft overflow area.
8134
8135 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
8136
8137         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
8138         delegate->method_ptr is set. Fixes #428054.
8139
8140 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8141
8142         * tests.cs: Rename to ratests.cs.
8143
8144         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
8145         emit_get_rgctx_... functions.
8146
8147 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8148
8149         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
8150
8151 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8152
8153         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
8154         before asserting that method is sharable.
8155
8156 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8157
8158         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
8159         whether method needs a static RGCTX wrapper used instead of
8160         complex conditions.
8161
8162         * generic-sharing.c, mini.h: A few functions moved to
8163         metadata/generic-sharing.c.
8164
8165 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8166
8167         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
8168         Generic code sharing for value types, which essentially means
8169         treating value type methods like static methods.  The RGCTX is
8170         passed in the same way.
8171
8172 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8173
8174         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
8175         opcode when creating multi-dimensional arrays of open types.
8176
8177         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
8178         open generic types.
8179
8180         * generics.cs: Add a test.
8181
8182         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
8183
8184 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
8185
8186         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
8187
8188         * mini.c (mini_method_compile): Set it when running under the debugger. 
8189
8190         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
8191         vreg optimization if the flag is set.
8192
8193         * driver.c (mono_main): Add --attach= option to pass options to
8194         the attach agent.
8195
8196         * mini.c (sigquit_signal_handler): Start the attach agent.
8197
8198         * ssapre.c: Disable this to save space since it is not yet ported to
8199         linear IR.
8200
8201         * regalloc2.c: Disable this to save space.
8202
8203         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
8204
8205 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8206
8207         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
8208         the -v option useful again.
8209
8210 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
8211
8212         * mini-amd64.c (mono_arch_output_basic_block): Add support for
8213         --break-at-bb.
8214
8215         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
8216         arrays of arrays. Fixes #428406.
8217
8218         * method-to-ir.c (mini_emit_castclass): Ditto.
8219
8220         * objects.cs: Add new test.
8221         
8222 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
8223
8224         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
8225         was wrong at it choked against target_type_is_incompatible for byref types.
8226
8227 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
8228
8229         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
8230         places.
8231
8232 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
8233
8234         * mini-exceptions.c: update a few more exceptions-related counters.
8235
8236 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8237
8238         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
8239         new functions to allocate from persistent mempools.
8240
8241 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
8242
8243         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
8244         multiple register banks in the future.
8245
8246         * mini-codegen.c (mono_local_regalloc): Fix a warning.
8247
8248 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
8249
8250         * mini.c (type_to_eval_stack_type): Remove duplicated function.
8251
8252         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
8253
8254         * mini.h: Export type_to_eval_stack_type.
8255
8256         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
8257         is only ins->klass of byref types.
8258
8259 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
8260
8261         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
8262         (mini_emit_memcpy2): Ditto.
8263
8264         * mini-amd64.c: Fix a warning.
8265
8266 2008-09-21  Mark Probst  <mark.probst@gmail.com>
8267
8268         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
8269         linking.
8270
8271 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
8272
8273         * method-to-ir.c: Extract stloc micro-optimization to a
8274         function and apply it to all cases.
8275
8276 2008-09-19  Mark Probst  <mark.probst@gmail.com>
8277
8278         * method-to-ir.c: Don't fail generic code sharing in cases we
8279         already support.
8280
8281 2008-09-18  Mark Probst  <mark.probst@gmail.com>
8282
8283         * mini-ppc.c: Handle structs in tailcalls on Darwin.
8284
8285 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8286
8287         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
8288         implementation.
8289
8290 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
8291
8292         * trace.c: make tracing more useful and correct, with per-thread
8293         id and indent info.
8294
8295 2008-09-15  Mark Probst  <mark.probst@gmail.com>
8296
8297         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
8298         doing a method call and the argument is an R4.
8299
8300 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
8301
8302         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
8303         generic methods.
8304
8305 2008-09-13  Mark Probst  <mark.probst@gmail.com>
8306
8307         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
8308
8309 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
8310
8311         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
8312         (MONO_JUMP_TABLE_FROM_INS): Ditto.
8313
8314 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
8315
8316         * driver.c: Add a --agent argument (not supported yet) to load managed
8317         agent assemblies before loading the main assembly, similarly to how the
8318         Java VM handles agents.
8319
8320 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8321
8322         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
8323         function to do stack layout of local variables.
8324
8325 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8326
8327         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
8328         calculation.
8329
8330 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
8331
8332         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
8333         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
8334         JIT if DISABLE_JIT is defined.
8335
8336         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
8337         defined.
8338
8339 2008-09-10  Mark Probst  <mark.probst@gmail.com>
8340
8341         * iltests.il.in: Disable the fconv test on PPC (the result is
8342         undefined according to ECMA).
8343
8344 2008-09-10  Mark Probst  <mark.probst@gmail.com>
8345
8346         * iltests.il.in: Enable tail call tests for PPC.
8347
8348         * mini.h: Add variable for storing incoming valuetype argument
8349         addresses for tail calls.
8350
8351         * mini-ppc.c: Implement valuetype arguments and return values for
8352         tailcalls on Linux.
8353
8354 2008-09-09  Mark Probst  <mark.probst@gmail.com>
8355
8356         * mini-ppc.c: Partially implement tail calls (struct arguments and
8357         return values not supported).
8358
8359         * method-to-ir.c: Enable tail calls on PPC.
8360
8361 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
8362
8363         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
8364         runtime-invoke wrappers to work around the problem of them getting
8365         assigned to a random class.
8366
8367         * aot-runtime.c (mono_aot_get_method): Ditto.
8368         
8369 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
8370
8371         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
8372         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
8373
8374 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8375
8376         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
8377         until they're implemented properly.
8378
8379         * exceptions-ppc.c: Use arch-independent exception-handling code
8380         instead of custom one.
8381
8382         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
8383         for Linear IR.
8384
8385         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
8386
8387         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
8388         applies when __powerpc__ is defined.
8389
8390 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
8391
8392         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
8393         methods to their code to avoid computing the full name of wrappers and
8394         doing a lookup in a string hash table.
8395
8396 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
8397
8398         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
8399         we identify bblocks before method_to_ir () is ran.
8400
8401         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
8402         Also avoid optimizing branches pointing to themselves.
8403
8404         * mini.c (mini_method_compile): Ditto. Fixes #422947.
8405
8406 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
8407
8408         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
8409
8410 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
8411
8412         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
8413         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
8414         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
8415         'buf'.
8416
8417         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
8418         jumped to the same entry in plt_jump_table.
8419
8420 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
8421
8422         * method-to-ir.c (initialize_array_data): Handle field with RVA from
8423         dynamic images.
8424
8425 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8426
8427         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
8428         other assignment can be if converted. Saves 1.5% on corlib size and fixes
8429         #421807.
8430
8431 2008-08-29  Geoff Norton  <gnorton@novell.com>
8432
8433         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
8434         segment, and doesn't properly handle .space as .text.  Fixes
8435         AOT Mach/ARM
8436
8437 2008-08-29  Geoff Norton  <gnorton@novell.com>
8438
8439         * mini.c: Disable the mach exception handler when running on 
8440         ARM
8441
8442 2008-08-29  Geoff Norton  <gnorton@novell.com>
8443
8444         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
8445         globals on Darwin/ARM
8446
8447 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8448
8449         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
8450         since too many things depend on it. Instead, call 
8451         mono_runtime_set_no_exec ().
8452         
8453         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
8454         the new JIT.
8455
8456         * aot-compiler.c: Add an 'asm-only' AOT option.
8457
8458         * mini.c: Avoid initializing the runtime when doing AOT compilation.
8459                 
8460         * aot-compiler.c (compile_method): Disable gshared support for now as it
8461         doesn't yet work.
8462
8463 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
8464
8465         * mini-amd64.h : Fix a compiler warning.
8466
8467         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
8468           Changed to use a callback function to retrieve the unwind info.
8469           This avoids problems observed when code blocks were removed by
8470           unloading an app domain.
8471
8472         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
8473           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
8474           to work properly.
8475
8476         Contributed under MIT/X11 license.
8477
8478 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
8479
8480         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
8481           case to keep the stack aligned to 8.
8482
8483         Contributed under MIT/X11 license.
8484
8485 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
8486
8487         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
8488         avoid repeated linear searches.
8489
8490 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8491
8492         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
8493         methods it can't handle.
8494         
8495         * aot-compiler.c (add_method): Avoid adding a method twice.
8496         (add_wrappers): Add runtime invoke wrappers for all methods.
8497
8498         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
8499         function to create an aot-compatible version of this trampoline.
8500
8501         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
8502
8503 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8504
8505         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
8506
8507         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
8508         with a generic sharing failure.
8509
8510         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
8511
8512         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
8513         CEE_RETHROW. Fixes #419634.
8514
8515         * mini.c (mono_method_to_ir): Ditto.
8516
8517         * exceptions.cs: Add a new test.
8518         
8519         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
8520         to mono_type_stack_size_internal () since some callers might not pass in
8521         an rgctx.
8522
8523         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
8524         instrument_prolog. Fixes #419878.
8525
8526         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
8527         doubles in soft float mode volatile.
8528
8529 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8530
8531         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
8532
8533         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
8534         to handle soft float correctly.
8535
8536         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
8537         the fast path.
8538
8539         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
8540
8541         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
8542         to sp, since the generics catch code requires it.
8543
8544         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
8545         copying.
8546
8547         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
8548         mono_arch_emit_imt_argument ().
8549
8550         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
8551
8552         * mini-arm.c tramp-arm.c: Generic sharing updates.
8553
8554 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8555
8556         * mini-arm.c: Fix the arm build.
8557
8558         * generic-sharing.c (mini_type_get_underlying_type): New helper function
8559         handling enums, generic instances and generic sharing.
8560         (mini_type_stack_size_full): Ditto.
8561
8562         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
8563         
8564         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
8565
8566         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
8567
8568         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
8569         trampolines.
8570
8571         * mini-arm.c: Various small generic sharing changes.
8572
8573         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
8574         this for x86.
8575         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
8576         custom code.
8577
8578         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
8579         helper function to return a generic class init trampoline.
8580
8581         * method-to-ir.c mini.c: Use it.
8582         
8583         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
8584         arch-specfic function to return a generic class init trampoline.
8585
8586         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
8587         the GENERIC_CLASS_INIT custom code.
8588
8589         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
8590         a fatal error, not a sharing failure.
8591
8592         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
8593         needed.
8594
8595         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
8596         trampoline argument from MONO_ARCH_VTABLE_REG.
8597
8598         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
8599         order of the arguments to the C trampoline: pass 'slot' as the trampoline
8600         argument, and pass the vtable in VTABLE_REG.
8601
8602         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
8603         order of the arguments to the C trampoline: pass 'slot' as the trampoline
8604         argument, and pass the vtable in VTABLE_REG.
8605         (mono_arch_create_trampoline_code_full): Remove some special casing for
8606         the rgctx fetch trampoline.
8607
8608         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
8609         Fixes #419273.
8610
8611         * iltests.il: Add a test for it.
8612
8613 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8614
8615         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
8616
8617         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
8618         no longer needed.
8619
8620         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
8621         use mono_jit_info_table_find () to avoid recursion.
8622         (mono_delegate_trampoline): Add a sync wrapper here.
8623
8624         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
8625         here.
8626
8627         * mini.c (mono_method_to_ir): Ditto.
8628         
8629         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
8630         add_sync_wrapper argument. Don't add a sync wrapper here.
8631         (mono_create_jump_trampoline): Don't add a sync wrapper here.
8632
8633         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
8634         
8635 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8636
8637         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
8638           of nonvolatile registers back from MonoContext to CONTEXT.
8639
8640         Contributed under MIT/X11 license.
8641
8642 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8643
8644         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
8645           arguments on Winx64 there are only 4 argument registers.  For this
8646           logic to work the last argument must be pulled from the stack.  
8647
8648         Contributed under MIT/X11 license.
8649
8650 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8651
8652         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
8653
8654         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
8655         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
8656         encode/decode_method_ref ().
8657
8658         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
8659
8660         * aot-runtime.c (decode_patch): Ditto.  
8661
8662         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
8663         MONO_PATCH_INFO_METHOD.
8664
8665         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
8666         MonoGenericJitInfo.
8667
8668         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
8669         MonoGenericJitInfo.
8670
8671         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
8672
8673         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
8674         one from the caller.
8675
8676         * aot-runtime.c (decode_generic_inst): New function to decode and
8677         return a interned generic inst.
8678         (decode_klass_ref): Use it.
8679         (decode_method_ref): Ditto.
8680
8681         * aot-compiler.c (emit_exception_debug_info): Save 
8682         jinfo->has_generic_jit_info too.
8683
8684 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
8685
8686         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
8687
8688         * iltests.il.in: Add a test for fconv_to_i.
8689
8690         * liveness.c: Disable the liveness2 pass for now to save space.
8691
8692         * regalloc2.c: Include mempool-internals.h to fix warnings.
8693
8694         * aot-compiler.c (encode_method_ref): Encode the context of generic
8695         instance methods.
8696
8697         * aot-runtime.c (decode_method_ref): Inflate generic methods using
8698         the context saved in the aot file.
8699
8700         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
8701
8702         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
8703
8704         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
8705         volatile so they won't be optimized away.
8706
8707 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
8708
8709         * ssa.c:
8710         * ssa2.c:
8711         * mini.c:
8712         * regalloc2.c:
8713         * dominators.c: Remove duplicated functions that now are in
8714         mempool-internals.h.
8715
8716 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
8717
8718         * aot-compiler.c: Fix warnings.
8719
8720         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
8721
8722         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
8723
8724         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
8725         as the patch type.
8726
8727         * mini.c (mono_resolve_patch_target): Ditto.
8728         
8729         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
8730         (encode_klass_ref): Add support for encoding VARs/MVARs.
8731
8732         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
8733
8734         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
8735         the handling of the got entries into a separate 'decode_got_entry' function.
8736         Add support for RGCTX_FETCH.
8737
8738         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
8739         clobbered by the trampoline code.
8740
8741         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
8742         not clobbered by the indirect calling code.
8743
8744 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
8745
8746         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
8747         to fix the build.
8748
8749 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
8750
8751         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
8752         signature using the compilation mempool otherwise we would leak it.
8753
8754 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
8755
8756         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
8757         mono_emit_abs_call ().
8758
8759         * patch-info.h: Add GENERIC_CLASS_INIT.
8760
8761         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
8762
8763         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
8764         as their target as a near call.
8765
8766         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
8767         ABS handling code.
8768         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
8769
8770         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
8771         call to a runtime function described by a patch.
8772
8773         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
8774         mono_emit_abs_call, this has the advantage that the ABS handling code in
8775         mono_codegen () can handle them both, and can handle other stuff in the
8776         future without additional code.
8777
8778         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
8779         entry.
8780         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
8781         abs addresses.
8782
8783         * mini.h: Add missing bblock related prototypes.
8784
8785         * mini.h (MonoCompile): Remove unused reverse_inst_list and
8786         reverse_inst_list_len fields.
8787
8788         * mini.c: Refactor this file a bit by moving branch optimizations to 
8789         branch-opts.c.
8790
8791         * method-to-ir.c: Merge generic sharing changes missed earlier.
8792
8793         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
8794
8795         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
8796         shared patches. Process METHODCONST as a shared patch.
8797
8798         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
8799         as it crashes on the 2.0 mscorlib.
8800
8801         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
8802         to cause crashes.
8803         
8804         * aot-compiler.c: Use is_plt_patch () in a few additional places.
8805         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
8806         by IMT.
8807
8808         * aot-compiler.c: Reorganize the got handling code to be a bit more
8809         understandable.
8810
8811 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
8812
8813         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
8814         mono_patch_info_equals/hash, and use it to massively simplify
8815         get_plt_index ().
8816
8817         * mini.c (mono_patch_info_hash): Simplify this and add support for
8818         more patch types.
8819
8820         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
8821
8822         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
8823         handling code, since an offset is not enough to identify a trampoline.
8824
8825         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
8826
8827 2008-08-17  Mark Probst  <mark.probst@gmail.com>
8828
8829         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
8830
8831         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
8832
8833         * mini-ops.h: Argument and result types for OVF_CARRY ops.
8834
8835         * decompose.c: PPC decompositions for various ops.
8836
8837         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
8838
8839 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
8840
8841         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
8842         call the generic trampoline code using a call, instead of a jump, to
8843         remove some special casing from the generic trampoline code.
8844
8845         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
8846         (mono_codegen): Ditto.
8847
8848         * aot-compiler.c aot-runtime.c: Ditto.
8849
8850         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
8851
8852         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
8853         helper function to find the offset corresponding to a lazy fetch trampoline.
8854
8855         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
8856         when doing generic sharing.
8857
8858         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
8859         places.
8860         
8861         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
8862         mini-trampolines.c to be with the other trampoline creation functions.
8863
8864         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
8865         as it is equal to method->signature in most cases, add a 
8866         mono_emit_method_call_full variant which takes a signature and an imt
8867         argument as well.
8868
8869 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8870
8871         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
8872         to this function, since it could be computed easily from the method 
8873         argument.
8874         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
8875         more.
8876
8877         * method-to-ir.c mini.c: Remove references to 
8878         compile_generic_method_wo_context.
8879
8880         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
8881         generic method calls.
8882         
8883         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
8884         dimensional non-szarrays.
8885
8886         * mini.c (mini_init): Register mono_array_new_1.
8887
8888         * jit-icalls.c (mono_array_new_1): New jit icall.
8889
8890         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
8891         pointing to the method.
8892
8893         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
8894         method addresses belonging to METHOD_JUMP patches in the 
8895         jump_target_got_slot_hash.
8896         (mono_aot_load_method): Ditto.
8897
8898         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
8899         METHOD_JUMP patches.
8900
8901         * mini.c (mini_create_jit_domain_info): New helper function which 
8902         initializes/frees domain->runtime_info.
8903         (mini_free_jit_domain_info): Ditto.
8904         (mini_init): Install the domain hook functions with the runtime.
8905
8906         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
8907         information maintained by the JIT.
8908
8909         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
8910         insertion into jump_table_hash into mono_codegen (), also implement proper
8911         locking.
8912
8913         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
8914         tail calls, it is already done by the aot code.
8915         
8916         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
8917         mechanism on amd64.
8918
8919         * iltests.il.in: Make the jmp test a bit more complex.
8920
8921         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
8922         generic instances which doesn't have a token.
8923
8924         * aot-runtime.c (decode_method_ref): Ditto.
8925         
8926         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
8927         can handle this case now.
8928         (handle_box): Ditto.
8929
8930 2008-08-15  Geoff Norton  <gnorton@novell.com>
8931
8932         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
8933         debugging check.
8934
8935 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8936
8937         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
8938         calling generic methods.
8939
8940         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
8941
8942         * aot-runtime.c (decode_patch_info): Ditto.
8943
8944         * mini.c (mono_resolve_patch_target): Ditto.
8945         
8946         * patch-info.h: Add METHOD_RGCTX.
8947
8948         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
8949
8950 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
8951
8952         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
8953         arguments in registers.
8954
8955         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
8956         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
8957
8958         * mini.c (mini_method_compile): Abort aot compilation for generic
8959         methods if generic sharing is disabled.
8960         
8961         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
8962         an mrgctx.
8963
8964         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
8965         requiring an mrgctx.
8966
8967         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
8968         store instructions when converting a vcall to a normal call.
8969
8970         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
8971         mono_arch_find_jit_info.
8972
8973 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
8974
8975         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
8976         avoid calling mono_method_full_name () for every method even if the
8977         env var is not set.
8978         (check_inline_caller_method_name_limit): Ditto.
8979
8980 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8981
8982         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
8983         assemblies in one run.
8984
8985         * aot-compiler.c (mono_compile_assembly): Only print out a count of
8986         skipped methods if it is not 0.
8987
8988         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
8989
8990 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
8991
8992         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
8993           MONO_ARCH_HAVE_UNWIND_TABLE.
8994
8995         Contributed under MIT/X11 license.
8996
8997 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
8998
8999         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
9000           from default optimizaton list on Winx64.
9001
9002         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
9003
9004         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
9005           the LMF from the MonoJitTlsData structure.
9006
9007         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
9008
9009         Contributed under MIT/X11 license.
9010
9011 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9012
9013         * mini.c (sigsegv_signal_handler): Fix the build.
9014
9015         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
9016         assembly->aot_module.
9017
9018         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
9019         hash table. This simplifies and speeds up a lot of code, and fixes support
9020         for .netmodules.
9021
9022         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
9023         with the runtime.
9024
9025         * mini-exceptions.c: Ditto.
9026         
9027         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
9028         'native_offset' argument, since these are computed in the 
9029         mono_find_jit_info () function.
9030
9031         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
9032         is used by exceptions-ppc.c.
9033
9034         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
9035         mono_arch_find_jit_info ().
9036         
9037         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
9038         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
9039         generic code in mini-exceptions.c.
9040
9041 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
9042
9043         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
9044
9045         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
9046         
9047         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
9048         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
9049         called while holding the loader lock. Fixes #415608.
9050         (mono_aot_get_method_from_token_inner): Ditto.
9051
9052 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
9053
9054         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
9055         to reduce differences between this and the generic implementation in
9056         mini-exceptions.c.
9057         (ves_icall_get_frame_info): Ditto.
9058
9059         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
9060
9061         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
9062         longer neccesarry.
9063
9064         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
9065         mono_arch_get_call_filter () and make it non-static, for consistency with the
9066         other architectures.
9067
9068 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
9069
9070         * mini.c:
9071         * local-propagation.c:
9072         * mini-x86.c: Correct the name of arch defines.
9073
9074 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
9075
9076         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
9077         NO_EMULATE_LONG_SHIFT_OPS define.
9078
9079 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9080
9081         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
9082         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
9083
9084         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
9085         MACH fixes. Merged from the 2.0 branch.
9086
9087         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
9088
9089         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
9090         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
9091
9092         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
9093
9094         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
9095         mono_marshal_get_native_wrapper () signature changes.
9096
9097 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
9098
9099         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
9100         conversion bug under arm.
9101
9102 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
9103
9104         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
9105
9106         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
9107         with overflow checking.
9108
9109 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9110
9111         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
9112         to the genmdesc.pl file
9113
9114 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
9115
9116         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
9117         arg_array in the soft-float versions of the LOAD/STORE macros.
9118
9119         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
9120         implementation.
9121
9122         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
9123
9124 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
9125
9126         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
9127         a float HFA. Fixes #413621.
9128
9129 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
9130
9131         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
9132         frame_size to args_size. Fixes build.
9133
9134 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
9135
9136         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
9137         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
9138
9139         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
9140         the stack are not unaligned. Fixes #413247.
9141         
9142 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9143
9144         * mini.c: update jitted methods performance counters.
9145
9146 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
9147
9148         * mini-exceptions.c: increase the exceptions thrown performance
9149         counter in mono_handle_exception ().
9150
9151 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9152
9153         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
9154         can work with netmodules.
9155
9156 2008-07-28  Geoff Norton  <gnorton@novell.com>
9157
9158         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
9159         regression tests.
9160
9161 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
9162
9163         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
9164         correct place.
9165
9166 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
9167
9168         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
9169           The float param registers and other param registers must be the 
9170           same index on Windows x64.
9171
9172         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
9173           ArgValuetypeAddrInIReg argument case.  Setting the argument
9174           op to OP_VTARG_ADDR (OP_REGOFFSET)).
9175
9176         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
9177           variable computed above as the copy length for arguments of storage
9178           type ArgValuetypeAddrInIReg.
9179
9180         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
9181           ArgValuetypeAddrInIReg argument case.  This case will rely on
9182           mono_arch_emit_outarg_vt to emit the correct code later in the process.
9183
9184         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
9185           a 32 byte stack allocation for all calls.  We will omit the adjustment for
9186           jump and tail call instructoins as they do not follow the typical call behavior.
9187
9188         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
9189           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
9190           local variable and pass the local variable by reference to the called method.
9191
9192         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
9193           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
9194           of a struct is passed in a register it must be saved with the other
9195           volatile argument on the stack.
9196
9197         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
9198           frame pointer the stack adjustment value must be saved to the unwind 
9199           info structure.
9200
9201         Contributed under MIT/X11 license.
9202
9203 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
9204
9205         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
9206         which got lost in the merge.
9207
9208 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9209
9210         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
9211         build.
9212
9213         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
9214         
9215         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
9216         icalls, since they won't be patched.
9217
9218         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
9219         different code sequence when running under valgrind to prevent some valgrind
9220         errors.
9221
9222         * iltests.il.in: Add new regression test.
9223
9224         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
9225         end with a throw.
9226
9227         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
9228         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
9229
9230         * iltests.il.in: Add new test.
9231
9232         * aot-compiler.c: Fix some warnings.
9233
9234         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
9235         Fixes #412494.
9236
9237 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9238
9239         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
9240         (mini_usage_jitdeveloper): Add a missing --wapi option.
9241
9242 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
9243
9244         * mini-codegen.c: Simplify the is_fp macros.
9245         (free_up_ireg): Remove, use free_up_reg instead.
9246         (free_up_reg): Fix the fp case.
9247
9248 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
9249
9250         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
9251         lowered earlier.
9252
9253         * exceptions-x86.c: Merge some changes which seemed to have got lost
9254         in the linear-ir merge.
9255
9256         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
9257
9258         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
9259         long vreg volatile even if the variable was already created.
9260
9261         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
9262         volatile variables.
9263
9264 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
9265
9266         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
9267
9268         * mini.c (mono_jit_compile_method_inner): Add support for 
9269         MONO_EXCEPTION_BAD_IMAGE.
9270
9271         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
9272         mini_method_get_context () returns NULL. Fixes #356531.
9273
9274         * mini.c (mono_method_to_ir): Ditto.
9275         
9276         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
9277         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
9278
9279 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
9280
9281         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
9282         in the LDFTN implementation.
9283
9284 2008-07-25  Mark Probst  <mark.probst@gmail.com>
9285
9286         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
9287         code, patch calls to icalls, too, even if they're not in the
9288         shared generic code hash.  Fixes #411962.
9289
9290 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
9291
9292         * cpu-x86.md: Increase the length of the fcall opcodes.
9293
9294         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
9295         calls returning floats.
9296
9297         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
9298         on NEWARR.
9299         
9300         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
9301         missed earlier.
9302
9303         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
9304         into the domain->method_code_hash.
9305
9306         * aot-compiler.c: Fix win32 build.
9307
9308         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
9309         
9310         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
9311         gshared NEWARR implementation.
9312
9313         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
9314
9315         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
9316         can be used outside of method_to_ir.
9317
9318         * mini.h (MonoCompile): Add arg_types field.
9319
9320         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
9321         
9322         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
9323         the values of the local arg_array and param_types array.
9324
9325 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9326
9327         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
9328         got accesses might only get generated later when NEWOBJ is decomposed.
9329         
9330         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
9331         looking up the native code of the target method when a delegate is called
9332         for the first time.
9333
9334         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
9335         optimization.
9336
9337         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
9338
9339         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
9340         AOT work on platforms without a working dlsym implementation.
9341
9342         * mini.h: Bump AOT image format version.
9343         
9344 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9345
9346         * mini-exceptions.c: Free a MonoType with
9347         mono_metadata_free_type() instead of g_free().
9348
9349         * aot-runtime.c: Free a MonoType.
9350
9351 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9352
9353         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
9354         optimization.
9355
9356         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
9357         fp stack on x86.
9358
9359 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
9360         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
9361         profiler hook.
9362
9363 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9364
9365         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
9366         NEWOBJ calls on valuetypes.
9367
9368         * iltests.il.in: Add new test.
9369
9370         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
9371
9372 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9373
9374         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
9375         is no longer needed.
9376
9377         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
9378         non register sized integer arguments.
9379         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
9380         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
9381         emit_memcpy2 ().
9382
9383         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
9384         CEE_MONO_RETOBJ.
9385         
9386         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
9387         two a binop with different sized arguments is emitted.
9388
9389         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
9390         instruction in the ins==NULL case.
9391
9392 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9393
9394         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
9395
9396         * mini-x86.c: Fix osx build.
9397
9398         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
9399         opcodes as well.
9400
9401         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
9402         instruction for non int sized variables.
9403
9404         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
9405         implementation.
9406
9407 2008-07-23  Robert Jordan  <robertj@gmx.net>
9408
9409         * method-to-ir.c: Fix MSVC build.
9410
9411 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9412
9413         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
9414         a non int sized type, widen it to an int since newer versions of gcc seem to
9415         generate code which needs this.
9416
9417         * ssa2.c abcremoval2.c: Fix warnings.
9418
9419         * *: Merge the Linear IR branch.
9420
9421         The original branch is at trunk/branches/vargaz/mini-linear-il, and
9422         the ChangeLog file there describes all the changes done over the years. 
9423         Further documentation can be found at www.mono-project.com/Linear_IL.
9424
9425 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
9426
9427         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
9428           The float param registers and other param registers must be the 
9429           same index on Windows x64.
9430
9431         Contributed under MIT/X11 license.
9432
9433 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
9434
9435         * mini.c: Make the previous fix GC safe.
9436
9437 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
9438
9439         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
9440
9441 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
9442
9443         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
9444           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
9445           ArgValuetypeAddrInIReg instead.
9446
9447         Contributed under MIT/X11 license.
9448
9449 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
9450
9451         * mini-codegen.c (get_register_spilling): Fix a warning.
9452
9453 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
9454
9455         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
9456         for types which the initialization fails. Raises the provided exception
9457         at the right stop after cleanup.
9458
9459 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
9460
9461         * aot-compiler.c: Free most of the memory allocated during compilation.
9462
9463         * mini.c (mini_parse_debug_options): Fix a leak.
9464         
9465         * mini.c (mini_method_compile): Don't add the method to the jit info tables
9466         during aot compilation.
9467
9468 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
9469
9470         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
9471         it has too much register pressure.
9472
9473 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9474
9475         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
9476
9477 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9478
9479         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
9480         on x86.
9481
9482         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
9483         on amd64 similar to the way it is done on arm.
9484
9485         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
9486
9487         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
9488         consistency, normalize error messages, avoid loading aot-only modules in
9489         normal mode.
9490
9491         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
9492         for consistency.
9493
9494         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
9495
9496 2008-07-11  Martin Baulig  <martin@ximian.com>
9497
9498         * debug-debugger.h
9499         (MonoDebuggerInfo): Add `interruption_request'.
9500
9501 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9502
9503         * aot-compiler.c (emit_plt): Remove some dead code.
9504
9505         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
9506
9507         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
9508         return the plt info offset belonging to a given plt entry.
9509
9510         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
9511         mono_aot_get_plt_info_offset.
9512         
9513         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
9514         similar to the amd64 code by makeing jumps through a separate jump table 
9515         instead of embedding the jump addresses into the code.
9516
9517 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
9518
9519         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
9520         method.
9521
9522 2008-07-10  Martin Baulig  <martin@ximian.com>
9523
9524         * mini.c (mini_method_compile): Disable generics sharing when
9525         running in the debugger.
9526
9527 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
9528
9529         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
9530
9531         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
9532         the local register allocator from running out of registers on x86 when 
9533         using aot.
9534
9535 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
9536
9537         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
9538         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
9539         C4146.
9540
9541         Contributed under MIT/X11 license.
9542
9543 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
9544
9545         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
9546         speed up the assembler.
9547
9548 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
9549
9550         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
9551         support.
9552
9553         * mini.c: Move the soft float handling macros a bit earlier, add 
9554         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
9555         place.
9556
9557         * mini.h: Add prototype for mono_arch_fixup_jinfo.
9558
9559         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
9560         read-only to help catch code allocation requests.
9561         
9562         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
9563         and turn it off when using --aot-only or when compiling with --aot=full.
9564
9565         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
9566         jump table for switches from the normal domain mempool, not the code
9567         manager.
9568
9569         * mini-trampolines.c (get_unbox_trampoline): New function to return an
9570         unbox trampoline which handles aot-only mode too.
9571
9572         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
9573         an AOTed unbox trampoline.
9574
9575         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
9576
9577 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
9578
9579         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
9580         ""
9581
9582         Contributed under MIT/X11 license.
9583
9584 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
9585
9586         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
9587           the unwind information for the method at the end of the allocated block.
9588           
9589         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
9590           MonoCompileArch to hold the unwind info for SEH on Winx64
9591         
9592         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
9593           frame pointer info for the method being compiled.
9594           
9595         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
9596           the call to mono_exception_from_token.
9597           
9598         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
9599           storing the method prolog information in a format that the Winx64 SEH can understand.  This
9600           information is stored a the end of the method block because it is all 32-bit offset based.
9601
9602         Contributed under MIT/X11 license.
9603
9604 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
9605
9606         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
9607
9608         * wapihandles.c: Fix warnings.
9609
9610         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
9611         mode.
9612
9613         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
9614         mono_jit_compile_method in aot-only mode since that calls the type 
9615         initializer.
9616         
9617         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
9618         get_delegate_invoke_impl in aot-only mode.
9619
9620         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
9621
9622 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
9623
9624         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
9625
9626         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
9627         is on by default.
9628
9629         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
9630
9631         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
9632         init trampoline from the AOT file as well.
9633
9634         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
9635         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
9636         code.
9637
9638         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
9639         mono_init.
9640
9641         * exceptions-amd64.c: Add _full variants for the remaining exception code
9642         creation functions as well, allow emission of relocatable code, remove
9643         caching since that is now done by the caller.
9644
9645         * mini-exceptions.c: Add _full variants for the remaining exception code
9646         creation functions as well, add aot-only support.
9647
9648         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
9649         if we can determine a proper token for them.
9650         (add_wrappers): Add a few more wrappers.
9651         (emit_method_code): Remove some dead code.
9652         (emit_trampolines): Emit exception code too.
9653
9654         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
9655
9656         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
9657         mono_array_new_va which avoids varargs.
9658
9659         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
9660
9661         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
9662         mono_arch_create_specific_trampoline () in all places.
9663
9664         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
9665         a bit so it can be used for other things as well.
9666         
9667         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
9668         on demand as well.
9669
9670         * exceptions-amd64.c: Rename the caching from the exception code creation
9671         functions, it is done by the caller instead.
9672         
9673         * exceptions-amd64.c: Change the signature of the exception code creation 
9674         functions to allow the creation of relocatable code later.
9675
9676         * mini-exceptions.c: Add a set of functions to query the various 
9677         runtime-generated exception functions.
9678
9679         * mini.c mini-exceptions.c: Use the newly added functions instead of the
9680         mono_arch_.. () functions.
9681         
9682 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9683
9684         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
9685
9686         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
9687
9688         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
9689         (mini_get_vtable_trampoline): Ditto.
9690
9691         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
9692         code in the AOT case by returning the code size and a list of relocations to
9693         the caller.
9694
9695         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
9696
9697 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9698
9699         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
9700           clean the stack.
9701
9702         Contributed under MIT/X11 license.
9703
9704 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9705
9706         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
9707         so the buffer size can be computed correctly. Fixes #404735.
9708
9709         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
9710         normally as cfg->debug_info is already freed.
9711
9712 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9713
9714         * mini-amd64.c: For calls returning vtypes in registers, don't store
9715         the return address on the stack, instead allocate a separate local for
9716         it. Fixes #404729.
9717
9718 2008-07-05  Mark Probst  <mark.probst@gmail.com>
9719
9720         * mini-trampolines.c, mini.h: Add an argument to
9721         mono_create_jit_trampoline_in_domain() for turning off the adding
9722         of the sync wrapper.
9723
9724         * mini.c: Use the JIT trampoline without sync instead of
9725         ldftn_nosync in static RGCTX invoke wrappers so that the call can
9726         be patched.
9727
9728 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9729
9730         * driver.c: Turn on GSHARED optimization by default.
9731
9732 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
9733
9734         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
9735         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
9736
9737         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
9738         create a variant of the generic trampoline code callable from AOTed trampolines.
9739
9740         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
9741         trampoline code callable from AOTed trampolines.
9742
9743         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
9744
9745 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9746
9747         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
9748         pass-through manner.
9749
9750         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
9751         and don't fail sharing for them anymore.
9752
9753         * mini-exceptions.c: Handle exceptions in shared generic methods.
9754
9755         * generic-sharing.c: When checking the context of a generic
9756         method, also check its class's context.  Don't treat wrappers as
9757         sharable.
9758
9759         * mini-trampolines.c: Some code factored out to
9760         metadata/generic-sharing.c.  Handle the MRGCTX case.
9761
9762         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
9763         we must deal with the method being of another instantiation of the
9764         class.  Add static rgctx invoke wrappers to generic methods.
9765
9766 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9767
9768         * mini.c: Provide all jit infos of generic shared methods with a
9769         generic jit info.
9770
9771         * mini-exceptions.c: Handle the new situation that a generic info
9772         might be available, but not info about the this/vtable/mrgctx
9773         variable.
9774
9775 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9776
9777         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
9778         generic methods.
9779
9780 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
9781
9782         * dominators.c (check_dominance_frontier): Fix a warning.
9783
9784         * mini.h: Add some missing prototypes.
9785
9786         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
9787
9788         * driver.c (mono_jit_init_version): Correct the comments since the first
9789         argument should be the name of the root domain, not a filename.
9790
9791         * aot-runtime.c (make_writable): Error out if this is called while running
9792         with --aot-only.
9793         (load_aot_module): Ditto.
9794
9795         * aot-compiler.c: Really fix the computation of method indexes.
9796
9797         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
9798         optimizations as this is no longer called frequently.
9799
9800         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
9801         method and the invoke impl code and pass it to the delegate trampoline instead of
9802         just the delegate class.
9803
9804 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9805
9806         * aot-compiler.c: Fixup the computation of method indexes.
9807         (add_wrappers): Create the base methods of the runtime invoke wrappers using
9808         the method builder infrastructure.
9809
9810         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
9811         has no header.
9812
9813         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
9814         mode, load the method right away instead of creating a trampoline.
9815
9816         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
9817
9818         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
9819         some checks a bit.
9820
9821 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9822
9823         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
9824         (mono_aot_load_method): Use method_index instead of method->token.
9825
9826         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
9827         can handle icalls etc. properly.
9828
9829         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
9830
9831         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
9832
9833         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
9834         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
9835         JIT_ICALL_ADDR patch type.
9836
9837         * patch-info.h: Add JIT_ICALL_ADDR patch type.
9838
9839         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
9840         request flag.
9841         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
9842
9843         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
9844
9845 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9846
9847         * mini.c: Use domain->jit_code_hash_lock for controlling access to
9848         domain->jit_code_hash.
9849
9850 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9851
9852         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
9853
9854 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9855
9856         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
9857         get_this_arg_from_call, let it compute it when needed.
9858
9859         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
9860         gsctx from code only when needed.
9861
9862         * mini-trampolines.c (get_generic_context): Rename this to 
9863         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
9864         it can be called by the arch backends.
9865
9866         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
9867
9868 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
9869
9870         * driver.c (mono_main): Add experimental --aot-only command line option.
9871
9872         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
9873         set.
9874
9875 2008-06-26  Kornel Pal  <kornelpal@gmail.com>
9876
9877         * driver.c (DllMain): Remove mono_module_handle.
9878
9879         Contributed under MIT/X11 license.
9880
9881 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
9882
9883         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
9884         for emitting methods which are not in the source assembly. Detect and report
9885         failure of assembling+linking.
9886         
9887         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
9888
9889         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
9890
9891 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
9892
9893         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
9894
9895 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
9896
9897         * mini.h: Remove some obsolete prototypes.
9898
9899         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
9900
9901 2008-06-24  Mark Probst  <mark.probst@gmail.com>
9902
9903         * mini.c (get_object_generic_inst): Variable-sized arrays are not
9904         supported by Visual Studio, so use alloca().
9905
9906 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
9907
9908         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
9909         Fixes #402585.
9910
9911 2008-06-23  Mark Probst  <mark.probst@gmail.com>
9912
9913         * mini.c: Fail sharing of a generic method if it contains an open
9914         catch clause (because we don't pass MRGCTXs yet).
9915
9916 2008-06-23  Mark Probst  <mark.probst@gmail.com>
9917
9918         * mini.c: When compiling a method with generic sharing, insert the
9919         method instantiated with an all-Object generic context into the
9920         jit info table, instead of the context of the first instantiation
9921         of the method we happen to compile.
9922
9923 2008-06-18  Martin Baulig  <martin@ximian.com>
9924
9925         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
9926         `major_version' and `minor_version'.
9927
9928 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9929
9930         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
9931         mono_method_is_generic_sharable_impl() takes an additional
9932         argument specifying whether to treat type variables as reference
9933         types.
9934
9935 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9936
9937         * mini.h: Removed obsolete prototypes.
9938
9939 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9940
9941         * mini.c: Don't fail generic sharing for initobj and sizeof - we
9942         already handle them.
9943
9944 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9945
9946         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
9947         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
9948         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
9949         tramp-x86.c: Added a MonoGenericContext* argument to
9950         mono_arch_get_unbox_trampoline() so that it can call other
9951         functions which require it.
9952
9953 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9954
9955         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
9956         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
9957         mono_arch_get_this_arg_from_call() takes a
9958         MonoGenericSharingContext* as well.
9959
9960 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9961
9962         * mini.c: Factor out code for emitting unbox into emit_unbox() and
9963         implement generic sharing of unbox.
9964
9965 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9966
9967         * mini.c: Don't compute the vtable to determine whether a field is
9968         special static, because it might not work for open types.
9969
9970 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9971
9972         * mini.c: Removed the unused token_type and token_source arguments
9973         from get_runtime_generic_context_ptr().
9974
9975 2008-06-17  Marek Habersack  <mhabersack@novell.com>
9976
9977         * mini.c (ADD_BINOP): fix the build
9978
9979 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
9980
9981         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
9982         a widening op.
9983
9984 2008-06-16  Mark Probst  <mark.probst@gmail.com>
9985
9986         * mini.h: Removed class relations enum that's not used anymore.
9987
9988 2008-06-16  Mark Probst  <mark.probst@gmail.com>
9989
9990         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
9991
9992         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
9993         the lazy fetch trampoline access code.
9994
9995 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
9996
9997         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
9998
9999 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10000
10001         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
10002
10003         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
10004
10005         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
10006
10007 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10008
10009         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
10010         intrinsics.
10011
10012         * mini-ops.h: Add MIN/MAX_UN opcodes.
10013
10014         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
10015         intrinsics.
10016
10017         * basic-math.cs: Add more min/max tests.
10018
10019         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
10020
10021 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10022
10023         * mini.c: Small fix in the prologue of emit_castclass.
10024
10025 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10026
10027         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
10028
10029         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
10030         do not work even for unsigned types. Fixes #400014.
10031
10032         * basic-math.cs: Add regression tests for unsigned Min/Max.
10033
10034 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10035
10036         * mini.c: Added additional context_used argument to several
10037         functions, which will be needed for sharing generic methods.  Use
10038         GET_RGCTX macro wherever appropriate.  Declare only one
10039         context_used in mono_method_to_ir().
10040
10041 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10042
10043         * mini.c, generic-sharing.c: Removed generic class relations.
10044
10045         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
10046         functions due to MRGCTX changes.
10047
10048 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10049
10050         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
10051         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
10052         with calculated IMT.
10053
10054         * mini.c: Generic sharing of calls via generic interfaces.
10055
10056         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
10057         generic method with non-constant MonoGenericContext*.  Instead,
10058         the context is taken out of the method itself.
10059
10060 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10061
10062         * mini.c: Generic sharing of ldvirtftn.
10063
10064 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10065
10066         * mini.c: Generic sharing of ldftn.
10067
10068 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10069
10070         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
10071
10072 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10073
10074         * mini.c: Generic sharing of the special case of ldtoken followed
10075         by a call to GetTypeFromHandle.
10076
10077 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10078
10079         * mini.c: Generic sharing of box for nullable types.
10080
10081 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10082
10083         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
10084         are passed on the stack. Fixes #324807.
10085
10086 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
10087
10088         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
10089         for the ArgValuetypeAddrInIReg case.
10090
10091         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
10092         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
10093
10094         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
10095         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
10096         local variable and pass the local variable by reference to the called method.
10097           
10098         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
10099         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
10100
10101         Contributed under MIT/X11 license.
10102
10103 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
10104
10105         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
10106
10107         * debug-mini.c (mono_debug_print_vars): Release memory after printing
10108         everything.
10109
10110 2008-06-10  Martin Baulig  <martin@ximian.com>
10111
10112         * debug-mini.c
10113         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
10114
10115 2008-06-09  Kornel Pal  <kornelpal@gmail.com>
10116
10117         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
10118         possible error when no arguments are passed.
10119
10120         Contributed under MIT/X11 license.
10121
10122 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
10123
10124         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
10125         where the file name is NULL.
10126
10127 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10128
10129         * mini.c: Fix s390 build.
10130
10131 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
10132
10133         * trace.c (mono_trace_parse_options): Fix warnings.
10134
10135         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
10136
10137 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10138
10139         * mini.c (remove_block_if_useless): Avoid printing the method name.
10140         
10141         * mini.c: Remove needless setting of ins->cil_code which is now done by 
10142         MONO_INST_NEW.
10143
10144         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
10145         LMF. Not yet used.
10146
10147         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
10148         translated code after it has been patched.
10149
10150 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10151
10152         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
10153         avoid problems during code patching on SMP systems.
10154         (emit_call): Avoid adding a patch info which is already added by 
10155         emit_call_body.
10156         (mono_arch_emit_exceptions): Ditto.
10157
10158 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10159
10160         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
10161         MONO_TYPE_ISSTRUCT already checks for it.
10162
10163 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
10164
10165         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
10166           structs with floats on Winx64 the float registers are not used.  
10167           The integer registers are always used..
10168         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
10169           only one register will be used and only if the size of the struct 
10170           is 1,2,4, or 8 bytes.
10171
10172         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
10173           to work for Winx64.
10174
10175         Contributed under MIT/X11 license.
10176
10177 2008-06-05  Martin Baulig  <martin@ximian.com>
10178
10179         * debug-debugger.c (debugger_lookup_class): Also call
10180         mono_class_setup_methods() here; we're only called from RTI.
10181
10182 2008-06-05  Andreas Farber  <andreas.faerber@web.de>
10183
10184         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
10185         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
10186         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
10187         Post-process object files and add dtrace-generated object, if necessary.
10188
10189         Contributed under MIT/X11 license.
10190
10191 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10192
10193         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
10194         element class.
10195
10196         * mini.c: Generic sharing for unbox.any and castclass.
10197
10198 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10199
10200         * mini.c: Ignore tailcall prefix in shared generic code and when
10201         doing calls which require a vtable/rgctx argument.
10202
10203 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10204
10205         * mini.c: Don't free the JIT info.
10206
10207         * driver.c: Changes in the JIT info table testing code.
10208
10209 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10210
10211         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
10212         interruption. Fix some warnings.
10213
10214         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
10215         interruption_checkpoint.
10216
10217 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
10218
10219         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
10220         from embedding applications.
10221
10222 2008-06-02  William Holmes  <billholmes54@gmail.com>
10223
10224         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
10225           reserving 32 bytes on the stack when making calls. 
10226
10227         Contributed under MIT/X11 license.
10228
10229 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
10230
10231         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
10232         the linear IL branch.
10233
10234         * driver.c: Print out more information for --version on arm.
10235
10236 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
10237
10238         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
10239         bb_exit instead, since out of line bblocks might not actually be emitted
10240         out-of-line.
10241         
10242         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
10243         maximum epilog size for out of line bblocks if tracing is enabled.
10244
10245         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
10246
10247 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
10248
10249         * arrays.cs: Regression tests for allocating arrays with negative sizes.
10250
10251 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
10252
10253         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
10254         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
10255         opcodes.
10256
10257 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10258
10259         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
10260         the 'value' to store is a constant.
10261
10262         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
10263
10264         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
10265         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
10266
10267 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10268
10269         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
10270         for accessing method->generic_container.
10271
10272 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10273
10274         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
10275         
10276         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
10277
10278         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
10279
10280         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
10281         fails.
10282
10283 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10284
10285         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
10286
10287         * mini.c: Handle the case when mono_class_vtable () fails.
10288
10289 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
10290         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
10291         the stat profiler.
10292
10293 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10294
10295         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
10296         together with domain sharing.
10297
10298 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10299
10300         * mini.c: Treat callvirts to final methods like non-virtual calls
10301         when doing generic sharing, i.e. look them up in the runtime
10302         generic context.
10303
10304 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10305
10306         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
10307         with computed types (for generic sharing).
10308
10309         * mini.c: Generic sharing for mkrefany and refanyval.
10310
10311 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
10312
10313         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
10314         possible.
10315
10316         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
10317         the generic sharing code.
10318         
10319         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
10320         when needed.
10321
10322 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10323
10324         * mini.h: Remove the declaration of mono_aot_init_vtable ().
10325
10326 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
10327
10328         * driver.c: updated copyright date
10329
10330 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10331
10332         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
10333         needed.
10334
10335 2008-05-19  Martin Baulig  <martin@ximian.com>
10336
10337         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
10338         pointing to the new `_mono_debug_using_mono_debugger' variable.
10339
10340         * driver.c
10341         (mono_main): Check mono_debug_using_mono_debugger() rather than
10342         the `MONO_INSIDE_MDB' environment variable to check whether we're
10343         inside the debugger.
10344
10345 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
10346
10347         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
10348         argument.
10349
10350 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
10351
10352         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
10353
10354         * mini.c: Added mini_assembly_can_skip_verification. This
10355         function checks if the assembly requested to skip verification. 
10356         Fixes part of #387274.
10357
10358 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10359
10360         * mini.c (mini_get_method): Disable the check for open generic classes when
10361         using generic sharing.
10362
10363         * generics.cs: Add a test for #387034.
10364
10365         * mini.c (mini_get_method): Check whenever the method class is an open generic
10366         type, and return NULL in that case, causing a verification error. Fixes
10367         #384123.
10368
10369 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
10370
10371         * driver.c (mono_main): Revert r102623. The right
10372         thing to do is to enable the verifier under verifiable
10373         unless a --security flag was passed.
10374
10375         We need this non-trivial behavior for --verify-all otherwise
10376         mcs-compileall won't be able to use it. As it needs everything to
10377         be verified under validil.
10378
10379 2008-05-06  Martin Baulig  <martin@ximian.com>
10380
10381         Fix #383749.
10382
10383         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
10384         (mono_debugger_thread_cleanup): Likewise.
10385         (mono_debugger_extended_notification): Likewise.
10386
10387 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
10388
10389         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
10390         against both inflated and non-inflated methods. We need to check against the
10391         generic definition for cases where the instantiated method is not visible.
10392         We need to check against the inflated types for cases where the instantiation
10393         changes any super type. This fixes #382986.
10394
10395         Note that this doesn't need to be applied to other parts of mono_method_to_ir
10396         that check for visibiliy as generic params only appears as the type subject
10397         of tokens on call opcodes. Field manipulation and ldftn must always
10398         target an exact type.
10399
10400 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
10401
10402         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
10403         if no related --security flag is passed.
10404
10405 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
10406
10407         * mini-arch.h: Prepare support for ppc64.
10408
10409         Contributed under MIT/X11 license.
10410
10411 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
10412
10413         * aot-runtime.c: Prepare support for ppc64.
10414
10415         Contributed under MIT/X11 license.
10416
10417 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
10418
10419         * mini-ops.h: Prepare support for ppc64.
10420
10421         Contributed under MIT/X11 license.
10422
10423 2008-05-04  Andreas Farber  <andreas.faerber@web.de>
10424
10425         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
10426
10427         Contributed under MIT/X11 license.
10428
10429 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
10430
10431         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
10432         assemblies, since aot_name is not a full path, causing us to load MS.NET 
10433         assemblies on windows.
10434
10435 ?2008-04-28  Kornel Pal  <kornelpal@gmail.com>
10436
10437         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
10438         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
10439         * main.c: Use UTF-8 encoded command line instead of Windows default code
10440         page on Windows to support Unicode.
10441         * driver.c (DllMain): New function for mixed-mode assembly support.
10442         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
10443         export __stdcall functions without decoration.
10444
10445         Contributed under MIT/X11 license.
10446
10447 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10448
10449         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
10450         saving it very early.
10451
10452 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10453
10454         * mini.h, mini.c: Lots of code for accessing the old RGCTX
10455         deleted.  The only way to access the new RGCTX is via the
10456         trampline.
10457
10458         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
10459         vtable instead of the RGCTX to static methods.
10460
10461         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
10462         accessing the new RGCTX.
10463
10464         * generic-sharing.c: There is no separation between self, type
10465         arguments and other types in the RGCTX anymore.
10466
10467 2008-04-25  Jonathan Chambers <joncham@gmail.com>
10468
10469         * mini-amd64.c (add_general): Remove previous stack adjustment.
10470         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
10471         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
10472         for 32 bytes of stack space reserved for all calls.
10473         
10474         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
10475         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
10476         adjustment.
10477         
10478         Code contributed under MIT/X11 license.
10479
10480 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
10481
10482         * mini.c (mini_method_verify): Only verify non-inflated methods, check
10483         against the root definition, peeling out method and type instantiations.
10484         Cache verify success results, code that fails verification is still
10485         checked multiple times.
10486
10487 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10488
10489         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
10490
10491 2008-04-23  Jonathan Chambers <joncham@gmail.com>
10492
10493         * mini-amd64.c (add_general): Always increment stack on Win64.
10494         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
10495         on Win64.
10496         
10497         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
10498         stack based argument handling on Win64.
10499         
10500         Code contributed under MIT/X11 license.
10501
10502 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
10503
10504         * Makefile.am (version.h): Add support for git-svn.
10505
10506 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10507
10508         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
10509         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
10510         avoiding allocations and libc functions which might deadlock.
10511         
10512         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
10513         'no-gdb-backtrace' option is set.
10514
10515         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
10516
10517         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
10518
10519 2008-04-21  Martin Baulig  <martin@ximian.com>
10520
10521         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
10522         and `get_lmf_addr'; `notification_address' is no longer a pointer.
10523
10524 2008-04-21  Martin Baulig  <martin@ximian.com>
10525
10526         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
10527         `thread_vtable', `event_handler_ptr' and `event_handler'.
10528
10529 2008-04-21  Martin Baulig  <martin@ximian.com>
10530
10531         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
10532         allows delayed initialization of the `executable_code_buffer' when
10533         attaching.
10534
10535 2008-04-21  Martin Baulig  <martin@ximian.com>
10536
10537         * mini.h (mono_debugger_create_notification_function): Removed.
10538         * tramp-*.c (mono_debugger_create_notification_function): Removed.
10539
10540         * mdb-debug-info64.s
10541         (MONO_DEBUGGER__notification_function): Added this in the .text section.
10542
10543         * mdb-debug-info32.s
10544         (MONO_DEBUGGER__notification_function): Added this in the .text section.
10545
10546         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
10547         currently only works on x86 and x86_64, so don't create it on ppc.
10548
10549 2008-04-21  Martin Baulig  <martin@ximian.com>
10550
10551         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
10552
10553         * mini.c
10554         (mini_method_compile): In the fp elimination check, check
10555         `debug_options.mdb_optimizations' in addition to
10556         mono_debug_using_mono_debugger().       
10557
10558         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
10559         disable some JIT optimizations which are only disabled when
10560         running inside the debugger.
10561         Added `--help-debug' option to describe the debugging options.
10562         (parse_debug_options): New static function to parse the `--debug'
10563         options, so we can easily add more stuff in future.
10564
10565 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
10566
10567         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
10568         the method has no body.
10569
10570 2008-04-19  Jonathan Chambers <joncham@gmail.com>
10571
10572         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
10573         assembly is not allowed in MSVC 64-bit compiler. 
10574         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
10575         as we get floating point exceptions everywhere.
10576         
10577         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
10578         correctly align arguments for call to throw_exception.
10579         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
10580         
10581         Code contributed under MIT/X11 license.
10582
10583 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
10584
10585         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
10586
10587 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
10588
10589         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
10590
10591         * mini-amd64.c (NEW_INS): Set cil_code.
10592
10593         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
10594         from mini-amd64.c so all debugger related logic is in one place.
10595
10596         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
10597         later won't have a random ip assigned to them.
10598
10599 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
10600
10601         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
10602         the arch specific function initializes code_size.
10603         (mono_create_delegate_trampoline): Ditto.
10604
10605         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
10606         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
10607         platforms.
10608
10609         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
10610         running under the debugger.
10611
10612         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
10613         debugger.
10614
10615         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
10616         debugger. Also move the disabling of optimizations here from driver.c.
10617         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
10618         debugger.
10619
10620         * mini.h (MonoCompile): Add a few new flags.
10621
10622 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
10623
10624         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
10625         so the cil_code field of created MonoInst's is properly set.
10626         (mini_select_instructions): Ditto.
10627
10628         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
10629         (MONO_INST_NEW_CALL): Ditto.
10630
10631         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
10632         in many places so the ins->cil_code field is properly initialized.
10633
10634         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
10635         place.
10636
10637 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10638
10639         * mini.c (mini_method_compile): Print a different message when compiling a 
10640         shared method.
10641         
10642         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
10643         > 1.
10644
10645 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
10646
10647         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
10648         SSE2 instructions.
10649
10650         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
10651         
10652 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
10653
10654         * mini.c (handle_stack_args): Make this return void since its return value was
10655         never used. Also set cfg->unverifiable for invalid IL instead of calling
10656         G_BREAKPOINT ().
10657
10658 2008-04-10  Mark Probst  <mark.probst@gmail.com>
10659
10660         * mini.c: Make sure "this" is live in catch clauses with type
10661         variables in shared generic code.
10662
10663 2008-04-08  Mark Probst  <mark.probst@gmail.com>
10664
10665         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
10666         generic_class_is_reference_type() to ensure the proper behaviour
10667         when sharing generic code and the type in question is a type
10668         argument.
10669
10670 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10671
10672         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
10673         race conditions when printing thread dumps. Fixes #377738.
10674
10675 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
10676         
10677         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
10678         shows up when both MonoInst arguments can cause aliasig.
10679         There is likely no way in the current JIT to trigger this problem, but
10680         it showed up in the development of generics sharing, when in a new
10681         opcode both args of an OP_GROUP can be aliases (addresses of a local).
10682         When the generics sharing code will be committed, its tests will be
10683         valid also for this bug.
10684
10685 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10686
10687         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
10688         PATCH_INFO_METHOD.
10689
10690         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
10691         NULL.
10692
10693 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
10694
10695         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
10696         use a more detailed exception message for InvalidCastException.
10697
10698         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
10699
10700         * driver.c (mono_main): Add --debug=casts option to turn on better 
10701         InvalidCastException message details.
10702
10703         * mini.c (mini_get_debug_options): New helper function to return the address of
10704         the debug_options variable.
10705
10706         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
10707         the jit_tls TLS variable.
10708
10709         * mini.c (mono_jit_tls): New TLS variable.
10710
10711         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
10712         option is used.
10713
10714 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
10715
10716         * mini.h: Removed verifer related stuff. This code was moved to verify.c
10717
10718         * mini.c: Removed verifer related stuff, code moved to verify.c.
10719
10720         * driver.c: Using code from verify.c instead of mini.c.
10721
10722 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
10723
10724         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
10725         longer valid.
10726
10727 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
10728
10729         * mini.c (check_for_method_verify): Enabling verification of
10730         corlib if mono_verify_all is set. Bugs in the verifier preventing that
10731         have been fixed.
10732
10733 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
10734
10735         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
10736         caller saved registers as well.
10737         
10738         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
10739         saved registers as well.
10740
10741 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
10742
10743         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
10744
10745         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
10746         code.
10747
10748 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
10749
10750         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
10751         to get_call_info.
10752         (get_call_info): Take a gsctx argument instead of 'cfg'.
10753
10754 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10755
10756         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
10757         mono_verify_all is set.
10758
10759         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
10760
10761         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
10762
10763 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10764
10765         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
10766         an exception.
10767
10768         * driver.c mini.c mini.h: Add a --verify-all development option to test the
10769         verifier and the code generated by the compiler.
10770
10771 2008-03-25  Mark Probst  <mark.probst@gmail.com>
10772
10773         * mini.c: Generic sharing of the non-nullable case of the box
10774         instruction.
10775
10776 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
10777
10778         * inssel.brg: Fix the build.
10779
10780         * iltests.il.in: Add a test for lconv.ovf.u8.un.
10781
10782 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
10783
10784         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
10785         Array:Address. Fixes #372410.
10786
10787         * iltests.il.in: New tests for readonly prefix.
10788
10789 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
10790
10791         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
10792         mini-trampolines.c.
10793
10794         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
10795         mini-exceptions.c.
10796
10797         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
10798         
10799         * mini.c (mono_decompose_op_imm): New helper function.
10800
10801         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
10802         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
10803         return value.
10804
10805         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
10806         mono_arch_output_basic_block. Fix warnings.
10807
10808         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
10809         for now.
10810
10811 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
10812
10813         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
10814         since the extra frame is now detected automatically inside the loop.
10815
10816         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
10817         opts which are now in mono_peephole_ins ().
10818         
10819         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
10820
10821         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
10822         frames and skip duplicate managed-to-native frames. Fixes #367665.
10823
10824         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
10825         opts which are now in mono_peephole_ins ().
10826         (mono_arch_peephole_pass_2): Ditto.
10827
10828         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
10829
10830         * mini-codegen.c (mono_peephole_ins): New helper function containing the
10831         arch independent peephole optimizations.
10832
10833         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
10834         opts which are now in mono_peephole_ins ().
10835
10836         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
10837         
10838         * mini-s390.c (mono_arch_output_basic_block): Fix build.
10839
10840         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
10841         pattern.
10842
10843         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
10844         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
10845         opcode. 
10846
10847 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
10848
10849         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
10850         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
10851         return value.
10852
10853         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
10854         mono_arch_output_basic_block. Fix warnings.
10855
10856 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
10857
10858         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
10859         conv.ovf.u.un.
10860
10861 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
10862
10863         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
10864         conv.ovf.u.un.
10865
10866         * iltests.il: Add new tests.
10867
10868 2008-03-20  Kornel Pal  <kornelpal@gmail.com>
10869
10870         * mini.c: Removed Windows version macros.
10871
10872 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10873
10874         * generic-sharing.c: Put reflection types in the extensible part
10875         of the runtime generic context.
10876
10877         * mini.c: Generic sharing of the GetTypeHandle special case of the
10878         ldtoken instruction.
10879
10880 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
10881
10882         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
10883
10884         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
10885         
10886         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
10887         consistency with the other version on the linear IR branch.
10888
10889         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
10890
10891         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
10892
10893         * iltests.il.in: Add new tests.
10894
10895 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
10896
10897         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
10898
10899         * iltests.il.in: Add new tests.
10900
10901 2008-03-19  Mark Probst  <mark.probst@gmail.com>
10902
10903         * mini.c: Two variables with the same name were declared in
10904         nesting contexts and one wasn't initialized.  Fixed.
10905
10906 2008-03-19  Mark Probst  <mark.probst@gmail.com>
10907
10908         * mini.c: Generic sharing of the initobj instruction.
10909
10910 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10911
10912         * mini.c: make the test to optimize ldtoken from typeof() more
10913         precise.
10914
10915 2008-03-18  Mark Probst  <mark.probst@gmail.com>
10916
10917         * mini.c: Generic sharing of the initobj instruction for reference
10918         types.
10919
10920 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
10921
10922         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
10923         the mono_breakpoint_clean_code() code to perform bound checks.
10924
10925 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
10926
10927         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
10928         mono_arch_patch_callsite() to include the start of the managed method
10929         to be able to perform bound checks.
10930
10931 2008-03-17  Mark Probst  <mark.probst@gmail.com>
10932
10933         * mini.c: Generic sharing for the isinst instruction.
10934
10935 2008-03-17  Mark Probst  <mark.probst@gmail.com>
10936
10937         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
10938         inssel-long32-mips.brg: Added opcodes for doing indirect calls
10939         with the runtime generic context argument.
10940
10941         * mini.c: Share calls to several types of unsharable methods by
10942         putting the address of the method code in the runtime generic
10943         context and doing an indirect call.
10944
10945         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
10946         to switches.
10947
10948 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10949
10950         * generic-sharing.c: Change due to a change in the runtime genric
10951         context API.
10952
10953 2008-03-15  Martin Baulig  <martin@ximian.com>
10954
10955         * tramp-x86.c
10956         (mono_arch_nullify_class_init_trampoline): Add call to
10957         mono_breakpoint_clean_code() to make things work when running
10958         inside the debugger.
10959
10960         * tramp-amd64.c
10961         (mono_arch_nullify_class_init_trampoline): Add call to
10962         mono_breakpoint_clean_code() to make things work when running
10963         inside the debugger.
10964
10965 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10966
10967         * inssel-long.brg (reg): Fix 64 bit build.
10968
10969 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10970
10971         * mini.c, mini.h: Share static generic code by passing it an
10972         implicit argument pointing to the runtime generic context.
10973
10974         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
10975         inssel-long32-mips.brg: New opcodes for calling shared static,
10976         which need to be passed the runtime generic context.
10977
10978         * mini-amd64.c, mini-x86.c: Save the runtime generic context
10979         argument on the stack in the prologue if needed.  New function for
10980         finding the runtime generic context argument from the registers
10981         saved by the trampoline.
10982
10983         * mini-amd64.h, mini-x86.h: Specify which register to use for the
10984         runtime generic context argument.
10985
10986         * tramp-amd64.c: Also restore the register used for the runtime
10987         generic context argument.
10988
10989         * mini-trampoline.c: Resolve shared static calls by consulting the
10990         runtime generic context via the new argument.
10991
10992         * generic-sharing.c: Add an argument to sharability-checking
10993         functions that specifies whether type variables should be treated
10994         as sharable type arguments.
10995
10996         * inssel-x86.brg: Removed a superfluous, buggy rule.
10997
10998         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
10999         to switches.
11000
11001 2008-03-14  Martin Baulig  <martin@ximian.com>
11002
11003         * debug-debugger.c (main_thread_handler): Call
11004         mono_runtime_run_main() without sending any notifications.
11005
11006         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
11007
11008 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11009
11010         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
11011
11012 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11013
11014         * tramp-x86.c: Fixed register restore offsets in the trampoline
11015         code for ECX and EDX.
11016
11017 2008-03-12  Geoff Norton  <gnorton@novell.com>
11018
11019         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
11020         different ucontext_t implementations.
11021         * exceptions-arm.c: Use the above defines to get exceptions working on 
11022         iPhone (based on a patch by Luke Howard lukeh@padl.com)
11023         * mini-arm.c: Implement iPhone icache support (based on a patch by
11024         Luke Howard lukeh@padl.com)
11025
11026 2008-03-12  Mark Probst  <mark.probst@gmail.com>
11027
11028         * mini.c: Enable generic sharing of calls to non-static
11029         non-interface non-generic non-value-type methods.
11030
11031         * mini-trampolines.c: Resolve calls from shared generic code.
11032
11033 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
11034
11035         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
11036
11037         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
11038
11039 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
11040
11041         * mini.c: some fixes for the AOT compiler.
11042
11043 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11044
11045         * cpu-amd64.md: Add clob:1 to some float opcodes.
11046
11047 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
11048
11049         * mini.h: Added MiniVerifierMode enumeration.
11050
11051         * mini.c: Added mini_verifier_set_mode to control
11052         the usage of the new verifier.
11053
11054         * mini.c (mono_method): Integrated the new verifier.
11055
11056         * driver.c: Extended --security option with validil and
11057         verifiable options to activate the new verifier.
11058
11059 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11060
11061         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
11062         optimization to ctors taking 0 or 2 arguments too.
11063
11064         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
11065         a bit.
11066
11067         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
11068
11069         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
11070
11071 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11072
11073         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
11074         non-aot case as well.
11075
11076         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
11077
11078         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
11079         changes.
11080
11081         * aot-compiler.c (encode_patch): Ditto.
11082
11083         * mini.h (G_MININT32): Fix the definition of this.
11084
11085 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
11086
11087         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
11088
11089         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
11090
11091 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11092
11093         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
11094         methods returning vtypes in registers.
11095         (mono_arch_allocate_vars): Ditto.
11096
11097         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
11098
11099         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
11100
11101         * generics.cs: Add a test from the linear IR branch.
11102
11103         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
11104
11105         * mini.c (inline_method): Cache failed inline attempts.
11106
11107 2008-03-04  Mark Probst  <mark.probst@gmail.com>
11108
11109         * mini.c: For shared methods of generic classes put the location
11110         of "this" into the MonoGenericJitInfo.
11111
11112         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
11113         register out of a MonoContext by register number.  Add the generic
11114         sharing context as an argument to mono_arch_find_this_argument().
11115
11116         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
11117         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
11118         for new arch function.
11119
11120         * mini-exception.c: Handle open exception clauses in shared
11121         generic code.
11122
11123         * mini-trampolines.c: Supply additional argument to
11124         mono_arch_find_this_argument().
11125
11126 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11127
11128         * Makefile.am (regtests): Run the bench.exe tests last.
11129
11130 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
11131
11132         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
11133         a bit.
11134
11135 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
11136
11137         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
11138         with MS.
11139
11140         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
11141         
11142         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
11143
11144         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
11145         whose class has no cctor.
11146
11147         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
11148
11149 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
11150
11151         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
11152         unverified.
11153
11154 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
11155
11156         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
11157         to be in sync with the code on the linear IR branch.
11158
11159         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
11160
11161         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
11162
11163 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11164
11165         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
11166
11167         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
11168
11169         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
11170
11171         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
11172
11173         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
11174         
11175         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
11176         body.
11177
11178 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
11179
11180         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
11181         OP_LOADR4_MEMBASE emission.
11182
11183         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
11184         (mono_spillvar_offset_float): Ditto.
11185
11186         * mini-mips.c (mono_arch_emit_prolog): Ditto.
11187
11188         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
11189         emission.
11190
11191         * basic-long.cs: Add regression tests for them.
11192
11193         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
11194         use.
11195         (mono_arch_allocate_vars): Fix representation of single-precision float
11196         argument.
11197         (mono_arch_output_basic_block): Ditto.
11198
11199         * inssel-mips.brg: Ditto, remove duplicate items.
11200
11201         * mini-mips.c (emit_load_volatile_arguments): New function to handle
11202         arguments of tail calls as on other platforms.
11203         (mono_arch_output_basic_block): Handle tail calls.
11204
11205         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
11206         register.
11207
11208         * objects.cs (test_5_pass_static_struct): Add test for it.
11209
11210         Contributed under MIT/X11 license.
11211
11212 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
11213
11214         * Makefile.am: Use gmcs for compiling the regression tests.
11215
11216         * *.2.cs *.2.il: Rename to *.cs and *.il.
11217
11218 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
11219
11220         * regalloc.h: Make the vassign array smaller.
11221
11222         * mini.c (mini_method_compile): Remove an unused field in cfg.
11223
11224         * mini-codegen.c: Add a bunch of micro optimizations.
11225
11226 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
11227
11228         * regalloc.h: Remove some unused fields.
11229
11230 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
11231
11232         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
11233
11234         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
11235
11236 2008-02-22  Mark Probst  <mark.probst@gmail.com>
11237
11238         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
11239
11240         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
11241         trampoline: Fetch an entry from the runtime generic context.  If
11242         it's NULL, jump to the actual trampoline to fill the runtime
11243         generic context.  Otherwise, return it.
11244
11245         * mini.c: Call the lazy fetch trampoline to get entries out of the
11246         runtime generic context.
11247
11248         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
11249         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
11250         tramp-sparc.c: Stubs for the lazy fetch trampoline.
11251
11252 2008-02-21  Mark Probst  <mark.probst@gmail.com>
11253
11254         * mini.c: Fetch data out of the extensible part of the runtime
11255         generic context instead of calling a helper function.
11256
11257         * generic-sharing.c: Some functions moved into
11258         metadata/generic-sharing.c.  Helper function for fetching other
11259         types now checks and asserts against extensible rgctx (just for
11260         debugging purposes - the helper function isn't called anymore
11261         unless for debugging).
11262
11263 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
11264
11265         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
11266         for tail calls up to the point that the tests in iltests.exe run. Also add a
11267         dummy CKFINITE implementation.
11268         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
11269         needed for trampoline LMF frames.
11270
11271         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
11272         trampoline LMF frames.
11273
11274 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
11275
11276         * mini.c (inline_method): clean any pending loader error when inlining fail.
11277         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
11278
11279 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
11280
11281         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
11282
11283         * aot-runtime.c (decode_patch_info): Ditto.
11284
11285         * mini.c (mono_resolve_patch_target): Ditto.
11286         
11287         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
11288         icall wrappers.
11289
11290         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
11291         
11292         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
11293         if it references an icall address.
11294
11295 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
11296
11297         * cpu-s390x.md: Remove some more unused opcodes.
11298         
11299         * cpu-s390x.md: Remove some unused opcodes.
11300
11301         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
11302         mono_op_imm_to_op ().
11303
11304         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
11305         instead of a switch statement.
11306         
11307         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
11308         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
11309
11310         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
11311         
11312         * mini-codegen.c: Remove unused mono_regstate2_... functions.
11313
11314         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
11315         -1.
11316
11317 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
11318
11319         * driver.c (mono_main): Improve error reporting when an assembly cannot be
11320         opened. Fixes #362607.
11321
11322         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
11323
11324         * iltests.il.in: Add a test for static methods in interfaces.
11325
11326 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
11327
11328         * genmdesc.c (build_table): Fix a crash on older glib versions.
11329
11330         * cpu-sparc.md: Remove some unused opcodes.
11331         
11332         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
11333         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
11334
11335         * cpu-amd64.md: Remove some unused opcodes.
11336
11337         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
11338         like the other opcodes.
11339
11340 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
11341
11342         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
11343
11344         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
11345
11346         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
11347         variables 'cfg' instead of 'm' for consistency.
11348
11349         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
11350
11351         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
11352         argument holding the vtype return address, to avoid the ambigious use of
11353         cfg->ret for this purpose.
11354
11355         * mini.c (NEW_RETLOADA): Use vret_addr if set.
11356
11357         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
11358         
11359         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
11360         new mono_print_ins () function which only takes one argument.
11361
11362 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
11363
11364         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
11365         macro arguments.
11366
11367 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
11368
11369         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
11370
11371         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
11372
11373         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
11374         opcodes and other small changes.
11375
11376         * mini-ops.h: Add some new opcodes from the linear IR branch.
11377
11378         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
11379
11380         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
11381         opcodes, use the REG_MEMBASE opcodes instead.
11382         
11383         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
11384         opcodes, use the REG_MEMBASE opcodes instead.
11385         
11386         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
11387         linear IR branch.
11388
11389         * mini.c (mono_op_imm_to_op): New helper function.
11390
11391         * mini-ops.h: Add some opcodes from linear IR branch.
11392
11393 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
11394
11395         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
11396         <tsv@solvo.ru>.
11397
11398 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
11399
11400         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
11401         OP_ICONV_TO_R4/R8.
11402
11403         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
11404
11405 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11406
11407         * aot-compiler.c (emit_method_code): Add an assert.
11408
11409         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
11410         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
11411         methods.
11412
11413 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
11414
11415         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
11416         some load/store opcodes so they are consistent. 
11417         (mono_arch_emit_prolog): Simplify some code.
11418
11419         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
11420
11421         * objects.cs: Add tests for large argument offsets on ARM.
11422
11423         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
11424         stack offsets. Fixes #359651.
11425
11426         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
11427
11428         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
11429
11430         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
11431
11432         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
11433
11434         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
11435
11436         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
11437         rid of CEE_CONV_R_UN.
11438
11439         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
11440
11441 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
11442
11443         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
11444
11445         * mini.c (mono_normalize_opcodes): Add some more opcodes.
11446
11447         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
11448
11449         * cpu-amd64.md: Remove some unused opcodes.
11450
11451         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
11452
11453         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
11454
11455         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
11456         arch specific functions for its parts. Call the peephole pass after local
11457         regalloc so the prolog can compute a more accurate max_offset.
11458         
11459         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
11460         the corresponding OP_I/OP_L opcodes.
11461
11462         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
11463
11464         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
11465
11466 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11467
11468         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
11469         as they are handled in mini.c.
11470
11471         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
11472         
11473         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
11474         case since it is handled in mini.c.
11475
11476         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
11477
11478         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
11479
11480         * *.c: Use the new opcodes in the IR and back end code.
11481
11482         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
11483
11484         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
11485
11486 2008-02-06  Mark Probst  <mark.probst@gmail.com>
11487
11488         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
11489         an assert because it has a race condition.
11490
11491 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11492
11493         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
11494
11495         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
11496
11497         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
11498
11499         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
11500         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
11501
11502 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11503
11504         * cpu-amd64.md (move): Correct the maximum size of move.
11505
11506 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11507
11508         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
11509         the generic class init trampoline to return quickly if the class
11510         is already inited.
11511
11512 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
11513
11514         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
11515         issues where an 32 bit callsite cannot be patched by a 64 bit address.
11516
11517 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11518
11519         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
11520         branch.
11521
11522 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
11523
11524         * objects.cs: Add some soft-float tests.
11525
11526         * mini.c: Fix a couple more soft-float issues.
11527
11528         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
11529
11530         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
11531         avoid a REX prefix.
11532
11533 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11534
11535         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
11536         exception happens while compiling a virtual method.
11537
11538 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11539
11540         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
11541         
11542         * mini-sparc.c: Fix build.
11543
11544         * mini-sparc.c (get_call_info): Add support for generic sharing.
11545
11546         * mini-exceptions.c: Add a FIXME.
11547
11548 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11549
11550         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
11551         altstack handling code.
11552
11553         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
11554         
11555         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
11556
11557         * mini-s390.c: Add support for generic sharing.
11558
11559         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
11560         Fix CAS on s390.
11561         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
11562
11563         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
11564
11565         * mini-s390x.c: Add support for generic sharing.
11566         
11567         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
11568         Fix CAS on ia64.
11569         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
11570
11571         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
11572         can be used since it takes a 16 bit signed immediate.
11573
11574         * inssel-s390x.brg: Fix OP_SETRET.
11575
11576         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
11577
11578         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
11579
11580         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
11581
11582         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
11583
11584         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
11585         in one place.
11586
11587         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
11588         stuff.
11589
11590         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
11591         of the unused mono_arch_patch_delegate_trampoline stuff.
11592
11593 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
11594
11595         * basic-long.cs: Move the fp related tests to basic-float.cs.
11596
11597         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
11598
11599         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
11600
11601         * basic-calls.cs: Add a test for proper float argument passing.
11602
11603         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
11604         if the context corresponds to an exception received through a signal.
11605
11606         * exceptions.cs: Add a test for nullref handling at the start of a try
11607         clause.
11608
11609         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
11610
11611         * jit-icalls.c (mono_break): New JIT icall.
11612
11613         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
11614
11615         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
11616
11617 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
11618
11619         * cpu-*.md: Get rid of unused opcodes.
11620
11621         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
11622
11623         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
11624         by all platforms.
11625
11626         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
11627         define.
11628
11629         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
11630         the arch independent trampoline code in mini-trampolines.c.
11631
11632         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
11633
11634         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
11635
11636         * mini-s390.h: Remove an unused define.
11637         
11638         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
11639         the arch independent trampoline code in mini-trampolines.c.
11640
11641         * mini-arm.c (mono_arch_emit_prolog): Fix build.
11642
11643 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
11644
11645         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
11646
11647         * mini-s390.c (mono_arch_emit_prolog): Fix build.
11648
11649         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
11650
11651         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
11652
11653         * cpu-amd64.md: Use smaller sizes for int opcodes.
11654
11655         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
11656
11657         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
11658         objects.cs.
11659
11660         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
11661         debugging.
11662
11663         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
11664         instead of though a pointer to save an indirection when accessing elements of
11665         the array.
11666
11667         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
11668         some typos.
11669         (NOT_IMPLEMENTED): New helper macro.
11670         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
11671         of a bb.
11672
11673         * *.c: Use the new helper macro.
11674
11675 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
11676
11677         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
11678
11679 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11680
11681         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
11682         stack slots.
11683
11684 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
11685
11686         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
11687         profiling is enabled.
11688         
11689         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
11690         the end.
11691         (mono_arch_emit_prolog): Add more first bblock optimizations.
11692
11693         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
11694         in order if possible.
11695         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
11696         bblock, since the arguments are still in their original registers.
11697
11698         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
11699
11700 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11701
11702         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
11703         as well.
11704
11705         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
11706         offset 0.
11707
11708         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
11709
11710         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
11711         process async exceptions received while in unmanaged code.
11712
11713         * mini.c (mini_init): Install a callback with the runtime which will be called
11714         when a thread receives an async exception while in unmanaged code.
11715
11716         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
11717
11718         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
11719
11720 2008-01-16  Wade Berrier  <wberrier@novell.com>
11721
11722         * cpu-g4.md:
11723         * cpu-arm.md:
11724         * cpu-s390x.md:
11725         fix build
11726
11727 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11728
11729         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
11730         compilation with sun cc.
11731
11732         * cpu-*.md: Fix the build.
11733
11734         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
11735
11736         * mini-amd64.h: Add some comments to the MonoLMF structure.
11737
11738         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
11739         
11740         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
11741         in the LMF structure if possible. This saves two instructions in the
11742         managed->native wrappers.
11743
11744         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
11745
11746 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11747
11748         * generic-sharing.c: New type argument lookup code which uses the
11749         runtime generic context template.
11750
11751 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11752
11753         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
11754
11755         * mini-arm.c (add_general): Fix arm eabi parameter passing.
11756         (mono_arch_output_basic_block): Fix localloc implementation.
11757
11758         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
11759
11760         * mini-ia64.c (peephole_pass): Fix ia64 build.
11761
11762         * mini-amd64.c (peephole_pass): Fix a warning.
11763         
11764         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
11765         at a constant offset from sp/fp.
11766
11767         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
11768         instead of obtaining it from *lmf in the managed method case.
11769
11770 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11771
11772         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
11773
11774 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
11775
11776         * mini.h (MonoInstList): New type.
11777         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
11778         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
11779         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
11780         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
11781         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
11782         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
11783         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
11784         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
11785         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
11786         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
11787         MONO_INST_LIST_FOR_EACH_ENTRY,
11788         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
11789         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
11790         mono_inst_list_first, mono_inst_list_last,
11791         mono_inst_list_next, mono_inst_list_prev): New instruction
11792         list handling interfaces.
11793         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
11794         list head 'ins_list'.
11795         (MonoInst): Replace next pointer with list head 'node'.
11796         (MonoCallInst): Make 'out_args' a MonoInstList.
11797         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
11798         (MonoCompile): Delete reverse_inst_list and
11799         reverse_inst_list_len.
11800         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
11801         mono_arch_lowering_pass, mono_arch_local_regalloc,
11802         mono_arch_output_basic_block, mono_arch_emit_prolog):
11803         Convert to new instruction lists.
11804         (insert_after_ins): Delete.
11805         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
11806         instruction lists.
11807         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
11808         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
11809         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
11810         mono_emulate_opcode, mono_emit_load_got_addr,
11811         inline_method, mono_method_to_ir, mono_print_bb_code,
11812         print_dfn, decompose_pass, nullify_basic_block,
11813         replace_out_block_in_code, remove_block_if_useless,
11814         merge_basic_blocks, move_basic_block_to_end,
11815         try_unsigned_compare, optimize_branches, mono_print_code,
11816         mini_select_instructions, remove_critical_edges): Likewise.
11817         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
11818         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
11819         mono_arch_output_basic_block, mono_arch_emit_prolog):
11820         Likewise.
11821         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
11822         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
11823         mono_arch_output_basic_block): Likewise.
11824         (inst_list_prepend, insert_after_ins): Delete.
11825         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
11826         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
11827         instruction lists.
11828         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
11829         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
11830         mono_arch_emit_prolog): Likewise.
11831         * cfold.c (mono_constant_fold): Likewise.
11832         * liveness.c (visit_bb, mono_analyze_liveness,
11833         optimize_initlocals): Likewise.
11834         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
11835         * graph.c (mono_draw_code_cfg): Likewise.
11836         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
11837         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
11838         mono_ssa_cprop): Likewise.
11839         * abcremoval (get_relations_from_previous_bb, process_block):
11840         Likewise.
11841         * local-propagation (mono_cprop_invalidate_values,
11842         mono_local_cprop_bb): Likewise.
11843         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
11844         peephole_pass, mono_arch_output_basic_block,
11845         mono_arch_emit_prolog): Likewise.
11846         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
11847         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
11848         mono_arch_emit_prolog): Likewise.
11849         (insert_after_ins): Delete.
11850         * aliasing.c (print_code_with_aliasing_information,
11851         mono_build_aliasing_information, mono_aliasing_deadce):
11852         Convert to new instruction lists.
11853         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
11854         peephole_pass, NEW_INS, mono_arch_lowering_pass,
11855         mono_arch_local_regalloc, mono_arch_output_basic_block):
11856         Likewise.
11857         (insert_after_ins): Delete.
11858         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
11859         peephole_pass, mono_arch_output_basic_block): Convert to
11860         new instruction lists.
11861         * mini-codegen (InstList, inst_list_prepend,
11862         insert_after_ins): Delete.
11863         (insert_before_ins, get_register_force_spilling,
11864         get_register_spilling, free_up_ireg, free_up_reg,
11865         create_copy_ins, create_spilled_store, alloc_int_reg,
11866         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
11867         to new instruction lists.
11868         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
11869         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
11870         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
11871         (insert_after_ins): Delete.
11872         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
11873         mono_arch_local_regalloc, mono_arch_output_basic_block,
11874         mono_arch_call_opcode): Convert to new instruction lists.
11875         (insert_after_ins): Delete.
11876         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
11877         peephole_pass, mono_arch_output_basic_block,
11878         mono_arch_emit_prolog): Convert to new instruction lists.
11879
11880 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11881
11882         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
11883
11884         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
11885         Fixes #353182.
11886
11887         * Makefile.am (version.h): Make this work with non-bash shells.
11888
11889 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11890
11891         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
11892
11893 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11894
11895         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
11896         the InitializeArray optimization.
11897
11898 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11899
11900         * mini.c driver.c: Don't include os/gc_wrapper.h.
11901
11902 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11903
11904         * mini.c (print_jit_stats): Print GC statistics if available.
11905
11906 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
11907
11908         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
11909
11910 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
11911
11912         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
11913
11914 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11915
11916         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
11917         
11918         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11919
11920         * driver.c (mono_main): Ditto.
11921
11922 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11923
11924         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
11925
11926         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
11927         in the vtable can't be encoded.
11928         (compile_method): Ditto.
11929
11930 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11931
11932         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
11933         defined.
11934
11935         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
11936         lmf->rbp.
11937
11938         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
11939         the top LMF entry belongs to the current method.
11940
11941         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
11942
11943 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11944
11945         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
11946         
11947         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
11948
11949         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
11950
11951         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
11952
11953         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
11954
11955         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
11956         implementation.
11957
11958         * basic-float.cs: Add an ulong->double cast test.
11959
11960 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
11961
11962         * mini.c (mono_method_to_ir): Fix a warning.
11963
11964 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
11965
11966         * mini-ops.h: Add OP_SWITCH.
11967
11968         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
11969         CEE_SWITCH in back-end code, use OP_SWITCH instead.
11970
11971 2007-12-11  Geoff Norton  <gnorton@novell.com>
11972
11973         * mini-s390x.c: Minor change to the MAX() define to allow
11974         it to compile with other gcc versions.
11975
11976 2007-12-11  Geoff Norton  <gnorton@novell.com>
11977
11978         * cpu-s390x.md:
11979         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
11980
11981 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11982
11983         exceptions-arm.c (mono_arch_get_restore_context): Restore
11984         the frame pointer.
11985
11986         exceptions-arm.c (throw_exception): Save the frame pointer.
11987         This is a partial fix for #323747. Only the client side is
11988         fixed.
11989
11990 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11991
11992         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
11993         was using an unrelated variable to log the class which
11994         needed the cctor to be called. This was crashing on arm.
11995
11996 2007-12-09  Robert Jordan  <robertj@gmx.net>
11997
11998         * mini-x86.c (mono_arch_emit_epilog):
11999         Consider all kinds of 64-bit types. Fixes #323114.
12000
12001 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
12002
12003         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
12004
12005 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
12006
12007         * mini-amd64.c (peephole_pass): Add a missing instruction check.
12008
12009 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
12010
12011         * mini.c: run type ctor before allocating an object, not only
12012         when running it's constructor method (fixes at least part of bug #342507).
12013
12014 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
12015         
12016         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
12017         
12018         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
12019         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
12020         function.
12021
12022         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
12023         mono_generic_class_init_trampoline () the same as it is done with the other
12024         trampolines.
12025
12026         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
12027         aot-runtime.c aot-compiler.c: Implement AOT support.    
12028
12029 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12030
12031         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
12032         build for archs which don't have the vtable trampoline defined
12033         yet.
12034
12035 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
12036
12037         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
12038
12039         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
12040
12041         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
12042
12043         * tramp-<ARCH>.c: Use the new helper function.
12044
12045 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12046
12047         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
12048         trampoline call, which takes a vtable argument.
12049
12050         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
12051         OP_TRAMPCALL_VTABLEs like other calls.
12052
12053         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
12054         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
12055         call.  Implemented a support function which fetches the vtable
12056         from a register set.
12057
12058         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
12059         Implemented a generic class init trampoline, using the
12060         OP_TRAMPCALL_VTABLE opcode.
12061
12062         * mini.c: Implemented static field access when sharing generic
12063         code.  This implies initing the class using the new
12064         OP_TRAMPCALL_VTABLE call.
12065
12066 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12067
12068         * mini.c: Don't compile methods with sharing enabled if their
12069         classes are disabled for sharing.
12070
12071 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12072
12073         * inssel.brg: Add a missing sign extension to the GETCHR and array access
12074         opcodes. Fixes #346563.
12075
12076         * objects.cs: Add a new test.
12077
12078         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
12079
12080         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
12081         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
12082
12083 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12084
12085         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
12086
12087 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12088
12089         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
12090         code stream.
12091
12092 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
12093
12094         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
12095
12096         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
12097         optimization in the AOT case.
12098         
12099 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12100
12101         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
12102         
12103         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
12104
12105         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
12106
12107         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
12108
12109         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
12110         is created by the inlined delegate ctor.
12111
12112         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
12113
12114         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
12115
12116 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
12117
12118         * cpu-x86.md: Fix the length of ckfinite.
12119
12120 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
12121
12122         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
12123         
12124         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
12125         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
12126
12127         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
12128
12129         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
12130         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
12131
12132 2007-11-28  Martin Baulig  <martin@ximian.com>
12133
12134         * mini-x86.c
12135         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
12136         after creating the trampoline.
12137
12138 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
12139
12140         * aot-runtime.c (load_aot_module): Check runtime version if needed.
12141
12142         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
12143         the same version.
12144
12145         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
12146         instead of the calling method to help AOT.
12147
12148         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
12149
12150 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
12151
12152         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
12153         is defined.
12154
12155 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12156
12157         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
12158         
12159         * aot-compiler.c (compile_method): Correct check for generic method definitions.
12160         (encode_method_ref): No need to handle generic method definitions specially.
12161
12162         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
12163
12164         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
12165         decode_klass_info.
12166
12167         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
12168         encode_klass_info.
12169         (compile_method): Enable generic sharing.
12170
12171 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
12172
12173         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
12174         (mini_method_compile): Add preliminary support for AOTing shared generic code.
12175
12176         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
12177         generic code.
12178
12179         * mini-trampolines.c: Fix a warning.
12180
12181         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
12182         NEW_PCONST.
12183         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
12184         (generic_class_is_reference_type): Remove unused function.
12185
12186         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
12187         in the generic vtable trampoline case.
12188
12189         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
12190         
12191         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
12192         return an AOT method based on a vtable slot.
12193
12194         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
12195
12196         * mini.c (mini_get_vtable_trampoline): Export this.
12197
12198 2007-11-22  Martin Baulig  <martin@ximian.com>
12199
12200         * debug-debugger.h
12201         (MonoDebuggerInfo): Move `debugger_version' up.
12202
12203 2007-11-22  Martin Baulig  <martin@ximian.com>
12204
12205         * mini-amd64.c
12206         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
12207
12208         * mini-trampolines.c
12209         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
12210         after compiling the method.
12211
12212 2007-11-20  Martin Baulig  <martin@ximian.com>
12213
12214         * debug-mini.c
12215         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
12216         (mono_debugger_remove_breakpoint): Likewise.
12217         (mono_debugger_check_breakpoints): Likewise.
12218
12219         * debug-debugger.c: Implement the new breakpoint interface here.
12220
12221 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
12222
12223         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
12224         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
12225
12226         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
12227
12228 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12229
12230         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
12231
12232         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
12233         mini.c.
12234
12235         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
12236         mini.c.
12237
12238         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
12239         returning a vtype in a register.
12240
12241         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
12242         here from the arch specific code.
12243
12244         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
12245         mini.c.
12246
12247         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
12248         (mono_arch_emit_prolog): Increment maximum prolog size.
12249
12250         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
12251         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
12252
12253         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
12254         MonoGenericSharingContext.
12255
12256         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
12257         MonoGenericSharingContext. Allocate memory from the cfg mempool.
12258
12259 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12260
12261         * mini.c, mini.h, generic-sharing.c: Functions for producing code
12262         which extract fields out of the runtime generic context.  Full
12263         sharing of the NEWARR opcode.
12264
12265 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12266
12267         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
12268         --enable-minimal=ssa.
12269
12270 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12271
12272         * mini-trampolines.c (mono_delegate_trampoline): Update after 
12273         mono_marshal_get_delegate_invoke () signature change.
12274
12275 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12276
12277         * mini.c: Removed the shared context in favor of the generic
12278         sharing context.  Allocate the MonoJitInfo structure with room for
12279         the generic sharing context if it's needed.
12280
12281         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
12282         domain-internals.h now.
12283
12284         * mini-x86.c: Pass the generic sharing context to get_call_info ().
12285
12286         * generic-sharing.c: Several changes for working without a shared
12287         context and instead operating on open types instead.
12288
12289 2007-11-12  David S. Miller  <davem@davemloft.net>
12290
12291        * inssel-sparc.brg: Fix double instruction emit.
12292
12293 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12294
12295         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
12296         Get/Set/Address methods.
12297         
12298         * mini.c debug-debugger.c mini-trampolines.c: Update after 
12299         mono_marshal_get_delegate_invoke signature change.
12300
12301 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
12302
12303         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
12304         This can happens with dynamic methods. Fixes the other bug in #322722.
12305
12306 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
12307
12308         * tramp-arm.c (mono_arch_patch_callsite): Support patching
12309         BX call sequence.
12310
12311         * mini-arm.c (arm_patch): Implement patching of BX call
12312         sequence. Fixes one of the bugs in #322722.
12313
12314 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
12315
12316        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
12317        under Linux.  We only need to flush every 32-byte cache line.    
12318
12319 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12320
12321         * mini.c:
12322         move_basic_block_to_end: Add branches when needed, eventually creating
12323         a new BB.
12324         optimize_branches: added a parameter that tells if it's ok to create
12325         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
12326         and avoid calling move_basic_block_to_end when it's not ok.
12327         Fixes bug 318677.
12328
12329 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12330
12331         * mini.c: Abort inlining call to InitializeArray if something
12332         looks wrong.  Let the icall handle it, which now has proper safety
12333         checks.
12334
12335 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
12336
12337         * mini.c (mono_spill_call): add support for soft-float.
12338
12339         * mini.c (mono_method_to_ir): add support for soft-float
12340         to inlined functions that return float.
12341
12342         * mini.c (mono_method_to_ir): add support for soft-float
12343         to cee_stsfld opcode on float fields.
12344
12345 2007-11-05  Geoff Norton  <gnorton@novell.com>
12346
12347         * mini-x86.h: Fix the structure access for X86 Leopard.
12348
12349
12350 2007-11-05  Martin Baulig  <martin@ximian.com>
12351
12352         * mini-trampolines.c
12353         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
12354         after compiling the method to notify the debugger.
12355
12356 2007-11-05  Martin Baulig  <martin@ximian.com>
12357
12358         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
12359
12360 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
12361
12362         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
12363         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
12364
12365 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
12366
12367         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
12368         native-to-managed wrappers.
12369         
12370 2007-11-01  Geoff Norton  <gnorton@novell.com>
12371
12372         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
12373         members.
12374
12375 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
12376
12377         * mini.c, mini-x86.c: when getting back from unmanaged code
12378         to managed via a marshaled delegate we also need to set the
12379         right domain.
12380
12381 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
12382
12383         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
12384         for amd64.
12385
12386 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12387
12388         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
12389         let the debugger or other external agents to tell the JIT when
12390         a sw breakpoint has been inserted in the code that the JIT needs
12391         to be able to inspect.
12392
12393 2007-10-31  Martin Baulig  <martin@ximian.com>
12394
12395         * debug-debugger.h
12396         (MonoDebuggerInfo): Remove `runtime_class_init'.
12397
12398 2007-10-30  Martin Baulig  <martin@ximian.com>
12399
12400         * debug-mini.h
12401         (mono_debugger_thread_created): Added `MonoThread *' argument.
12402         (mono_debugger_extended_notification): New public method.
12403         (mono_debugger_trampoline_compiled): New public method.
12404
12405         * debug-mini.c
12406         (MonoDebuggerThreadInfo): Added `thread' and
12407         `extended_notifications' fields.
12408
12409         * debug-debugger.c
12410         (debugger_executable_code_buffer): New static variable.
12411
12412         * debug-debugger.h
12413         (MonoDebuggerInfo): Added `executable_code_buffer',
12414         `executable_code_buffer_size', `breakpoint_info_area',
12415         `breakpoint_table' and `breakpoint_table_size'.
12416
12417 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
12418
12419         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
12420         that IP  either is an unused value or the vtable pointer. IMT 
12421         calls use vtable + offset now. Reduced by almost half the size
12422         of IMT entries.
12423
12424 2007-10-26  Jonathan Chambers <joncham@gmail.com>
12425
12426         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
12427         defines to access param registers. Replace long usage with
12428         gsize as sizeof(long) != sizeof(void*) on Win64.
12429
12430         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
12431         on Win64. Fix intrinsic, use _AddressOfReturnAddress
12432         instead of non-existant _GetAddressOfReturnAddress.
12433
12434         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
12435         param registers. Save/restore %rdi and %rsi in MonoLMF.
12436
12437         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
12438         param registers. Modify (throw_exception) signature to take 
12439         %rdi and %rsi on Win64. 
12440
12441         Code is contributed under MIT/X11 license.
12442
12443 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12444
12445         * helpers.c: unlink debugging output files.
12446
12447 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12448
12449         * mini.c: Move mono_create_ftnptr () to object.c.
12450
12451 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
12452
12453         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
12454         optional. This function can now be used to disassemble code generated
12455         outside the JIT such as trampolines and IMT thunks.
12456
12457         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
12458
12459         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
12460         vtable pointer from a ldr instruction.
12461
12462         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
12463         new IMT call sequence.
12464
12465         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
12466         call sequence for interface invocations.
12467
12468         * mini-arm.c (mono_arch_emit_imt_argument): added, required
12469         for imt support. This function is empty since IMT on ARM requires no
12470         special handling on the IR side.
12471
12472         * mini-arm.c (mono_arch_find_imt_method): added, required for
12473         imt support.
12474
12475         * mini-arm.c (mono_arch_find_this_argument): added, required
12476         for imt support.
12477
12478         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
12479         a ldr instruction to load a value stored in the code stream.
12480
12481         * mini-arm.c (mono_arch_build_imt_thunk):added, required
12482         for imt support.
12483
12484
12485 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12486
12487         * mini.c (mini_init): Install the jump trampoline callback.
12488
12489 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12490
12491         * mini-trampolines.c: handle synchronized methods with the common
12492         vtable trampoline (bug #335601).
12493
12494 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
12495
12496         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
12497
12498         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
12499         64 bit platforms.
12500
12501         * mini-ia64.h mini-ia64.c: Add support for IMT.
12502
12503         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
12504         prolog. Fixes #331958.
12505
12506 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
12507
12508         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
12509
12510 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12511
12512         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
12513         trampoline.
12514
12515 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12516
12517         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
12518         trampoline.
12519
12520 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
12521
12522         * mini-x86.c, mini-x86.h: x86 support for the common vtable
12523         trampoline.
12524
12525 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
12526
12527         * mini-trampolines.c: changed the magic rampoline to understand
12528         the common vtable trampoline method: the method to invoke is
12529         determined by the vtable displacement of the call.
12530
12531 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12532
12533         * mini.c, mini.h: register the common vtable trampoline if the
12534         architecture supports it.
12535
12536 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
12537
12538         * cpu-amd64.md: use the correct max length for tls_get.
12539
12540 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
12541
12542         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
12543         CEE_STELEM_ANY. Fixes #333696.
12544
12545 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
12546
12547         * exceptions-x86.c: provide more graceful handling of the case where
12548         we followed a bogus function pointer from managed code (bug #332866).
12549
12550 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12551
12552         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
12553         replaces the generic_shared flag and will carry more information
12554         in the future.
12555
12556         * generic-sharing.c: Added mini_type_stack_size() which allows
12557         allows open types if given a generic sharing context.
12558         mini_get_basic_type_from_generic() takes a
12559         MonoGenericSharingContext* instead of a MonoCompile* now.
12560
12561         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
12562         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
12563         mini-sparc.c, mini-x86.c: Trivial changes required by the two
12564         changes above.  Just passing arguments through to the right
12565         places.
12566
12567 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12568
12569         * mini-arm.c: unify the call emission to emit_code_seq().
12570
12571 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
12572
12573         * tramp-arm.c: reduced the trampoline size.
12574
12575 2007-10-10  Mark Probst  <mark.probst@gmail.com>
12576
12577         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
12578         variable handling out of arch-specific code.
12579
12580 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
12581
12582         * mini-arm.c: implemented fast delegate dispatch.
12583
12584 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
12585
12586         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
12587         that fp elimination is turned off if the space required by locals is too
12588         big. Fixes #331958.
12589
12590 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12591
12592         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
12593         ARM to the new style trampoline.
12594
12595 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
12596
12597         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
12598
12599         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
12600
12601 2007-10-09  Martin Baulig  <martin@ximian.com>
12602
12603         * debug-debugger.h
12604         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
12605         `field_info_offset_offset'.     
12606
12607 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
12608
12609         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
12610         removed more internal usage of the r11 register and made it available
12611         to the register allocator.
12612
12613 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12614
12615         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
12616         when sharing generics and treat type variables as references.
12617
12618 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12619
12620         * mini-ppc.c: started removing the internal uses of register r11
12621         to eventually allow the register allocator to manage it as an
12622         additional available register.
12623
12624 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12625
12626         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
12627
12628 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
12629
12630         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
12631         specific trampolines as they are not performance critical as a jump
12632         target (maybe align as before only for AOT code?). This saves about
12633         200 KB of native code on x86 for monodevelop startup.
12634
12635 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12636
12637         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
12638         monodevelop startup.
12639
12640 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
12641
12642         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
12643
12644         * mini-sparc.h mini-sparc.c: Implement IMT support.
12645
12646         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
12647         its smaller and doesn't clobber sparc_g1.
12648
12649         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
12650
12651 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12652
12653         * mini-ppc.c: optimized the size of the IMT thunks a bit.
12654
12655 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
12656
12657         * mini-ppc.c: implemented fast delegate invocation.
12658
12659 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
12660
12661         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
12662
12663 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12664
12665         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
12666         code to the new style trampoline in preparation for IMT support.
12667
12668 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12669
12670         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
12671         systems already. This also reduces the specific trampiline sizes and
12672         prepares for the use of r12 as the IMT identifier register.
12673
12674 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12675
12676         * mini-mips.h: endianess fix (simplified from a patch by
12677         Thomas Kunze <thommy@tabao.de>, bug #323737).
12678
12679 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12680
12681         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
12682         to access ucontext fields and enable netbsd support
12683         (partially from Magnus Henoch <mange@freemail.hu>).
12684
12685 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12686
12687         * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
12688         use the preprocessor from the CPP env var if it is set.
12689
12690 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12691
12692         * mini-trampolines.c: fixed an assertion and moved it earlier in the
12693         code, before interface_offset gets used.
12694
12695 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
12696
12697         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
12698         mono_class_setup_vtable () before accessing klass->vtable.
12699
12700 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
12701
12702         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
12703         hackish.
12704
12705 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
12706
12707         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
12708         IMT slots (this saves hundreds of KB of memory in programs like
12709         IronPython and Monodevelop).
12710
12711 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12712
12713         * mini.c: print the delegate counter.
12714
12715 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
12716
12717         * mini-x86.c: make it easier to enable the debugging code for IMT
12718         slots.
12719
12720 2007-09-28  Martin Baulig  <martin@ximian.com>
12721
12722         * debug-debugger.h
12723         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
12724         `mono_method_klass_offset' and `mono_method_token_offset'.
12725
12726 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12727
12728         * mini.c: First generics sharing implementation.  Can only share
12729         in very simple cases.  If sharing doesn't work it falls back to
12730         dedicated compilation.
12731
12732         * mini.h: Flag in MonoCompile to specify whether generic
12733         compilation is shared.  Flags enum for marking which generic inst
12734         of a context is used.  Prototypes for helper functions.
12735
12736         * generic-sharing.c: Helper functions for generic method sharing.
12737
12738         * optflags-def.h: Optimization flag (gshared) for enabling generic
12739         method sharing added.
12740
12741         * Makefile.am: generic-sharing.c added.
12742
12743 2007-09-19 Daniel Nauck <dna@mono-project.de>
12744
12745         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
12746
12747 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
12748         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
12749         fixes bug 325507.
12750
12751 2007-09-19  Martin Baulig  <martin@ximian.com>
12752
12753         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
12754         mono_debug_cleanup() is now part of mono_cleanup().
12755
12756 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12757
12758         * driver.c (mono_main): Fix a warning.
12759
12760 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12761
12762         * aot-compiler.c: Optimize various parts when processing large assemblies.
12763         Fixes ##325568.
12764
12765         * mini.c (mono_patch_info_hash): Improve hash function.
12766
12767 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12768
12769         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
12770         
12771         Code is contributed under MIT/X11 license.
12772
12773 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12774
12775         * mini.c (mini_init): Fix a leak.
12776
12777         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
12778
12779 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
12780
12781         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
12782
12783 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12784
12785         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
12786
12787 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12788
12789         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
12790         variance tests.
12791
12792         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
12793
12794         * mini.c (handle_alloc): Enable managed allocators in AOT code.
12795
12796         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
12797
12798         * aot-runtime.c (decode_patch_info): Ditto.
12799
12800 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12801
12802         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
12803         static case. Cache delegates in architecture specific code, 
12804         based on number of parameters.
12805         
12806         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
12807         in architecture specific code, based on number of parameters.
12808         
12809         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
12810         caching happen in architecture specific code now.
12811         
12812         Code is contributed under MIT/X11 license.
12813
12814 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12815
12816         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
12817         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
12818         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
12819
12820         Code is contributed under MIT/X11 license.
12821
12822 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
12823         * mini.c: (mono_thread_abort) Fixed bug #82416.
12824
12825 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12826
12827         * mini.: hook the new managed GC allocation feature into the JIT.
12828
12829 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12830
12831         * mini.c: implementation for the new runtime tls opcode.
12832
12833 2007-09-11  Martin Baulig  <martin@ximian.com>
12834
12835         * debug-debugger.h
12836         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
12837         `mono_method_inflated_offset'.
12838
12839 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
12840
12841         * driver.c mini.h mini.c: Add a new devel command line option for injecting
12842         async exceptions into a method.
12843
12844         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
12845         purpose of testing whenever the unwinder works at every instruction.
12846
12847 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12848
12849         * mini.c: check accessibility of method used in ldftn (fixes
12850         bug #82635).
12851
12852 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
12853
12854         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
12855
12856         * inssel.brg: Fix a warning.
12857
12858 2007-09-03  Martin Baulig  <martin@ximian.com>
12859
12860         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
12861         now takes the `main_method' as argument.
12862
12863 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
12864
12865         * cpu-sparc.md (endfilter): Add missing src1:i argument.
12866
12867 2007-08-30  Jonathan Chambers <joncham@gmail.com>
12868
12869         * driver.c: include the cil-coff.h header on Windows.
12870         
12871         Code is contributed under MIT/X11 license.
12872
12873 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
12874
12875         * mini.c, driver.c: don't include the cil-coff.h header.
12876
12877 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12878
12879         * mini.c: flag places that needs fixes fo soft-float support.
12880
12881 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
12882
12883         * mini.h, inssel-float.brg: fix soft-float constant loads on big
12884         endian systems (partially from Dean Jenkins, bug #81924).
12885
12886 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12887
12888         * mini.c (check_linkdemand): Remove embedded reference object in
12889         call to LinkDemandSecurityException.
12890         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
12891         with an IntPtr instead of a reference object.
12892
12893 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12894
12895         * mini.c (handle_initobj): Handle alignment properly.
12896
12897         * inssel.brg (mini_emit_memset): Ditto. 
12898
12899         * inssel.brg (mini_emit_memcpy): Ditto. 
12900
12901         * inssel-sparc.brg: Ditto.              
12902
12903         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
12904
12905 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
12906
12907         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
12908         exceptions raised in unmanaged code. Fixes part of #82594.
12909
12910 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12911
12912         * mini.c (mono_method_to_ir), declsec.c
12913         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
12914
12915 2007-08-22  Martin Baulig  <martin@ximian.com>
12916
12917         * debug-mini.h
12918         (MonoDebuggerThreadInfo): New typedef.
12919         (mono_debugger_thread_table): New global variable.
12920         (mono_debugger_thread_created): New public function.
12921         (mono_debugger_thread_cleanup): New public function.
12922
12923         * debug-debugger.h
12924         (MonoDebuggerInfo):
12925         - removed `get_current_thread' and `lookup_assembly'.
12926         - removed `data_table'.
12927         - added `thread_table'.
12928
12929         * mini.c
12930         (mono_thread_start_cb): Call mono_debugger_thread_created().
12931         (mono_thread_attach_cb): Likewise.
12932         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
12933         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
12934         initial domain.
12935
12936         * driver.c (mono_main): Move mono_debug_init() up, before calling
12937         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
12938
12939 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12940
12941         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
12942         together when passing several arguments of type double (gives a small
12943         speedup and saves a few bytes of generated code).
12944
12945 2007-08-20  Jb Evain  <jbevain@novell.com>
12946
12947         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
12948
12949 2007-08-20  Jb Evain  <jbevain@novell.com>
12950
12951         * mini.c (mono_method_to_ir): throw MethodAccessException
12952         and FieldAccessException instead of InvalidProgramException.
12953
12954 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12955
12956         * mini.c: CoreCLR security checks.
12957
12958         * mini.h: Removed MonoSecurityMode (moved to
12959         metadata/security-manager.h) and mono_security_mode global var
12960         (replaced by set/get functions in security-manager.h).
12961
12962         * driver.c: Added "core-clr-test" security mode for testing.  Used
12963         set-function for setting security mode.
12964
12965 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12966
12967         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
12968         the new jit_info_table.
12969
12970         * driver.c: Test code for the new jit_info_table (enabled by the
12971         define MONO_JIT_INFO_TABLE_TEST).
12972
12973 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
12974
12975         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
12976         detection of call <REG> instruction sequence. Fixes build on freebsd.
12977
12978 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
12979
12980         * mini-exceptions.c: Fix a warning.
12981
12982 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
12983
12984         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
12985         stack overflow handling code on amd64 too.
12986
12987         * mini-exceptions.c (mono_setup_altstack): Make this use 
12988         mono_thread_get_stack_bounds ().
12989
12990         * mini-x86.h: Disable sigaltstack on solaris x86.
12991
12992 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
12993
12994         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
12995
12996 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
12997
12998         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
12999
13000 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13001
13002         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
13003
13004         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
13005
13006 2007-08-03  Neale Ferguson <neale@sinenomine.net>
13007
13008         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
13009         due to alignment.
13010
13011 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13012
13013         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
13014         to be emitted (bug #82281).
13015
13016 2007-08-01  Martin Baulig  <martin@ximian.com>
13017
13018         Merged the `debugger-dublin' branch.
13019
13020         * debug-debugger.h (MonoDebuggerInfo):
13021         Removed the `old_*' compatibility entries.
13022         Added `debugger_version' and `data_table'.
13023         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
13024         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
13025
13026         * debug-mini.c
13027         (MiniDebugMethodBreakpointInfo): Add `address_list'.
13028         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
13029         instead of a `gconstpointer'.
13030         (mono_debugger_insert_method_breakpoint): Return a
13031         `MonoDebugMethodAddressList *'.
13032
13033 2007-06-28  Martin Baulig  <martin@ximian.com>
13034
13035         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
13036
13037 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13038
13039         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
13040         __builtin_frame_address () since it is broken on older gcc versions.
13041
13042 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13043
13044         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
13045         on the stack overflow handling and made the managed stack overflows
13046         catchable in most cases using soft guard pages.
13047         * exceptions-x86.c: added code to restore the protection in the soft
13048         guard pages at the end of exception handling.
13049
13050 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13051
13052         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
13053
13054 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
13055
13056         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
13057         exception handling.
13058
13059 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
13060
13061         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
13062         signal handling support until it has been ported to the new mechanism.
13063         * mini.c: fixed stack overflow detection and use the new
13064         architecture code  to handle signals on the altstack.
13065
13066 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13067
13068         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
13069         stack overflows on the alt stack.
13070
13071 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13072
13073         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
13074         stack overflows on the alt stack.
13075
13076 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
13077
13078         * exceptions-ppc.c: cleanup preparing for altstack support.
13079
13080 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
13081
13082         * exceptions-arm.c: cleanup preparing for altstack support.
13083
13084 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13085
13086         * mini.c (print_jit_stats): Output hazard pointer stats.
13087
13088 2007-07-26  Mark Probst  <mark.probst@gmail.com>
13089
13090         * driver.c, mini.c: Replaced security mode flags with a single
13091         enum variable.
13092
13093 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13094
13095         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
13096
13097 2007-07-25  Mark Probst  <mark.probst@gmail.com>
13098
13099         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
13100         (which doesn't do anything yet) for activating Core CLR
13101         (Silverlight) security.
13102
13103 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13104
13105         * mini-codegen.c: work around a possible gcc bug on arm.
13106
13107 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13108
13109         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
13110         message for platforms that don't support AOT compilation.
13111
13112 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
13113
13114         * mini.h, mini.c, driver.c: temporary smcs hack.
13115
13116 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
13117
13118         * mini-arm.h, mini-arm.c: arm EABI fixes.
13119
13120 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13121
13122         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
13123         case.
13124
13125         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
13126         trampolines taking a method argument.
13127
13128         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
13129
13130         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
13131         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
13132
13133         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
13134         JIT compilation throws an exception. Fixes #82050.
13135
13136 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13137
13138         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
13139         with the MONO_EXCEPTION_ defines.
13140
13141 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
13142
13143         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
13144         #82117.
13145         
13146         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
13147         the cause of an assertion.
13148
13149 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
13150
13151         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
13152         removed.
13153
13154 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13155
13156         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
13157         assert. Should fix #82103.
13158
13159 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13160
13161         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
13162         here too. Fixes #82095.
13163
13164         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
13165         addresses.
13166
13167         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
13168
13169         * mini-amd64.h: Enable IMT for amd64.
13170         
13171         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
13172
13173 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
13174
13175         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
13176
13177 2007-07-12  Mark Probst  <mark.probst@gmail.com>
13178
13179         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
13180         as soon as check_linkdemand sets an exception_type.
13181
13182 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13183
13184         * mini-x86.c: fixed offsets for IMT call sequence.
13185         * mini-x86.h: enable IMT again.
13186
13187 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13188
13189         * trace.c (mono_trace_enter_method): Decode MonoType too.
13190
13191         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
13192
13193         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
13194
13195         * mini-amd64.c: Add preliminary IMT implementation.
13196         
13197 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
13198
13199         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
13200         understand the new IMT-base interface invocation (thanks to
13201         Daniel Nauck for the report and the remote debugging session).
13202
13203 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13204
13205         * mini-x86.c: size and speed optimizations for the IMT bsearch.
13206
13207 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13208
13209         * Makefile.am (aotcheck): Make this actually use the AOTed code.
13210
13211 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
13212
13213         * mini-trampolines.c: implement AOT IMT support.
13214         * mini-x86.h: enable IMT support for wider testing.
13215
13216 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13217
13218         * inssel.brg (emit_imt_argument): Add aot support here.
13219
13220         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
13221
13222 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13223
13224         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
13225         of the IMT implementation, partially from massi, with my
13226         implementation of the bsearch sequence. Disabled by default until
13227         the AOT code is implemented.
13228
13229 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13230
13231         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
13232
13233         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
13234
13235 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13236
13237         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
13238         arch-independent IMT JIT code from Massimiliano
13239         Mantione (massi@ximian.com) with small cleanups from me.
13240
13241 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
13242
13243         * Makefile.am: fix svn invocation to get the svn revision to be
13244         independent of the local language (build fix).
13245
13246 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13247
13248         * mini.c (inline_method): Reset cfg->exception_type if the
13249         inlining is aborted.  Fixes: 82049.
13250
13251 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
13252
13253         * mini.c: remove assert from exception handling code when exception_ptr
13254         is not set.
13255
13256 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13257
13258         * mini.c (mono_codegen): Add an assert.
13259
13260         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
13261         enter and leave code.
13262         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
13263
13264 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
13265
13266         * mini-ppc.c: fixed memory corruption for localloc(0)
13267         (bug #81852).
13268
13269 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13270         
13271         * mini.c: Fix warnings.
13272
13273 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
13274
13275         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
13276         to emit better double->int conversions.
13277
13278 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13279
13280         * mini.c: the provided Min/Max optimizations are valid for unisgned
13281         ints.
13282
13283 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13284
13285         * 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
13286
13287 2007-06-28  Miguel de Icaza  <miguel@novell.com>
13288
13289         * mini.c (mono_running_on_valgrind): Add support for reporting the
13290         method and  its boundaries to valgrind.
13291
13292 2007-06-28  Martin Baulig  <martin@ximian.com>
13293
13294         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
13295
13296 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
13297
13298         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
13299
13300         * generic.2.cs: Add new test case.
13301
13302 2007-06-25  Martin Baulig  <martin@ximian.com>
13303
13304         Merged the `debugger-dublin' branch.
13305
13306         * debug-mini.c
13307         (mono_debugger_insert_method_breakpoint): New public method.
13308         (mono_debugger_remove_method_breakpoint): Likewise.
13309         (mono_debugger_check_breakpoints): New static method.
13310         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
13311
13312         * debug-debugger.h (MonoDebuggerInfo):
13313         Renamed (to keep backward compatibility in the vtable):
13314         `insert_breakpoint' -> `old_insert_breakpoint'.
13315         `remove_breakpoint' -> `old_remove_breakpoint'.
13316         `create_string' -> `old_create_string'.
13317         `lookup_class' -> `old_lookup_class'.
13318         `lookup_type' -> removed; changed into a dummy field.
13319         `lookup_assembly' -> `old_lookup_assembly'.
13320         Added (same functionality, but different signature):
13321         `create_string', `lookup_class', `lookup_assembly'
13322         Added new:
13323         `get_method_addr_or_bpt', `remove_method_breakpoint',
13324         `runtime_class_init'.
13325
13326         * debug-debugger.c: Merged the `debugger-dublin' branch.
13327
13328 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
13329
13330         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
13331         well.
13332         (peephole_pass): Likewise.
13333
13334 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13335
13336         * driver.c: hopefully make setaffinity work also for ancient
13337         versions of linux.
13338
13339 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
13340
13341         * driver.c : win32 build fix.
13342
13343 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
13344
13345         * driver.c: check for the MONO_NO_SMP env var and bind to a single
13346         processor if it is set.
13347
13348 2007-06-21  Martin Baulig  <martin@ximian.com>
13349
13350         * debug-mini.h: New file.
13351
13352         * debug-mini.c
13353         (mono_debugger_insert_breakpoint_full): Moved here from
13354         ../metadata/mono-debug-debugger.c.
13355         (mono_debugger_remove_breakpoint): Likewise.
13356         (mono_debugger_breakpoint_callback): Likewise.
13357
13358 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13359
13360         * jit-icalls.c (mono_helper_compile_generic_method): Update to
13361         changes in MonoGenericClass.
13362
13363 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
13364
13365         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
13366
13367 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13368
13369         * jit-icalls.c (mono_helper_compile_generic_method): Update to
13370         removal of MonoGenericMethod.
13371
13372 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13373
13374         * mini-exceptions.c: hooks for the exception events profiling API.
13375
13376 2007-06-14  Randolph Chung  <tausq@debian.org>
13377
13378         * Makefile.ma: Add hppa target.
13379         * mini-arch.h: Include mini-hppa.h
13380         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
13381         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
13382         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13383
13384 2007-06-14  Randolph Chung  <tausq@debian.org>
13385
13386         * inssel.brg: Add rules for "chained" compare-branch operations so that
13387         a single compare op can affect multiple branches.  Adjust cost for
13388         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
13389         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
13390         cost for some rules so that they can more easily be overridden by
13391         per-arch rules (with fixes from lupus).
13392         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13393
13394 2007-06-13  Randolph Chung  <tausq@debian.org>
13395
13396         * mini-ops.h: Reorder branch ops so that they match the order of the
13397         corresponding CEE_* ops.  The code expects them this way.
13398         Add new ops for HPPA target.
13399         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13400
13401 2007-06-13  Randolph Chung  <tausq@debian.org>
13402
13403         * mini-exceptions.c: Handle cases where the stack grows towards
13404         larger addresses.
13405         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
13406
13407 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13408
13409         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
13410         counter.
13411         * driver.c: explain where a non-matching corlib is found.
13412
13413 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13414
13415         * mini.c (print_jit_stats): Output dynamic code allocation stats.
13416
13417 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
13418
13419         * mini-exceptions.c: Generate a method profile leave event during
13420         an exception to ensure that the profiler gets notified.
13421
13422 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
13423
13424         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
13425         branch.
13426
13427         * cpu-amd64.md: Add long_and/or/xor opcodes.
13428
13429 2007-06-06  Wade Berrier  <wberrier@novell.com>
13430
13431         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
13432         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
13433         length of instruction shr_imm (expected 8, got 10)
13434
13435 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
13436
13437         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
13438
13439 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13440
13441         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
13442         MonoInternalHashTable again (fixed bug in the internal hash table
13443         code).
13444
13445 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13446
13447         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
13448         Have to figure out what makes it crash the SWF regression.
13449
13450 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
13451
13452         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
13453
13454 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13455
13456         * mini.c: optimize out the type check when storing null in a
13457         reference array.
13458
13459 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13460
13461         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
13462         MonoInternalHashTable.
13463
13464 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13465
13466         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
13467         signed integer methods.
13468
13469 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
13470
13471         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
13472         permanently since the current approach doesn't work.
13473
13474 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
13475
13476         * inssel.brg (stmt): Only call delegate->invoke_impl if 
13477         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
13478
13479 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
13480
13481         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
13482         the sreg2==rdx case.
13483         
13484         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
13485         account if it contains a rex prefix.
13486         (peephole_pass): Handle OP_FMOVE as well.
13487
13488 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
13489
13490         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
13491         as it causes regressions.
13492
13493 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13494
13495         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
13496         static case as well.
13497
13498         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
13499
13500         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
13501         (mono_arch_get_this_arg_from_call): Ditto.
13502
13503         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
13504
13505         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
13506         invoke_impl field.
13507
13508         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
13509         (mono_arch_get_this_arg_from_call): Ditto.
13510
13511         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
13512         
13513         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
13514         try to create optimized invoke code and use that for further invocations. 
13515         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
13516
13517         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
13518
13519 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
13520
13521         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
13522         sealed classes or methods.
13523         *devirtualization.cs: tests for the new optimization
13524
13525 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
13526
13527         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
13528         by the update_volatile () function.
13529
13530 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
13531
13532         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
13533         require it.
13534
13535         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
13536
13537 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13538
13539         * mini.c: Add configure checks for header files.
13540         * mini-x86.c: Add configure checks for header files.
13541         * trace.c: Add configure checks for header files.
13542         * aot-runtime.c: Add configure checks for header files.
13543         * aot-compiler.c: Add configure checks for header files.
13544         * driver.c: Add configure checks for header files.
13545         * mini-codegen.c: Add configure checks for header files.
13546         
13547         Code is contributed under MIT/X11 license.
13548
13549 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
13550
13551         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
13552         icompare_imm -128 + op_iclt. Fixes #81703.
13553
13554 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
13555
13556         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
13557
13558 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
13559
13560         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
13561         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
13562         so that all isinst checks now use "interface_bitmap".
13563
13564 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
13565
13566         * cpu-amd64.md (jmp): Fix a warning.
13567
13568         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
13569
13570         * basic.cs: Add new regression test.
13571
13572         * basic.cs: Remove test which is now in basic-long.cs.
13573
13574         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
13575
13576         * basic-long.cs: Add new test.
13577         
13578 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
13579
13580         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
13581
13582 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
13583
13584         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
13585
13586         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
13587         places.
13588         
13589         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
13590         throwing code a bit.
13591
13592         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
13593         the exception throwing code a bit.
13594
13595         * mini-x86.c (get_call_info): Allocate result from a mempool.
13596
13597 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
13598
13599         * aot-compiler.c (find_typespec_for_class): Fix the assert.
13600
13601         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
13602
13603         * mini.h (MonoCompile): Add 'token_info_hash' field.
13604
13605         * mini.c: Save token->method associations during compilation so the AOT 
13606         compiler can use it.
13607         
13608         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
13609         which reference generic classes and methods.
13610
13611 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
13612
13613         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
13614
13615         * aot-compiler.c (compile_method): Fix a typo in a comment.
13616
13617         * aot-runtime.c (decode_cached_class_info): Skip generic types.
13618
13619         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
13620         everything generic.
13621
13622         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
13623
13624 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
13625
13626         * mini.h (MonoCompile): Add 'args' field.
13627
13628         * mini.c (mono_compile_create_vars): Store variables representing the arguments
13629         into cfg->args.
13630
13631         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
13632
13633 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
13634
13635         * mini.c (mono_compile_get_interface_var): Remove this unused function.
13636
13637         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
13638
13639         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
13640         opcodes for some opcodes.
13641
13642         * mini.h *.brg *.c: Use the new opcodes.
13643
13644 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13645
13646         * mini.h: Bumped aot revision.
13647
13648         * inssel.brg: modified code generation of type checks for interfaces
13649         to use the new "MonoClass.interface_bitmap" instead of the old
13650         "MonoClass.interface_offsets".
13651
13652 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
13653
13654         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
13655
13656 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
13657
13658         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
13659         64 bit platforms.
13660
13661 2007-04-27  Neale Ferguson <neale@sinenomine.net>
13662
13663         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
13664
13665 2007-04-27  Wade Berrier  <wberrier@novell.com>
13666
13667         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
13668         mini.h) to fix build.
13669
13670 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
13671
13672         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
13673         
13674         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
13675         causes the corlib unit tests to fail.
13676
13677 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
13678
13679         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
13680
13681         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
13682
13683         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
13684         opcodes to the comparison relations.
13685
13686         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
13687         opcodes to their types.
13688         
13689         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
13690
13691         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
13692         it in cfg->arch.cinfo.
13693
13694         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
13695
13696         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
13697         cfg->cil_offset_to_bb.
13698
13699 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
13700
13701         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
13702         created becase of initlocals.
13703
13704 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
13705
13706         * mini-alpha.c cpu-alpha.md: More alpha port work from 
13707         Sergey Tikhonov <tsv@solvo.ru>.
13708
13709 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
13710
13711         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
13712
13713 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
13714
13715         * cpu-s390.md (break): Correct the length of break instruction.
13716
13717 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
13718
13719         * mini.c: fix a couple of soft-float issues and comments.
13720
13721 2007-04-15  Miguel de Icaza  <miguel@novell.com>
13722
13723         * trace.c (is_filenamechar): - is also a filename char.
13724
13725 2007-04-15  Neale Ferguson <neale@sinenomine.net>
13726
13727         * mini-s390.c: Correct checking for enum type in return value processing.
13728
13729 2007-04-14  Raja R Harinath  <rharinath@novell.com>
13730
13731         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
13732         (version.h): Makefile is in the build directory.
13733
13734 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
13735
13736         * mini-amd64.h: fix for assertion failure on Solaris/amd64
13737
13738 2007-04-11  Martin Baulig  <martin@ximian.com>
13739
13740         * mini.c (can_access_member): Fix handling of generic classes;
13741         fixes #81259.
13742
13743 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
13744
13745         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
13746
13747 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
13748
13749         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
13750
13751 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
13752
13753         * mini-codegen.c: make sure the right spill amount is
13754         used for fp or integer registers (fixes the float_sub_spill() on ppc).
13755
13756 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
13757
13758         * mini-ppc.c: fixes for the fp_branch_nan test.
13759
13760 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
13761
13762         * basic.cs: Comment out new test which still fails on ia64.
13763
13764 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13765
13766         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
13767
13768 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13769
13770         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
13771
13772 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
13773
13774         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
13775         on 64 bit machines. Fixes part of #80738.
13776
13777         * basic.cs: Add regression test.
13778
13779 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
13780
13781         * inssel.brg basic.cs: Revert previous change to fix build.
13782
13783         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
13784         platforms.
13785         
13786         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
13787
13788         * basic.cs: Add new regression test.
13789
13790 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
13791
13792         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
13793         many arguments.
13794
13795 2007-03-16  Neale Ferguson <neale@sinenomine.net>
13796
13797         * cpu-s390x.md: Correct length of break instruction.
13798
13799 2007-03-16  Neale Ferguson <neale@sinenomine.net>
13800
13801         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
13802         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
13803
13804 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
13805
13806         * *.c: Begin WIN64 port.
13807         * mini.c:  Use correct register in profiler.
13808         * mini-amd64.c: No inline assembly on Win64.
13809         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
13810         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
13811         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
13812         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
13813         mono_arch_ip_from_context for Win64.
13814         
13815         Contributed under MIT/X11 license.
13816
13817 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
13818
13819         * exceptions-amd64.c (seh_handler): Ditto.
13820
13821         * exceptions-x86.c (seh_handler): Fix a memory leak.
13822
13823 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
13824
13825         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
13826         mini-s390x.c: fixed peephole optimizations to deal
13827         correctly with 1 and 2 byte reload avoidance.
13828
13829 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
13830
13831         * cpu-s390.md, cpu-s390x.md: update localloc length.
13832
13833 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
13834
13835         * cpu-g4.md: added missing descriptions.
13836
13837 2007-03-14  Miguel de Icaza  <miguel@novell.com>
13838
13839         *  Makefile.am: Add support so the tail tests are not executed on
13840         PowerPC as that is a known limitation of the PowerPC port.
13841
13842 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13843
13844         * runmdesc.bat:  Move to msvc directory.
13845         
13846 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13847
13848         * runmdesc.bat:  Run executable that was produced by the current
13849         target and sent via an argument.
13850         
13851 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
13852
13853         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
13854         #81102.
13855
13856         * generics.2.cs: Add regression test.
13857
13858 2007-03-09  Wade berrier  <wberrier@novell.com>
13859
13860         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
13861
13862 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
13863
13864         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
13865         AOT code depends on this.
13866
13867 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
13868
13869         * mini.c: more precise tracking of types in the eval stack
13870         (part of fix for bug #81044).
13871
13872 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
13873
13874         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
13875
13876         * aot-compiler.c (encode_patch): Remove an obsolete comment.
13877
13878 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13879
13880         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
13881
13882         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
13883
13884 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
13885
13886         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
13887         a pointer on 64 bit systems. Fixes #80190.
13888
13889         * iltests.il: Add new regression test.
13890
13891 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13892
13893         * mini.c: inline a constant for Environment.IsRunningOnWindows.
13894
13895 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
13896
13897         * trace.c: Remove an erroneous alignemnt check when tracing.
13898           Fixes --trace on OSX86.
13899
13900 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
13901
13902         * mini-$(arch).h: initialize SP in context for all the archs.
13903
13904 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
13905
13906         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
13907         regressions in the thread tests.
13908
13909 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
13910
13911         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
13912         - fixed implementation of LOCALLOC opcode
13913         - implemented non-un compare for floats
13914         - code cleanup
13915         - implementation of FDIV and CKFINITE opcodes
13916         - fixes for latest mono updates
13917         - additional arch opcodes
13918
13919 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
13920
13921         * Makefile.am: simplify and merge rules for cross-compilation.
13922
13923 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
13924
13925         * local-propagation.c: Actually *apply* the fix for bug 80591...
13926
13927 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
13928
13929         * mini-exceptions.c: backuot part of the last change
13930         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
13931
13932 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
13933         * inssel.brg: Fix bug 59286.
13934
13935
13936 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
13937
13938         * mini-exceptions.c: patch from Zoltan to correctly check for
13939         stack boundaries (using the stack register, not the frame register),
13940         fixes bugs #80724, #79717.
13941
13942 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
13943
13944         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
13945         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
13946
13947         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
13948         presence of frame pointer elimination.
13949
13950 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
13951         
13952         * mini-x86.h: NetBSD UCONTEX_REG defines.
13953
13954 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
13955
13956         * inssel-amd64.brg: Fix amd64 build.
13957
13958 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
13959
13960         * mini.h: remove extern to workaround what looks likes gcc bug 26905
13961         on amd64.
13962
13963 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
13964
13965         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
13966         ends.
13967
13968         * mini-<ARCH>.c: Use mono_is_regsize_var ().
13969
13970 2007-01-30 Mark Mason <mason@broadcom.com>
13971
13972            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
13973            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
13974            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
13975            beginning support for CEE_JMP [not quite working yet]
13976            * tramp-mips.c: LMF handling now works
13977         
13978 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
13979
13980         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
13981
13982         * mini.h (NULLIFY_INS): New macro.
13983
13984 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
13985
13986         * mini.c: statistical profiler fix for windows, patch
13987         from Tor Lillqvist (tml@novell.com).
13988
13989 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
13990         * local-propagation.c: Fix bug 80591.
13991
13992 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
13993
13994         * Makefile.am: put back the --export-dynamic option as with
13995         the previous gmodule flags (thanks to Robert Jordan).
13996
13997 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
13998
13999         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
14000
14001         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
14002         simplify and speed up the local register allocator. Also rename some fields
14003         like iassign->vassign.
14004         
14005         * regalloc.c: Remove some functions which are no longer used since their
14006         inlined version is in mini-codegen.c.
14007         
14008         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
14009
14010         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
14011
14012 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
14013
14014         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
14015         narrowing. Fixes #80622.
14016
14017         * iltests.il: Add new regresssion test. 
14018
14019 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14020
14021         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
14022         debug-debugger.c, debug-debugger.h: warning fixes.
14023         * driver.c: updated copyright year and made it fit in one line.
14024
14025 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
14026
14027         * aot-runtime.c: updated to use mono-dl instead of gmodule.
14028
14029 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
14030
14031         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
14032
14033         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
14034
14035         * iltests.il: Add new test for bug #80507.
14036
14037 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14038
14039         * mini-arm.h: use soft-float also on vfp for now.
14040
14041 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14042
14043         * mini.c: fix some more soft-float issues.
14044
14045 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14046
14047         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
14048
14049 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
14050         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
14051         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
14052         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
14053
14054 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
14055
14056         * mini-arm.c: typo fix.
14057
14058 2007-01-23  Neale Ferguson <neale@sinenomine.net>
14059
14060         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
14061
14062 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
14063
14064         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
14065         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
14066
14067         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
14068
14069         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
14070
14071         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
14072         
14073         * inssel.brg: Fix a warning.
14074
14075         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
14076
14077         * abcremoval.c ssa.c ssapre.c: Update after this change.
14078         
14079         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
14080
14081         * dominators.c (df_set): Use mono_bitset_union_fast.    
14082
14083 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
14084
14085         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
14086         mini-codegen.c: reduce relocations and memory usage for the cpu
14087         description.
14088
14089 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
14090
14091         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
14092
14093         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
14094         to reduce their size.
14095
14096 2007-01-19 Mark Mason <mason@broadcom.com>
14097
14098         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
14099         * mini-mips.c: more configuration macros, support long conditional branches, additional
14100         asserts, fix epilog instrumentation.
14101         * mini-mips.h: use standard stack walk
14102         * cpu-mips.md: increase size of div, rem and conditional branches
14103         
14104 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
14105
14106         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
14107         to cpu spec data.
14108
14109 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
14110
14111         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
14112         (compile_method): Ditto.
14113
14114         * aot-runtime.c (decode_klass_info): Ditto.
14115
14116         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
14117         needed by the code generated by inssel.brg. Also fix a warning.
14118
14119 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
14120
14121         * mini.c: deal with enums that become genericinsts by
14122         being nested in a generic class (bug #79956).
14123
14124 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
14125
14126         * mini.c: match the generic definition to check for
14127         private access with generic types (bug #78431).
14128
14129 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
14130
14131         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
14132         to make life easier for people cross-compiling that insist on not
14133         using scratchbox.
14134
14135 2007-01-17 Mark Mason <mason@broadcom.com>
14136
14137         * inssel-long.brg: patch to deal with mips missing flags
14138         * inssel-long32-mips.brg: implement overflow checks
14139         * insset-mips.brg: implement overflow checks
14140         * mini-mips.h: implement conditional exception handling
14141         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
14142           Remove unused code, minor cleanups.
14143         * exceptions-mips.c: minor cleanups
14144         * mini-ops.h: add mips conditional exception ops
14145         * cpu-mips.md: add mips conditional exception ops
14146
14147         
14148 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
14149
14150         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
14151         to deal with mips missing of flags.
14152
14153 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
14154
14155         * exceptions-ppc.c: execute fault handlers.
14156
14157 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
14158
14159         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
14160
14161 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14162
14163         * mini.c: handle also floating point values in initialize_array.
14164
14165 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14166
14167         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
14168         array initialization and make it conditional on the intrins option.
14169
14170 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14171
14172         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
14173         relocations and put the patch info names close to the enum definition.
14174
14175 2007-01-15 Mark Mason <mason@broadcom.com>
14176
14177         * basic.cs, exceptions.cs: break up large tests to increase debugability.
14178
14179 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
14180
14181         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
14182
14183 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14184
14185         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
14186
14187 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14188
14189         * Makefile.am: distribute the mips sources.
14190
14191 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
14192
14193         * mini-codegen.h: handle bug #80489 here, by excluding ecx
14194         directly.
14195
14196 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
14197
14198         * cpu-x86.md: back out for now as this triggers other regressions.
14199
14200 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14201
14202         * cpu-x86.md: force src1 and dest regpair for long shift instructions
14203         to eax:edx, so ecx can't get allocated to them (bug #80489).
14204
14205 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
14206
14207         * mini.c, mini-exceptions.c: enabled running fault handlers
14208         (bug #80469).
14209
14210 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14211
14212         * driver.c: If nothing fail, do not use the string "failed",
14213         because it makes it very annoying to view test result logs on the
14214         web. 
14215
14216 2006-12-30  Miguel de Icaza  <miguel@novell.com>
14217
14218         * debug-debugger.c (mono_debugger_main): Rename "main" to
14219         "main_method" to prevent a warning.
14220
14221         Remove a warning for unused field.
14222
14223 2006-12-28  Martin Baulig  <martin@ximian.com>
14224
14225         * debug-debugger.c
14226         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
14227
14228 2006-12-22  Martin Baulig  <martin@ximian.com>
14229
14230         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
14231         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
14232         seperate `.mdb_debug_info' section, so we can access it from the
14233         debugger even if the binary is stripped.
14234
14235         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
14236         from the `.mdb_debug_info' here to prevent the linker from
14237         removing that section.
14238
14239         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
14240         mdb-debug-info64.s.
14241
14242 2006-12-19  Robert Jordan  <robertj@gmx.net>
14243
14244         * mini-x86: enable the code to return small structures in
14245         registers for FreeBSD as well. Fixes bug #80278.
14246         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
14247
14248 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
14249
14250         * mini-x86.c: align the stack when calling the profiler
14251         function instrumenting the prolog (on OSX).
14252
14253 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14254
14255         * mini.c: emit a break opcode where Debugger.Break () is called.
14256
14257 2006-12-13  Miguel de Icaza  <miguel@novell.com>
14258
14259         * mini.c (mono_method_to_ir): Provide useful information on this
14260         assert, to prevent others from debugging like I did.
14261
14262 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
14263
14264         * mini.c: enable code which was incorrectly commented
14265         (bug #80235).
14266
14267 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
14268
14269         * mini-x86.c: enable on OSX, too, the code to return small
14270         structures in registers.
14271
14272 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
14273
14274         * mini-x86.c: remove the use of the dynamic code manager here, too.
14275
14276 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14277
14278         * mini.h, debug-debugger.c, tramp-*.c: fixed 
14279         mono_debugger_create_notification_function() to use
14280         mono_global_codeman_reserve () instead of a dynamic code manager.
14281
14282 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
14283
14284         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
14285         ves_array_element_address() jit icall and use a generated
14286         managed method instead (which is about 4 times faster for a rank 3
14287         array access).
14288
14289 2006-11-29  Mark Mason  <mason@broadcom.com>
14290
14291         * basic-calls.cs: additional tests for passing
14292         structures as function arguments.
14293
14294 2006-11-29  Mark Mason  <mason@broadcom.com>
14295
14296         * mini-mips.h: disable custom exception handling
14297         * mini-mips.c: throw/rethrow should use jalr to call
14298         exception stubs.  Fixed bug with passing structures
14299         by value. More support for tracing floating point
14300         functions.
14301
14302 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
14303
14304         * mini.c: fixed typo in the soft-float ldind.r4 handling
14305         (bug #80086).
14306
14307 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14308
14309         * mini.c, mini.h, driver.c: added --runtime command line
14310         option to select a different runtime than the autodetected one.
14311         * jit.h: added API for embedders to initialize with a specific
14312         runtime version.
14313
14314 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
14315
14316         * mini.c: handle also boxing of r4 values (bug #80024).
14317
14318 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14319
14320         * mini-ppc.c: force indirect calls until we reserve
14321         enough address space for all the generated code.
14322
14323 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
14324
14325         * exceptions-arm.c: workaround bugs in the libc definition
14326         of struct ucontext.
14327
14328 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
14329
14330         * inssel.brg: fixes from me and Mark Mason.
14331
14332 2006-11-23  Dick Porter  <dick@ximian.com>
14333
14334         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
14335         semaphore display now we've fixed the initial value
14336
14337 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14338
14339         * inssel.brg: partially revert the last change to fix the build.
14340
14341 2006-11-21  Mark Mason  <mason@broadcom.com>
14342
14343         * inssel.brg: Add and use compare-and-branch macros to support
14344         architectures that do not have condition code registers (ie. MIPS).
14345         * *-mips.{c,brg,md}: Fix copyright statements
14346
14347 2006-11-20  Mark Mason  <mason@broadcom.com>
14348
14349         * Makefile.am: remove mini-codegen.c from list of MIPS sources
14350         * mini.c: Allow GET_CONTEXT to be specified by the arch port
14351         * mini.h: Added declaration for mono_print_ins()
14352         * mini-codegen.c: added ins_spec initializer for MIPS
14353         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
14354         vreg to be virtual and hreg to be non-virtual.
14355         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
14356         is not yet working/implemented correctly.
14357         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
14358         non-static, fixup calls to print_ins() from other parts in the file.
14359
14360 2006-11-20  Mark Mason  <mason@broadcom.com>
14361
14362         * basic-calls.cs: added tests for passing structures as arguments
14363         to calls.
14364
14365 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
14366
14367         * inssel-long32.brg: optimize signed division by power of two.
14368
14369 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
14370
14371         * mini-arm.c: added support for interworking with thumb code
14372         (mono must be still be built using the ARM instruction encoding).
14373
14374 2006-11-19  Miguel de Icaza  <miguel@novell.com>
14375
14376         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
14377         verifier has different rules for it.   Fixes a few verifier issues
14378         in the test suite.
14379
14380         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
14381         at the end, so people know what happened.
14382
14383 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
14384
14385         * brach-opts.c: in optimize_exception_target() make sure we
14386         are in a catch clause (fixes bug #79871).
14387
14388 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14389
14390         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
14391         more soft-float support fixes.
14392
14393 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
14394
14395         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
14396         that are passed half on the stack and half in registers.
14397
14398 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
14399
14400         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
14401         more mips integration work from Mark E Mason 
14402         <mark.e.mason@broadcom.com>.
14403
14404 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14405
14406         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
14407         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
14408         tramp-mips.c: added sources for the mips port, not
14409         integrated in the build yet. Contributed by
14410         Mark E Mason <mark.e.mason@broadcom.com>.
14411
14412 2006-11-14  Neale Ferguson <neale@sinenomine.net>
14413
14414         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
14415
14416 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14417
14418         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
14419         put the soft-float rules in its own file since it seems to
14420         break s390 compilation.
14421
14422 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
14423
14424         * mini-arm.c: fixed wrnings.
14425
14426 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
14427
14428         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
14429         inssel-arm.brg: ARM support for soft-float.
14430
14431 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
14432
14433         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
14434         loads and stores of 32 bit fp values.
14435
14436 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
14437
14438         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
14439
14440         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
14441         works. Fixes #79852 and #79463.
14442
14443 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14444
14445         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
14446         more soft-float support WIP and fixes.
14447
14448 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
14449
14450         * mini-arm.c: some VFP updates.
14451
14452 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
14453
14454         * mini-exceptions.c: 0 is a valid local var offset in some
14455         architectures, don't assert (bug #78508).
14456
14457 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
14458
14459         * exceptions-arm.c: fixed off by one error in stack walk code.
14460
14461 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
14462
14463         * mini.h, mini.c: more precise tracking of type load exceptions.
14464
14465 2006-11-03  Robert Jordan  <robertj@gmx.net>
14466
14467         * Makefile.am: [WIN32] Add monow.exe target.
14468         * driver.c: [WIN32] Don't detach the console when debugging.
14469         Fixes bug #79797.
14470         
14471 2006-10-30  Miguel de Icaza  <miguel@novell.com>
14472
14473         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
14474
14475 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
14476
14477         * aot-compiler.c (emit_method_info): Add a case missed earlier.
14478
14479         * driver.c (mini_regression): Fix --regression with AOT.
14480
14481         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
14482
14483 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
14484
14485         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
14486
14487         * mini-sparc.h: Don't use sigaction on sparc/linux.
14488
14489         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
14490
14491         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
14492
14493         * mini-exceptions.c: Add proper include files for getpid ().
14494
14495 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
14496
14497         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
14498         address instead of a MonoJitInfo* to avoid decoding the exception info for the
14499         method.
14500
14501         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
14502         name cache to reduce its size.
14503
14504         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
14505
14506 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14507
14508         * mini-x86.c: Save/restore the current LMF structure more efficiently using
14509         the mono_lmf TLS variable.
14510
14511         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
14512         trampoline lmf frames.  
14513
14514         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
14515
14516 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
14517
14518         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
14519         the mono_lmf TLS variable.
14520
14521         * mini-exceptions.c: Access the LMF structure through accessors.
14522
14523         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
14524         variable instead of in jit_tls->lmf.
14525
14526         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
14527         
14528         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
14529         trampoline lmf frames.
14530
14531         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
14532
14533 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
14534
14535        * mini.c trace.c mini-x86.c: Revert these too.
14536         
14537        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
14538        signature change.
14539
14540 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
14541
14542         * genmdesc.c: removed now dead code.
14543
14544 2006-10-09  Robert Jordan <robertj@gmx.net>
14545
14546         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
14547
14548 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
14549
14550         * mini.h: do not leave gaps in the opcode values.
14551
14552 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
14553
14554         * jit-icalls.h: flag functions as internal here, too.
14555
14556 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
14557
14558         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
14559         functions with the internal attribute.
14560
14561 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
14562
14563         * aot-compiler.c: fclose the file descriptor in the profile read loop.
14564
14565 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
14566
14567         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
14568         for soft-float.
14569
14570 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
14571
14572         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
14573         tail calls as on other platforms.
14574
14575         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
14576
14577         * iltests.il: Add a few tailcall tests.
14578
14579 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14580
14581         * driver.c: fix loop for old compilers (bug #79521).
14582
14583 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
14584
14585         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
14586
14587         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
14588
14589         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
14590         metadata without any code.
14591
14592         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
14593         more precise debugging information using gdb.
14594
14595 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
14596
14597         * inssel-ia64.brg: Make the helper methods static.
14598
14599 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
14600
14601         * inssel-x86.brg: make the helper methods static.
14602
14603 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
14604
14605         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
14606
14607 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
14608
14609         * mini.c: updates for monoburg changes.
14610         * inssel.brg: make a few helper functions static as they should.
14611
14612 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
14613
14614         * Makefile.am: Move mini-codegen.c to common_sources.
14615
14616 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14617
14618         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
14619         instructions.
14620         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
14621         mini-ppc.h: port to use the common local register allocator.
14622
14623 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14624
14625         * mini.h: Remove the comment too then.
14626
14627 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
14628
14629         * mini.h: put back backend.data which is to be used shortly and
14630         doesn't increase the size of MonoInst. If any 64 bit arch aligned
14631         pointers on 4 byte boundaries it'd have much bigger issues running
14632         and you can ifdef it out anyway.
14633
14634 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14635
14636         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
14637         MonoInst size by 4 bytes on 64 bit machines.
14638
14639 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14640
14641         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
14642         replacement with more meaningful field names. Arch maintainers, please
14643         check the assigned names are good enough for your arch.
14644
14645 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14646
14647         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
14648         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
14649
14650 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
14651
14652         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
14653         relocations and memory requirements, put the optimization flags
14654         definitions in their own file.
14655
14656 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
14657
14658         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
14659
14660         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
14661
14662 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
14663
14664         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
14665
14666 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
14667
14668         * inssel.brg: use the correct function to get the size of an item
14669         in an array, given an element class.
14670         * aot-compiler.c: do not access class->class_size directly.
14671
14672 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
14673
14674         * mini.h, debug-mini.c: added a debugging function to print
14675         info about local variables and arguments in a jitted method.
14676
14677 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
14678
14679         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
14680
14681         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
14682
14683 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
14684
14685         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
14686         inner and outer loops when passing vtypes.
14687
14688 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
14689
14690         * mini-ppc.c: take into account the cpu errata for cache flushing
14691         which caused some random errors (bug #79381).
14692
14693 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
14694
14695         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
14696         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
14697
14698 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
14699
14700         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
14701         loaded.
14702
14703         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
14704         freebsd ports tree.
14705
14706         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
14707         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
14708
14709         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
14710         displacement.
14711
14712 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
14713
14714         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
14715
14716 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
14717
14718         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
14719         macro does not have to be changed during debugging.
14720
14721         * 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>.
14722
14723         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
14724
14725         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
14726         
14727         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
14728         MONO_ARCH_NO_EMULATE_MUL is defined.
14729
14730         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
14731
14732         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
14733
14734         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
14735
14736         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
14737         
14738 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
14739
14740         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
14741         stuff to mini-exceptions.c where it is used.
14742
14743         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
14744         setup code, the real one is in mini-exceptions.c.
14745
14746         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
14747         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
14748         some changes from the freebsd ports tree.
14749
14750         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
14751         constants.
14752         
14753         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
14754
14755 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
14756
14757         * mini.c: on Linux, check for /proc to be mounted
14758         (bug# 79351, novell bug#201204).
14759
14760 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
14761
14762         * mini.c: handle cases where pthread_attr_getstack() behaves
14763         incorrectly (bug #78096).
14764
14765 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
14766
14767         * mini-arm.c: support larger stack frames (bug #79272).
14768
14769 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
14770
14771         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
14772
14773         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
14774         tokens.
14775
14776         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
14777         mono_class_from_name () to find a class from its name.
14778
14779         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
14780
14781 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
14782
14783         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
14784
14785 2006-09-05  Kornel Pal  <kornelpal@gmail.com>
14786
14787         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
14788
14789 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
14790
14791         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
14792         callinfo->trampoline.
14793
14794         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
14795         fixes #79271.
14796         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
14797         future.
14798
14799 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
14800
14801         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
14802
14803 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
14804
14805         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
14806         stats.method_trampolines, it is already done by the generic trampoline code.
14807
14808         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
14809         
14810 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
14811
14812         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
14813
14814         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
14815
14816         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
14817
14818         * mini.c (print_jit_stats): Print mscorlib mempool size too.
14819         
14820         * mini.c (print_jit_stats): Print new stats.
14821
14822         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
14823
14824 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
14825
14826         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
14827         Address on two dimensional arrays. Fixes #78729.
14828
14829         * mini.h (MonoCompile): Add a 'skip_visibility' field.
14830
14831         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
14832         a method.
14833
14834         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
14835
14836         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
14837         #79130.
14838         
14839         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
14840         a race condition.
14841         (mini_get_ldelema_ins): Ditto.
14842
14843 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
14844
14845         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
14846         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
14847         Fixes #79213.
14848
14849 2006-08-29 Neale Ferguson <neale@sinenomine.net>
14850
14851         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
14852         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
14853
14854         * exceptions-s390x.c: Cosmetic change.
14855
14856         * tramp-s390.c: Fix warning.
14857
14858         * cpu-s390.md: Correct length of mul_imm.
14859
14860 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
14861
14862         * aot-compiler.c: added binary writer with ELF backend
14863         implementation (only on Linux/x86 for now).
14864
14865 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
14866
14867         * Makefile.am: Don't run net 2.0 AOT tests.
14868
14869         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
14870         (mono_compile_assembly): Skip net 2.0 assemblies as well.
14871
14872         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
14873
14874 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
14875
14876         * aot-compiler.c: simplified and refactored the asm-writing code
14877         to allow different backends.
14878
14879 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
14880
14881         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
14882
14883         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
14884         little. Share patches of type TYPE_FROM_HANDLE as well.
14885
14886         * mini.c (mono_patch_info_equal): New helper function.
14887         (mono_patch_info_hash): Ditto.
14888
14889         * aot-compiler.c (emit_method_code): Fix s390 build.
14890
14891         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
14892         is not handled because it is stored as a flag and not as a type ctor. Fixes
14893         #79016.
14894
14895 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
14896
14897         * aot-compiler.c: Fix computation of GOT slot statistics.
14898         
14899         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
14900         Also remove support for not PIC AOT.
14901
14902         * mini.h: Bump AOT file format version.
14903
14904         * objects.cs: Add a test for #78990.
14905
14906         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
14907         (peter.dettman@iinet.net.au). Fixes #79087.
14908
14909         * basic-long.cs: Add a test for the above.
14910
14911 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
14912
14913         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
14914         
14915         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
14916         code somewhat.
14917
14918 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
14919
14920         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
14921         exceptions.
14922
14923 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
14924
14925         * mini.c: Don't verify COM proxy invoke calls
14926         
14927
14928 2006-08-10  Dick Porter  <dick@ximian.com>
14929
14930         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
14931         which process is holding semaphores locked.
14932
14933 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
14934
14935         * mini-ia64.c mini-amd64.c: Fix #79027.
14936
14937         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
14938
14939         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
14940
14941         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
14942         implicit arguments in a vararg call. Fixes #79027.
14943
14944 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
14945
14946         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
14947         (mono_get_array_new_va_signature): Ditto.
14948
14949 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
14950
14951         * aot-runtime.c: Call init_plt lazily.
14952
14953         * inssel-long.brg: Fix unsigned long->int conversion.
14954
14955         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
14956
14957         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
14958         that most data is now in the .rss/.data section.
14959
14960 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
14961
14962         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
14963
14964         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
14965
14966         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
14967
14968         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
14969
14970         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
14971         virtual call. Fixes #79010.
14972
14973         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
14974         and use the result as the this argument in the real call.
14975
14976         * generics.2.cs: Add a new test for #79010.
14977         
14978 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
14979
14980         * mini-x86.c: Fix a warning.
14981
14982         * aot-compiler.c: Add a bunch of statistics.
14983
14984         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
14985
14986 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
14987
14988         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
14989
14990 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
14991
14992         * 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>.
14993
14994 2006-07-13  Miguel de Icaza  <miguel@novell.com>
14995
14996         * mini.c (mono_method_to_ir): Obtain the original method in the
14997         CIL stream and use this to perform validation.
14998
14999         Fixed: #78816
15000
15001 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
15002
15003         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
15004         (mono_arch_call_opcode): Ditto.
15005
15006         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
15007         #78826.
15008
15009         * mini.c (mono_patch_info_dup_mp): New helper function.
15010         
15011         * aot-compiler.c (compile_method): Fix some of the memory allocated during
15012         compilation. Fixes #78827.
15013
15014 2006-07-18  Kornel Pal  <kornelpal@gmail.com>
15015
15016         * declsec.c: Use original security informations for
15017           MONO_WRAPPER_MANAGED_TO_MANAGED.
15018
15019 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
15020
15021         * mini.c: Allow Com Interop methods/classes and
15022         don't verify COM wrapper calls
15023         
15024
15025 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
15026
15027         * inssel-long32.brg: Fix long->i4 checked conversion.
15028
15029         * exceptions.cs: Add a test for the above.
15030
15031 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
15032
15033         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
15034
15035         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
15036         leaks.
15037
15038         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
15039         #78775.
15040
15041 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
15042
15043         * mini.c: Fix solaris/x86 exception handling.
15044
15045         * Makefile.am: Get rid of $(ICU_LIBS).
15046
15047 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
15048
15049         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
15050         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
15051         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
15052
15053         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
15054
15055         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
15056         this function causes a SIGSEGV.
15057
15058 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
15059
15060         * mini.c: Remove unused solaris/x86 includes.
15061
15062 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
15063
15064         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
15065
15066 2006-06-20  Jb Evain  <jbevain@gmail.com>
15067
15068         * cpu-g4.md: fix max length of start_handler instruction.
15069
15070 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
15071         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
15072
15073 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
15074         * ssa.c: Fixed bug 78653 for SSA based deadce.
15075         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
15076         MonoInst.flags, used in SSA based deadce.
15077         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
15078         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
15079
15080 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
15081
15082         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
15083         it can end up using non executable memory on ppc64 systems
15084         running ppc32 userspace (fix from Johannes Berg).
15085
15086 2006-06-14  Dick Porter  <dick@ximian.com>
15087
15088         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
15089         4.1.1
15090
15091 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
15092         * mini.c: Made so that inline is locally disabled if it would
15093         trigger a .cctor, because too many apps depend on this behavior
15094         (which seems to be also the one of the MS CLR).
15095
15096 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
15097
15098         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
15099         No idea why this worked before.
15100
15101         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
15102         which branch to outer exception clauses since they could skip the
15103         inner finally clauses. Fixes #78633.
15104
15105         * exceptions.cs: Add a test for the above.
15106
15107         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
15108         Fixes #78629.
15109
15110         * iltests.il: Add a test for the above.
15111
15112 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
15113
15114         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
15115         after the end of a try bblock, to prevent asserts in mini_method_compile ().
15116
15117         * iltests.il: Add a test for the above.
15118
15119 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
15120
15121         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
15122         
15123         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
15124         methods as instrinsics.
15125
15126 2006-06-09  Wade Berrier <wberrier@novell.com>
15127
15128         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
15129         (simple-cee-ops.h ssapre-mini-ops.h)
15130
15131 2006-06-09  Neale Ferguson <neale@sinenomine.net>
15132
15133         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
15134         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
15135         instruction).
15136         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
15137         * cpu-s390x.md: Fix max. length values for a couple of instructions.
15138
15139 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15140
15141         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
15142
15143 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
15144
15145         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
15146         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
15147         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
15148         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
15149         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
15150         of opcodes, so that bug 78549 should not happen again.
15151         * ssapre.c: Updated to use the renamed files.
15152
15153 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
15154
15155         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
15156         in OP_ATOMIC_EXCHANGE_I4.
15157
15158 2006-06-07  Wade Berrier <wberrier@novell.com>
15159
15160         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
15161         in mono_debugger_create_notification_function)
15162
15163 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
15164
15165         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
15166         
15167         * mini.c (type_from_stack_type): Disable some changes which do not
15168         seem to work.
15169
15170         * driver.c: Reenable opts.
15171
15172         * mini.h (MonoStackSlot): New structure to keep track of the verification state
15173         of the evaluation stack.
15174         
15175         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
15176         evaluation stack trace at entry to the bblock.
15177
15178         * mini.c (merge_stacks): New function to perform verification of stack merges.
15179         Turned off by default.
15180
15181         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
15182         STACK_MP.
15183         
15184 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
15185
15186         * local-propagation.c: Fixed bug 78549.
15187
15188 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
15189
15190         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
15191
15192 2006-06-02  Miguel de Icaza  <miguel@novell.com>
15193
15194         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
15195         tramp-arm.c, tramp-ia64.c
15196         (mono_debugger_create_notification_function): Update signature to
15197         new signature and use new protocol for creating the notification
15198         function.  
15199
15200         Should fix the build.
15201
15202 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
15203
15204         * exceptions-ppc.c (mono_jit_walk_stack)
15205         (ves_icall_get_frame_info): Fix the build
15206
15207 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
15208
15209         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
15210
15211 2006-05-31  Raja R Harinath  <rharinath@novell.com>
15212
15213         * il2tests.2.il: New file for generics CIL tests.  Add test for
15214         #78019.
15215         * Makefile.am: Update.
15216
15217         Fix #78019
15218         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
15219         to nullable types.
15220
15221 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
15222
15223         * aliasing.c: Fixed bug 78311.
15224
15225 2006-05-29  Martin Baulig  <martin@ximian.com>
15226
15227         * mini-exceptions.c (mono_find_jit_info): When computing the
15228         native offset, check whether we're actually inside the method's
15229         code; call mono_debug_print_stack_frame() to format the frame.
15230         (ves_icall_System_Exception_get_trace): Call
15231         mono_debug_print_stack_frame() to format the stack frame.
15232         (ves_icall_get_trace): Update to the new debugging API.
15233         (mono_jit_walk_stack_from_ctx): Likewise.
15234         (ves_icall_get_frame_info): Likewise.
15235
15236         * mini.c (get_method_from_ip): Use the new debugging API.
15237         (mono_print_method_from_ip): Likewise.
15238
15239         * exceptions-ppc.c
15240         (mono_jit_walk_stack): Use the new debugging API.
15241         (ves_icall_get_frame_info): Likewise.   
15242
15243 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
15244
15245         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
15246
15247 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
15248
15249         * mini.c: Added "limitator" to inline for debugging.
15250
15251 2006-05-24  Martin Baulig  <martin@ximian.com>
15252
15253         * debug-debugger.c (mono_debugger_init): Create a private,
15254         malloc()-based code manager for the notification function and
15255         intentionally leak it on exit.  This fixes the crash-on-exit race
15256         condition.
15257
15258         * tramp-amd64.c
15259         (mono_debugger_create_notification_function): Added
15260         `MonoCodeManager *' argument.
15261
15262         * tramp-x86.c
15263         (mono_debugger_create_notification_function): Added
15264         `MonoCodeManager *' argument.
15265
15266 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
15267
15268         * aliasing.c: Fixed 64 bit issue.
15269         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
15270         default since all known bugs are fixed (one more time!).
15271
15272 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
15273
15274         * mini.c: write barrier support.
15275
15276 2006-05-23  Martin Baulig  <martin@ximian.com>
15277
15278         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
15279         check at the top of the file.
15280
15281 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15282
15283         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
15284         reverting changes without reason and without changelog entries.
15285
15286 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
15287
15288         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
15289         to a few opcodes. Fixes #78439.
15290
15291         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
15292         consistency with other archs.
15293
15294         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
15295
15296 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15297
15298         * debug-debugger.c: fix the build.
15299
15300 2006-05-17  Martin Baulig  <martin@ximian.com>
15301
15302         * debug-debugger.c
15303         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
15304         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
15305         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
15306         (debugger_attach): Call GC_mono_debugger_add_all_threads().
15307
15308 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
15309
15310         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
15311
15312 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
15313
15314         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
15315         MONO_TYPE_GENERICINST.
15316         
15317         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
15318         MONO_TYPE_GENERICINST.
15319
15320 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
15321
15322         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
15323         #78325.
15324
15325 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
15326
15327         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
15328         mempool.
15329         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
15330
15331 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
15332
15333         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
15334         mono_trace_cleanup ().
15335
15336         * iltests.il: Fix problem with the newly added test.
15337
15338         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
15339         due to register constraints, free up the previous hreg. Fixes #78314.
15340
15341         * iltests.il: Add new test for #78314.  
15342
15343         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
15344         Interlocked.Add. Fixes #78312.
15345
15346         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
15347         
15348 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
15349
15350         * inssel.brg (mini_emit_virtual_call): Fix a warning.
15351
15352 2006-05-05  Martin Baulig  <martin@ximian.com>
15353
15354         * debug-mini.c (mono_debug_open_block): New method.
15355
15356         * mini-amd64.c
15357         (mono_arch_output_basic_block): Call mono_debug_open_block() at
15358         the beginning of each basic block.
15359
15360         * mini-x86.c
15361         (mono_arch_output_basic_block): Call mono_debug_open_block() at
15362         the beginning of each basic block.
15363
15364 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
15365
15366         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
15367         default until I understand why they break the build on amd64.
15368
15369 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
15370
15371         * mini.c (mini_cleanup): Call mono_cleanup ().
15372
15373         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
15374         errors.
15375
15376 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
15377
15378         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
15379         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
15380         default since all known bugs are fixed, and I cannot reproduce bug
15381         77944... I'm asking Matt Hargett to test again after this commit.
15382
15383 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
15384
15385         * mini-codegen.c: Fixed typo that thrashed inline.
15386
15387 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
15388
15389         * dominators.c (compute_dominators): Avoid using a worklist since
15390         it is not correct in some cases. Instead, iterate over all bblocks as
15391         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
15392
15393 2006-04-28  Miguel de Icaza  <miguel@novell.com>
15394
15395         * mini.c (mono_jit_compile_method_inner): Use
15396         mono_prepare_exception_from_error that resets the value
15397         internally.
15398
15399 2006-04-27  Miguel de Icaza  <miguel@novell.com>
15400
15401         * mini.c: Move the mini_loader_error_to_exception to metadata. 
15402         
15403 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
15404
15405         * aliasing.c: Fixed bug 78210.
15406
15407 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
15408
15409         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
15410         default until all their problems (or the ones they trigger) are fixed.
15411
15412 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
15413
15414         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
15415         
15416         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
15417         as loaded only after resolving patches since that could invoke the same method.
15418
15419         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
15420
15421         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
15422         functions.
15423
15424         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
15425         AOT loader.
15426
15427         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
15428         stack.
15429
15430         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
15431         made from AOT code through the PLT table.
15432
15433         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
15434         holding the plt offset when a call is made to the aot plt trampoline.
15435         
15436 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
15437
15438         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
15439         amd64 AOT support.
15440
15441         * Makefile.am (common_sources): Fix build breakage.
15442
15443         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
15444         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
15445         intra-assembly calls if possible.
15446         
15447         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
15448
15449         * mini-trampolines.c: Handle PLT entries.
15450
15451         * mini.c: Avoid creating a GOT var for calls.
15452
15453         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
15454         from mscorlib code.
15455
15456         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
15457         from mscorlib code.
15458
15459         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
15460         AOT code.       
15461
15462         * mini.h: Bump AOT file format version.
15463         
15464         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
15465         covers more cases.
15466
15467 2006-04-25  Martin Baulig  <martin@ximian.com>
15468
15469         * driver.c: Disable copyprop, consprop and inline when running
15470         inside the debugger.
15471
15472 2006-04-25  Martin Baulig  <martin@ximian.com>
15473
15474         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
15475         with `get_current_thread' and added `detach'.
15476         (MonoDebuggerMetadataInfo): Added `thread_size',
15477         `thread_tid_offset', `thread_stack_ptr_offset' and
15478         `thread_end_stack_offset'.
15479
15480 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
15481
15482         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
15483         aot-runtime.c.
15484
15485         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
15486         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
15487
15488         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
15489
15490         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
15491
15492         * aot.c: Add support for ADJUSTED_IID.  
15493
15494 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
15495
15496         * aot.c (emit_method_order): Don't align method_order_end.
15497
15498         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
15499         the interface ID changes.
15500
15501 2006-04-21  Dick Porter  <dick@ximian.com>
15502
15503         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
15504         cleaning up a thread.  Fixes the new part of bug 77470.
15505
15506 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
15507
15508         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
15509         to managed wrapper.
15510                      
15511 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
15512
15513         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
15514         
15515         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
15516         SIGSEGV. Fixes #78072.
15517
15518         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
15519         unregister our SIGABRT handler.
15520
15521 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
15522
15523         * mini.c: Disabled inline where it can alter the call stack in a
15524         way visible from managed code.
15525         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
15526         default.
15527
15528 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
15529
15530         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
15531         on other platforms. Fixes #78089.
15532
15533 2006-04-13  Martin Baulig  <martin@ximian.com>
15534
15535         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
15536         determine whether we're inside the debugger.
15537
15538         * debug-debugger.h
15539         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
15540
15541 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
15542
15543         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
15544         handler clauses. Fixes #78024.
15545
15546         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
15547         in the CALL_MEMBASE opcodes. Fixes #78088.
15548         (mono_arch_get_vcall_slot_addr): Ditto.
15549
15550 2006-04-10  Martin Baulig  <martin@ximian.com>
15551
15552         * debug-debugger.c: The thread handling code has now been moved
15553         into ../metadata/threads.c.
15554
15555 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
15556
15557         * driver.c (mono_main): Fix --with-gc=none build.
15558
15559         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
15560         (mono_spillvar_offset_float): Ditto.
15561         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
15562         hreg, not when its !global, since on ia64, there is a third category: stacked
15563         registers.      
15564
15565 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
15566
15567         * mini.c: set MonoInst->klass for load field address and a few other
15568         places.
15569
15570 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
15571
15572         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
15573
15574 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
15575
15576         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
15577         the branch opt changes.
15578
15579 2006-04-06  Dick Porter  <dick@ximian.com>
15580
15581         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
15582         
15583         * wapihandles.c (mini_wapi_seminfo): 
15584         * driver.c (mono_main): Add semaphore info option
15585
15586 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
15587
15588         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
15589         branch optimization changes. Fixes #78009.
15590
15591 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15592
15593         * mini.c: ignore accessibility of methods in managed->native wrappers.
15594
15595 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
15596
15597         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
15598         
15599         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
15600
15601 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
15602
15603         * mini.c: Modify the branch optimizations to preserve the invariant that
15604         the entries inside the in_bb and out_bb arrays are unique.
15605         (mono_unlink_bblock): Avoid creation of new arrays.
15606
15607 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
15608
15609         * mini.c (mono_unlink_bblock): Fix regression caused by previous
15610         change (#77992).
15611
15612 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
15613
15614         * mini.c (optimize_branches): Remove the "optimizations" in
15615         the cbranch1/cbranch2 -> branch cases which were causing several
15616         problems in the past. Fixes #77986.
15617
15618 2006-03-31  Chris Toshok  <toshok@ximian.com>
15619
15620         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
15621         default optimizations :(
15622
15623 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
15624
15625         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
15626         branch.
15627
15628 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
15629
15630         * local-propagation.c: Added comments to structs and removed
15631         "Mono" prefixes from local tree mover types.
15632
15633 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
15634
15635         * Makefile.am (arch_sources): Define this for each architecture so 
15636         libmono_la_SOURCES is defined in one place.
15637
15638 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
15639
15640         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
15641         from handles/.
15642
15643 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
15644
15645         * driver.c: print the GC name supplied by configure.
15646
15647 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
15648
15649         * local-propagation.c: Added tree mover, and moved here all the
15650         local propagation code from mini.c
15651         * mini.c: Added support for treeprop, and moved all the local
15652         propagation code to local-propagation.c
15653         * mini.h: Added support for treeprop
15654         * driver.c: Added support for treeprop, enabled consprop, copyprop,
15655         treeprop, inline and deadce by default
15656         * Makefile.am: Added local-propagation.c
15657
15658 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
15659
15660         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
15661
15662 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
15663
15664         * debug-debugger.c: make it compile without the Boehm GC.
15665
15666 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
15667
15668         * mini.c: fixed issue with mismatch when an icall is registered
15669         with multiple names but same address.
15670
15671 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15672
15673         * declsec.c, mini-exceptions.c: use write barrier to set reference
15674         fields of managed objects.
15675
15676 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
15677
15678         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
15679         (can_access_internals): Fix a warning.
15680
15681         * mini.c (print_method_from_ip): Rename this to 
15682         mono_print_method_from_ip so it gets exported.
15683
15684         * trace.c: Deal with strings inside StringBuilder's containing garbage
15685         and fix memory leaks. Fixes #77848.
15686
15687 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
15688
15689         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
15690         fixes #77787.
15691
15692 2006-03-16 Neale Ferguson <neale@sinenomine.net>
15693         
15694         * mini-s390.c: Remove OP_X86_TEST_NULL.
15695
15696 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
15697
15698         * mini.c: use the correct GetHashCode() for the moving collector.
15699
15700 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
15701
15702         * liveness.c: Regalloc spill cost tuning.
15703
15704 2006-03-15 Neale Ferguson <neale@sinenomine.net>
15705         
15706         * mini-s390x.h: Correct S390_LONG macro.
15707
15708         * mini-s390x.c: Cleanup unused code.
15709
15710 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
15711
15712         * jit-icalls.h: New file.
15713
15714         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
15715         icalls and include that instead of including jit-icalls.c.
15716
15717         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
15718         OP_X86 opcodes.
15719
15720 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
15721
15722         * mini.c: when checking for member accessibility, also check for
15723         friend assemblies and for explicit interface implementations.
15724
15725 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
15726
15727         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
15728
15729         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
15730
15731         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
15732         common cases are done first.    
15733
15734         * mini-ops.h: Only define platform specific opcodes on the given platform.
15735
15736         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
15737         branch.
15738         
15739 2006-03-14  Martin Baulig  <martin@ximian.com>
15740
15741         Revert Paolo's change from r57348:
15742
15743         * mini.h: don't use gboolean for bitfields.
15744         * mini.c: verifier changes for fields and methods accessibility.
15745
15746 2006-03-13  Neale Ferguson <neale@sinenomine.net>
15747
15748         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
15749
15750         * mini-s390x.c: Fix conv_r_un.
15751
15752         * cpu-s390, cpu-s390x.md: Fix lengths.
15753
15754 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15755
15756         * mini.c: nested types have access to all the nesting
15757         levels, not just the enclosing types.
15758
15759 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
15760
15761         * mini.c: added a few more verification checks.
15762
15763 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
15764
15765         * liveness.c: Merge optimizations from the linear-il branch.
15766
15767 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
15768
15769         * mini-ia64.c (emit_call): Add a comment.
15770
15771         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
15772
15773         * tramp-ia64.c: Fix some warnings.
15774
15775 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15776
15777         * mini.h: don't use gboolean for bitfields.
15778         * mini.c: verifier changes for fields and methods accessibility.
15779
15780 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
15781
15782         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
15783         lazy icall wrapper changes.
15784
15785         * dominators.c: Replace all the dominator algorithms with faster
15786         ones from the linear-il branch.
15787
15788         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
15789         the mempool.
15790
15791         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
15792         common cases are done first.
15793
15794         * mini-amd64.c: Fix some warnings.
15795
15796         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
15797         from the mempool.
15798
15799         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
15800         added code.
15801
15802         * mini.h: Add a missing prototype.
15803
15804 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
15805
15806         * mini.c: Compile icall wrappers lazily.
15807
15808         * mini-codegen.c: Use printf instead of g_print since its much faster.
15809
15810         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
15811         function.
15812
15813         * mini.c (optimize_branches): Cache the negative result from 
15814         remove_block_if_useless ().
15815
15816         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
15817         Also fix some bblock linking issues.
15818
15819         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
15820         assembly files.
15821
15822         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
15823
15824         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
15825         accessed fields first, for better cache behavior.
15826         
15827 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
15828
15829         * mini.c: speedup IList<T> array accesses.
15830
15831 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
15832
15833         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
15834         inline_costs counter. Fixes #77190.
15835
15836 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
15837
15838         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
15839         trace messages. Fixes #77706.
15840
15841 2006-03-04  Martin Baulig  <martin@ximian.com>
15842
15843         * tramp-amd64.c, tramp-x86.c
15844         (mono_debugger_create_notification_function): Use
15845         mono_global_codeman_reserve() to allocate a buffer at runtime and
15846         return it.
15847
15848         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
15849
15850         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
15851         notification function at runtime and then call `initialize' in the
15852         `MONO_DEBUGGER__debugger_info' vtable.
15853
15854 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
15855
15856         * iltests.il: Fix a visibility problem.
15857
15858 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
15859
15860         * driver.c, mini.c: add hooks for the counters API.
15861
15862 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
15863
15864         * driver.c: show disabled options.
15865
15866 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15867
15868         * linear-scan.c: always use cost-driven selection.
15869
15870 2006-02-28  Raja R Harinath  <rharinath@novell.com>
15871
15872         * jit-icalls.c (helper_compile_generic_method): Revert change from
15873         2006-02-24.
15874
15875 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
15876
15877         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
15878
15879 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
15880
15881         * inssel.brg: style fixes, mostly to force the updated monoburg
15882         to run for people using svn.
15883
15884 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15885
15886         * mini.c: match monoburg changes.
15887
15888 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15889
15890         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
15891         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
15892         declaration in the header file.
15893
15894 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15895
15896         * helpers.c: reduce relocations and mem usage.
15897
15898 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15899
15900         * mini.h, mini-codegen.c: disable logging features if
15901         requested by configure.
15902
15903 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
15904
15905         * mini.c: tiny verifier changes.
15906
15907 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15908
15909         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
15910         cpu-pentium.md: stack alignment changes for osx/x86,
15911         partially from Geoff Norton <gnorton@customerdna.com>.
15912
15913 2006-02-24  Raja R Harinath  <harinath@gmail.com>
15914
15915         * jit-icalls.c (helper_compile_generic_method): Update to changes
15916         in metadata/class.c.
15917
15918 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
15919         
15920         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
15921         
15922         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
15923         interface calls with large offsets.
15924
15925 2006-02-23  Raja R Harinath  <rharinath@novell.com>
15926
15927         * jit-icalls.c (helper_compile_generic_method): Document the
15928         special-case we depend on so that we can inflate the method twice
15929         with the same context with no bad side-effects.
15930
15931 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15932
15933         * mini-x86.c, mini-amd64.c: fix for case when xen support
15934         is disabled.
15935
15936 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15937
15938         * mini-x86.c, mini-amd64.c: generate code to access tls items
15939         in a faster way for Xen systems.
15940
15941 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
15942
15943         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
15944         updates and compilation fixes for the OSX/x86 port, mostly from
15945         Geoff Norton <gnorton@customerdna.com>.
15946
15947 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
15948
15949         * inssel.brg: faster interface call implementation
15950         to sync with the interface_offsets MonoVTable changes.
15951
15952 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15953
15954         * mini.c: more verification checks.
15955
15956 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
15957
15958         * mini.c: added a few more verification checks.
15959
15960 2006-02-17      Neale Ferguson <neale@sinenomine.net>
15961
15962         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
15963         facility on the processor and use it if available.
15964
15965 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15966
15967         * driver.c, aot.c, mini.c: throw exception if the IL code is
15968         invalid or unverifiable.
15969
15970 2006-02-17  Raja R Harinath  <rharinath@novell.com>
15971
15972         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
15973         m.StructField.
15974
15975 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
15976
15977         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
15978
15979 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
15980
15981         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
15982         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
15983         handling of instantiated generic valuetypes.
15984
15985 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
15986
15987         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
15988         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
15989         instead.
15990
15991         * generics.2.cs: Revert the nullable reftypes tests.
15992
15993 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
15994
15995         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
15996         using __builtin_frame_address (1) as it doesn't work in the presence
15997         of optimizations. Hopefully fixes #77273.
15998
15999         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
16000         -> generics.cs change as it doesn't work with some automake versions.
16001
16002 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16003
16004         * mini.c: handle systems that sue a different way to
16005         retrieve the stack address of the current thread.
16006
16007 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
16008
16009         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
16010         it specially in the makefile.
16011
16012         * generics.2.cs: Add tests for nullable reference types.
16013
16014 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16015
16016         * mini.c: always handle the case when mono_jit_init()
16017         is called in a thread different from the main thread,
16018         confusing libgc (bug #77309).
16019
16020 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
16021
16022         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
16023
16024 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
16025
16026         * mini.c: change optimize_branches () to use a single loop
16027         and introduce a new optimization to simplify some range checks.
16028
16029 2006-02-03  Martin Baulig  <martin@ximian.com>
16030
16031         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
16032         and merged with debugger_thread_manager_add_thread().
16033         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
16034         inform the debugger about the main thread.
16035
16036 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
16037
16038         * basic.cs: Add test for div.un/rem.un constant folding.
16039
16040 2006-02-03  Neale Ferguson <neale@sinenomine.net>
16041
16042         * cpu-s390x.md: correct int_xor_imm length
16043
16044 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
16045
16046         * generics.2.cs: New test for #77442.
16047
16048         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
16049         #77442.
16050
16051 2006-02-02  Martin Baulig  <martin@ximian.com>
16052
16053         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
16054         <mono/metadata/mono-debug-debugger.h>   
16055
16056         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
16057
16058 2006-02-02  Martin Baulig  <martin@ximian.com>
16059
16060         * debug-debugger.h: New header file for debug-debugger.c.
16061
16062         * debug-debugger.c: Big API cleanup; don't run the managed Main()
16063         function is a separate thread anymore; add support for attaching.
16064
16065 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
16066
16067         * tramp-x86.c: Fix a warning.
16068
16069 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
16070
16071         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
16072         on very large methods.
16073
16074         * aot.c (load_patch_info): Fix a warning.
16075
16076 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16077
16078         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
16079         mini-ops.h: alu membase optimizations.
16080
16081 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
16082
16083         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
16084         to speedup StringBuilder.
16085
16086 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
16087
16088         * dominators.c (mono_compute_natural_loops): Fix detection of
16089         loop body start blocks.
16090
16091         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
16092
16093 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
16094
16095         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
16096         #75145.
16097
16098 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
16099
16100         * aliasing.c: Fixed aliasing issue on 64 bit archs.
16101
16102 2006-01-25  Martin Baulig  <martin@ximian.com>
16103
16104         * debug-debugger.c: Moved the `MonoDebuggerManager' and
16105         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
16106         started to cleanup this file a little bit.
16107
16108 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
16109
16110         * mini.c: optimize a codepath frequently happening in generics code.
16111
16112 2006-01-23  Martin Baulig  <martin@ximian.com>
16113
16114         * Makefile.am: Only compile debug-debugger.c on supported platforms.
16115
16116         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
16117         functions directly.
16118
16119         * driver.c: debug-debugger.c is only available if
16120         `MONO_DEBUGGER_SUPPORTED' is defined.   
16121
16122 2006-01-23  Martin Baulig  <martin@ximian.com>
16123
16124         * debug-debugger.c: Only enable this on platforms where the Mono
16125         Debugger is working (x86 and x86_64).
16126
16127 2006-01-21  Martin Baulig  <martin@ximian.com>
16128
16129         The Mono Debugger is now using the normal `mono' instead of the
16130         `mono-debugger-mini-wrapper' when executing managed code.
16131
16132         * debug-debugger.c: New file; previously known as
16133         debugger/wrapper/wrapper.c.
16134
16135         * debug-mini.c (mono_init_debugger): Removed.
16136
16137         * driver.c (mono_main): Added new `--inside-mdb' command line
16138         argument which is used when running inside the debugger.
16139
16140 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
16141
16142         * liveness.c (mono_analyze_liveness): Remove some unused data
16143         structures.
16144
16145 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
16146
16147         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
16148
16149 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
16150
16151         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
16152         depends on implementation details of monobitset.
16153
16154         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
16155         Fixes #77271.
16156
16157 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
16158
16159         * liveness.c: Update after monobitset changes.
16160
16161 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
16162
16163         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
16164
16165 2006-01-11 Neale Ferguson <neale@sinenomine.net>
16166
16167         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
16168
16169         * mini-s390x.c: Remove warning messages.
16170
16171 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
16172
16173         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
16174
16175 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
16176
16177         * generics.2.cs: Add ldelem/stelem_any test.
16178
16179 2006-01-10 Neale Ferguson <neale@sinenomine.net>
16180
16181         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
16182
16183 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
16184
16185         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
16186         
16187 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
16188
16189         * generics.2.cs: Reenable vtype tests.
16190
16191         * inssel-x86.brg: Remove an icorrect valuetype rule.
16192
16193 2006-01-06 Neale Ferguson <neale@sinenomine.net>
16194
16195         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
16196         initial support for OP_ABS.
16197
16198 2006-01-05 Neale Ferguson <neale@sinenomine.net>
16199
16200         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
16201
16202 2006-01-05 Neale Ferguson <neale@sinenomine.net>
16203
16204         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
16205         conversion and implement LADD/LSUB.
16206
16207         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
16208         architectures.
16209
16210 2006-01-05 Neale Ferguson <neale@sinenomine.net>
16211
16212         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
16213
16214         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
16215         architectures.
16216
16217 2006-01-05 Neale Ferguson <neale@sinenomine.net>
16218
16219         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
16220         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
16221         (stack walk problem).
16222
16223 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
16224
16225         * aot.c (mono_aot_load_method): Fix a warning.
16226
16227 2006-01-03  Neale Ferguson <neale@sinenomine.net>
16228
16229         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
16230
16231 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
16232
16233         * iltests.il: Add test for #77148.
16234
16235         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
16236         #77148.
16237
16238 2006-01-03  Neale Ferguson <neale@sinenomine.net>
16239
16240         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
16241
16242 2006-01-03  Neale Ferguson <neale@sinenomine.net>
16243
16244         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
16245         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
16246
16247         * basic-long.cs: Add lconv-to-r4/r8 tests.
16248
16249 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
16250
16251         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
16252
16253         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
16254         here as on other archs.
16255
16256 2005-12-29 Neale Ferguson <neale@sinenomine.net>
16257
16258         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
16259
16260 2005-12-29 Neale Ferguson <neale@sinenomine.net>
16261
16262         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
16263         
16264         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
16265
16266         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
16267         instrument_prolog; Add memory_barrier instruction.
16268
16269 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
16270
16271         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
16272
16273 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
16274
16275         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
16276
16277         * aliasing.c inssel.brg: Fix warnings.
16278
16279         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
16280         could skip initialization of some parts of memory.
16281
16282         * mini.c mini-ia64.c: Fix warnings.
16283
16284         * inssel-sparc.brg: Add an implementation of lneg which actually works.
16285
16286 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
16287
16288         * aliasing.c (mono_build_aliasing_information): Add a workaround for
16289         a crash seen on sparc.
16290
16291         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
16292         
16293         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
16294
16295 2005-12-21 Neale Ferguson <neale@sinenomine.net>
16296
16297         * mini-ops.h: Add s390_backchain instruction
16298
16299         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
16300
16301         * cpu-s390.md: Add s390_backchain instruction
16302
16303         * mini-s390.c: Significant ABI changes
16304
16305         * mini-s390.h: Cater for zero length structures
16306
16307 2005-12-20 Neale Ferguson <neale@sinenomine.net>
16308
16309         * mini-s390.c: ABI fixes
16310
16311         * inssel-s390.brg: Remove debug statements
16312
16313         * cpu-s390.md: Fix length of ATOMIC_xx operations
16314
16315 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
16316
16317         * basic-float.cs: Add float<->long conversion tests.
16318
16319 2005-12-16 Neale Ferguson <neale@sinenomine.net>
16320
16321         * mini-s390.c: Fix LOCALLOC processing.
16322
16323         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
16324
16325 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
16326
16327         * iltests.il: Add tests for some opcodes not covered by the other
16328         tests.
16329
16330 2005-12-15 Neale Ferguson <neale@sinenomine.net>
16331
16332         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
16333         register loading for Tail processing; Correct trace output.
16334
16335         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
16336
16337         * cpu-s390.md: Correct size of jmp instruction. 
16338
16339 2005-12-13 Neale Ferguson <neale@sinenomine.net>
16340
16341         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
16342
16343 2005-12-13 Neale Ferguson <neale@sinenomine.net>
16344
16345         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
16346           Bring s390 up to current level.
16347
16348 2005-12-12  Zltan Varga  <vargaz@gmail.com>
16349
16350         * generics.2.cs: Disable the newly added tests as they do not work yet.
16351         
16352         * generics.2.cs: Add valuetype tests.
16353
16354 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
16355
16356         * basic-long.cs: Add i4->u8 test.
16357
16358         * objects.cs: Add tests for JIT intrinsic.
16359
16360         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
16361         optimizations lost by a mistake.
16362
16363 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
16364
16365         * basic-long.cs: Remove a test moved to objects.cs.
16366
16367         * arrays.cs: Add more array tests.
16368
16369 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
16370
16371         * arrays.cs: Add new tests for multi-dimensional arrays.
16372
16373 2005-12-06  Raja R Harinath  <rharinath@novell.com>
16374
16375         * Makefile.am (test_sources2): Add generics.2.cs.
16376         (EXTRA_DIST): Add test_sources2.
16377
16378 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
16379
16380         Support for boxing and unboxing nullable types as well as the
16381         isinst operation on nullables, per the CLI ammendment.
16382
16383         * inssel.brg (CEE_ISINST): Special case for nullable
16384
16385         * mini.c (handle_unbox_nullable): new method
16386         (handle_box): Special case for nullable types
16387         (mono_method_to_ir): Call handle_unbox_nullable in correct
16388         places.
16389
16390         * generics.2.cs: New test suite
16391
16392         * Makefile.am: Support for regression tests with generics.
16393
16394 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
16395
16396         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
16397         allocated to registers. Fixes #76800.
16398
16399 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
16400
16401         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
16402
16403 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
16404
16405         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
16406         of platforms.
16407
16408 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
16409
16410         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
16411         objects.cs.
16412
16413         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
16414         
16415         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
16416 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
16417
16418         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
16419         single precision before storing to a single precision location.
16420
16421 2005-11-28  Raja R Harinath  <rharinath@novell.com>
16422
16423         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
16424
16425 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
16426
16427         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
16428         correct files.
16429
16430         * basic.cs: Remove test_0_byte_compares test which was moved to
16431         objects.cs a long time ago.
16432
16433 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
16434
16435         * aliasing.c: Fixed aliasing issue on 64 bit archs.
16436
16437 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
16438
16439         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
16440         handlers are called.
16441
16442         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
16443         throwing code.
16444
16445          * mini-ia64.c: Add support for the throw->branch exception 
16446         optimization.   
16447
16448         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
16449
16450 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
16451
16452         * mini.c: Enabled "fastpath" deadce :-)
16453         
16454 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
16455
16456         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
16457         alias analysis pass to support it.
16458         * mini.h: Likewise.
16459         * ssa.c: Likewise.
16460         * liveness.c: Likewise (liveness computation can use aliasing
16461         information to be more accurate).
16462         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
16463         moreover made so that "--compile-all" uses the given optimization
16464         flags and not the default ones.
16465         * aliasing.c: Alias analysis (new file).
16466         * aliasing.h: Likewise.
16467         * Makefile.am: added "aliasing.c" and "aliasing.h".
16468         
16469 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
16470
16471         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
16472         OP_L opcodes.
16473
16474 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
16475
16476         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
16477         fp >= end_of_stack exit condition, as it is not needed, and it might
16478         become true for fp eliminated frames.
16479
16480 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
16481
16482         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
16483         coded offsets.
16484
16485 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
16486
16487         * mini-arm.c: fixed alignment of doubles/longs to match
16488         the C ABI (bug #76635).
16489
16490 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
16491
16492         * aot.c: fix compilation with --enable-minimal=aot.
16493
16494 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
16495
16496         * mini-arm.c: fixed compatibility with the new
16497         floating point emulator package for compares.
16498
16499 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
16500
16501         * mini.c : reverted sig->pinvoke changes (r51396-51397).
16502
16503 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
16504
16505         * mini-exceptions.c (print_stack_frame): Output to stderr.
16506         (mono_handle_native_sigsegv): Ditto.
16507
16508 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
16509
16510         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
16511         OP_LCONV_TO_OVF_I implementation.
16512
16513         * mini-amd64.c: Add support for the throw->branch exception 
16514         optimization.
16515
16516         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
16517         when the catch clause catches a more general exception, i.e. Object.
16518
16519 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
16520
16521         * cpu-ia64.md: Remove unused opcodes.
16522
16523         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
16524         specific defines for architectures defining USE_SIGACTION.
16525
16526         * mini-ia64.c: Fix some warnings.
16527
16528         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
16529         version seemed to skip a frame.
16530
16531 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
16532
16533         * mini.c: Clean up the usage of sig->pinvoke flag. Now
16534         only calls which are made to native code use this flag.
16535
16536 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
16537
16538         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
16539         varargs methods as well.
16540         
16541         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
16542         which have save_lmf set. Reorganize methods prologs a bit.
16543
16544         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
16545         debugger to the proper place.
16546
16547 2005-10-29  Martin Baulig  <martin@ximian.com>
16548
16549         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
16550         when running inside the debugger until the debugger has support
16551         for it.
16552
16553 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
16554
16555         * mini.h: Fix a warning.
16556
16557 2005-10-24  Miguel de Icaza  <miguel@novell.com>
16558
16559         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
16560         we expose publicly, this returns the string.
16561
16562 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
16563
16564         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
16565         with fp elimination.
16566
16567 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
16568
16569         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
16570         native stacktrace using the glibc 'backtrace' function if available.
16571
16572 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
16573
16574         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
16575
16576         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
16577         handle SIGSEGVs received while in native code.
16578
16579         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
16580         code, call mono_handle_native_sigsegv which will abort the runtime
16581         after printing some diagnostics, instead of converting it into a
16582         confusing NullReferenceException.
16583
16584 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
16585
16586         * cpu-pentium.md: Remove unused opcodes.
16587
16588 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
16589
16590         * mini-amd64.h (MonoLMF): Add rsp field.
16591
16592         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
16593         the lmf too.
16594
16595 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
16596
16597         * mini-codegen.c (get_register_spilling): Fix some warnings.
16598
16599 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
16600
16601         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
16602         elimination during exception handling. Enable fp elimination by
16603         default.
16604
16605         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
16606         elimination.
16607
16608 2005-10-16  Martin Baulig  <martin@ximian.com>
16609
16610         * mini-exceptions.c
16611         (mono_debugger_run_finally): New public method for the debugger.
16612
16613 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
16614
16615         * debug-mini.c (mono_debug_init_method): Fix warning.
16616
16617         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
16618         the 'exname' parameter const to fix some warnings.
16619
16620 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
16621
16622         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
16623         introduced by the previous patch.
16624
16625 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
16626
16627         * basic-float.cs: Add test for precision of float arithmetic.
16628
16629         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
16630         when loading/storing single values from/to memory.
16631
16632         * mini.c (mono_jit_compile_method_with_opt): Create the function
16633         pointers in the correct domain.
16634
16635 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
16636
16637         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
16638         introduced by previous patch.
16639         
16640         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
16641         when out_filter_idx is NULL.
16642
16643         * mini-exceptions.c: Don't run filter clauses twice during exception
16644         handling. Fixes #75755.
16645
16646 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
16647
16648         * aot.c: Add support for ldflda wrappers.
16649
16650         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
16651         #75902.
16652
16653 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
16654
16655         * mini.c, mini.h: do not consider exception handlers blocks when
16656         setting up interface variables.
16657
16658 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
16659
16660         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
16661
16662 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
16663
16664         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
16665         causes a regression.
16666
16667         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
16668
16669 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
16670
16671         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
16672         of the OP_P definitions.
16673
16674         * TODO: Add a proposal for dealing with the CEE/OP mess.
16675
16676         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
16677         optimizations from the x86 port.
16678
16679         * cpu-amd64.md: Ditto.
16680
16681         * basic.cs basic-long.cs: Add tests.
16682
16683 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
16684
16685         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
16686         Patrik Torstensson's implementation of my exception-handling
16687         optimization idea, when the exception object is not used
16688         (bug #62150).
16689
16690 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
16691
16692         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
16693         of the mul_imm optimizations from the old jit.
16694
16695 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
16696
16697         * mini.c, liveness.c: patch by Patrik Torstensson and
16698         Zoltan Varga to improve performance in methods with
16699         exception clauses.
16700
16701 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
16702
16703         * driver.c: Remove 'Globalization' entry from --version.
16704
16705 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
16706
16707         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
16708         there is a profiler interested in JIT events.
16709
16710         * aot.c: Load profile files produced by the AOT profiling module, and
16711         reorder methods based on the profiling info. Add a 'method_order' table
16712         to the AOT file to make mono_aot_find_jit_info work with the reordered
16713         methods.
16714
16715         * mini.h: Bump AOT file version info.
16716
16717 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
16718
16719         * mini-arm.h: work around what looks like a gcc bug when optimizations
16720         are enabled.
16721
16722 2005-09-28  Raja R Harinath  <rharinath@novell.com>
16723
16724         * Makefile.am (AM_CFLAGS): Don't use += to append inside
16725         conditionals.  Use ...
16726         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
16727
16728 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
16729
16730         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
16731         to determine the amount of memory to copy when passing valuetypes.
16732
16733         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
16734         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
16735
16736 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
16737
16738         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
16739         information about aot.
16740
16741 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
16742
16743         * *.c: Replace the use of {Enter,Leave}CriticalSection with
16744         macros. This will allow a deadlock debugger to easily be plugged
16745         in.
16746
16747 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
16748
16749         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
16750
16751 2005-09-27  Raja R Harinath  <rharinath@novell.com>
16752
16753         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
16754         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
16755         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
16756         ($(arch_built)) [CROSS_COMPILING]: Error out.
16757
16758 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
16759
16760         * aot.c: Add support for the no_special_static flag for classes.
16761
16762 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
16763
16764         * Reapply reverted patches.
16765
16766         * *: Revert r50174 as well.
16767
16768         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
16769
16770 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
16771
16772         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
16773
16774 2005-09-23  Miguel de Icaza  <miguel@novell.com>
16775
16776         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
16777         part of the SIG_HANDLER_SIGNATURE.  
16778
16779 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
16780
16781         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
16782         statistics.
16783
16784         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
16785         introduced by previous patch.
16786
16787 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
16788
16789         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
16790         saved registers too.
16791
16792         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
16793         upon the information returned by get_call_info ().
16794         
16795         * mini-x86.c (add_float): Fix stack size calculation.
16796         (mono_arch_call_opcode): Rewrite this so it works based up the
16797         information returned by get_call_info ().
16798         (mono_arch_get_this_vret_args): Ditto.
16799
16800 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
16801
16802         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
16803         in cinfo to determine the registers which need to be used.
16804
16805 2005-09-20  Miguel de Icaza  <miguel@novell.com>
16806
16807         * driver.c (mono_main): Add --server and --desktop flags. 
16808
16809 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
16810
16811         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
16812         registers as global registers.
16813
16814         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
16815         longer needed with the new register allocator.
16816
16817         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
16818
16819         * cpu-ia64.md: Remove unused opcodes.
16820         
16821         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
16822         
16823 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
16824
16825         * cpu-amd64.md: Remove unused opcodes.
16826
16827         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
16828         needed with the new register allocator.
16829
16830         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
16831         reg-reg moves.
16832
16833 2005-09-16  Raja R Harinath  <rharinath@novell.com>
16834
16835         * Makefile.am (check-local): Don't invoke semdel-wrapper.
16836
16837 2005-09-16  Martin Baulig  <martin@ximian.com>
16838
16839         * exceptions-amd64.c
16840         (throw_exception): Don't call mono_debugger_throw_exception() if
16841         we're a rethrow - see the FIXME in the code.
16842
16843 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
16844
16845         * mini.c (mono_init_exceptions): This only works on some architectures.
16846         
16847 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
16848
16849         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
16850         on ia64.
16851
16852         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
16853
16854         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
16855         now in mini-exceptions.c.
16856
16857 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
16858
16859         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
16860         now in mini-exceptions.c.
16861
16862 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
16863
16864         * exceptions-x86.c: Applied patch from Patrik Torstensson 
16865         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
16866
16867         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
16868         code into mini-exceptions.c. Add some assertions to it.
16869
16870 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
16871
16872         * aot.c (emit_section_change): Applied patch from "The Software Team" 
16873         (<software@solmersa.com>). Fix as errors on windows.
16874
16875 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
16876
16877         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
16878         method info into the LMF.
16879
16880 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
16881         
16882         * mini-ia64.c: Add proper unwind info for method epilogs.
16883
16884         * exceptions-ia64.c: Add some code to help debugging.
16885         
16886         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
16887
16888         * mini-exceptions.c: Fix warning.
16889
16890 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
16891
16892         * mini.c: Really fix build.
16893
16894         * mini-x86.c mini-amd64.c: Fix build.
16895
16896 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
16897
16898         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
16899
16900         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
16901         some Interlocked methods as intrinsics.
16902
16903         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
16904         for Thread methods as well.
16905
16906         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
16907
16908         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
16909
16910         * mini-ia64.c mini-x86.c mini-amd64.c 
16911         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
16912         OP_MEMORY_BARRIER.
16913         
16914         * mini.c (mono_init_exceptions): Fix build breakage.
16915
16916 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
16917
16918         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
16919         of instructions. Use the new ia64_unw_op macros for emitting unwind
16920         info.
16921
16922         * mini.c (mono_init_exceptions): Initialize exception handling
16923         related trampolines at startup.
16924
16925 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
16926
16927         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
16928
16929 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
16930
16931         * mini.c: Handle type loading errors gracefully during compilation and
16932         throw the appropriate exception.
16933
16934 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
16935
16936         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
16937         for the mono binary.
16938
16939 2005-09-09  Martin Baulig  <martin@ximian.com>
16940
16941         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
16942         the release.
16943
16944 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
16945
16946         * mini-arm.h: use emulation for conv.r.un for the release.
16947
16948 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
16949
16950         * mini-arm.c, objects.cs: more fixes and tests for them.
16951
16952 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
16953
16954         * mini-arm.c: align structures to at least 4 bytes to be able
16955         to keep our current optimized memcpy.
16956
16957 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
16958
16959         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
16960
16961 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16962
16963         * mini.c: ignore SIGPIPE.
16964
16965 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
16966
16967         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
16968
16969         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
16970
16971 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
16972
16973         * mini.h: Add prototype for mono_allocate_stack_slots_full.
16974
16975 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
16976
16977         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
16978         exception handling support.
16979         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
16980         patch by Brian Koropoff <briank@marakicorp.com>).
16981
16982 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
16983
16984         * mini.c: revert another 'optimization' which breaks when
16985         items on the eval stack need to be saved at a basic block end
16986         (bug #75940).
16987
16988 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
16989
16990         * jit-icalls.c: for arrays, ensure we always provide
16991         lower bounds.
16992
16993 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
16994
16995         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
16996         
16997         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
16998
16999 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
17000
17001         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
17002         arguments in their original register.
17003
17004 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
17005
17006         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
17007         memset/memcpy.
17008
17009         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
17010         when ssapre is enabled.
17011
17012         * inssel-long.brg: Fix bug in previous patch.
17013
17014         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
17015         multiplication by a constant.
17016
17017 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
17018
17019         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
17020         icc.
17021
17022         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
17023         saving registers.
17024
17025 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
17026
17027         * inssel-arm.brg: apply changes tested by Brian Koropoff
17028         <briank@marakicorp.com>.
17029
17030 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
17031
17032         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
17033         
17034 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
17035
17036         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
17037         to the same register if dreg is just a base register.
17038         (print_ins): Improve printing of membase opcodes.
17039
17040         * inssel-x86.brg: Add optimized ldind(reg) rules.
17041
17042         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
17043
17044 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
17045
17046         * mini.c: when running under valgrind, set the stack bottom for
17047         the GC at the actual approximate stack for the app (fixes running
17048         mono with valgrind).
17049
17050 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
17051
17052         * mini.c: do no break at the first valuetype to init found
17053         (fixes bug #75791).
17054
17055 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
17056
17057         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
17058
17059 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
17060
17061         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
17062
17063 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
17064
17065         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
17066
17067 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
17068
17069         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
17070
17071         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
17072         code.
17073
17074         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
17075         code.
17076
17077         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
17078         methods.
17079
17080 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
17081
17082         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
17083
17084 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
17085
17086         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
17087         in the tail recursion optimization.
17088
17089         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
17090         debug info into the assembly file.
17091
17092         * iltests.il: Add test for filter regions.
17093
17094         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
17095         initial stack of filter regions. Fixes #75755.
17096
17097 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
17098
17099         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
17100         stack requirements.
17101
17102 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
17103
17104         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
17105         the check for an already compiled method on non-ia64 platforms.
17106         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
17107         proper domain.
17108
17109         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
17110
17111         * inssel-x86.brg: Add some optimized call rules.
17112
17113 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
17114
17115         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
17116         method here.
17117
17118         * mini.h mini-trampolines.c: Pass the trampoline argument to 
17119         mono_arch_patch_delegate_trampoline.
17120
17121         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
17122
17123         * mini-trampolines.c: Fix build.
17124
17125         * mini-amd64.h: Add delegate trampolines.
17126
17127         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
17128
17129         * inssel-amd64.brg: Add optimized call rules.
17130         
17131         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
17132
17133         * inssel-ia64.brg: Add optimized ldind(reg) rules.
17134
17135 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
17136
17137         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
17138         change.
17139
17140         * mini-ia64.c: Remove LMF fixmes.
17141
17142         * mini-ia64.h: Remove most fields from LMF.
17143
17144         * inssel-ia64.brg (stmt): Fix unaligned access errors.
17145
17146         * mini-trampolines.c: Add support for IA64 function descriptors.
17147
17148         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
17149         for IA64 function descriptors.
17150
17151 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
17152
17153         * tramp-arm.c: patch the vtable for virtual calls. Added
17154         support code to register/unregister the LMF.
17155         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
17156         more LMF work.
17157
17158 2005-08-19  Dick Porter  <dick@ximian.com>
17159
17160         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
17161         bit value if needed.
17162
17163 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
17164
17165         * mini.c (mini_get_method): Move handling of wrapper data here.
17166
17167         * mini.c (mono_method_to_ir): Add support for dynamic methods.
17168
17169         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
17170         virtual.
17171
17172         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
17173         bblock->code does not remain empty.
17174
17175 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
17176
17177         * arrays.cs: Add regression test for #75832.
17178
17179         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
17180         rules. Fixes #75832.
17181
17182         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
17183         instruction scheduling.
17184
17185 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
17186
17187         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
17188
17189 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
17190
17191         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
17192
17193         * mini-codegen.c: Fix VC build.
17194
17195         * cpu-pentium.md: Increase length of atomic_exhange_i4.
17196
17197 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17198
17199         * mini.h: fix signature for mono_register_opcode_emulation.
17200
17201 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
17202
17203         * mini.c: Get rid of most of the helper_sig_... constants using
17204         mono_create_icall_signature ().
17205
17206 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
17207
17208         * jit-icalls.c (helper_ldstr): New helper function.
17209
17210         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
17211
17212         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
17213         throw, load the string using a helper call instead of creating a string object.
17214
17215         * aot.c: Update after LDSTR changes.
17216
17217         * mini.h: Bump AOT file version.
17218         
17219         * aot.c: Save class size info into the AOT file. Print more statistics during
17220         compilation.
17221
17222         * mini.h: Bump AOT file version.
17223
17224         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
17225         ordering of disasm cases. Fixes #74957.
17226
17227 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
17228
17229         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
17230         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
17231         the generic code needed for the ARM port.
17232
17233 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
17234
17235         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
17236         inssel-arm.brg: more ARM features and fixes.
17237
17238 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
17239
17240         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
17241         ARM port work in progress.
17242
17243 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
17244
17245         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
17246
17247         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
17248
17249         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
17250
17251         * inssel.brg (mini_emit_memset): Add support for unaligned access.
17252
17253         * *-ia64.*: Ongoing IA64 work.
17254         
17255         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
17256
17257 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
17258
17259         * TODO: Remove out-of-data todo stuff.
17260
17261         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
17262         dead code.
17263
17264         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
17265
17266         * mini.h: Bump corlib version.
17267
17268 2005-07-27  Martin Baulig  <martin@ximian.com>
17269
17270         * mini-codegen.c
17271         (create_copy_ins): Added `const unsigned char *ip' argument; set
17272         `copy->cil_code' from it.
17273
17274 2005-07-27  Martin Baulig  <martin@ximian.com>
17275
17276         * mini-exceptions.c (mono_handle_exception): Don't call
17277         mono_debugger_handle_exception() for filters.
17278
17279 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
17280
17281         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
17282         as well.
17283
17284 2005-07-26  Martin Baulig  <martin@ximian.com>
17285
17286         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
17287
17288         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
17289         helper_compile_generic_method() if the method is actually virtual
17290         and non-final.
17291
17292 2005-07-26  Martin Baulig  <martin@ximian.com>
17293
17294         * mini.c
17295         (trampoline_code): Renamed to `mono_trampoline_code' and made it
17296         public; this is now accessed directly by the debugger.
17297         (mono_generic_trampoline_code): Removed.
17298
17299         * debug-mini.c
17300         (mono_debug_init_method): Also add interncalls and wrappers.
17301
17302 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
17303
17304         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
17305
17306 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
17307
17308         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
17309
17310 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
17311
17312         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
17313
17314 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
17315
17316         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
17317         getting TLS offsets on AMD64 too.
17318
17319 2005-07-20  Kornel Pal <kornelpal@hotmail.com>
17320
17321         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
17322
17323 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
17324
17325         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
17326         inssel-arm.brg, mini-arm.h: ARM port work in progress.
17327
17328 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
17329
17330         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
17331
17332         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
17333         to mini.c.
17334
17335         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
17336         mono_sparc_is_virtual_call ().
17337         
17338         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
17339
17340         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
17341         trampoline parameters.
17342
17343         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
17344         
17345         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
17346         to mono_arch_get_vcall_slot_addr.
17347
17348         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
17349         trampoline code.
17350
17351         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
17352
17353 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
17354
17355         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
17356
17357 2005-07-19  Martin Baulig  <martin@ximian.com>
17358
17359         * exceptions-amd64.c (throw_exception): Call
17360         mono_debugger_throw_exception() here like we're doing it on i386.
17361
17362 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
17363
17364         * mini-ia64.c: Add optimized TLS access support.
17365
17366 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
17367
17368         * mini-exceptions.c: Ongoing IA64 work.
17369
17370         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
17371
17372         * mini.c: Use the default optimization set when embedding. Fixes
17373         #75194.
17374
17375 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
17376
17377         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
17378         of trampolines to a separate file.
17379
17380         * mini-trampolines.c: New file.
17381
17382         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
17383         separate file.
17384         
17385         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
17386         amd64/ia64 code.
17387
17388         * mini-codegen.c: Fix cygwin build.
17389
17390 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
17391
17392         * mini.c: Add some minor changes needed by the IA64 port.
17393
17394         * *-ia64.*: Ongoing IA64 work.
17395
17396 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
17397
17398         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
17399         trampolines into arch-independent and arch-dependent parts.
17400
17401         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
17402
17403 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
17404
17405         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
17406
17407         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
17408         the xp-regalloc-branch for amd64.
17409
17410         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
17411         xp-regalloc-branch for x86.
17412
17413 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
17414
17415         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
17416
17417 2005-07-06  Martin Baulig  <martin@ximian.com>
17418
17419         * mini.c
17420         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
17421         (mono_jit_runtime_invoke): Likewise.
17422
17423 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
17424
17425         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
17426         on x86 too.
17427         
17428         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
17429         without loading their metadata. Reorganize the file format so exception handling+
17430         debug info is kept separate from normal method info. Create MonoJitInfo 
17431         structures for methods lazily.
17432
17433         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
17434         loading metadata.
17435         (x86_class_init_trampoline): Patch AOT class init trampolines too.
17436
17437         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
17438
17439         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
17440         in AOT code.
17441
17442         * mini.h: Bump AOT file version.
17443
17444 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
17445
17446         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
17447
17448 2005-07-01  Raja R Harinath  <rharinath@novell.com>
17449
17450         * Makefile.am (check-local): Call semdel-wrapper.
17451
17452 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
17453
17454         * mini-x86.c: Revert the last change as it seems to break the build..
17455
17456 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
17457
17458         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
17459         
17460         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
17461
17462 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
17463
17464         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
17465         outside of the macro, so strange stuff doesn't happen with gcc4
17466         (NEW_AOTCONST_TOKEN): Likewise.
17467
17468 2005-06-28  Martin Baulig  <martin@ximian.com>
17469
17470         * mini.c (mini_class_is_system_array): New static method; use this
17471         instead of `klass->parent == mono_defaults.array_class' everywhere
17472         since this also works for the new generic array class.
17473
17474 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
17475
17476         * inssel.brg: Remove warnings.
17477
17478 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
17479
17480         * mini-ia64.c: Ongoing IA64 work.
17481
17482         * basic-float.cs: Add float->i1 conversion test.
17483
17484         * iltests.il: Add conv.u4 test.
17485
17486 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
17487
17488         * inssel-long.brg: Fix bug caused by last change.
17489
17490 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
17491
17492         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
17493         BSDs.  Allows the x86 JIT to work on OSX86
17494
17495 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
17496
17497         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
17498         u4->i8 conversion.
17499
17500         * mini-ia64.c: Ongoing IA64 work.
17501
17502 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
17503
17504         * mini-ia64.c: Ongoing IA64 work.
17505
17506         * driver.c: Clean up jit_code_hash as well when using --regression.
17507
17508         * inssel-long.brg: Fix long->i4/u4 conversion rules.
17509
17510         * basic-long.cs: Add tests for long->u4 conversion.
17511
17512 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
17513
17514         * mini.c: Take mono_get_domainvar out of macros. This makes sure
17515         that we do not depend on undefined C behavior: the order stuff
17516         gets evaluated within an expression. Fixes mono when compiled on
17517         GCC 4.
17518
17519 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
17520
17521         * *-ia64.*: Ongoing IA64 work.
17522
17523         * aot.c: Lower memory usage while loading AOT methods.
17524
17525         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
17526
17527         * mini.h: Bump AOT file format version.
17528
17529 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
17530
17531         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
17532
17533 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
17534
17535         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
17536         not on callee assembly). Fixed some comments.
17537
17538 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
17539
17540         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
17541         it gets proper disassembly.
17542         (emit_method_info): Remove some dead code.
17543
17544         * mini.c (mini_method_compile): Allways allocate the GOT var in
17545         mono_method_to_ir for emulating opcodes.
17546
17547 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
17548
17549         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
17550         before freeing the code memory. Fixes #74990.
17551
17552         * objects.cs: Add regression test for #74992.
17553
17554         * liveness.c: Extend live ranges of arguments to the beginning of the
17555         method. Fixes #74992.
17556
17557         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
17558         so it points into the faulting instruction.
17559
17560 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
17561
17562         * jit-icalls.c (mono_imul_ovf): Add exception handling.
17563
17564         * *-ia64.*: Ongoing IA64 work.
17565
17566         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
17567
17568 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
17569
17570         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
17571
17572         * *-ia64.*: Ongoing IA64 work.
17573
17574 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
17575
17576         * basic-long.cs: Add tests for add/sub.ovf.
17577
17578         * basic.cs: Add tests for sub.ovf.
17579
17580         * *-ia64.*: Ongoing IA64 work.
17581
17582 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
17583
17584         * *-ia64.*: Ongoing IA64 work.
17585
17586         * basic.cs: Add conv.ovf.i4.un test.
17587
17588 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
17589
17590         * mini.c: (remove_block_if_useless) Fixed bug 75061.
17591         
17592 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17593
17594         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
17595
17596 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
17597
17598         * *-ia64.*: Ongoing IA64 work.
17599
17600 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17601
17602         * trace.[ch]:
17603         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
17604
17605 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
17606
17607         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
17608
17609 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
17610
17611         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
17612
17613         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
17614         of a call is callable by a near call.
17615
17616 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
17617
17618         * mini-ia64.c: Ongoing IA64 work.
17619
17620 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
17621
17622         * genmdesc.c: Make the generated array non-static.
17623
17624         * inssel-long.brg: Fix LSHR_IMM rule.
17625
17626         * *-ia64.*: Ongoing IA64 work.
17627
17628         * *-ia64.*: Ongoing IA64 work.
17629
17630 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
17631
17632         * *-ia64.*: Ongoing IA64 work.
17633
17634         * *-ia64.*: Ongoing IA64 work.
17635         
17636         * mini-ia64.c: Ongoing IA64 work.
17637
17638         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
17639
17640 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
17641
17642         * objects.cs basic-calls.cs: Move some tests to objects.cs.
17643         
17644         * objects.cs basic-long.cs: Move some tests to objects.cs.
17645
17646 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
17647
17648         * *-ia64.*: Ongoing IA64 work.
17649
17650         * iltests.il: Add a new test.
17651
17652         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
17653         newobj. Fixes #75042.
17654
17655 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
17656
17657         * *-ia64.*: Ongoing IA64 work.
17658         
17659         * *-ia64.*: Ongoing IA64 work.
17660         
17661         * *-ia64.*: Ongoing IA64 work.
17662
17663         * basic.cs objects.cs: Move tests accessing static variables as well.
17664
17665         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
17666
17667 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
17668
17669         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
17670
17671         * driver.c: Always print failed tests.
17672
17673         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
17674         frame pointer.
17675
17676         * *ia64*: Ongoing IA64 work.
17677
17678 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
17679
17680         * basic.cs: Add tests for add.ovf. Fix warnings.
17681
17682 2005-05-18  Miguel de Icaza  <miguel@novell.com>
17683
17684         * driver.c (mono_main): Avoid crash if no argument is passed to
17685         --break;  Do not use g_error, but f_printf.   And fix all other
17686         ocurrences of the same crash.
17687
17688 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
17689
17690         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
17691         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
17692         Fixes #74742.
17693
17694 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
17695
17696         * *-ia64.*: Add beginnings of IA64 backend.
17697
17698         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
17699
17700 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
17701
17702         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
17703         Fixes #74925.
17704
17705         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
17706
17707         * mini-amd64.c: Fix a warning.
17708
17709 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
17710
17711         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
17712         in float_neg. Fixes #74897.
17713
17714         * mini-amd64.c (emit_call): Fix another near call bug.
17715
17716 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
17717
17718         * declsec.c: Keep the appdomain information in the structure. Added a 
17719         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
17720         value gets overwritten).
17721         * declsec.h: Set the default MonoArray for the the stack to 6. Added
17722         an MonoAppDomain member to MonoSecurityFrame.
17723         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
17724         used in the stack walk. Now use a MonoArray which grow (double) when
17725         it gets full.
17726
17727 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
17728
17729         * mini.c: Re-enabled runtime cleanup, since running threads should
17730         now properly stop when exiting.
17731
17732 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
17733
17734         * mini-codegen.c: New file contaning the arch-independent local
17735         register allocator. Not used by any architectures yet.
17736
17737         * mini.h linear-scan.c: Merge some changes from the 
17738         mini-xp-local-regalloc branch.
17739
17740 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
17741
17742         * mini-amd64.c (emit_call): Fix calls to native functions when the
17743         runtime is compiled as a shared library. Fixes #74756.
17744
17745         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
17746         on a literal field. Fixes #74751.
17747
17748 2005-04-25  Raja R Harinath  <rharinath@novell.com>
17749
17750         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
17751
17752 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
17753
17754         * objects.cs: Add missing null casting test.
17755
17756 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
17757
17758         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
17759         in wrapper methods. Also rename 'address' variable to 'offset'.
17760
17761 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
17762
17763         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
17764         warnings.
17765         
17766         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
17767
17768         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
17769         work on windows.
17770
17771 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
17772
17773         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
17774
17775 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
17776
17777         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
17778         just the last bytes.
17779
17780 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
17781
17782         * aot.c (mono_compile_assembly): Fix warning.
17783
17784         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
17785         by the _MSC_VER stuff.
17786
17787 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
17788
17789         * inssel-long.brg: Fix #74588.
17790
17791         * cpu-amd64.md: Fix #74591.
17792
17793         * iltests.il: Add new regression tests.
17794
17795 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
17796
17797         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
17798         valuetype.
17799
17800 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
17801
17802         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
17803
17804         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
17805         from Bill Middleton <flashdict@gmail.com>.
17806
17807 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
17808
17809         * arrays.cs: Add new regression test. Fix warnings.
17810
17811 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
17812
17813         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
17814         and leakage in CKFINITE.
17815
17816         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
17817         this to a null op since it is called on amd64 too.
17818
17819         * exceptions-amd64.c (get_throw_trampoline): Align stack.
17820
17821         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
17822         body since this is not used on amd64.
17823         
17824         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
17825
17826         * mini-amd64.c: Remove obsolete fixmes.
17827
17828         * mini.c (print_method_from_ip): Fix debugging support.
17829
17830 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
17831
17832         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
17833         so that expressions that don't give much gain are not reduced.
17834         * ssapre.h: Likewise.
17835
17836 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
17837
17838         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
17839
17840         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
17841
17842         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
17843
17844 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
17845
17846         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
17847
17848         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
17849
17850 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
17851
17852         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
17853         stack touching.
17854
17855         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
17856
17857         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
17858
17859         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
17860
17861         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
17862         MONO_ARCH_USE_SIGACTION. Fixes #74252.
17863
17864         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
17865
17866         * mini-x86.c: Fix up stack overflow handling.   
17867
17868         * exceptions.cs: Add new regression test.
17869
17870 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
17871
17872         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
17873         mono_jit_thread_attach.
17874
17875         * mini.c (mono_method_to_ir): Verify called method is not abstract.
17876
17877 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
17878
17879         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
17880         avoid calling constructors using callvirt.
17881
17882         * inssel.brg: Fix #74073.
17883
17884 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
17885
17886         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
17887         compilation with non-GCC compilers.
17888         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
17889         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
17890
17891 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
17892
17893         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
17894         klass->interface_offsets (will likely fix bug#74073).
17895
17896 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
17897
17898         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
17899
17900 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
17901
17902         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
17903         to amd64_div_reg_size ().
17904         
17905         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
17906
17907 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
17908
17909         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
17910
17911 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
17912
17913         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
17914
17915 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
17916
17917         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
17918         
17919         * mini.c (mono_precompile_assembly): Load and precompile referenced
17920         assemblies as well. Fixes #74015.
17921
17922 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
17923
17924         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
17925
17926 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
17927
17928         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
17929         a lot of checks and (anyway) permissions cannot work until corlib is 
17930         loaded.
17931
17932 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
17933
17934         * mini-ppc.c: fixed ABI issue on sysv/ppc.
17935
17936 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
17937
17938         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
17939         calls (fixes bug#72824).
17940
17941 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
17942
17943         * mini.c: fix tail recursion elimination (see test in bug#73936).
17944
17945 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
17946
17947         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
17948         some fp functions in sse2 mode.
17949
17950 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
17951
17952         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
17953
17954 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
17955
17956         * mini.h mini.c: Add mono_get_jit_tls_key ().
17957
17958         * mini-x86.c: Enable fast TLS support on windows.
17959
17960 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
17961
17962         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
17963         * mini.c: Check for p/invoke method when generating code. If a
17964         p/invoke method, or it's class, isn't decorated with [Suppress
17965         UnmanagedCodeSecurity] then generate code to call System.Security.
17966         UnmanagedDemand (only if the security manager is active).
17967
17968 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17969
17970         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
17971         last change as it seems to cause strange crashes.
17972         
17973 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
17974
17975         * *.c: handle unsafe function pointers where needed.
17976
17977 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17978
17979         * mini.c (mono_jit_free_method): Remove the fixme too.
17980
17981 2005-03-15  Miguel de Icaza  <miguel@novell.com>
17982
17983         * mini.c: As discussed, make the code actually free the delegate
17984         thunk now, to enable the debugging of delegate problems, use
17985         MONO_DEBUG=1 when running Mono. 
17986
17987         This takes also care of parts of the leaks as seen by Joe.
17988
17989 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
17990
17991         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
17992         thread_tls_offset calculation.
17993
17994 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
17995
17996         * declsec.c: Reworked linkdemand checks for icall. The previous code
17997         was using the declaration code (untrusted) and didn't work as expected
17998         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
17999         specific case.
18000
18001 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
18002
18003         * iltests.il: Add new localloc test.
18004
18005         * mini-amd64.c: Handle large stack allocations the same way as on
18006         windows if stack overflow handling is working.
18007         
18008         * mini-amd64.c: Allocate the signal stack using mmap.
18009
18010         * mini.c (sigsegv_signal_handler): Fix reading of context.
18011
18012         * mini-exceptions.c: Fix up stack overflow handling.
18013
18014         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
18015
18016         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
18017
18018         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
18019
18020         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
18021
18022         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
18023         tramp_init functions as they are no longer needed.
18024
18025 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
18026
18027         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
18028         
18029         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
18030
18031         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
18032         
18033         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
18034         support that now.
18035
18036         * mini-ops.h: Add OP_LMUL_IMM.
18037
18038         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
18039         long mul/div opcodes as intrinsic.
18040
18041         * mini-amd64.c (emit_call): Handle the case when the callee might be
18042         an AOT method.
18043
18044 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
18045
18046         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
18047         extra safe.
18048         
18049         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
18050
18051         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
18052
18053 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
18054
18055         * mini.c (mono_codegen): Don't leak here, to help people running
18056         monogrind.
18057
18058 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
18059
18060         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
18061         conversions in sse2 mode.
18062
18063         * basic-float.cs: Add regression test.
18064         
18065         * mini-amd64.c: Reenable sse2.
18066
18067 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
18068
18069         * mini-amd64.c: Disable sse2 until some regressions are fixed.
18070
18071 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
18072
18073         * driver.c: Copyright text should include 2005.
18074         
18075 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
18076
18077         * cpu-amd64.md (load_membase): Fix more max lengths.
18078
18079 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
18080
18081         * cpu-amd64.md (load_membase): Fix max length.
18082
18083         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
18084
18085         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
18086
18087         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
18088         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
18089
18090         * basic-float.cs: Add rounding regression test.
18091
18092         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
18093
18094 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
18095
18096         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
18097         structures in registers for pinvoke wrappers.
18098
18099 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
18100
18101         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
18102
18103 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
18104
18105         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
18106         wrapper to mono_jit_thread_attach.
18107
18108         * mini.c (mini_jit_thread_attach): New jit icall.
18109
18110         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
18111         native->managed wrappers.
18112
18113         * exceptions.cs: Add new regression test.
18114
18115         * mini.c (optimize_branches): Check regions in the cbranch to throw
18116         block case as well. Fixes #73242.
18117
18118 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18119
18120         * mini.c: thread safety fixes.
18121
18122 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
18123
18124         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
18125         patching stuff, since delegates use jump trampolines so there is
18126         no caller.
18127
18128         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
18129         jump trampolines.
18130         
18131         * tramp-amd64.c: Fix build.
18132
18133         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
18134         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
18135
18136         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
18137         Rename this to mono_arch....
18138         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
18139
18140         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
18141
18142         * mini-amd64.c (emit_call): If both the caller and the callee is
18143         guaranteed to have 32 bit addresses, emit a normal call.
18144
18145         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
18146
18147         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
18148         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
18149         method_ptr inside delegates.
18150
18151 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
18152
18153         * mini.c (mono_jit_free_method): Free the method info even if the native code is
18154         invalidated. Fixes #73001.
18155
18156         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
18157
18158         * mini-x86.c: Only use stdcall for pinvokes on windows.
18159
18160 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
18161
18162         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
18163         * mini-x86.c: remove unreliable __thread var offset detection,
18164         use the correct accessors and enable by default.
18165
18166 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
18167
18168         * mini.c (mono_jit_free_method): Fix memory leak.
18169
18170 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
18171
18172         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
18173
18174 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
18175
18176         * cpu-amd64.md: Fix lengths of atomic opcodes.
18177
18178 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
18179
18180         * driver.c: try to not imply using ICU is any good.
18181
18182 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
18183
18184         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
18185         functions as inline ops.
18186
18187         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
18188         some Interlocked functions as inline ops.
18189
18190         * mini.c (move_basic_block_to_end): Fix bug in last patch.
18191
18192         * mini.h (MonoBasicBlock): Reorganize fields a bit.
18193
18194         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
18195
18196         * mini.c: Add support for OP_NOT_TAKEN.
18197
18198         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
18199         structures in registers for pinvoke wrappers.
18200
18201         * mini-amd64.c: Fix warnings.
18202
18203 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
18204
18205         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
18206
18207         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
18208
18209         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
18210         address instead of loading the address from it.
18211
18212         * mini-x86.c: Add support for returning small structs in registers
18213         on Win32. Fixes part of #70864.
18214         
18215 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
18216
18217         * trace.c (get_token): Improve error checking.
18218
18219 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
18220
18221         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
18222
18223 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
18224  
18225         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
18226         it can be reused for MonoClass.
18227         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
18228         _LINKDEMAND.
18229
18230 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
18231
18232         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
18233         instead of a MonoReflectionMethod. The method information wasn't used
18234         when displaying SecurityException details (but will be now).
18235
18236 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
18237
18238         * Makefile.am : windows build fix.
18239
18240 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
18241
18242         * iltests.il: Add new regression test.
18243
18244         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
18245         #72522.
18246
18247 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
18248  
18249         * mini.c: Moved linkdemand check into helper function check_linkdemand
18250         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
18251         LDFTN, LDVIRTFTN).
18252
18253 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
18254
18255         * declsec.c: Added statistics counter for different kinds of 
18256         LinkDemands.
18257         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
18258         (and commented) declaration.
18259         * mini.c: Added statistics counter for security Demand code 
18260         generation. Added display of security statistics.
18261
18262 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
18263
18264         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
18265         Fix compilation errors under gcc-2.95.
18266
18267 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
18268
18269         * mini.c, driver.c: Use the new jit trampoline hashtable
18270
18271 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
18272
18273         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
18274
18275 2005-02-11  Martin Baulig  <martin@ximian.com>
18276
18277         * debug-mini.c (mono_debug_close_method): Free the line number array.
18278
18279 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
18280
18281         * aot.c: Break up large methods into smaller ones. Share GOT slots for
18282         icalls.
18283
18284         * mini.h: Bump AOT file format version. 
18285
18286 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
18287
18288         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
18289         APTC and P/Invoke.
18290         * declsec.h: Added macros to get/set lazyly initialized security 
18291         informations about assemblies. Added new enum for different type of
18292         possible LinkDemand violation. Added function to check LinkDemands.
18293         * mini.h: Added a field to MonoCompile to hold any security violation
18294         detected when JITting a method (so it can be thrown later).
18295         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
18296         and CEE_CALLVIRT. Added code to throw exception at the end of
18297         mini_method_compile (note: the exception is unhandled right now).
18298
18299 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
18300
18301         * mini.c, jit-icalls.c: use the managed implementation of
18302         memset for initobj and memset, to avoid managed <-> unmanaged
18303         transitions.
18304
18305 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
18306
18307         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
18308         optimization if it would need a GOT var.
18309
18310         * basic.cs: Add tests for constant propagation and switch statements.
18311
18312         * ssa.c: Fix out-of-range constant propagation and switch statements.
18313
18314 2005-02-09    <vargaz@freemail.hu>
18315
18316         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
18317
18318 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
18319
18320         * cpu-amd64.md (load_membase): Fix max length of load_membase.
18321
18322 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
18323
18324         * mini.c: update to new signature of mono_class_get_allocation_ftn().
18325
18326 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
18327
18328         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
18329         arithmetic operations.
18330
18331 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
18332
18333         * mini-ppc.c: add a workaround for broken user code that
18334         DllImports vararg functions with non-vararg signatures.
18335
18336 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
18337
18338         * mini.c (mono_jit_compile_method_inner): Add detection and a 
18339         meaningfull error message for assemblies written in Managed C++.
18340
18341         * tramp-amd64.c mini-amd64.h: Add support for 
18342         create_trampoline_from_token ().
18343
18344         * aot.c mini-x86.c abcremoval.c: Applied patch from
18345         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
18346
18347 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
18348
18349         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
18350         which takes a MonoImage/token as parameter instead of a MonoMethod.
18351
18352         * aot.c: Use the new trampoline for initializing vtables.
18353
18354         * aot.c: Add support for ldfld/stfld_remote wrappers.
18355
18356         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
18357         rules for compare <MEM>, IMM.
18358
18359         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
18360
18361         * aot.c: Handle inherited finalizers correctly.
18362
18363 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
18364
18365         * inssel.brg (stmt): Add a missing _setup_... ().
18366
18367         * aot.c: Save some parts of the class state to the AOT file and use it
18368         to recompute that state when a class is initialized.
18369
18370         * mini.c: Install AOT hooks into the runtime.
18371
18372         * mini.h: Bump AOT file format version.
18373         
18374         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
18375         Fixes #72148.
18376
18377         * iltests.il: Add new test.
18378
18379 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
18380
18381         * mini.c: fix typo.
18382
18383 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
18384
18385         * mini.c: setup the statistical profiler in the thread attach
18386         callback to cope with the new single thread code.
18387
18388 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
18389
18390         * mini-ppc.c: ensure we have enough room for the profiler
18391         calls (fixed bug#72084).
18392
18393 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
18394
18395         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
18396         it.
18397
18398 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
18399
18400         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
18401
18402 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
18403
18404         * ssapre.c: Fixed an issue with down safety (this allows IronPython
18405         to succesfully execute parrotbench).
18406         * ssapre.h: Likewise.
18407
18408 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
18409
18410         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
18411         variable for stores to method arguments (fixes a SSAPRE issue).
18412
18413 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18414
18415         * mini.c: handle value types in dup, fixes gen-112.cs.
18416
18417 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
18418
18419         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
18420         sequence for calls in dynamic methods to avoid thunks.
18421
18422 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
18423
18424         * mini.c: correctly remove dynamic methods from the hashtable.
18425
18426 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18427
18428         * driver.c: Disabled SSAPRE until fix the bug that appears
18429         in IronPython's parrotbench.
18430
18431 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
18432
18433         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
18434
18435         * mini.c (mono_method_to_ir): Revert the previous change.
18436         
18437         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
18438         when AOT compiling.
18439
18440         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
18441         mono_jit_info_table_find () etc. when running under valgrind.
18442
18443         * inssel.brg: Fix warnings.
18444
18445         * mini-exceptions.c: Fix warnings.
18446
18447 2005-01-31  Martin Baulig  <martin@ximian.com>
18448
18449         * driver.c (compile_all_methods_thread_main): Don't try to compile
18450         generic methods or anything which has type parameters.
18451
18452 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
18453
18454         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
18455
18456         * TestDriver.cs: Add --verbose flags.
18457
18458         * graph.c ssa.c: Fix 64 bit warnings.
18459         
18460         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
18461         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
18462         Fix 64 bit warnings.
18463
18464         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
18465         variable not spotted by gcc.
18466         
18467         * mini-amd64.c inssel-amd64.brg: Applied patch from  
18468         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
18469         X86_COMPARE_MEMBASE opcodes.
18470
18471         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
18472
18473 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
18474
18475         * *: MonoMethod->signature might be NULL now. You *MUST* use
18476         mono_method_signature.
18477
18478 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
18479
18480         * driver.c (compile_all_methods_thread_main): Compile the methods
18481         without invoking cctors.
18482
18483 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18484
18485         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
18486         * basic-calls.cs: test for the above.
18487
18488 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
18489
18490         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
18491         MonoJitInfo changes.
18492
18493 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
18494
18495         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
18496         eagerly if it contains dynamic methods.
18497         
18498         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
18499
18500         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
18501         trace, it is now computed by an icall from trace_ips.
18502         
18503         * mini-exceptions.c: Fix a warning.
18504
18505 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
18506
18507         * mini-exceptions.c: don't bother getting stack trace info if
18508         it's not going to be used.
18509
18510 2005-01-27  Raja R Harinath  <rharinath@novell.com>
18511
18512         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
18513         ssapre-mini-ops.h.
18514
18515 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
18516
18517         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
18518
18519         * aot.c: Avoid calling mono_method_get_header () if not needed.
18520
18521         * mini.h: Bump AOT file format version.
18522         
18523         * mini.c (mono_emit_native_call): Allocate a GOT var here.
18524
18525         * mini.c (mono_print_tree): Print more info for calls.
18526
18527 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
18528
18529         * declsec.h: Remove warning by adding missing include for marshal.h
18530
18531 2005-01-26  Martin Baulig  <martin@ximian.com>
18532
18533         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
18534         `ip' twice.
18535
18536 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
18537
18538         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
18539         flags.
18540
18541         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
18542
18543         * aot.c (mono_compile_assembly): Fix a warning.
18544
18545 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
18546
18547         * declsec.c: Look for security attributes on the original MonoMethod 
18548         (and not the wrapped one). This fix permissions on icalls.
18549
18550 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
18551
18552         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
18553
18554         * mini.c (mono_allocate_stack_slots): Add a fixme.
18555
18556         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
18557
18558 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
18559
18560         * inssel.brg: optimize casts of sealed types (more
18561         optimizations waiting for fixes in remoting).
18562
18563 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
18564
18565         * inssel.brg (stmt): Add another dummy rule.
18566
18567         * driver.c: Fix warnings.
18568
18569         * driver.c (mono_main): If running under valgrind, instruct glib to use
18570         the system allocation functions so valgrind can track the memory
18571         allocated by the g_... functions.
18572
18573         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
18574
18575         * mini-ops.h: Add OP_DUMMY_STORE opcode.
18576
18577         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
18578
18579         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
18580         variables in try regions.
18581
18582         * mini.c (mini_method_compile): Don't disable optimizations on large
18583         methods when AOT compiling.
18584
18585         * mini.c (mono_allocate_stack_slots): New arch independent method to 
18586         allocate stack slots. Not yet used.
18587
18588 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
18589
18590         * debug-mini.c (mono_debug_close_method): Plug some leaks.
18591
18592 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
18593
18594         * mini-ppc.c: make the branch info relative as the code
18595         buffer can be reallocated.
18596
18597 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
18598
18599         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
18600         * driver.c: Removed the AOT/security restriction. Now initialize the
18601         security manager (in metadata) if --security is used.
18602         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
18603         rather than the pointer to declarative security, when AOT is used.
18604
18605 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
18606
18607         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
18608         basic blocks, reduced intrinsic exception throwing code size.
18609
18610 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
18611
18612         * driver.c (mini_usage): Reorder the usage screen.
18613
18614 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
18615
18616         * mini.c (mono_resolve_patch_target): Fix warning.
18617
18618 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
18619
18620         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
18621         previous patch.
18622
18623         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
18624
18625         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
18626         breaks the amd64 build.
18627
18628         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
18629         register allocation. Fixes #71454.
18630
18631         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
18632
18633         * arrays.cs: Add new regression test.   
18634
18635 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18636
18637         * ssapre.c: Turned usage of snprintf to GString.
18638         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
18639         (I left it on by mistake in my previous commit).
18640
18641 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
18642
18643         * mini.c, cfold.c, basic-calls.cs: preserve side effects
18644         on cond branch optimization (fixes bug# 71515).
18645
18646 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18647
18648         * abcremoval.c: Fixed bug 71062.
18649         * abcremoval.h: Likewise.
18650
18651 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
18652
18653         * mini.c: Added a new functionality to optimize_branches, the removal
18654         of useless basic blocks, and fixed some problem in the removal of
18655         critical edges; some utility functions added for both purposes.
18656         * ssapre.c: Added complex expression support, and fixed bug 70637.
18657         * ssapre.h: Likewise.
18658         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
18659         enabled in SSAPRE.
18660         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
18661         * driver.c: Re-enabled SSAPRE.
18662
18663 2005-01-19  Martin Baulig  <martin@ximian.com>
18664
18665         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
18666         the result of mono_get_method_constrained().
18667
18668 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
18669
18670         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
18671         manager.
18672
18673 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
18674
18675         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
18676         be detected.  Fixes #59296.
18677
18678 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18679
18680         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
18681         which can happen. Fixes #71361.
18682
18683 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18684
18685         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
18686         manager.
18687
18688 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18689
18690         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
18691         appdomain-unload.exe to fail.
18692         
18693         * mini.c: Fix some memory leaks.
18694
18695 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
18696
18697         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
18698         Fixed bug and sped up some codepaths.
18699
18700 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18701
18702         * mini.c: Fix some memory leaks.
18703
18704         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
18705         conversion.
18706
18707         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
18708
18709         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
18710         #71320.
18711
18712         * iltests.il: Add regression test for #71320.
18713
18714 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
18715
18716         * mini.c (mono_codegen): Fix installation of profiler hooks.
18717
18718         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
18719
18720 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
18721
18722         * mini.h, mini.c, cfold.c: optimize access to enum
18723         readonly fields, too. Eval conditional branches if possible
18724         to perform unreachable code removal in more cases.
18725
18726 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
18727
18728         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
18729
18730         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
18731         code manager.
18732
18733         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
18734         WinXP DEP. Fixes #71244.
18735
18736 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
18737
18738         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
18739
18740 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
18741
18742         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
18743
18744 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18745
18746         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
18747         changes.
18748
18749         * mini.h: Bump AOT version.
18750
18751         * mini.h (MonoCompile): Change exvar to a hash table.
18752
18753         * mini.c: Allocate a separate exvar for each handler block.
18754
18755         * mini.c: Get rid of the computation of filter_lengths, its not needed.
18756
18757         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
18758         ex var with the pending exception and only throw if the two are equal.
18759         Fixes #68552.
18760         
18761         * exceptions.cs: Add tests for rethrow and nested catch clauses.
18762
18763         * mini-x86.c: Fix warnings.
18764
18765         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
18766         used by all the ports now.
18767
18768         * aot.c: Add write-symbols and save-temps options.
18769
18770 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
18771
18772         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
18773
18774 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
18775
18776         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
18777         operations.
18778
18779         * tramp-s390.c: Check vtable slot belongs to the domain.
18780
18781         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
18782         as per other platforms.
18783
18784         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
18785
18786 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
18787
18788         * driver.c: we don't run the Main() code in a subthread anymore.
18789
18790 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
18791
18792         * mini.c: added experimental rtc support in the statistical
18793         profiler: if the user has the permission, more accurate statistics
18794         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
18795         The MONO_RTC value must be restricted to what the linux rtc allows:
18796         power of two from 64 to 8192 Hz.
18797
18798 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
18799
18800         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
18801
18802 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
18803
18804         * mini-ppc.c: better icache flush for smp.
18805
18806 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
18807
18808         * mini-amd64.c (emit_move_return_value): Fix memory leak.
18809
18810         * mini-x86.c (get_call_info): Add the get_call_info () code from the
18811         amd64 port, not yet used.
18812
18813 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18814
18815         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
18816         a struct type.
18817
18818 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
18819
18820         * driver.c: Added --security option to activate the security manager.
18821         Right now this will allow code generation for declarative demands and
18822         is disabled when AOT is specified.
18823         * mini.c: Add code generation for declarative security demands.
18824         * mini.h: Add mono_use_security_manager as an extern gboolean.
18825
18826 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18827
18828         * aot.c (mono_compile_assembly): Speed up compilation a bit by
18829         emitting more dense assembly code.
18830
18831         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
18832         exception throwing stuff.
18833
18834 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
18835
18836         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
18837         dead code.
18838
18839         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
18840         left in by mistake.
18841
18842         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
18843         fixed.
18844
18845         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
18846
18847         * tramp-*.c: Only patch vtable slots if the object is in the current
18848         domain. Fixes appdomain-unload.exe.
18849
18850         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
18851         
18852         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
18853         x86 branch.
18854
18855 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18856
18857         * mini.c (reverse_branch_op): New helper function.
18858
18859         * mini.c (optimize_branches): Run the new optimization only on 
18860         platforms which support it. Also reverse all kinds of branches.
18861
18862         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
18863
18864         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
18865         a throw statement.
18866
18867         * mini.c (optimize_branches): Reverse not-equals branches if the false
18868         bblock is a throw. This happens a lot of time with argument checking in
18869         corlib.
18870
18871         * mini.c (mono_codegen): Add support for placing basic blocks after
18872         the function epilogue.
18873
18874         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
18875         function epilogue.
18876         
18877 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
18878
18879         * mini.c (setup_stat_profiler): Only set this up if the platform
18880         supports ITIMER_PROF.
18881
18882 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18883
18884         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
18885         previous patch.
18886
18887         * inssel.brg: Fix a warning.
18888
18889 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
18890
18891         * mini.c: added support for statistical profiler 
18892         (run with: --profile=default:stat).
18893
18894 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
18895
18896         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
18897
18898         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
18899
18900         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
18901         related to global registers from the amd64 port.
18902
18903 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
18904
18905         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
18906
18907         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
18908         with global registers.
18909         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
18910
18911         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
18912
18913 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
18914
18915         * debug-mini.c (encode_value): Fix off-by-one.
18916
18917         * aot.c (encode_value): Likewise.
18918
18919         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
18920
18921 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
18922
18923         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
18924         AOT.
18925
18926         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
18927         
18928         * aot.c (emit_method_info): Increase size of temp buffer.
18929
18930         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
18931         the AOT case.
18932
18933 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18934
18935         * aot.c (emit_method_info): Fix build.
18936         
18937         * aot.c: Further rework of the AOT file format to reduce the size of
18938         the method info data.
18939
18940         * mini.h: Bump AOT file format version.
18941
18942 2004-12-27  Martin Baulig  <martin@ximian.com>
18943
18944         * mini.c (mini_get_method): New static method; call
18945         mono_get_method_full() and mono_get_inflated_method().
18946         (mono_method_to_ir): Use mini_get_method() instead of
18947         mono_get_method_full(). 
18948
18949 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
18950
18951         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
18952
18953 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
18954
18955         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
18956
18957         * inssel-amd64.brg: Add some optimization rules.
18958
18959 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
18960
18961         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
18962         standard not GC'd stuff is fine.
18963
18964 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
18965
18966         * aot.c: Rework the AOT file format to get rid of most of the global
18967         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
18968
18969         * mini.h: Bump AOT file format version.
18970         
18971 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
18972
18973         * mini.h: Bump AOT file format version.
18974
18975         * aot.c (mono_aot_is_got_entry): New function to determine if an 
18976         address is inside a GOT.
18977
18978         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
18979
18980         * cpu-pentium.md: Increase the maximum size of some instructions which
18981         might involve a got access.
18982         
18983         * mini.c (get_method_from_ip): Another debug helper function.
18984
18985         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
18986         when got var accesses are created during the decompose phase.
18987
18988         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
18989
18990         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
18991         argument mini_compile_method and to MonoCompile, and use this to
18992         determine whenever a given method is compiled for AOT. This allows the
18993         other methods compiled during AOT compilation to be free of AOT stuff,
18994         so the backends does not need to add special support for them by
18995         creating a fake GOT etc.
18996
18997         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
18998         longer needed.
18999
19000 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
19001
19002         * mini.c (mono_method_to_ir): It turns out that some of the
19003         x-appdomain wrappers are lax with types, so just ignore this for
19004         all wrappers.
19005
19006         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
19007         at the vtable->klass. If it is non-shared code we can just use the
19008         vtable.
19009
19010 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
19011
19012         * mini-ppc.c: access MonoDomain from tls, too.
19013
19014 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
19015
19016         * declsec.c: Removed unused variable (and related warning ;-)
19017
19018 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
19019
19020         * iltests.il: New test for LDELEMA on an array of ref types.
19021
19022         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
19023         all ldelema's on reftypes.
19024         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
19025         it was the wrong place to put it.
19026
19027         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
19028         register to pop to make this cleaner, at the request of Paolo.
19029
19030 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
19031
19032         * mini-ops.h (OP_GETHASHCODE): New op.
19033
19034         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
19035
19036         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
19037         operation.
19038
19039         For a microbenchmark, this reduces the cost of Hashtable.get_Item
19040         by 25%.
19041         
19042         * mini-x86.c (mono_arch_output_basic_block): Rather than
19043
19044         add ebp, 4
19045
19046         Emit
19047
19048         pop edx
19049
19050         The first is 3 bytes while the second is 1. This saves 36 kb on
19051         mscorlib, quite a big saving. When bootstraping mcs, I was able to
19052         see a small boost because of icache locality.
19053
19054         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
19055
19056 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
19057
19058         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
19059         started code sharing with the generic code.
19060
19061 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
19062
19063         * mini-ppc.c, cpu-g4.md: added code for direct access to
19064         tls data slots.
19065
19066 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
19067
19068         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
19069          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
19070         to OP_TLS_GET.
19071
19072 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
19073
19074         * declsec.c|h: Added functions to cache the declarative stack modifiers
19075         in MonoJitInfo and to create a security frame from a MonoJitInfo 
19076         structure.
19077         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
19078         created. Register internal calls for System.Security.SecurityFrame::
19079         _GetSecurityFrame and _GetSecurityStack.
19080         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
19081         the definitions for the new stack walk/callback mechanism.
19082         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
19083         first security frame for LinkDemands and InheritanceDemands) and
19084         GetSecurityStack for Demands. Both use the new mono_walk_stack code
19085         from lupus.
19086         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
19087         walk initialization (lupus).
19088
19089 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
19090
19091         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
19092         idiom.
19093         (handle_loaded_temps): Do not create a temporary variable for
19094         things that we know are temps. They will never be modified.
19095         (mono_spill_call): Set MONO_INST_IS_TEMP
19096         (mono_emulate_opcode): ditto
19097         (emit_tree): ditto
19098         (mono_method_to_ir.CEE_DUP): ditto
19099
19100 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
19101
19102         * mini.c (type_to_eval_stack_type): Make this handle the void type
19103         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
19104         (emit_tree): use ip_in_bb to special case some common idioms
19105         Update all callers to pass in the IP.
19106         (mono_method_to_ir): Make CEE_CALL* do the above as well.
19107
19108         This gives us a nice 2% speedup in mcs bootstrap.
19109
19110         * mini-x86.c (peephole_pass): Peephole pass to make
19111         mov  [foo], eax
19112         push [foo]
19113
19114         into
19115
19116         mov [foo], eax
19117         push eax
19118
19119         * mini.c (ip_in_bb): new method.
19120         (mono_method_to_ir): use this method rather than doing the hash
19121         lookup ourselves.
19122
19123         * linear-scan.c (mono_linear_scan): When expiring actives, you
19124         don't need to keep around variables that expire on this
19125         instruction. This makes it so that:
19126              a = b + 1
19127         will turn into:
19128              store (ebx add (ebx, 1))
19129         which will become
19130              add ebx, 1
19131
19132 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
19133
19134         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
19135         combination to avoid doing two copies. Fix up problems with previous
19136         patch.
19137
19138         * mini.c: Fix 64 bit warnings.
19139
19140         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
19141
19142 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
19143
19144         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
19145         changes from the x86 code.
19146
19147         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
19148
19149 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
19150
19151         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
19152         throwing code to reduce its size, unify the AOT and non-aot code and 
19153         get rid of relocations in the AOT case.
19154
19155         * mini-x86.h mini.c exceptions-x86.c 
19156         (mono_arch_get_throw_corlib_exception): New arch specific function to 
19157         raise corlib exceptions which doesn't require relocations in the 
19158         caller.
19159
19160         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
19161
19162 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
19163
19164         * mini.c (mono_emit_method_call): Only allocate the got var when it is
19165         needed.
19166
19167         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
19168         in the AOT case.
19169
19170 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
19171
19172         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
19173         with add function when used from Inc/dec atomic 
19174         functions. Re-enabled optimization on x86.
19175         * mini-ops.h: renamed atomic_add functions to
19176         allow _add to match the Interlocked::Add and
19177         _add_next to match Interlocked::Inc/Dec.
19178
19179 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
19180
19181         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
19182         linking of BBs to the end BB, and enabled SSAPRE also with
19183         consprop and copyprop (which was prevented by that bug).
19184
19185 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
19186
19187         * mini-x86.c: disabling the Interlocked optimizing code. 
19188
19189 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
19190
19191         * aot.c (load_aot_module): Move reading of got_addr after the AOT
19192         file version check.
19193         
19194 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
19195
19196         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
19197         interlocked optimization due lack of support on x86, rewrote 
19198         exchange to take into account that base may be in eax.
19199         
19200         xsp works again; activated Interlocked optimizing code.
19201         
19202 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
19203
19204         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
19205
19206 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
19207
19208         * mini-ops.h: Add new opcodes.
19209
19210         * mini.h: Add new patch types. Add got_var to MonoCompile.
19211
19212         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
19213         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
19214         make it work with all kinds of patchable code.
19215
19216         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
19217         address of the GOT, and referencing entries in the GOT.
19218
19219         * mini.c: Add code to load the GOT address if needed by an opcode.
19220
19221         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
19222         independent AOT code on the x86 using an elf-style Global Offset Table.
19223
19224 2004-12-14  Raja R Harinath  <rharinath@novell.com>
19225
19226         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
19227
19228 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19229
19230         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
19231         when running xsp.
19232
19233 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
19234
19235         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
19236         of Interlocked:Increment/Decrement/Add as inline ops.
19237         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
19238
19239 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
19240
19241         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
19242         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
19243
19244 2004-12-12  Duncan Mak  <duncan@ximian.com>
19245
19246         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
19247         again. `patch_info->table_size' is no longer valid after Zoltan's
19248         commit #37636.
19249
19250 2004-12-12  Martin Baulig  <martin@ximian.com>
19251
19252         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
19253         if we are the "real" method, ie. not an inlined method inside it.
19254
19255 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
19256
19257         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
19258         before we look in the special fields table. This fixes
19259         ../tests/thread-static-init.cs.
19260
19261 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19262
19263         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
19264         for Array get_Rank and get_Length. Fixes bug #70465.
19265
19266 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
19267
19268         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
19269         separate structure to reduce the size of MonoJumpInfo.
19270
19271 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
19272
19273         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
19274
19275 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
19276
19277         * mini.c (mini_get_inst_for_method): Changed to allow ports
19278         to return a MonoInst instead of opcode 
19279         (renamed mini_get_opcode_for_method to better reflect the new functionality)
19280         
19281         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
19282         Allow ports to return a created MonoInst instead of op-code, will enable
19283         new optimizations.
19284         (renamed mini_get_opcode_for_method to better reflected the functionality)
19285
19286 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
19287
19288         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
19289
19290 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
19291
19292         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
19293         Fixes #69985.
19294
19295 2004-12-08  Martin Baulig  <martin@ximian.com>
19296
19297         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
19298         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
19299
19300 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
19301
19302         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
19303         correctly.
19304
19305         * exceptions.cs: Disable some tests which depend on properties of x86 fp
19306         arithmetic.
19307
19308 2004-12-08  Raja R Harinath  <rharinath@novell.com>
19309
19310         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
19311
19312 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
19313
19314         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
19315         bug introduced by the previous patch.
19316
19317 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
19318
19319         * mini-ppc.c, objectc.cs: handle large structs passed by value
19320         (fixes bug #69972).
19321
19322 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
19323
19324         * mini-ppc.c: OP_ARGLIST implementation from
19325         Geoff Norton  <gnorton@customerdna.com>.
19326
19327 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
19328
19329         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
19330         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
19331
19332 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
19333
19334         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
19335
19336 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19337
19338         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
19339         support.
19340
19341 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
19342
19343         * mini-sparc.c: Zero out localled-ed memory.
19344
19345         * iltests.il: Add tests for zeroing out localloc-ed memory.
19346
19347 2004-12-04  Martin Baulig  <martin@ximian.com>
19348
19349         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
19350         mono_method_get_signature_full().       
19351
19352 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
19353
19354         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
19355         and some utility functions (always for SSAPRE), integrated SSAPRE.
19356         * mini.h: Likewise.
19357         * driver.c: Added ssapre option.
19358         * ssa.c: Small fix on OP_ARG handling.
19359         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
19360         * Makefile.am: Likewise.
19361
19362 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
19363
19364         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
19365         now in the xp code.
19366
19367         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
19368         icall.
19369
19370 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19371
19372         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
19373         
19374         * cpu-s390.md : Increase instruction length of oparglist.
19375
19376         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
19377
19378 2004-11-30  Martin Baulig  <martin@ximian.com>
19379
19380         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
19381         virtual generic methods.  We call a special helper_compile_generic_method()
19382         icall to retrieve the method from the vtable, inflate and compile
19383         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
19384
19385         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
19386
19387 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
19388
19389         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
19390
19391 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
19392
19393         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
19394         Fixes #69929.
19395
19396 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
19397
19398         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
19399         platforms with PIC aot.
19400
19401 2004-11-28  Martin Baulig  <martin@ximian.com>
19402
19403         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
19404         Fixes gen-112.cs.
19405
19406 2004-11-28  Martin Baulig  <martin@ximian.com>
19407
19408         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
19409         the result of mono_type_get_underlying_type() to check whether
19410         we're byref.
19411
19412 2004-11-26  Martin Baulig  <martin@ximian.com>
19413
19414         * mini.c
19415         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
19416         in the g_assert().
19417
19418 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
19419
19420         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
19421         the same way as the other arguments so they won't get clobbered.
19422
19423         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
19424         calls through R11 since it is clobbered by the trampoline code.
19425
19426 2004-11-26  Raja R Harinath  <rharinath@novell.com>
19427
19428         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
19429         pick up in-tree mscorlib.dll.
19430
19431 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
19432
19433         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
19434
19435         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
19436         runtime data/code are now stored in a table similar to the GOT in ELF. 
19437         This allows the code itself to be position independent.
19438
19439         * aot.c: Fix loading of referenced assemblies after the lazy assembly
19440         loading changes.
19441
19442         * aot.c: Attach ELF type (object/function) directives to all global
19443         symbols.
19444
19445         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
19446
19447         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
19448
19449         * mini-amd64.h: Turn on PIC AOT code.
19450
19451         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
19452         returning the offset within an OP_AOTCONST instruction where the GOT
19453         offset needs to be added.
19454
19455         * mini.h: Bump AOT file format version.
19456
19457 2004-11-25  Martin Baulig  <martin@ximian.com>
19458
19459         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
19460         uninflated generic methods.
19461
19462 2004-11-25  Martin Baulig  <martin@ximian.com>
19463
19464         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
19465
19466 2004-11-24  Martin Baulig  <martin@ximian.com>
19467
19468         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
19469         original klass (this only applies for generic instances).
19470
19471 2004-11-24  Martin Baulig  <martin@ximian.com>
19472
19473         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
19474         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
19475         that array).
19476
19477 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
19478
19479         * mini.c (mono_method_to_ir): Disable inlining for methods containing
19480         localloc. Fixes #69678.
19481
19482         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
19483         
19484 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
19485
19486         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
19487         used SSE registers on pinvoke calls. Fixes #69774.
19488
19489 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
19490
19491         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
19492         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
19493
19494 2004-11-23  Raja R Harinath  <rharinath@novell.com>
19495
19496         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
19497         Refer directly to the mcs/ tree.
19498
19499 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19500
19501         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
19502         Check if a trampoline for a synchronized method is required. 
19503
19504 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
19505
19506         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
19507         with localloc if needed. Throe arithmetric exception in
19508         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
19509         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
19510
19511 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
19512
19513         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
19514         types before switching on type.  Fixes #69622.
19515
19516 2004-11-19  Raja R Harinath  <rharinath@novell.com>
19517
19518         * Makefile.am (check-local): New.  Integrate into 'make check'.
19519         (MCS,RUNTIME): Define using in-tree mono and mcs.
19520         (ILASM): New.
19521         (%.exe): Use $(ILASM).
19522
19523 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
19524
19525         * mini-ppc.c: adjust initial prolog size (bug #69691).
19526
19527 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
19528
19529         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
19530         #69664.
19531
19532 2004-11-17  Raja R Harinath  <rharinath@novell.com>
19533
19534         * Makefile.am (clean-local): Rename from 'clean'.
19535
19536 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19537
19538         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
19539         to mono_arch_is_int_overflow. 
19540         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
19541         SIGFPE events.
19542
19543 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
19544
19545         * declsec.c|h: New files to support declarative security attributes.
19546         Added function to check if a method has (applicable) security.
19547         * mini.c|h: Add check for declarative security attributes in
19548         mono_method_check_inlining.
19549         * Makefile.am: Added declsec.c and declsec.h to the build.
19550
19551 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
19552
19553         * mini.c, mini.h: update to keep dynamic code info per-domain.
19554
19555 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
19556
19557         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
19558         (mini_init): Get rid of it from here too.
19559
19560 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
19561
19562         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
19563         implemented OP_RETHROW (patch by Geoff Norton
19564         <gnorton@customerdna.com>).
19565
19566 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
19567
19568         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
19569         between appdomains.  Fixes appdomain-unload on PPC.
19570
19571 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
19572
19573         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19574         mini-exceptions.c: handle the new wrapper types.
19575         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
19576         token value as a MonoClass* when compiling a wrapper.
19577         mono_jit_create_remoting_trampoline now takes an additional
19578         MonoRemotingTarget parameter.
19579         
19580 2004-11-10  Martin Baulig  <martin@localhost>
19581
19582         * mini.c (mono_method_to_ir): Use `generic_container->context'
19583         rather than creating a new one.
19584
19585 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19586
19587         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
19588
19589         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
19590
19591 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
19592
19593         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
19594         the experimental aot cache stuff.
19595
19596 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
19597
19598         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19599         mini-exceptions.c: update to exception clause structure changes.
19600
19601 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19602
19603         * exceptions-x86.c (throw_exception): Fix warnings.
19604
19605         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
19606         for OP_RETHROW.
19607
19608 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19609
19610         * exceptions-sparc.c (get_throw_exception): Really fix this.
19611
19612 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
19613
19614         * tramp-*.c: we no longer support icalls without wrappers, so
19615         a bit of code can be removed here
19616
19617 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
19618
19619         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
19620         patch.
19621
19622         * cpu-sparc.md: Add op_rethrow.
19623
19624         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
19625
19626         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
19627
19628         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
19629         * mini-ops.h: Add OP_RETHROW.
19630
19631         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
19632
19633         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
19634
19635 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
19636         
19637         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
19638         Makes the output much easier to read
19639
19640 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
19641
19642         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
19643         prevents another huge leak when compiling with ssa. Secondly, the
19644         performance of doing this rather than freeing the lists is much
19645         better. GList does a lock every time you allocate a list link,
19646         so that it can use a memory pool. So, it is better to just use
19647         a memory pool of our own.
19648         
19649         * ssa.c, linear-scan.c: replace g_list_remove_link with
19650         g_list_delete.  The remove one does not free the GList, so we were
19651         leaking memory. On -O=all --compile-all with corlib, this cut down
19652         3 MB of allocations.
19653
19654 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
19655
19656         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
19657
19658         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
19659
19660         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
19661         into a new function mono_create_jit_trampoline ().
19662
19663 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
19664
19665         * trace.c (get_spec): Allow tracing of classes without a namespace.
19666
19667 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
19668
19669         * mini.c: Fix pointer overwrite in mini_method_compile.
19670
19671 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
19672
19673         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
19674         The darwin ABI needs some special handling for 1 and 2 byte structs
19675         Lets use lbz/lhz instead of lwz everywhere.
19676         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
19677         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
19678         Use stb/sth for the former, and put the latter always on stack instead of in
19679         argument registers.
19680
19681 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
19682
19683         * trace.c (is_filenamechar): Add '_'.
19684
19685 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
19686
19687         * mini-s390.c: Fix prolog length to allow for large trace requirements.
19688
19689         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
19690
19691 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
19692
19693         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
19694         depends on libmonogc. Fixes #68805.
19695
19696 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
19697
19698         * mini.c (mono_jit_free_method): Provide extra information for
19699         this error.  Currently this leaks, but will be turned into a
19700         developer option in the future.
19701
19702 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
19703
19704         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
19705
19706 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
19707
19708         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
19709         boundary. Fixes reading of PATCH_INFO_R4 and R8.
19710         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
19711
19712 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
19713
19714         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
19715         trampolines for AOT code.
19716
19717 2004-10-22    <vargaz@freemail.hu>
19718
19719         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
19720         constructed types. Fixes #68136.
19721
19722 2004-10-21  Martin Baulig  <martin@ximian.com>
19723
19724         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
19725         if it returns true, unwind the stack to the call instruction.
19726
19727 2004-10-21    <vargaz@freemail.hu>
19728
19729         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
19730
19731         * mini.h: Bump AOT version number.
19732
19733         * objects.cs: Add another test for unbox trampolines.
19734
19735         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
19736         valuetype methods.
19737
19738 2004-10-20    <vargaz@freemail.hu>
19739
19740         * driver.c: Add SHARED to the set of optimizations tested.
19741
19742         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
19743
19744         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
19745         used by CEE_NEWARR.
19746
19747         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
19748
19749 2004-10-20  Martin Baulig  <martin@ximian.com>
19750
19751         * mini-exceptions.c (mono_handle_exception): Call
19752         mono_debugger_handle_exception() to tell the debugger about
19753         catch/finally clauses.
19754
19755 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
19756
19757         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
19758
19759         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
19760         #68447.
19761
19762 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
19763
19764         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
19765         methods as their native size, fixed bug #57543, #57545.
19766         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
19767         This saves a temporary register and mullw call down into 1 (minor perf
19768         increase for cases like sum = sum * 5;  This use to translate into:
19769             li r11,5
19770             mullw r28,r28,r11
19771         It now translates to
19772             mulli r28,r28,5
19773
19774 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
19775
19776         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
19777         #68388.
19778
19779 2004-10-11  Martin Baulig  <martin@ximian.com>
19780
19781         * mini.c (mono_method_to_ir): If we're a generic method, get the
19782         MonoGenericContainer from our MonoMethodNormal and create a
19783         MonoGenericContext from it.
19784
19785 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
19786
19787         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
19788
19789         * basic-long.cs: Add test for checked i8->i2 cast.
19790
19791 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
19792
19793         * inssel-ppc.brg: added a couple of speedup rules.
19794
19795 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
19796
19797         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
19798         to speed up rebuilds.
19799
19800 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19801
19802         * mini-s390.c: Minor fix to OP_OR_IMM.
19803
19804 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
19805
19806         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
19807         better. Fixes appdomain-unload.exe on sparc.
19808
19809 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
19810
19811         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
19812         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
19813         see bug 67324.
19814
19815 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
19816
19817         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
19818
19819 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
19820
19821         * mini.c: Always generate a field read/write wrapper for members
19822         of the class MarshalByRefObject since the actual instance could
19823         be a CBO.
19824
19825 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19826
19827         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
19828
19829 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19830
19831         * driver.c mini.h trace.c: Move the setting of the main assembly into
19832         a separate function called mono_trace_set_assembly () and call it after
19833         actually loading the main assembly. Fixes #66872.
19834
19835 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
19836
19837         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
19838         using the code manager.
19839
19840 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
19841
19842         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
19843
19844 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
19845
19846         * cpu-amd64.md: Fix bug in previous patch.
19847         
19848         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
19849         #66650.
19850
19851 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
19852
19853         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
19854         mini-exceptions.c: updates for changed stack walk interface.
19855
19856 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19857
19858         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
19859
19860 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
19861
19862         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
19863
19864 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
19865
19866         * driver.c (mini_regression_list): Do not call mono_assembly_close 
19867         since assemblies can't be unloaded.
19868         
19869 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
19870
19871         * cpu-amd64.md: Fix more instruction lengths.
19872
19873         * cpu-amd64.md: Fix lengths of some instructions.
19874
19875 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
19876
19877         * inssel.brg: Make the array ldelema check aot friendly.
19878
19879 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
19880
19881         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
19882
19883         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
19884
19885 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
19886
19887         * mini-x86.c: Fix build.
19888
19889         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
19890         mono_type_get_underlying_type () helper function to simplify code.
19891         
19892 2004-09-09  Martin Baulig  <martin@ximian.com>
19893
19894         * mini-amd64.c: Don't access `type->data.klass' directly, call
19895         mono_class_from_mono_type() instead since the type may be a
19896         generic instance.
19897
19898 2004-09-09  Martin Baulig  <martin@ximian.com>
19899
19900         * mini-amd64.c (get_call_info): Fix support for generic instances.
19901         (add_valuetype): Use mono_class_from_mono_type() to get the class
19902         since we can be a generic instance.
19903
19904 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
19905
19906         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
19907
19908 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
19909
19910         * liveness.c: reset spill costs on each scan: bug 62107
19911
19912 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
19913
19914         * exceptions-sparc.c (mono_arch_find_jit_info): remove
19915         unnecessary line that doesn't compile
19916
19917 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19918
19919         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
19920         trampolines, make them call an error function so people can fix their
19921         code.
19922
19923 2004-09-06  Martin Baulig  <martin@ximian.com>
19924
19925         * mini.c (mono_method_to_ir): When initializing locals, handle a
19926         generic instances like a valuetype if it's a valuetype and like a
19927         class if it's a class.
19928
19929 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
19930
19931         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
19932         stack. Fixes #64674.
19933
19934         * exceptions.cs: Add test for unwinding of call arguments.
19935
19936 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
19937
19938         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
19939         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
19940         set the carry/borrow flag). The sparc and s390 implementations
19941         can now use optimized versions (and simplify the code). ppc bugfixes.
19942
19943 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
19944
19945         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
19946
19947 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
19948
19949         * inssel-amd64.brg: Remove leftover 32 bit rule.
19950
19951         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
19952
19953 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
19954
19955         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
19956         mono_arch_find_jit_info functions into a new function. Fix a memory
19957         leak.
19958
19959         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
19960         refactored code.
19961         
19962 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
19963
19964         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
19965         as well.
19966         
19967         * exceptions.cs: Add array size tests.
19968
19969         * mini.c: Allocate a separate icall wrapper for each arity of 
19970         mono_array_new_va. Fixes #59509.
19971
19972         * exceptions.cs: Add testcase for 64578.
19973
19974         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
19975
19976         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
19977         
19978 2004-09-02  Martin Baulig  <martin@ximian.com>
19979
19980         * mini.c (mono_method_to_ir): When initializing the locals, call
19981         handle_initobj() on the generic instance itself, not its
19982         underlying type.
19983
19984 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
19985
19986         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
19987         MonoJitInfo for dynamic methods.
19988
19989         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
19990
19991         * mini.c: Add support for freeing JIT data for dynamic methods.
19992         
19993 2004-09-01  Martin Baulig  <martin@ximian.com>
19994
19995         * mini-x86.c (is_regsize_var): Added support for generic
19996         instances.
19997         (mono_arch_emit_prolog): Make this compile again, use
19998         `x86_push_imm_template (code)'.
19999
20000 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
20001
20002         * mini-x86.c: make all push_imm instructions that get
20003         patched always emit the long form
20004
20005 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
20006
20007         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
20008         in a per-domain hash.
20009
20010         * mini-amd64.c (merge_argument_class_from_type): Handle generic
20011         types.
20012
20013 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
20014
20015         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
20016         work.
20017         
20018         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
20019         work.
20020
20021         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
20022         Beginnings of SSE2 support.
20023
20024         * exceptions.cs: Add more tests for checked int<->uint casts.
20025
20026 2004-08-28  Martin Baulig  <martin@ximian.com>
20027
20028         * mini-x86.c (mono_arch_instrument_epilog): Added support for
20029         generic instances.
20030
20031         * mini.c
20032         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
20033         Handle generic instances recursively.
20034
20035 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
20036
20037         * iltests.il: test for conv.u8 on a constant
20038
20039 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
20040
20041         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
20042         LCONV_x4 (shrun_32 (membase)).
20043
20044 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
20045
20046         * inssel-x86.brg: c&p rules for push/setret of long
20047
20048 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
20049
20050         * inssel-x86.brg: c&p rules for compare (base, regvar) and
20051         compare (regvar, base)
20052
20053         * inssel-x86.brg: more burg love
20054
20055         * inssel.brg: more cleanup
20056
20057         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
20058
20059 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
20060
20061         * basic-long.cs, basic-calls.cs: new tests for optimization.
20062
20063 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
20064
20065         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
20066         patch.
20067
20068 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
20069
20070         * mini-amd64.c (read_tls_offset_from_method): Add another case.
20071         
20072 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
20073
20074         * inssel.brg (mini_emit_memcpy): use 
20075         NO_UNALIGNED_ACCESS to disable memcpy optimization
20076
20077 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
20078
20079         * mini-amd64.c: Handle generic types in various places.
20080
20081         * mini.c (mono_method_to_ir): Handle generic types in init locals.
20082
20083 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
20084
20085         * mini.c (handle_box): Fix warning.
20086
20087         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
20088
20089         * mini-amd64.h: Enable the emit_state optimization.
20090
20091         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
20092
20093         * mini-amd64.c: Add some new 64 bit peephole opts.
20094
20095         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
20096
20097         * cpu-amd64.md: sreg1 of div instructions must be %rax.
20098
20099         * mini-amd64.c: Register allocator fixes.
20100
20101         * mini.c: Add an optimization to emit_state to avoid allocation of new
20102         registers on some platforms.
20103
20104 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
20105
20106         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
20107
20108         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
20109         allocation. Fixes #63085.
20110
20111         * basic-long.cs: Add new regression test.
20112
20113         * mini-amd64.c: Register allocator improvements.
20114
20115 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
20116
20117         * mini-amd64.c (read_tls_offset_from_method): Add another code
20118         sequence.
20119
20120         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
20121         instruction sequence for nullifying class init trampolines.
20122
20123         * objects.cs: Add new regalloc test.
20124
20125         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
20126
20127 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
20128
20129         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
20130         
20131         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
20132         arguments.
20133
20134         * driver.c: Fix profiling after TLS changes.
20135         
20136         * driver.c (mono_main): Set mono_stats.enabled if needed.
20137
20138         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
20139         CEE_BOX.
20140
20141 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
20142
20143         * mini-x86.c: use a 1 op rather than a 2 op tls access
20144         instruction -> faster.
20145
20146 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
20147
20148         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
20149         x86 backend.
20150
20151 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
20152
20153         * exceptions-sparc.c (throw_exception): fix typo
20154
20155 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
20156
20157         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
20158         set tree->dreg correctly with tls. Allow any
20159         register to be used.
20160
20161         * mini-x86.c (read_tls_offset_from_method): add new code
20162         generation pattern seen with GCC.
20163
20164
20165 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
20166
20167         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
20168         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
20169         exceptions-sparc.c: fix some performance issues in exception
20170         handling and setting of the stack trace for exceptions that were
20171         already thrown.
20172
20173 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
20174
20175         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
20176         x86 backend.
20177         
20178         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
20179         registers.
20180
20181 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
20182
20183         This patch inlines tls access, when possible.
20184         
20185         * mini.h: new arch functions for TLS intrinsics.
20186         All platforms updated with a stub.
20187
20188         * mini.c: use the new intrinsics
20189
20190         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
20191         arch specific intrinsic for tls variables
20192
20193 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
20194
20195         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
20196         under windows.
20197
20198 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20199
20200         * mini.c: thread local allocation
20201
20202 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
20203
20204         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
20205
20206         * Makefile.am: Link against the static version of libmonogc.
20207         
20208         * Makefile.am: Link the static versions of the convenience libraries
20209         into the mono executable.
20210
20211         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
20212
20213 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
20214
20215         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
20216         on integer overflow.
20217
20218         * mini-amd64.c: Reorganize function call code.
20219
20220         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
20221
20222 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
20223
20224         * inssel-x86.brg: use xor eax,eax.
20225         
20226         * basic.cs: new tests
20227
20228 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20229
20230         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
20231         in exception throwing code.
20232         
20233 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
20234
20235         * inssel-x86.brg: use xor esi,esi.
20236
20237 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20238
20239         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
20240         can trace methods compiled during mini_init () too.
20241
20242         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
20243         CEE_CONV_U4.
20244
20245 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
20246
20247         * Makefile.am: static link on x86 (r=zoltan)
20248
20249 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20250
20251         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
20252         code since it causes some programs to fail.
20253
20254 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
20255
20256         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
20257
20258 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
20259
20260         * mini.c: ovfops_op_map - add STACK_OBJ case for
20261         CONV_I 
20262         * basic.cs: add test_0_pin_string as test
20263         case for above.
20264
20265 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
20266
20267         * Makefile.am: build C# if srcdir != builddir
20268
20269 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
20270
20271         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
20272         fall-through blocks.
20273
20274 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
20275
20276         * driver.c: enable loop by default again and include abcrem in -O=all.
20277
20278 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
20279
20280         * iltests.il: Add some localloc tests.
20281
20282         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
20283
20284         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
20285         Fixes #62574.
20286
20287         * inssel-amd64.brg: Add some optimizations.
20288
20289         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
20290         for gcc-3.4.
20291
20292         * Makefile.am: Statically link mono against libmono on AMD64.
20293         
20294         * mini-amd64.c inssel-amd64.brg: Optimizations.
20295
20296 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
20297
20298         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
20299
20300         * tramp-amd64.c: Patch calling code in trampolines.
20301
20302 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
20303
20304         * mini-amd64.c: pinvoke struct passing fixes.
20305
20306 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
20307
20308         * mini-sparc.c: redo change, make mono_arch_cpu_init call
20309         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
20310
20311 2004-08-05  Duncan Mak  <duncan@ximian.com>
20312
20313         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
20314         CEE_LDELEM_ANY.
20315
20316 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20317
20318         * mini-amd64.c (emit_move_return_value): Move return value for normal
20319         calls too.
20320
20321 2004-08-05  Martin Baulig  <martin@ximian.com>
20322
20323         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
20324         `type->type'; just modify `type' itself when dealing with enums
20325         and generic instances.
20326         (check_call_signature): Make `simple_type' a `MonoType *'.
20327
20328 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20329
20330         * mini.c: Use OP_PADD to add offsets to addresses.
20331
20332         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
20333
20334 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
20335
20336         * mini-sparc.c (mono_arch_emit_epilog): fix check
20337         for folding last op into restore instruction
20338
20339 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20340
20341         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
20342         helper methods using the code manager.
20343         
20344         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
20345
20346         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
20347
20348 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20349         
20350         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
20351           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
20352
20353         * mini-s390.c: fix tail processing
20354
20355 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
20356
20357         * mini-ppc.c: mul.ovf.un exception name fix.
20358
20359 2004-08-03  Martin Baulig  <martin@ximian.com>
20360
20361         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
20362         instances; before jumping to `handle_enum', also modify `ptype'.
20363
20364 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
20365
20366         * cpu-sparc.md: fcall maximal length too small.
20367
20368 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
20369
20370         * mini-amd64.c mini.h: Add initial support for passing/returning 
20371         structures to/from pinvoked methods.
20372
20373 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
20374
20375         * mini-ppc.c: reg allocator fix.
20376
20377 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
20378
20379         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
20380
20381         * inssel.brg: Optimize memset on 64 bit machines.
20382
20383         * mini-amd64.c: Fix some vararg cases.
20384
20385 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20386
20387         * mini-s390.c: Corrected macro in emit_float_to_int
20388
20389         * s390-abi.cs: Tests to exercise the s390 ABI
20390
20391 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20392
20393         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
20394         caller saved regs.
20395
20396         * basic.cs: Add a test for add.ovf.un.
20397
20398 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
20399
20400         * mini-sparc.c: add case for OP_IDIV_UN
20401
20402 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20403
20404         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
20405         
20406         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
20407
20408 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
20409
20410         * basic.cs: regression tests.
20411
20412         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
20413         regressions.
20414
20415 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20416
20417         * basic.cs: Add a new test.
20418
20419         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
20420         and AOT. Various fixes and optimizations.
20421
20422         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
20423
20424 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20425
20426         * mini-ppc.c: make sure temp regs are not used for global reg
20427         allocation.
20428
20429 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
20430
20431         * cpu-sparc.md: conv_i8 fix for 64bits
20432
20433         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
20434
20435 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
20436         
20437         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
20438         add opcode for cmp BYTE PTR [eax], imm.
20439
20440         * inssel.brg: Make memcpy and memset takes bases.
20441
20442 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
20443
20444         * *-amd64.*: More AMD64 work.
20445         
20446 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
20447
20448         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
20449         add a compare-not-equal opcode.
20450         
20451 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
20452
20453         * mini.c: Use mono_init_from_assembly instead of mono_init.
20454         
20455 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
20456
20457         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
20458
20459         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
20460
20461         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
20462
20463         * inssel.brg: 64 bit fixes.
20464
20465         * mini.h (MonoCallInst): Add some AMD64 specific data.
20466
20467         * mini.h: Add some OP_P opcodes.
20468
20469 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
20470
20471         * basic.cs: tests for 61797 and 61740
20472
20473 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20474
20475         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
20476         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
20477
20478 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
20479
20480         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
20481
20482         * *-amd64*.*: Ongoing AMD64 work.
20483
20484 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
20485
20486         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
20487
20488         * *-amd64*: Ongoing AMD64 work.
20489
20490         * mini-arch.h: Add AMD64 support.
20491
20492         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
20493
20494         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
20495
20496         * mini-ops.h: Add new opcodes.
20497
20498         * Makefile.am: Add AMD64 support.
20499
20500         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
20501         rules into the inssel-long*.brg files.
20502
20503         * *-amd64.*: Add beginnings of AMD64 backend.
20504
20505 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
20506
20507         * mini.c (print_dfn): commenting out the code that prints
20508         the cil. With -O=deadce, this makes -v -v crash.
20509         
20510         * cpu-pentium.md: make checkthis have a length of 2
20511
20512 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
20513
20514         * mini-sparc.h: fix implementations of __builtin
20515         functions for Sun compiler for V9.
20516
20517 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
20518
20519         * mini.c: use the new stelem.ref wrapper
20520         * exceptions.cs, arrays.cs: new stelem.ref tests
20521
20522 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20523
20524         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
20525         new XSP should work with these changes).
20526
20527 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
20528         
20529         * inssel-{long32,x86,}.brg: trivial optimizations.
20530         
20531 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
20532
20533         * mini.c: load value when emitting box operation in
20534         constrained calls.
20535
20536 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
20537
20538         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
20539         is one byte shorter than cmp DWORD PTR [eax], 0.
20540
20541 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
20542
20543         * inssel-ppc.brg: arguments on the stack are always
20544         relative to the stack pointer (spotted by Neale Ferguson).
20545
20546 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20547
20548         * exceptions-x86.c: delay appending the method name to the trace until
20549         after mono_jit_info_table_find is called, as this gets the real
20550         MonoMethod.
20551
20552 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
20553
20554         * aot.c: register roots
20555
20556 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
20557
20558         * aot.c : I could just use PLATFORM_WIN32 flag.
20559
20560 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
20561
20562         * aot.c : Reverting the previous fix. This time it broke linux build.
20563
20564 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
20565
20566         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
20567
20568 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
20569
20570         * mini.c (handle_stack_args): Remove some more debugging code.
20571         
20572         * mini.c (handle_stack_args): Remove debug output left in by mistake.
20573
20574         * driver.c mini.h aot.c: Allow additional options to be specified with
20575         --aot and pass them to mono_compile_assembly.
20576
20577         * aot.c: Add experimental code to AOT compile all loaded assemblies
20578         on demand and save the code into a cache in the filesystem.
20579
20580         * aot.c: Add support for more wrapper methods.
20581         
20582         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
20583         58863.
20584
20585         * cpu-*.md: Remove removed opcodes.
20586
20587         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
20588         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
20589         related icalls to marshal.c.
20590
20591 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
20592
20593         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
20594
20595         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
20596
20597         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
20598
20599 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
20600         * liveness.c: If liveness is recomputated we need to reset the information
20601         for each variable. This way, if the liveness range has been narrowed
20602         by optimizations that happened after the last computation, we can return
20603         a smaller range.
20604         
20605         For example, if you have
20606         
20607         {
20608                 int i = 0;
20609                 
20610                 // Tons of code that does not affect i
20611                 
20612                 i = foo ();
20613                 ...
20614         }
20615         
20616         i = 0 is dead code and will be removed by SSA. However, when
20617         linear scan gets to the code, i will still appear to be live
20618         throughout the entire block. This prevents good register allocation.
20619
20620 2004-07-06  Martin Baulig  <martin@ximian.com>
20621
20622         * debug-mini.c (mono_debug_init_method): Allow
20623         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
20624         (mono_debug_add_icall_wrapper): New method.
20625
20626         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
20627
20628 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
20629
20630         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
20631         optimization.
20632
20633 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
20634
20635         * aot.c (mono_aot_load_method): Fix loading of debug info.
20636
20637 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20638
20639         * aot.c: Add logging support.
20640
20641 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
20642
20643         * mini.h: Add prototype for mono_print_method_from_ip.
20644
20645         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
20646
20647         * inssel.brg: 64 bit fixes.
20648
20649         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
20650         inssel-long32.brg.
20651
20652         * Makefile.am: Add SPARC64 support.
20653
20654 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20655
20656         * aot.c: Fix alignment problems on 32 bit platforms.
20657
20658 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
20659
20660         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
20661         SPARC64.
20662
20663         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
20664         problems.
20665
20666         * mini.h: Bump AOT file version. Some 64 bit fixes.
20667
20668 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20669
20670         * inssel-sparc.brg: Add new rule to avoid register moves.
20671
20672         * inssel.brg: Add ldind_to_load_membase helper function.
20673
20674 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
20675
20676         * mini.c: OffsetToStringData intrinsic.
20677         
20678 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20679
20680         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
20681
20682         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
20683         regression tests.
20684
20685         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
20686 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
20687
20688         * mini.c: reinstated mono_compile_get_interface_var()
20689         on x86, too, since the change breaks the Gtk# build there as well.
20690
20691 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20692
20693         * driver.c: remove loop from the default optimizations: it seems to
20694         interact badly with some of the other options (see bug #60613).
20695
20696 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
20697
20698         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
20699         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
20700
20701 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
20702
20703         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
20704         vararg-using methods.
20705
20706 2004-06-21  Martin Baulig  <martin@ximian.com>
20707
20708         * mini/mini-exceptions.c
20709         (mono_handle_exception): Added `gpointer original_ip' argument.
20710         After calling mono_unhandled_exception(), call
20711         mono_debugger_unhandled_exception() and if that returns true,
20712         restore the context and return.
20713
20714 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
20715
20716         * mini-ppc.c: prefer the use of relative branches so
20717         they won't need to be patched in aot code (patch from Patrick Beard).
20718
20719 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
20720
20721         * aot.c: patch from Patrick Beard to make the output assembly
20722         more correct for the MacOSX assembler. Small tweak to
20723         generate sane images on Linux/PPC, too.
20724
20725 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20726
20727         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
20728         case until bug #59509 is fixed (shows up in #60332).
20729
20730 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20731
20732         * mini.c: make sure the needed wrappers are compiled, too, with
20733         precomp.
20734
20735 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
20736
20737         * driver.c: remove NPTL reference in --version output.
20738
20739 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20740
20741         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
20742         generate valid assembly for the Mach-O assembler.
20743
20744 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
20745
20746         * driver.c: don't include abcrem in the all optimization specifier
20747         since it slows down jit compilation too much for now.
20748
20749 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
20750
20751         * mini.c: use BIGMUL only if both operands have the same signage.
20752         * iltests.il: Test for bug 60056. (errors related to signage in
20753         BIGMUL).
20754
20755         r=lupus.
20756
20757 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
20758
20759         * mini.c, aot.c: memory leak fixes.
20760
20761 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20762
20763         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
20764
20765 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
20766
20767         * Makefile.am: remove the -static hack completely, it links in
20768         statically glib as well.
20769
20770 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
20771
20772         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
20773         * exceptions.cs: make it compile with new mcs/csc.
20774
20775 2004-06-03 Massimiliano Mantione <massi@ximian.com>
20776         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
20777         and added relevant test case.
20778
20779 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
20780
20781         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
20782         regressions in gtk-sharp.
20783
20784 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
20785
20786         * exceptions.cs: New regression tests.
20787
20788         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
20789
20790 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
20791
20792         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
20793
20794 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
20795
20796         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
20797
20798         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
20799
20800 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
20801
20802         * mini.c (mono_jit_runtime_invoke): Init class in this
20803         method instead of trusting mono_jit_compile_method to
20804         do the work (because wrappers can be in object class)
20805
20806 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
20807
20808         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
20809
20810         * basic-long.cs: New regression test.
20811
20812 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
20813
20814         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
20815         and div/rem checks.
20816
20817 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
20818
20819         * Makefile.am: fix miguel's change to build mono statically against
20820         libmono (track build dependencies).
20821
20822 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
20823
20824         * cfold.c: Some glib versions do not have G_MININT32.
20825
20826 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
20827
20828         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
20829         with precision of tan, atan, sin and cos, and implemented related
20830         regressions tests (fixes bug 54467, but one new problem appeared and
20831         is not fixed yet).
20832
20833 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
20834
20835         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
20836
20837         * exceptions.cs: Add test for constant folding && division by zero.
20838
20839         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
20840         since driver.c is in libmono too, so the optimization was useless.
20841
20842         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
20843         variable to driver.c so the compiler can emit more efficient code to
20844         access them.
20845
20846 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20847
20848         * Makefile.am: don't distribute generated inssel.[ch] files.
20849
20850 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
20851
20852         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
20853         into the default appdomain. Fixes #58707.
20854
20855         * jit-icalls.c: Remove the broken approximation for truncl, doing
20856         no conversion is better.
20857
20858         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
20859         Fixes #58863.
20860
20861 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
20862
20863         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
20864         of the mcrxr instruction which is not available on some processors
20865         even if it's documented to be. Implement add and sub overflow correctly
20866         (still not complete for long unsigned). Speed up icalls a bit.
20867
20868 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
20869
20870         * mini.c (mono_jit_compile_method_with_opt): Make sure that
20871         we run .cctor in the current domain instead of target_domain.
20872         
20873         Fixes bug #58558, .cctor not being called in -O=shared.
20874
20875 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20876
20877         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
20878
20879 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
20880
20881         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
20882         which can be done with an imm8, do it that way.
20883         (mono_arch_output_basic_block): ditto for a jmp
20884         (mono_arch_emit_prolog): Computate maximum offset of a label.
20885
20886 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
20887
20888         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
20889         now tries to allocate prefered physical reg's for virtual
20890         regs. This reduces the number of emited spills/loads with
20891         20-30% on our core assemblies.
20892
20893 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
20894
20895         * jit-icalls.c: truncl() is not needed and trunc() is
20896         the correct thing to do anyway (bug #58287).
20897
20898 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
20899
20900         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
20901         if available.
20902
20903 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20904
20905         * driver.c: enable loop optimizations by default.
20906
20907 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
20908
20909         * mini-x86.c: fix calc of max loop size when aligning loops start.
20910
20911 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
20912
20913         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
20914         the stack.
20915
20916 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
20917
20918         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
20919         should set carry.
20920
20921         * basic-long.cs: Add tests for add/subtract of immediates with carry.
20922
20923         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
20924         
20925         * mini.c (inline_method): Allways inline some wrappers even if the cost
20926         is too large. Fixes #58785.
20927
20928         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
20929         
20930 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
20931
20932         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
20933         (crichton@gimp.org). Beginning of support for sparc/linux.
20934
20935         * mini-sparc.c: Optimize retrieval of LMF address.
20936
20937 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
20938
20939         * exceptions-ppc.c:  handle alloca in methods with clauses.
20940
20941 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
20942
20943         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
20944
20945 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
20946
20947         * mini.c: Delegate most of the abort signal work to 
20948           mono_thread_request_interruption, which also handles Stop and Suspend
20949           states.
20950
20951 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
20952
20953         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
20954         supports the save/restore lmf opcodes.
20955
20956 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
20957
20958         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
20959         by gcc-3.4 as well.
20960
20961         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
20962
20963 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
20964
20965         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
20966         methods which contain array accesses.
20967
20968         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
20969         boundaries. Fixes #58537.
20970
20971         * iltests.il: Add regression test for #58537.
20972
20973 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
20974
20975         * mini-x86.c (mono_arch_local_regalloc): Last part of
20976         fix for bug #58633 (releasing register to early).
20977
20978 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
20979
20980         * basic-long.cs: Add new regression test.
20981
20982 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
20983
20984         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
20985         register too early on the chain.
20986
20987 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
20988
20989         * mini.c (create_helper_signature): Use a helper function to reduce
20990         the code which needs to be written. Also set the calling convention of
20991         icalls on windows. Fixes #57840.
20992
20993 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
20994
20995         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
20996         exceptions-ppc.c: added helper function to get the instruction address
20997         from a signal handler context.
20998
20999 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
21000
21001         * helpers.c: use g_get_tmp_dir. Invokes happyness 
21002         from gonzalo.
21003
21004 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
21005
21006         * helpers.c: Add new env variable to pass args to objdump.
21007         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
21008
21009 2004-05-17  Radek Doulik  <rodo@ximian.com>
21010
21011         * Makefile.am (common_sources): added abcremoval.h so it get
21012         disted and daily mono packages on go-mono.com will build again
21013
21014 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
21015
21016         * abcremoval.c: Fixed coding style, added copyright header.
21017
21018         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
21019
21020         * mini.h: Added prototype for abc removal main function.
21021
21022         * build_relations_propagation_table.pl: Added copyright header.
21023
21024 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
21025
21026         * basic-long.cs: reg test for complex ceq_long bug.
21027
21028 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
21029
21030         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
21031         reg in long and clob case (bug #58343). Fixed/added comments.
21032
21033 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
21034
21035         * mini.c (mono_jit_runtime_invoke): Follow new convention
21036         of calling the invoke method with an function pointer.
21037
21038 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
21039
21040         * ChangeLog: Fix author of memory leak patch.
21041
21042 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
21043
21044         * Makefile.am: fix make dist as well...
21045
21046
21047 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
21048
21049         * cfold.c: Made so that conversions from pointer to int4 are no-ops
21050         on archs where pointers are 4 bytes long.
21051
21052         * Makefile.am: Added abcremoval.c source file.
21053
21054         * abcremoval.c: Added abcremoval.c.
21055
21056         * abcremoval.h: Added abcremoval.h.
21057
21058         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
21059
21060         * inssel.brg: Enabled bounds check removal.
21061
21062         * mini.c: Added support for abcrem optimization.
21063
21064         * mini.h: Added abcrem optimization label.
21065
21066         * driver.c: Added support for abcrem optimization.
21067
21068         * propagated_relations_table.def: Added propagated_relations_table.def.
21069
21070 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
21071
21072         * mini.c, cfold.c: fix style.
21073
21074 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21075
21076         * mini.c: handle issue with the low-level implementation of
21077         some long opcodes (bug #54209).
21078
21079 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
21080
21081         * basic.cs: test for my new cmov stuff.
21082
21083 2004-05-13      Patrik Torstensson
21084
21085         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
21086         opt and added peephole documentation.
21087
21088 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
21089
21090         * tramp-ppc.c: rewrote the generic trampoline code.
21091
21092 2004-05-11      Patrik Torstensson
21093
21094         * mini-x86.c: optimize long shl/shr asm code (one less branch)
21095
21096 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
21097
21098         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
21099
21100         * mini.h mini.c dominators.c: Applied patch from Derek Woo
21101         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
21102
21103         * mini.c: Add new icalls for AsAny marshalling.
21104
21105 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
21106
21107         * tramp-ppc.c, mini-ppc.c: more cleanups.
21108
21109 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21110
21111         * mini.c: no warnings.
21112
21113 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21114
21115         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
21116
21117 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
21118
21119         * mini.c: In the thread abort signal handler, if the thread is in the
21120         process of being stoped, don't throw the Abort exception, just stop the
21121         thread.
21122
21123 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
21124
21125         * tramp-ppc.c: removed old code.
21126
21127 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21128
21129         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
21130         do some simple speed optimizations on ppc.
21131
21132 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
21133
21134         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
21135         and large offsets in load/store.
21136
21137 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
21138
21139         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
21140         it causes regressions.
21141
21142 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
21143
21144         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
21145         support.
21146
21147 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
21148
21149         * jit-icalls.c: remove warnings.
21150         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
21151         speedups for unsafe code.
21152
21153 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
21154
21155         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
21156
21157 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
21158
21159         * basic-calls.cs: Add new regression test.
21160
21161         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
21162         more portable.
21163
21164         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
21165
21166         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
21167         is no longer used.
21168
21169 2004-05-06      Patrik Torstensson
21170
21171         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
21172         long reg allocation in any reg (not only eax:edx) and implemented 
21173         long shl/shr ops in asm instead of helpers.
21174
21175 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
21176
21177         * mini-sparc.h: Fix warnings.
21178
21179         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
21180         stack.
21181
21182         * mini-exceptions.c (mono_handle_exception): Call the filter in a
21183         separate statement for clarity.
21184
21185         * mini-sparc.c: Update status.
21186
21187 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
21188
21189         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
21190         here.
21191
21192 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
21193
21194         * inssel-ppc.brg: another small pre-release workaround:
21195         we don't do overflow detection for long_sub_un.
21196
21197 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21198
21199         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
21200         (also works around a weird ppc bug: 57957).
21201
21202 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
21203
21204         * tramp-ppc.c: trampoline fixes.
21205
21206 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
21207
21208         * mini-ppc.c: fixed typos.
21209
21210 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
21211
21212         * mini-ppc.c, exceptions-ppc.c: more code saves registers
21213         at the top of the stack. Fixed typos. Use a frame registers
21214         for all the methods with exception clauses.
21215
21216 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
21217
21218         * exceptions-ppc.c: restore fp registers.
21219
21220 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
21221
21222         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
21223         order from the stack top (moved the stack room to save the
21224         return value for trace after the param area). Fixed corruption
21225         in restoring registers on unwind.
21226
21227 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
21228
21229         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
21230
21231 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
21232
21233         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
21234         and prolog/epilog for methods that use it. Allow
21235         enough param area room for varargs methods. Fix miguel's
21236         breakage in exception handling.
21237
21238 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
21239
21240         * Makefile.am: run genmdesc only on current arch.
21241
21242 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21243
21244         * exceptions-x86.c:
21245         * mini-x86.h: fix the build on windows.
21246
21247 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
21248
21249         * 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.
21250
21251         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
21252
21253         * mini-exceptions.c: New file.
21254         
21255         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
21256         Move some parts of the x86 exception handling code to an 
21257         arch-independent file so it can be shared with other ports.
21258
21259 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
21260
21261         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
21262
21263 2004-04-26  David Waite  <mass@akuma.org>
21264
21265         * driver.c: remove comma from end of enumeration declaration
21266
21267 2004-04-26  Jackson Harper  <jackson@ximian.com>
21268
21269         * driver.c: parse config file before loading first assembly. This
21270         allows the user gac to be enabled/disabled. 
21271         
21272 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
21273
21274         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
21275         simpler mechanism: we do not care what is encoded initially
21276         (branch absolute or relative), we care about the code and its
21277         target.  I kept the old code for reference for now.
21278
21279         The new code tries first to determine if the jump is anywhere in
21280         the -/+32 absolute meg range, if it succeeds, it encodes using the
21281         absolute branch;  If not, it tried to find something in the
21282         relative range, if not, it uses the handle_thunk code. 
21283
21284 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
21285
21286         * exceptions-ppc.c: use the correct ip register on macosx.
21287
21288 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
21289
21290         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
21291
21292 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
21293
21294         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
21295         Raise exception on integer divide by zero by hand since the hw
21296         doesn't support it. Handle NaNs in FP compares.
21297
21298 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
21299
21300         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
21301         code reducing duplication between the platforms and enabled
21302         signal exception handling (on linux for now).
21303
21304 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
21305
21306         * exceptions-ppc.c: more macosx support.
21307
21308 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21309
21310         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
21311
21312 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
21313
21314         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
21315
21316 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
21317
21318         * iltests.il: more tests.
21319
21320 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
21321
21322         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
21323         vars as well.
21324
21325 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
21326
21327         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
21328
21329 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
21330
21331         * liveness.c: Mark variables as volatile in all basic blocks reachable
21332         from exception clauses.
21333
21334 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
21335
21336         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
21337         inlining.
21338
21339 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
21340
21341         * iltests.il, basic.cs: more tests for regalloc.
21342
21343 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
21344
21345         * iltests.il: Some tests for register allocation modifications
21346         I have locally.
21347
21348 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
21349
21350         * exceptions.cs: Add regression test for bug #56782.
21351
21352         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
21353         original stack trace if an exception is rethrown. Fixes #56782. Oh,
21354         the beauty of fixing the same thing in 5 different files...
21355
21356 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
21357
21358         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
21359         methods.
21360
21361 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
21362
21363         * mini.c: Add support for STRWLPARRAY marshalling convention.
21364
21365 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
21366
21367         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
21368         to init the context to setup the regs pointer).
21369
21370 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
21371
21372         * exceptions-ppc.c: more exceptions work.
21373
21374 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21375
21376         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
21377         not allowed.
21378
21379 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
21380
21381         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
21382         can use the memory directly.
21383
21384         * cpu-pentium.md: Update documentation from a post from Zoltan. 
21385
21386         add x86_add_membase, x86_sub_membase, x86_mul_membase
21387
21388 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
21389
21390         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
21391         GENERAL_REGS they were also hardcoded for all PPC ports.
21392
21393         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
21394
21395         Remove hard-coded limit for floating point registers, use
21396         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
21397
21398         Notice that in MacOS X calling conventions you can fit a lot more
21399         floating point values in registers, so I should update the PInvoke
21400         test to excercise the passing of floating point values on the
21401         stack (currently broken).
21402         
21403 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
21404
21405         * tramp-ppc.c (create_trampoline_code): Added
21406         JUMP_TRAMPOLINE_SIZE. 
21407         (ppc_magic_trampoline): Follow the pattern from
21408         x86_magic_trampoline: if code is set to zero, return. 
21409         (create_trampoline_code): Always pass MonoMethod to the jump
21410         trampoline, before it was passing a null.
21411         (mono_arch_create_jump_trampoline): Implement the jump stub, could
21412         share the code with mono_arch_create_jit_trampoline. 
21413
21414         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
21415         implemented.
21416         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
21417         implemented.  
21418
21419         * cpu-g4.md: Added length for jmp instruction, the worst case
21420         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
21421         for save_lmf).
21422
21423 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
21424
21425         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
21426
21427 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
21428
21429         * mini.c: Only set bblock->real_offset when adding a new bblock, and
21430         before each IL instruction.
21431
21432         * mini.c (CEE_BOX): Fix warnings.
21433
21434 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21435
21436         * mini.c: removed a few unused vars and extra whitespace.
21437
21438 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
21439
21440         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
21441         checks.
21442         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
21443         index.
21444         (OP_GETCHR): use the above
21445         (CEE_LDELEMA): use the above.
21446
21447         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
21448         version of the generic impl.
21449         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
21450         (CEE_LDELEMA): use the above.
21451
21452 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
21453
21454         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
21455         Fixes #56317.
21456
21457         * iltests.il: Added new regression test for #56317.
21458
21459 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
21460
21461         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
21462         under NetBSD. Fixes #56450.
21463
21464         * liveness.c (update_gen_kill_set): Fix previous patch.
21465
21466 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21467
21468         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
21469
21470 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
21471
21472         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
21473         ldsfld and ldsflda.
21474
21475         * inssel-sparc.brg: Add more optimizations.
21476
21477         * mini-sparc.c: Replace multiply/divide with shifts if possible.
21478
21479 2004-04-01  Martin Baulig  <martin@ximian.com>
21480
21481         * mini.c (handle_box): New static function; moved the
21482         implementation of CEE_BOX here.
21483         (mono_method_to_ir): Added `constrained_call' variable.
21484         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
21485         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
21486         mono_method_get_constrained() to get the method.
21487
21488 2004-04-01  Martin Baulig  <martin@ximian.com>
21489
21490         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
21491         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
21492         (mono_method_to_ir): We don't need these macros anymore since
21493         mono_class_get_full() already takes care of it. 
21494
21495 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21496
21497         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
21498         use @function (as doesn't accept #function here) and check the return
21499         value of system and stop if fails.
21500
21501 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21502
21503         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
21504
21505 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
21506
21507         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
21508
21509         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
21510
21511         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
21512         #56223.
21513
21514         * basic-long.cs: Add test for negation of Int64.MinValue.
21515
21516 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
21517
21518         * mini-sparc.c: Update status.
21519
21520         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
21521
21522         * exceptions-sparc.c: Fix return value in filters.
21523
21524         * inssel-sparc.brg: Fix register allocation in some rules.
21525
21526 2004-03-28  Martin Baulig  <martin@ximian.com>
21527
21528         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
21529         if neccessary.  
21530
21531 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
21532
21533         * mini-x86.c (mono_arch_patch_code): Fix warnings.
21534         
21535         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
21536         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
21537         remove unused conv_u4 opcode.
21538
21539         * mini-x86.c: Remove valgrind workaround since it slows down things
21540         even when mono is not run under valgrind.
21541
21542 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
21543
21544         * mini-sparc.c: Update status.
21545
21546         * inssel-sparc.brg: Add some optimizations.
21547
21548         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
21549         future delay slot filling. Add support for varargs, tail calls and JMP.
21550
21551         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
21552         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
21553
21554         * inssel.brg: Fix register allocation in OP_ARGLIST.
21555
21556         * inssel.brg: Fix warnings.
21557
21558 2004-03-25  Martin Baulig  <martin@ximian.com>
21559
21560         * mini.c (inflate_generic_field): Removed.
21561         (mini_get_method): Removed, use mono_get_method_full(),
21562         (mini_get_class): Removed, use mono_class_get_full().
21563         (mono_method_to_ir): Pass our generic context to
21564         mono_field_from_token().        
21565
21566 2004-03-25  Martin Baulig  <martin@ximian.com>
21567
21568         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
21569         of a `MonoMethod *'.
21570         (mini_get_method): Take a `MonoGenericContext *' instead
21571         of a `MonoMethod *'.
21572         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
21573         a new local variable called `generic_context' which holds the
21574         current `MonoGenericContext *'; use it to lookup things.
21575
21576 2004-03-24  Martin Baulig  <martin@ximian.com>
21577
21578         * mini.c (mini_get_class): New static method; if we're inside a
21579         generic instance, inflate the class if neccessary.
21580         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
21581
21582 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
21583
21584         * iltests.il: New regression test for #55976.
21585
21586         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
21587         #55976.
21588
21589 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
21590
21591         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
21592         output.
21593
21594 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
21595
21596         * liveness.c: Consider SSA stores as well as loads when making vars
21597         volatile.
21598
21599         * exceptions.cs: New regression tests for register allocation.
21600         
21601 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
21602
21603         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
21604         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
21605           domain lock only to protect puntual access to data structures.
21606           Added access lock for sighash, jit_icall_hash_name, 
21607           jit_icall_hash_addr and domain->code_mp.
21608
21609 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
21610
21611         * driver.c: Print SIGSEGV handling method.
21612
21613         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
21614
21615         * mini.c (setup_jit_tls_data): Handle case when this is called
21616         multiple times for a thread.
21617
21618         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
21619         is different from fbxx_un. Fixes #54303. Also use constants instead of
21620         magic numbers in a lot of places.
21621
21622 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
21623
21624         * exceptions.cs: Fix cctor test when --regression is used.
21625
21626 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
21627
21628         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
21629         for Linux/ppc.
21630
21631 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
21632
21633         * inssel-ppc.brg: fixed register assignments for some rules.
21634
21635 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
21636
21637         * exceptions.cs: Add test for exceptions in static constructors.
21638
21639         * mini.c (mono_jit_compile_method_with_out): Move the calling of
21640         static constructors outside the domain lock. Fixes #55720.
21641
21642 2004-03-17  Martin Baulig  <martin@ximian.com>
21643
21644         * mini.c (get_generic_field_inst): Removed, this'll never happen.
21645         (inflate_generic_field): Take the `MonoMethod *' instead of the
21646         `MonoClass *' and added support for generic method.
21647         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
21648         have a `field->parent->gen_params', only inflate the field if it's
21649         an open constructed type.
21650
21651 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
21652
21653         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
21654         exception object instead of the preconstructed ones.
21655
21656 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21657
21658         * mini.c: reverted changed to sigsegv_signal_handler commited
21659         accidentally in the previous patch.
21660
21661 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21662
21663         * mini.c:
21664         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
21665         running --aot with an old assembly.
21666
21667 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
21668
21669         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
21670         point values.
21671
21672         * mini-sparc.c: Add support for v9 branches with prediction.
21673
21674 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
21675
21676         * mini.c (mini_init): #warning is GNUC only
21677
21678         * mini-sparc.h: implement __builtin_frame_address
21679         and __builtin_return_address for Sun C compiler
21680
21681 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
21682
21683         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
21684
21685 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
21686
21687         * basic-calls.cs: Add test for unaligned byref long argument passing.
21688
21689         * mini-ops.h: Add sparcv9 compare and branch instructions.
21690
21691         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
21692         v9 instructions if we have a v9 cpu.
21693
21694         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
21695         registers for global allocation.
21696
21697         * exceptions-sparc.c: Fixes.
21698         
21699 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
21700
21701         * liveness.c (mono_analyze_liveness): Optimized version.
21702
21703         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
21704
21705         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
21706         sparc work.
21707
21708         * basic-float.cs basic-calls.cs: New regression tests.
21709
21710 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
21711
21712         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
21713         sigaltstack implementation.
21714
21715         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
21716         
21717         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
21718         stuff if SIGSEGV_ON_ALTSTACK is not defined.
21719
21720 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
21721
21722         * mini.c: Fix warnings.
21723         
21724         * mini.c (mono_resolve_patch_target): New function which contains the
21725         arch independent part of the patching process.
21726
21727         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
21728         patching code to a separate function.
21729
21730 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
21731
21732         * mini.c (add_signal_handler): ifdef out on Windows
21733
21734 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
21735
21736         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
21737         cpu-sparc.md: Add exception handling support + other fixes.
21738
21739         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
21740         typed GC detection in --version.
21741
21742         * basic.cs exceptions.cs: New regression tests.
21743
21744         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
21745         the arch specific code can store data during a compilation.
21746
21747         * mini-ops.h: Add OP_SETFRET.
21748
21749         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
21750         function, register a separate icall for each arity, so the icalls can
21751         get a wrapper.
21752         
21753         * mini.c (mono_print_tree): Print negative offsets in a more readable
21754         form.
21755         
21756         * mini.c: Make signal handling work on sparc.
21757         
21758         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
21759
21760         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
21761
21762         * jit-icalls.c: Emulate truncl by aintl on solaris.
21763
21764         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
21765
21766 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
21767
21768         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
21769
21770 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
21771
21772         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
21773         a MarshalByRef type, inline a method that performs the check, taking into
21774         account that the object can be a proxy. Also implemented tow new opcodes:
21775         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
21776         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
21777         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
21778
21779 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
21780
21781         * mini-ppc.c: if a relative branch displacement is too big
21782         but it points to and area reachable with an absolute branch, 
21783         avoid the thunks.
21784
21785 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
21786
21787         * mini.c: optimize small copies in cpblk.
21788
21789 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
21790
21791         * basic-calls.cs basic-float.cs: New regression tests.
21792
21793         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
21794         negative offsets from %fp. Implement localloc. Fix local register 
21795         allocation. Fix the case when the this argument needs to be saved to
21796         the stack. Implement some missing opcodes.
21797
21798 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
21799
21800         * mini.c (mini_method_compile): Reenable global regalloc in methods
21801         with exception handlers.
21802
21803         * linear-scan.c (mono_varlist_sort): Fix warning.
21804
21805         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
21806
21807         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
21808         regalloc costs.
21809
21810         * liveness.c: Make all variables uses in exception clauses volatile, to
21811         prevent them from being allocated to registers. Fixes #42136.
21812
21813 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
21814
21815         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
21816         causes regressions.
21817
21818         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
21819         argument to mono_arch_regalloc_cost.
21820
21821         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
21822         precisely.
21823
21824 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
21825
21826         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
21827         Make the cost of allocating a variable to a register arch dependent.
21828
21829         * basic-calls.cs: Fix compilation of tests.
21830         
21831         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
21832         helper function to cut back on the number of #ifdefs needed.
21833
21834         * mini-ppc.c: Fix compilation.
21835
21836         * basic-calls.cs: New regression tests.
21837
21838         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
21839
21840         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
21841         of l0 since that is callee saved.
21842
21843         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
21844         to virtual calls.
21845
21846         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
21847         of delay instruction.
21848
21849         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
21850
21851         * mini.h (MonoCallInst): Add 'virtual' flag.
21852
21853         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
21854
21855 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
21856
21857         * *.cs: New regression tests.
21858
21859         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
21860         work.
21861
21862         * mini.c (mono_runtime_install_handlers): Fix build.
21863
21864         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
21865         'signal_stack_size' members.
21866
21867         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
21868         alternate signal stack.
21869
21870         * exceptions-x86.c: Add stack overflow handling.
21871
21872         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
21873         functions to arch independent code.
21874
21875         * mini.c (mono_print_tree): Print more detailed info for load_membase
21876         opcodes.
21877         
21878 2004-02-23  Martin Baulig  <martin@ximian.com>
21879
21880         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
21881
21882 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
21883
21884         * mini-x86.c: fixed reg allocation for div/rem.
21885
21886 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
21887
21888         * driver.c (mono_main): Report some configuratio options on --version.
21889
21890 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
21891
21892         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
21893         low in the address space. Correctly flush memory in thunks where we
21894         output native code.
21895
21896 2004-02-20  Martin Baulig  <martin@ximian.com>
21897
21898         * mini.c (mini_get_method): New static method; inflate all generic
21899         methods and methods in open generic instances.
21900         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
21901         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
21902
21903 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
21904
21905         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
21906
21907         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
21908
21909 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
21910
21911         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
21912
21913         * mini-sparc.c (flushi mono_arch_output_basic_block): make
21914         it compile using Sun's compiler.
21915
21916 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
21917
21918         * 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.
21919
21920         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
21921
21922 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
21923
21924         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
21925         code.
21926         * mini-ppc.c: handle calls outside of the allowed range with thunks
21927         allocated using the code manager.
21928         * tramp-ppc.c: use the code manager to hold generated native code.
21929         Fixed the magic trampoline to just patch vtable entries.
21930
21931 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
21932
21933         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
21934         independent file.
21935
21936 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
21937
21938         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
21939         PPC.
21940
21941         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
21942         if we have a working __thread implementation.
21943
21944         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
21945         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
21946
21947 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
21948
21949         * mini-x86.c: Fix compilation under gcc 2.
21950         
21951 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
21952
21953         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
21954         contains a call to the wrapped function.
21955
21956         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
21957         OP_<CALL>_IMM opcodes, and use them under X86.
21958         
21959         * mini.c (mono_jit_find_compiled_method): Fix warning.
21960
21961         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
21962
21963         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
21964
21965         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
21966         functionality to mini.c.
21967
21968         * mini.c (mono_create_jump_trampoline): New function to create a jump
21969         trampoline. Return a compiled method instead of a trampoline if it
21970         exists. Add a cache for jump trampolines.
21971
21972         * mini.c (mono_jit_find_compiled_method): New function to return a
21973         compiled method if it exists.
21974
21975         * mini-x86.c: Call mono_create_jump_trampoline instead of 
21976         mono_arch_create_jit_trampoline.
21977
21978         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
21979         a jump trampoline. Fixes #52092.
21980         
21981 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
21982
21983         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
21984         which is not up-to-date. Add check_corlib_version () instead.
21985
21986         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
21987         have to call it.
21988         
21989         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
21990         since newer valgrind versions do not need it.
21991
21992         * mini.c (mono_jit_compile_method_with_opt): New helper function to
21993         compile a method with a given set of optimizations.
21994
21995         * mini.c: Compile icall wrappers on-demand instead of at startup.
21996
21997         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
21998         wrapper for an icall.
21999
22000 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
22001
22002         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
22003         #54063.
22004
22005         * iltests.il: Add test for non-empty stack before switch instruction.
22006
22007 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
22008
22009         * mini.c: Add support for new stringbuilder marshalling conventions.
22010
22011         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
22012
22013 2004-02-01  Martin Baulig  <martin@ximian.com>
22014
22015         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
22016         in `ginst->mtype_argv'.
22017
22018 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
22019
22020         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
22021         facilitate grepping.
22022
22023 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
22024
22025         * mini.c: fixed buglet in initobj generic implementation for references.
22026
22027 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
22028
22029         * Makefile.am: make the version script conditional.
22030         * jit-icalls.c: handle missing truncl().
22031
22032 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
22033
22034         * exceptions.cs: Add more tests for double->int conversion.
22035
22036         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
22037         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
22038
22039 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
22040
22041         * driver.c: make --verbose --version emit an error
22042         if the loaded corlib doesn't match the runtime version.
22043
22044 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22045
22046         * mini-ppc.h: export ppc_patch().
22047         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
22048         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
22049         on par or better than on MacOSX.
22050
22051 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
22052
22053         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
22054         mono_lookup_pinvoke_call.
22055
22056         * mini-x86.c: Under windows, the default pinvoke calling convention is
22057         stdcall. Fixes #52834.
22058
22059         * mini.c (optimize_branches): Add an upper bound to the number of
22060         iterations to prevent infinite loops on strange loops. Fixes #53003.
22061
22062 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
22063
22064         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
22065         and ISINST. Fixes #52093.
22066
22067         * objects.cs (test_0_vector_array_cast): New tests.
22068         
22069 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
22070
22071         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
22072         checking in Array.Set ().
22073
22074         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
22075         #52590.
22076
22077         * object.cs (test_0_multi_array_cast): New regression test.
22078
22079 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
22080
22081         * exceptions-ppc.c: fix build on Linux/PPC.
22082
22083 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
22084
22085         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
22086         running under valgrind.
22087         (x86_magic_trampoline): Fix build bustage.
22088
22089         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
22090         negative values as well. This is needed for the encoding of the line number
22091         info, since sometimes the line numbers are not in increasing order.
22092
22093 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
22094
22095         * cpu-pentium.md (localloc): Increase the size of the localloc 
22096         instruction since it is a loop under Win32.
22097
22098         * debug-mini.c (record_line_number): Get rid of unneccesary memory
22099         allocation.
22100
22101 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
22102
22103         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
22104         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
22105         Max Horn (max@quendi.de). Fix file names in comments.
22106
22107 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
22108
22109         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
22110         avoid stack overflow.
22111         (replace_usage): Avoid uninitialized variable warnings.
22112
22113         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
22114         and taking the address of valuetype variables.
22115
22116 2004-01-03  Patrik Torstensson
22117
22118         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
22119         for other purposes than FP later on.
22120
22121 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
22122
22123         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
22124         of tail calls.
22125
22126 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
22127
22128         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
22129
22130 2003-12-30  Patrik Torstensson <p@rxc.se>
22131
22132         * mini-x86.h: Decreased number of availiable fp regs.
22133         Solves corner cases with FP spilling.
22134
22135 2003-12-23  Patrik Torstensson <p@rxc.se>
22136
22137         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
22138         for floating point stack tracking / spilling on x86. 
22139         Fixes bug #49012.
22140         
22141         * basic-float.cs: added float mul overflow test.
22142
22143 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
22144
22145         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
22146
22147 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
22148
22149         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
22150         supports for cond branches that overflow the immediate
22151         overflow offset. mcs can compile simple programs.
22152
22153 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
22154
22155         * exceptions-ppc.c: exception handling support wip:
22156         finally handlers get run on exception.
22157
22158 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
22159
22160         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
22161         profiling.
22162
22163 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
22164
22165         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
22166         initial support for stack walking and unwinding.
22167
22168 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
22169
22170         * driver.c (mono_main): Make corlib-out-of-sync message more 
22171         descriptive. Also remove verify_corlib call.
22172
22173 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
22174
22175         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
22176         not overlap with other call's arguments, too.
22177
22178 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
22179
22180         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
22181         move to arch-specific code the choice of arch-specific
22182         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
22183         * mini.c: ensure emulation calls will not interleave
22184         with other calls.
22185
22186 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
22187
22188         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
22189         the magic trampoline stack frame is dropped before executing
22190         the new method.
22191
22192 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
22193
22194         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
22195         and integer to fp conversions. Added support for overflowing
22196         arguments on the stack. Reserve a couple more registers as temps.
22197         Added support for aot compilation (as output still needs to be
22198         tweaked, though).
22199
22200 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
22201
22202         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
22203         Don't overwrite return register in some corner cases.
22204
22205 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
22206
22207         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
22208         static constructors when AOT compiling.
22209
22210         * driver.c (mono_main): Call mono_check_corlib_version.
22211
22212 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
22213
22214         * cpu-g4.md, basic.cs: fixed div target register.
22215
22216 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
22217
22218         * mini-ppc.c, basic.cs: shl_imm fix with test.
22219
22220 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
22221
22222         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
22223         structures by value. Misc fixes.
22224         * objects.cs: more tests.
22225
22226 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
22227
22228         * mini-ppc.c: lconv.ovf.i implemented.
22229
22230 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22231
22232         * mini.c:
22233         (mini_init): don't error out if someone already called g_thread_init.
22234
22235 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
22236
22237         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
22238         to be any type per the spec. Fix abnormal memory usage when
22239         the same object is repeatedly thrown.
22240
22241 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
22242
22243         * mini.c: check for overruns in IL code.
22244
22245 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
22246
22247         * TODO: Add/remove some todo entries.
22248
22249 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
22250
22251         * driver.c (mono_main): Call mono_verify_corlib.
22252
22253 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
22254
22255         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
22256         This has been moved to mini.c
22257         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
22258         type being casted is marshalbyref it could be a proxy, so instead of
22259         emitting the type check code, emit a call to a runtime method that will
22260         perform the check by calling CanCastTo if needed.
22261
22262 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
22263
22264         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
22265         methods with large stack frames under Win32.
22266
22267 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
22268
22269         * Makefile.am: Distribute regression tests.
22270
22271         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
22272         at the end instead of inserting each variable into the sorted list.
22273
22274         * linear-scan.c (mono_varlist_sort): New helper function.
22275         
22276 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
22277
22278         * mini.c: ensure arguments and locals are within bounds.
22279
22280 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
22281
22282         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
22283         related fixes.
22284
22285 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
22286
22287         * mini.c (mono_cprop_copy_values): Fix crash.
22288
22289         * aot.c: Set verbosity back to 0.
22290         
22291 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
22292
22293         * regalloc.c: complete memory leak fix by Laurent Morichetti
22294         (l_m@pacbell.net).
22295
22296 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
22297
22298         * driver.c (main_thread_handler): Revert the previous patch.
22299
22300         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
22301         under valgrind.
22302
22303         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
22304         memory from the memory pool.
22305
22306         * driver.c (main_thread_handler): Turn on all optimizations when
22307         --aot is used.
22308
22309         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
22310         an array for better performance.
22311
22312         * regalloc.c (mono_regstate_assign): Fix memory leak.
22313
22314         * debug-mini.c (mono_debug_serialize_debug_info): New function to
22315         serialize the debug info.
22316
22317         * debug-mini.c (mono_debug_add_aot_method): New function to load the
22318         debug info from the serialized representation.
22319
22320         * aot.c: Save debug info into the generated file and load it when 
22321         loading a method.
22322
22323         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
22324
22325 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
22326
22327         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
22328         More FP-related fixes.
22329
22330 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
22331
22332         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
22333         and register allocation buglet. Hello world now runs.
22334
22335 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
22336
22337         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
22338         * tramp-ppc.c: fixed class init trampoline.
22339         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
22340
22341 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
22342
22343         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
22344         mini.c: more ppc changes/fixes.
22345
22346 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
22347
22348         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
22349         Also optimize the case when the arguments are the same in the caller 
22350         and in the callee.
22351
22352         * iltests.il: Add tests for tail calls with valuetype arguments.
22353
22354 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
22355
22356         * mini-ppc.c: fixes for struct return type.
22357
22358 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
22359
22360         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
22361         mono_spillvar_offset() to arch-specific code.
22362
22363 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
22364
22365         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
22366
22367 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
22368
22369         * exceptions-x86.c: Fix stack space leaks.
22370         
22371         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
22372         registers from the lmf if the method has save_lmf set.
22373
22374 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
22375
22376         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
22377         of icall wrappers into InvokeInDomain, since these are now per-domain.
22378
22379 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
22380
22381         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
22382         make some opcode emulation and intrinsic ops enabled/disabled 
22383         according to the architecture. More fixes.
22384
22385 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
22386
22387         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
22388
22389 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
22390
22391         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
22392         arch-specific handling for 'this' and struct return type to
22393         arch-specific code.
22394
22395 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22396
22397         * aot.c: prevent divide by zero error when reporting (it happened with
22398         Accessibility.dll).
22399
22400 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
22401
22402         * mini.h (inst_switch): Remove unused macro.
22403
22404 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22405
22406         * aot.c:
22407         (load_aot_module): free 'info->methods' and 'info' properly. No more
22408         "free(): invalid pointer blah" messages when you have an old aot
22409         compiled assembly.
22410
22411 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
22412
22413         * jit-icalls.c, mini.c: Added support for context static fields.
22414
22415 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
22416
22417         * mini.c (mono_method_blittable): Methods which set LastError are not 
22418         blittable either. Fixes #51108.
22419         
22420 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
22421
22422         * mini.c: flush icache.
22423         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
22424
22425 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
22426
22427         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
22428
22429 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
22430
22431         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
22432         safe on IA32.
22433
22434         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
22435         vararg calls.
22436
22437         * inssel.brg (CEE_MKREFANY): Fix AOT case.
22438
22439 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
22440
22441         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
22442         instruction when the result is discarded.
22443
22444         * iltests.il (test_0_div_regalloc): New regression test.
22445
22446         * arrays.cs: Fix compilation error.
22447
22448 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
22449
22450         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
22451         float rules to inssel-x86.brg: sane architectures with FP registers
22452         don't need to implement these rules.
22453
22454 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
22455
22456         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
22457
22458 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
22459
22460         * mini.h, inssel-long32.brg: fixed endianess issues in int64
22461         implementation of 32 bit systems.
22462
22463 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
22464
22465         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
22466         (Jeroen Zwartepoorte).
22467
22468 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
22469
22470         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
22471         the caller and the callee matches.
22472         
22473         * mini.c (mono_method_to_ir): Add comment.
22474
22475         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
22476         signbit is missing on some platforms.
22477
22478 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
22479
22480         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
22481
22482         * mini.c (setup_jit_tls_data): Call the new function.
22483         
22484         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
22485
22486         * mini-x86.c: Add experimental support for fast access to the lmf
22487         structure under NPTL/Linux 2.6.x.
22488
22489 2003-11-06  Martin Baulig  <martin@ximian.com>
22490
22491         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
22492         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
22493         the debugger.
22494
22495 2003-11-02  Martin Baulig  <martin@ximian.com>
22496
22497         * mini.c (inflate_generic_field): New static method.
22498         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
22499         generic instance and the field is declared in a generic type, call
22500         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
22501
22502 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
22503
22504         * mini.h mini.c (mono_method_same_domain): New function to return
22505         whenever the caller and the callee are in the same domain.
22506
22507         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
22508
22509 2003-10-30  Martin Baulig  <martin@ximian.com>
22510
22511         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
22512         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
22513         method parameters.
22514         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
22515         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
22516
22517 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
22518
22519         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
22520         propagation.
22521
22522         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
22523         object here, so it is in the correct appdomain etc.
22524
22525 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
22526
22527         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
22528         already done.
22529         (mono_method_to_ir): Avoid freeing the type created returned from
22530         mono_type_create_from_typespec, since it is put into an internal cache
22531         by the function. Fixes pointer.exe.
22532
22533         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
22534         trampolines for icalls and pinvokes as well. Fixes #33569.
22535
22536 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
22537
22538         * mini.c: Update after appdomain changes.
22539
22540         * mini.c (mono_jit_compile_method_inner): Allways compile native
22541         method wrappers in the root domain, since there can only be one
22542         instance of them, whose address is stored in method->info.
22543
22544 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
22545
22546         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
22547         environment variable. Instead detect automatically whenever running
22548         under valgrind using the magic macro RUNNING_ON_VALGRIND from
22549         valgrind.h.
22550
22551 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
22552
22553         * trace.c, trace.h: New files that implement the new trace option
22554         parsing. 
22555
22556         * driver.c: Document new --trace options.
22557
22558         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
22559         mini-x86.c: Apply:
22560
22561         -       if (mono_jit_trace_calls)
22562         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
22563
22564         * mini.h: prototypes.
22565         
22566 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
22567
22568         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
22569
22570         * mini.c inssel.brg: Implement typedefbyref opcodes.
22571
22572         * mini.c (mono_jit_compile_method): Remove unused local variable.
22573
22574         * mini.c (mono_jit_compile_method_inner): Ditto.
22575         
22576 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
22577
22578         * tramp-x86.c (x86_class_init_trampoline): Fix build.
22579         
22580         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
22581
22582 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22583
22584         * mini.c (mono_no_aot): Remove unused global variable.
22585
22586         * mini.c: Thread safety fixes.
22587
22588 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22589
22590         * mini.c (mono_create_class_init_trampoline): Add a lock around
22591         class_init_hash_addr.
22592
22593         * arrays.cs (test_0_newarr_emulation): Add new regression test for
22594         #30073.
22595
22596         * mini.c: Decompose the NEWARR instruction before decomposing its
22597         arguments. Fixes #30073.
22598
22599 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
22600
22601         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
22602         convention.
22603
22604 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22605
22606         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
22607
22608         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
22609
22610         * driver.c: Add support for compiling icall wrappers to --compile.
22611
22612 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22613
22614         * inssel.brg: The empty value in class->interface_offsets is -1, not
22615         0. Fixes #49287.
22616
22617 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22618
22619         * objects.cs: New test for 'is' operator on an array of interfaces.
22620
22621 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
22622
22623         * tramp-ppc.c: update trampoline code to support jumps
22624         and class initialization.
22625
22626 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22627
22628         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
22629
22630         * inssel.brg (OP_UNBOXCAST): Fix #46027.
22631
22632         * inssel.brg (OP_UNBOX): Remove unused rule.
22633
22634         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
22635         region instead of one for each method. Fixes #47813.
22636
22637 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22638
22639         * exceptions.cs (test_0_nested_finally): New regression test for
22640         nested exception handlers.
22641
22642         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
22643
22644         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
22645
22646         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
22647         inlining.
22648
22649         * mini.c (mono_method_check_inlining): Make the inlining limit 
22650         configurable by an environment variable.
22651         
22652         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
22653
22654         * mini.h: Bump AOT file version.
22655
22656         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
22657         token, store the image along with the token, since the token might not 
22658         refer to the same image as the method containing the relocation, 
22659         because of inlining.
22660
22661 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
22662
22663         * mini.c (mono_precompile_assemblies): New function to compile
22664         all methods in all loaded assemblies.
22665
22666         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
22667
22668         * regalloc.h regalloc.c (MonoRegState): Change the type of 
22669         iassign and fassign to int*, since they can contain large negative
22670         values if the register is spilled. Also added some comments. Fixes
22671         #45817.
22672
22673         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
22674         under Win32. Fixes #42964.
22675
22676 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22677
22678         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
22679
22680         * aot.c: Added support for AOT compiling methods which contain calls
22681         to wrappers. Currently, only remoting-invoke-with-check wrappers are
22682         handled.
22683         
22684         * driver.c (compile_all_methods): Run the compilation in a thread
22685         managed by mono. Fixes #44023.
22686
22687         * mini.c (mono_codegen): Print full method name in verbose output.
22688
22689         * mini-x86.c (mono_arch_patch_code): Fix warning.
22690         
22691         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
22692         jumps, since the method we are jumping to might be domain-specific.
22693
22694         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
22695
22696 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
22697
22698         * inssel.brg: string chars are unsigned.
22699
22700 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22701
22702         * TODO: New todo item.
22703
22704         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
22705         which calls mono_runtime_class_init and patches the call site to
22706         avoid further calls.
22707         (mono_arch_create_class_init_trampoline): New arch specific function 
22708         to create a class init trampoline.
22709         (create_trampoline_code): Generalized so it can create
22710         class init trampolines as well.
22711
22712         * mini.c (helper_sig_class_init_trampoline): New helper variable.
22713         (mono_create_class_init_trampoline): New function to create and cache
22714         class init trampolines.
22715         (mono_find_class_init_trampoline_by_addr): New function to lookup the
22716         vtable given the address of a class init trampoline. Used by the
22717         patching process.
22718         (mono_codegen): Generate a call to a trampoline instead of
22719         mono_runtime_class_init in LDSFLD[A].
22720         (mono_codegen): Add relocations for the new trampoline.
22721         
22722         * mini.h mini-x86.c aot.c: Added a new relocation type: 
22723         MONO_PATCH_INFO_CLASS_INIT.
22724
22725         * mini.h: Bump AOT version number.
22726
22727         * aot.c: Create a copy of the loaded code instead of using the original
22728         so methods which call each other will be close in memory, improving
22729         cache behaviour.
22730         
22731         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
22732         patch since it breaks the regression tests.
22733         
22734         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
22735         for the register saving instruction sequence since the 
22736         frame_state_for function in glibc 2.3.2 don't seem to detect it.
22737
22738 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
22739
22740         * TODO: Fix todo item && remove another.
22741
22742 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
22743
22744         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
22745         previous checkin.
22746
22747         * aot.c: Moved the check for MONO_LASTAOT into the initialization
22748         function of the module.
22749
22750         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
22751         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
22752         --no-aot command line option.
22753
22754 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22755
22756         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
22757         by Bernie Solomon (bernard@ugsolutions.com).
22758
22759         * inssel.brg: Refactor the interface offset table related code into
22760         its separate functions and add support for the AOT case.
22761
22762 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22763
22764         * aot.c (mono_aot_get_method_inner): Fix memory leak.
22765         
22766         * aot.c: Added mono_aot_verbose variable and made all debugging
22767         output depend on the value of this variable.
22768
22769         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
22770         method_label and info_label.
22771
22772         * mini.h mini-x86.c aot.c: Added a new relocation type 
22773         MONO_PATCH_INFO_IID for klass->interface_id.
22774
22775         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
22776         the MonoJitInfo structure.
22777
22778         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
22779         a non-root appdomain in shared mode.
22780
22781 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
22782
22783         * aot.c: make aot loader less verbose. Remove free of unused variable.
22784
22785 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22786
22787         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
22788
22789         * .cvsignore: Added *.dll.
22790
22791         * mini.c (mono_print_tree_nl): New function callable while debugging.
22792
22793         * mini.c (mono_print_code): Export this.
22794
22795         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
22796         patched code.
22797
22798 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
22799
22800         * mini.h (MonoCompile): Added 'jit_info' field.
22801
22802         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
22803         the cfg structure, since it is needed by the AOT compiler.
22804
22805         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
22806
22807         * aot.c: A major rewrite. Changes include:
22808         - save exception tables for methods which have them.
22809         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
22810         to g_module_symbol.
22811         - reworked the file format so it is now much smaller and needs
22812         fewer relocation entries.
22813         
22814 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22815
22816         * aot.c (load_aot_module): Fix build bustage on platforms without
22817         Boehm GC.
22818
22819 2003-09-04  Martin Baulig  <martin@ximian.com>
22820
22821         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
22822
22823 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
22824
22825         * TODO: Some new optimization ideas.
22826
22827         * aot.c: Move AOT module loading logic here from mono_assembly_open.
22828
22829         * aot.c: Save the optimization flags used to compile the code into
22830         the AOT module.
22831
22832         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
22833         support emitting domain specific code.
22834         
22835         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
22836         no longer domain neutral. It can be made domain neutral by compiling 
22837         with --optimize=shared.
22838
22839         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
22840         between appdomains.
22841
22842         * driver.c mini.h mini.c: New --no-aot debugging option which disables
22843         loading of AOT code.
22844
22845         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
22846         
22847         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
22848         if there is no domain neutrality information.
22849
22850 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
22851
22852         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
22853         format version into the generated library.
22854
22855         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
22856         callee method into the caller since one of them could be shared.
22857
22858         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
22859         system exceptions from AOT code now works.
22860
22861         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
22862         method if it is domain neutral and the callee is not.
22863
22864         * graph.c (cfg_emit_one_loop_level): Fix warning.
22865
22866 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
22867
22868         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
22869         last checkin.
22870
22871 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
22872
22873         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
22874         is needed  by code which is executed before mono_runtime_init ().
22875         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
22876         
22877         * mini.c (mono_thread_abort): Fix warning.
22878         (mono_jit_compile_method): Call static constructor in the AOT case too.
22879
22880         * aot.c (mono_compile_assembly): Fix warning.
22881
22882 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22883
22884         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
22885
22886 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
22887
22888         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
22889
22890         * cpu-pentium.md: Fix the length of call opcodes so they include the
22891         ESP restoring instruction. Fixes #47968.
22892
22893 2003-08-28  Martin Baulig  <martin@ximian.com>
22894
22895         * mini-x86.c (mono_arch_call_opcode): Added support for
22896         MONO_TYPE_GENERICINST.
22897
22898         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
22899
22900 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
22901
22902         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
22903         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
22904
22905         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
22906         metadata_section.
22907
22908 2003-08-26  Martin Baulig  <martin@ximian.com>
22909
22910         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
22911         when reporting an error, set this to the actual error location.
22912         (mono_method_to_ir): Report the correct error location if
22913         get_basic_blocks() returned an error.
22914
22915 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
22916
22917         * mini.c (mono_type_blittable): OBJECT is not blittable.
22918         (mono_method_blittable): Methods which have marshalling descriptors
22919         are not blittable either. Fixes #47842.
22920
22921 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
22922
22923         * driver.c mini.c: Use an environment variable instead of a global 
22924         variable. Also fix the build.
22925
22926         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
22927         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
22928         reporting this. 
22929
22930         * driver.c mini.c: Added --with-valgrind option to turn off some
22931         code which prevents mono from running under valgrind.
22932
22933         * mini.c (mono_emit_call_args): Fixed warning.
22934
22935         * mini.c (mono_emulate_opcode): Fixed warning.
22936
22937 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22938
22939         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
22940         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
22941         regalloc.c, regalloc.h: specify available registers in arch-specific
22942         code and support floats in the regallocator (patch by Laurent Morichetti 
22943         <l_m@pacbell.net>)
22944
22945 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
22946
22947         * mini.c: mono_thread_current() can be called only after
22948         mono_runtime_init(): rearrange code to not call it early on.
22949
22950 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
22951
22952         * mini.c: allocate jump tables in the code mempools.
22953
22954 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
22955
22956         * mini.c, mini.h: make sure per-thread data allocated by the jit is
22957         freed.
22958
22959 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
22960
22961         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
22962         12 to 16.  This fixes bug #47453.
22963
22964
22965 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
22966
22967         * mini-ppc.c: fixed indexed load and unsigned compares.
22968
22969 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
22970
22971         * mini.c: reenabled installation of handler for
22972           thread abort signal.
22973
22974 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
22975
22976         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
22977         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
22978         until it's fixed and actually useful.
22979
22980 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
22981
22982         * inssel-long32.brg: couple more opcodes implemented.
22983
22984 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
22985         
22986         * mini-sparc.c: Even more opcodes implemeted.
22987
22988 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
22989
22990         * mini-sparc.c: More opcodes implemented.
22991
22992 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
22993
22994         * mini-sparc.c: More opcodes implemented.
22995
22996 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
22997
22998         * inssel-sparc.brg: Add some needed rules.  Direct
22999         copy from PPC.
23000         * Makefile.am: Use inssel-sparc.brg
23001         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
23002         an assert happy for now.
23003
23004 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
23005
23006         * mini-sparc.c: Fixed compile errors.
23007         * exceptions-sparc.c: Same.  We now produce a mono binary 
23008         on sparc-linux.  Yea.
23009
23010 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
23011
23012         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
23013         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
23014         They compile, but do not work.
23015
23016 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23017
23018         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
23019         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
23020         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
23021         (ct@gentoo.org).
23022
23023 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23024
23025         * mini.c: more opcodes implemented and better support for generics.
23026
23027 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
23028
23029         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
23030         * mini.c, mini.h: first cut at generics support: some new instructions 
23031         added and changed the behaviour of some of the existing ones.
23032
23033 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
23034
23035         * mini.c: Removed definition of metadata_shared mutex here.
23036
23037 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
23038
23039         * mini-x86.c: make vararg calls work for instance methods.
23040
23041 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23042
23043         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
23044         returns the arguments in a separte list, now.
23045
23046 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
23047
23048         * aot.c, mini.c: updates for array type representation changes.
23049
23050 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
23051
23052         * mini.c: register function to perform jit shutdown.
23053
23054 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23055
23056         * mini.c: use a faster allocator if possible.
23057
23058 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23059
23060         * aot.c: some cleanups and portability changes.
23061
23062 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23063
23064         * mini.c: use faster allocation for CEE_BOX if possible.
23065
23066 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
23067
23068         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
23069         Moved inlined mempcy code to its own function so that is can be
23070         reused. Added an inline memset function as well (optimized initobj).
23071         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
23072
23073 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23074
23075         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
23076
23077 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23078
23079         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
23080         arch code can setup the cpu for CLR execution, if needed.
23081         We use it on x86 to set the precision of FP operations.
23082
23083 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23084
23085         * mini.c: disable some optimizations if we can guess they'll cost too
23086         much for a given method.
23087
23088 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23089
23090         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
23091         
23092 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23093         * mini.h mini.c mini-x86.c: Added instruction level coverage 
23094         info collection support.
23095
23096 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23097
23098         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
23099         is now implemented in the profiling API. Get rid of a couple of
23100         unnecessary global variables.
23101
23102 2003-06-15  Nick Drochak <ndrochak@gol.com>
23103
23104         * basic-long.cs: tests for negative values for bigmul, and unsigned.
23105         * cpu-g4.md: add op_bigmul and op_bigmul_un
23106         * cpu_pentium.md: add op_bigmul_un
23107         * inssel-long32.brg: add rule for unsigned bigmul
23108         * mini-ops.h: define OP_BIGMUL_UN
23109         * mini-x86.c: THE BUG: handle (un)signed properly
23110         * mini.c: choose unsigned opcode if needed.
23111         This set of patches fixes bug #44291
23112
23113 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
23114
23115         * mini.c (optimize_branches): improved to handle all kinds of
23116         conditional branches.
23117
23118 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23119
23120         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
23121         don't raise exceptions.
23122
23123 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23124
23125         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
23126         to arch-specific files.
23127
23128 2003-06-09  Martin Baulig  <martin@ximian.com>
23129
23130         * Makefile.am (libs): Added $(LIBGC_LIBS).
23131
23132 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
23133
23134         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
23135         and OP_ATAN (fixes bug#44293).
23136
23137 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
23138
23139         * Makefile.am, mini-x86.c: rename cpu description array to
23140         pentium_desc, since some compilers define the 'pentium' preprocessor
23141         symbol.
23142
23143 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
23144
23145         * mini.c (mini_select_instructions): add explicit branch if the
23146         following block is not the false target of a conditional branch -
23147         we need this with any optimization that reorder or remove bblocks
23148
23149         * mini.c (optimize_branches): bug fixes
23150
23151 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
23152
23153         * mini.c (mono_method_to_ir): inline static readonly fields
23154
23155         * ssa.c (fold_tree): start cfold support for long (very simple
23156         cases only)
23157
23158         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
23159
23160 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
23161
23162         * inssel.brg: fixed memcpy (bug #44219).
23163
23164 2003-06-05  Dick Porter  <dick@ximian.com>
23165
23166         * driver.c: Set the glib log levels to not abort if g_message
23167         recurses.
23168
23169         g_set_prgname() has to happen before mini_init() so that the
23170         process handle gets the info.
23171         
23172 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23173
23174         * driver.c: add intrins to the default optimizations to get wider
23175         exposure.
23176
23177 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23178
23179         * mini.h: some large basic blocks will overflow a 16-bit
23180         integers for symbolic registers.
23181
23182 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23183
23184         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
23185         (mono_arch_output_basic_block): fix bug 43499 
23186
23187 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23188
23189         * mini.c: kill duplicated definition of mono_debug_format.
23190
23191 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23192
23193         * mini-x86.c, arrays.cs: fixed register allocation bug.
23194
23195 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23196
23197         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
23198
23199         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
23200
23201 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23202
23203         * mini.c:
23204         (print_method_from_ip): also print source location information if
23205         available.
23206
23207 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
23208
23209         * mini.c (mono_find_block_region): bug fix in region code
23210         (mini_method_compile): enable removing unreachable code again, but
23211         only in methods without exception clauses.
23212
23213 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
23214
23215         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
23216         Implemented arglist opcode and handling of TypedReference type.
23217         Fixed x86 call convention when a structure is returned.
23218         Minimal support for calling static vararg methods.
23219
23220 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
23221
23222         * mini.c (mini_method_compile):  always remove unreachable code,
23223         because the code in them may be inconsistent  (access to dead
23224         variables for example).
23225
23226 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23227
23228         * driver.c, debug-mini.c: warning fixes.
23229
23230 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
23231
23232         * Makefile.am, jit.h, mini.h: install header for embedding mono.
23233
23234 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
23235
23236         * mini.c: thread-static fields are registered in mono_class_vtable(),
23237         so ensure the function is called before checking for them.
23238
23239 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
23240
23241         * mini.c (optimize_branches): fix for bug 43586
23242
23243         * jit-icalls.c (mono_llmult_ovf): added an additional check for
23244         overflow (fixes Bug #43639)
23245
23246 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23247
23248         * mini.c, objects.cs: allow the use of stobj for primitive types.
23249
23250 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23251
23252         * mini.c: be less strict about argument checking until we support
23253         running the verifier.
23254
23255 2003-05-27  Nick Drochak <ndrochak@gol.com>
23256
23257         * basic-long.cs: tests for (ulong)int * (ulong)int also
23258         * mini.c: use the same trick for (ulong)int * (ulong)int
23259
23260 2003-05-27  Nick Drochak <ndrochak@gol.com>
23261
23262         * basic-long.cs: add regression test for (long)int * (long)int
23263         * cpu-pentium.md: add op_bigmul specification
23264         * inssel-long32.brg: add OP_BIGMUL rule
23265         * mini-ops.h: add OP_BIGMUL
23266         * mini-x86.c: register allocator: handle case where src1 needs to be
23267         in EAX.
23268         * mini.c: substitute special BIGMUL opcode in the tree for 
23269         (long)int * (long)int
23270
23271 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23272
23273         * jit-icalls.c: call the type ctor on field access if needed.
23274
23275 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23276
23277         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
23278         to a method (including results of ldelema, bug#43207).
23279
23280 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23281
23282         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
23283         colors to show exception handler blocks.
23284
23285         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
23286         (fix for pinvoke7.cs).
23287
23288 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23289
23290         * mini.h, mini.c: ensure correct initialization order for types that
23291         require it. Prepare for lazy compilation of jit icall wrappers.
23292         Provide a name for opcode emulation to reduce unneeded mallocing.
23293
23294 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23295
23296         * mini-x86.c: better register restoring code and profiling
23297         support for tail calls.
23298
23299 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
23300
23301         * mini.h, driver.c: prepare for leaf methods optimization.
23302
23303 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23304
23305         * mini.c: get targets of branches before converting a method.
23306
23307 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
23308
23309         * mini.c (optimize_branches): added some experimental code (disbaled) 
23310
23311 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
23312
23313         * mini.c (optimize_branches): fix branch to branch optimization 
23314
23315         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
23316
23317         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
23318
23319         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
23320
23321         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
23322         if needed.
23323
23324 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23325
23326         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
23327         enable use of interface variables again.
23328
23329         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
23330         I1 to registers because there is no simply way to sign extend 8bit
23331         quantities in caller saved registers on x86.
23332
23333         * inssel-float.brg: set costs of some rules to 2 so
23334         that monobure always select the arch. specific ones if supplied,
23335         regardless of the order we pass the files to monoburg.
23336
23337 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23338
23339         * mini.c, mini-x86.c: since the magic trampoline for jumps
23340         can't patch the code directly, we do it as soon as the
23341         method gets compiled.
23342
23343 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23344
23345         * mini-x86.c, mini.h: introduce a new patching method
23346         to support CEE_JMP and tail calls.
23347         * mini.c: obey tail.call. Don't precompile methods target
23348         of CEE_JMP.
23349         * tramp-x86.c: new trampoline code to handle methods
23350         reached through a jump.
23351
23352 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
23353
23354         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
23355         bit values to registers
23356
23357 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
23358
23359         * mini.c (mono_compile_get_interface_var): share interface
23360         variables if possible.
23361
23362 2003-05-16  Martin Baulig  <martin@ximian.com>
23363
23364         * debug-mini.c (mono_init_debugger): New function to initialize
23365         the debugger.  This is not in the debugger since it needs to
23366         access some of mini's internals.
23367
23368 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
23369
23370         * mini.c (mono_method_to_ir): inlining fixes/cleanups
23371
23372 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
23373
23374         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
23375         for value type handling.
23376
23377 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
23378
23379         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
23380         (mono_method_check_inlining): enable inlining of all kinds of wrappers
23381
23382 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
23383
23384         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
23385           the constructor through a proxy.
23386
23387 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23388
23389         * jit-icalls.c, inssel.brg: fixes to array element address
23390         calculations.
23391
23392 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
23393
23394         * mini-x86.c (is_regsize_var): allocate pointer to registers
23395
23396 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23397
23398         * driver.c: fixed typo, added intrins to the set of optimizations
23399         tested with regressions.
23400
23401 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23402
23403         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
23404         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
23405         test case.
23406
23407 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
23408
23409         * inssel.brg: remove some common pop instructions without side effects
23410
23411 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
23412
23413         * inssel-x86.brg: fixed thinko in int to double conversions.
23414
23415 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23416
23417         * mini.c, jit-icalls.c: added runtime thread-static variable support.
23418
23419 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23420
23421         * inssel-long32.brg: two more missing instructions.
23422
23423 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23424
23425         * mini.c (mono_emit_call_args): set the cil_code for all arguments
23426         if not already set.
23427
23428 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
23429
23430         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
23431         correctly.
23432
23433         * basic-float.cs: Added tests for negative zero.
23434
23435 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23436
23437         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
23438         a couple of missing operations for long casts, with test cases.
23439
23440 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23441
23442         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
23443
23444 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
23445
23446         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
23447         code size estimation.
23448
23449 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23450
23451         * mini.c (mono_jit_create_remoting_trampoline): make it work with
23452         abstract methods (fix bug 42542)
23453
23454         * aot.c: add ability to handle array types
23455         
23456 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
23457
23458         * mini.c: Call the _specific versions of the object allocation
23459         functions if possible.
23460
23461 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
23462
23463         * driver.c: call setlocale ().
23464
23465 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23466
23467         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
23468         windows build.
23469
23470 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23471
23472         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
23473
23474         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
23475         wrappers (fix bug 42122)
23476
23477 2003-05-04  Martin Baulig  <martin@ximian.com>
23478
23479         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
23480
23481         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
23482         s/mini_set_defaults/mono_set_defaults/g.
23483
23484 2003-05-04  Martin Baulig  <martin@ximian.com>
23485
23486         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
23487
23488 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23489
23490         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
23491         (reported by Don Roberts).
23492
23493 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
23494
23495         * mini.c: temporarily work around two bugs for this release.
23496
23497 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23498
23499         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
23500         that contains -export-dynamic and it makes using the ld script
23501         useless.
23502         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
23503
23504 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23505
23506         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
23507         specific cpu.
23508
23509 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23510
23511         * mini.c: make sure leave calls all the needed finally blocks,
23512         even when the target jumps out of multiple exception clauses.
23513
23514 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23515
23516         * ldscript, Makefile.am: add linker script to reduce the number of
23517         exported symbols (should also fix the issues with libwine defining
23518         some of the same symbols in io-layer).
23519
23520 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
23521
23522         * driver.c (mini_main): Avoid assertion when no file name is given on 
23523         the command line.
23524
23525 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
23526
23527         * driver.c: added --version/-V command line option.
23528         Added the inline optimization in the regression tests.
23529
23530 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23531
23532         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
23533         to the type in the method signature (fixes bug#42134).
23534
23535 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
23536
23537         * mini.c: when inlining, check this is not null only when needed (bug #42135).
23538
23539 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
23540
23541         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
23542
23543 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23544
23545         * driver.c: fixed bug #42100.
23546
23547 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
23548
23549         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
23550
23551 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23552
23553         * mini.c: moved most of the code required to do inlining to its own
23554         function so it can be reused. Inline also ctors if appropriate.
23555
23556 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
23557
23558         * Makefile.am: Link with -export-dynamic so shared libs loaded by
23559         the runtime can call mono API functions.
23560
23561 2003-04-27  Martin Baulig  <martin@ximian.com>
23562
23563         * debug-mini.c (mono_debug_init_method): Added
23564         `guint32 breakpoint_id' argument; if the method has a breakpoint,
23565         send a notification to the debugger.
23566
23567         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
23568         running in the Mono Debugger, just pass the breakpoint number to
23569         mono_debug_init_method().
23570
23571         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
23572
23573 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
23574
23575         * mini.c: allow some more unsafe compares.
23576
23577 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23578
23579         * mini-x86.c, Makefile.am: make distcheck works (partially from
23580         a patch by Richard Lee <r.h.lee@attbi.com>).
23581         * regset.c, regset.h: removed, they are unused.
23582
23583 2003-04-25  Dick Porter  <dick@ximian.com>
23584
23585         * driver.c: Usage reports the name as 'mono' not 'mini'
23586         * exceptions-x86.c: Build and run on freebsd
23587
23588 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23589
23590         * Makefile.am: install the program with the 'mono' name and
23591         the library as libmono instead of mini and libmini.
23592
23593 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23594
23595         * driver.c: provide the APIs for the embedding interface of the old jit.
23596
23597 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
23598
23599         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
23600
23601 2003-04-23  Martin Baulig  <martin@ximian.com>
23602
23603         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
23604
23605         * driver.c: Added `--debug' command line argument to enable
23606         debugging support.
23607
23608 2003-04-23  Martin Baulig  <martin@ximian.com>
23609
23610         * debug.[ch]: Removed.  The code is now in
23611         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
23612
23613         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
23614         last six months.
23615
23616 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
23617
23618         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
23619
23620 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23621
23622         * mini.c:
23623         (mini_cleanup): moved mono_runtime_cleanup call after the call to
23624         mono_domain_finalize.
23625         (mini_method_compile): use mono_method_profile* if the the option is
23626         enabled.
23627
23628 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
23629
23630         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
23631         methods with their wrapper.
23632
23633         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
23634         methods with their wrapper.
23635
23636         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
23637         their wrapper.
23638
23639         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
23640         wrapper.
23641
23642         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
23643         methods.
23644
23645 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
23646
23647         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
23648
23649 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
23650
23651         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
23652         of the mempool. This is slightly faster and uses less memory
23653
23654 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
23655
23656         * mini.c: avoid O(n) allocation for variables.
23657
23658 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23659
23660         * mini.c: handle items on the stack after inlining methods.
23661
23662 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23663
23664         * mini.c: make the method->opcode optimization dependent
23665         on MONO_OPT_INSTRINS and do it lazily.
23666
23667 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23668
23669         * driver.c: print overall results at the end of regression run.
23670
23671 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
23672
23673         * inssel.brg: don't overwrite symbolic registers.
23674
23675 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
23676
23677         * inssel-x86.brg: fix conversion from long to float.
23678
23679 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
23680
23681         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
23682
23683 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
23684
23685         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
23686
23687         * driver.c: Added --print-vtable option as in the old JIT.
23688
23689 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23690
23691         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
23692
23693 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
23694
23695         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
23696
23697 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
23698
23699         * mini.c regalloc.c regalloc.h: Fix memory leak.
23700
23701 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
23702
23703         * aot.c (mono_aot_get_method): register all used strings
23704
23705 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
23706
23707         * mini.c: always intern strings references with ldstr at compile time.
23708
23709 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23710
23711         * Makefile.am: add BUILT_SOURCES.
23712
23713 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
23714
23715         * driver.c: give a better error message when the assembly to execute
23716         doesn't have an entry point.
23717
23718 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
23719
23720         * Makefile.am: added hack for automake
23721
23722         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
23723         correct sematics.
23724
23725         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
23726
23727 22003-04-07  Martin Baulig  <martin@ximian.com>
23728
23729         * Makefile.am: Added Makefile.am.
23730
23731         * debugger-main.c: Removed, this is now in the debugger where it
23732         belongs.
23733
23734         * mini.pc.in: Call this package `mini' for the moment.
23735
23736
23737
23738
23739
23740
23741
23742
23743
23744
23745
23746
23747
23748
23749