2010-07-09 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / ChangeLog
1 2010-07-09  Zoltan Varga  <vargaz@gmail.com>
2
3         * mini.h (MONO_INST_HAS_CONSTANT_LOAD): New instruction flag marking loads which load
4         from constant memory.
5
6         * ir-emit.h: Clean up the _FAULT macros a bit.
7
8         * decompose.c: Mark some loads as constant.
9
10         * mini-llvm.c: Pass the constant-ness of loads to LLVM using custom metadata.
11
12 2010-07-09  Miguel de Icaza  <miguel@novell.com>
13
14         * driver.c (mini_usage): Change the name of the --sgen flag to be
15         --gc=sgen and also support --gc=boehm.   These flags can also be
16         set on MONO_ENV_OPTIONS to propagate this to children processes. 
17
18         * main.c: Remove the MONO_VM_OPTIONS environment variable that
19         only supported "sgen" and "llvm" config options and instead parse
20         the MONO_ENV_OPTIONS as options that are parsed by the command
21         line parser.   Any command line option that Mono supports can be
22         passed in this environment variable.
23
24 2010-07-09  Zoltan Varga  <vargaz@gmail.com>
25
26         * ir-emit.h mini-llvm.c: Fix support for explicit-null-checks +
27         LLVM.
28
29         * mini.c (mini_method_compile): Run abcrem uncoditionally when LLVM is used since
30         it can now eliminate more than just bounds checks.
31
32         * ir-emit.h: Add MAY_FAULT versions of the LOAD_MEMBASE macros which take
33         an extra 'fault' argument.
34
35         * method-to-ir.c: Set the MONO_INST_FAULT of the array opcodes which are decomposed
36         later.
37
38         * decompose.c: Propagate the MONO_INST_FAULT flag from the array opcodes to their
39         decomposition.
40
41         * mini-llvm.c: Remove support for the X86/AMD64 COMPARE_MEMBASE opcodes, they are
42         no longer generated when LLVM is used.
43
44         * abcremoval.c: Eliminate MONO_INST_FAULT flags if possible.
45
46 2010-07-09  Zoltan Varga  <vargaz@gmail.com>
47
48         * ir-emit.h mini-llvm.c: Fix support for explicit-null-checks + LLVM.
49
50 2010-07-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
51
52         * driver.c: Moonlight: Force line buffering for stdout.
53
54 2010-07-09  Zoltan Varga  <vargaz@gmail.com>
55
56         * mini-llvm.c (emit_load): Revert the last changes, the load/store intrinsics
57         are only callable using invoke.
58
59 2010-07-09  Zoltan Varga  <vargaz@gmail.com>
60
61         * mini-llvm.c (process_bb): Use emit_load () in one more place.
62
63         * mini-llvm-cpp.cpp (force_pass_linking): Link in more function passes so
64         MONO_LLVM=xxx is actually usable.
65
66         * mini-llvm.c (emit_load): Use the mono specific load intrinsics even outside clauses
67         since LLVM might be able to hoist them out of loops.
68         (emit_store): Ditto.
69
70 2010-07-08  Neale Ferguson <neale@sinenomine.net>
71
72         * mini-s390x.c: Correct setting value of header from cfg->header - fix crash
73         in typeload-unaligned test.
74
75 2010-07-08  Zoltan Varga  <vargaz@gmail.com>
76
77         * xdebug.c (mono_save_trampoline_xdebug_info): Make this receive a MonoTrampInfo.
78
79         * tramp-<ARCH>.c: Move the calls to save_trampoline_xdebug_info () into
80         mini-trampolines.c/mini-exceptions.c. Use a more human readable name for
81         generic trampolines+rgctx fetch trampolines.
82
83 2010-07-08  Geoff Norton  <gnorton@novell.com>
84
85         * genmdesc.pl: nacl is not a new inst slot, it just modifies the size slot.
86
87 2010-07-07  Zoltan Varga  <vargaz@gmail.com>
88
89         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Add xdebug info.
90
91         * method-to-ir.c (emit_imt_argument): Call add_outarg_reg even if MONO_ARCH_IMT_REG
92         is not defined in the LLVM case to keep the imt arg alive.
93
94 2010-07-06  Zoltan Varga  <vargaz@gmail.com>
95
96         * exceptions-<ARCH>.c mini-llvm.c: Clean up the naming of the llvm related trampoline
97         functions, now its 'llvm_<FOO>_trampoline'.
98
99         * method-to-ir.c (emit_imt_argument): Fix llvm support.
100
101         * mini-llvm.c: Use only one mono specific LLVM calling convention since imt/rgctx
102         cannot be passed in the same call.
103
104         * mini-amd64.h mini-amd64.c tramp-amd64.c aot-compiler.c: Change the IMT
105         register to be the same as the RGCTX register, the two can't be used together on
106         the same call.
107
108 2010-07-05  Miguel de Icaza  <miguel@novell.com>
109
110         * driver.c (mono_main), main.c: Add support for MONO_VM_CONFIG
111         that allows the user to force the VM to use llvm or sgen.
112
113 2010-07-05  Zoltan Varga  <vargaz@gmail.com>
114
115         * exceptions-ppc.c (mono_arch_handle_exception): Resume from the signal handler
116         before processing the exception on PPC too.
117
118         * mini-ppc.h (MONO_CONTEXT_SET_SP): Define this to fix the PPC build.
119
120         * mini-ppc.c tramp-ppc.c aot-compiler.c: Change the managed calling convention so
121         'this' is always passed as the first argument, before the vtype ret arg. This
122         simplifies get_this_arg_reg () and LLVM integration.
123
124 2010-07-05  Martin Baulig  <martin@ximian.com>
125
126         * exceptions-x86.c (mono_arch_handle_exception): Port this to
127         Windows; apply my patch from r159782 in the mono-2-6 branch.
128
129 2010-07-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
130
131         * Makefile.am: Don't build the debug assembler files if we're building without
132         debugger support.
133
134 2010-07-05  Zoltan Varga  <vargaz@gmail.com>
135
136         * aot-compiler.c (arch_emit_unbox_trampoline): Fix this after the callconv changes.
137
138 2010-07-04  Zoltan Varga  <vargaz@gmail.com>
139
140         * tramp-arm.c (mono_arch_create_generic_trampoline): Fix the max trampoline
141         length.
142
143         * mini-arm.h (MonoContext): Get rid of the 'ebp' field, use
144         regs [ARMREG_FP] instead.
145
146         * unwind.c (decode_lsda): Use read32 for reading 32 bit quantities.
147
148         * tramp-arm.c (mono_arch_create_generic_trampoline): Save the original sp to
149         lmf->iregs [ARMREG_IP] to be consistent with mono_arch_emit_prolog ().
150
151         * mini-arm.h (MonoLMF): Remove unused fregs field, add comments for other fields.
152
153         * exceptions-arm.c: Clean up the handling of LMFs. Add LLVM exception trampolines.
154
155         * mini-arm.c: Always use V5 for passing IMT/RGCTX when running under LLVM.
156
157         * method-to-ir.c (emit_imt_argument): Fix LLVM support for architectures
158         without IMT_REG defined (ARM).
159
160         * exceptions-arm.c: Add LLVM throw exception trampolines, add xdebug info for
161         the trampolines.
162
163 2010-07-03  Zoltan Varga  <vargaz@gmail.com>
164
165         * mini-llvm.c (process_bb): Disable OP_MEMORY_BARRIER on arm.
166
167 2010-07-02  Zoltan Varga  <vargaz@gmail.com>
168
169         * mini.h: Applied patch from Elijah Taylor (elijahtaylor@google.com). Fix some
170         definitions to match their declarations and vice-versa.
171
172 2010-07-01  Zoltan Varga  <vargaz@gmail.com>
173
174         * Makefile.am (common_sources): Add mini-llvm.h.
175
176         * unwind.c (mono_unwind_decode_fde): Fix the decoding of the lsda offset.
177
178 2010-06-30  Zoltan Varga  <vargaz@gmail.com>
179
180         * mini.c (mini_cleanup): Avoid calling mono_runtime_shutdown () if cross
181         compiling.
182
183 Wed Jun 30 12:10:57 CEST 2010 Paolo Molaro <lupus@ximian.com>
184
185         * Makefile.am, mini-llvm.h, mini-unwind.h, mini.c, mini.h, xdebug.c:
186         implemt the option of loading the llvm backend from a module so
187         that we can have a single binary and the bloat from llvm is
188         only experienced when it is actually loaded.
189
190 Wed Jun 30 12:02:39 CEST 2010 Paolo Molaro <lupus@ximian.com>
191
192         * mini-llvm.c: remove direct access to mono_defaults.
193
194 2010-06-29  Zoltan Varga  <vargaz@gmail.com>
195
196         * mini-arm.c (mono_arch_get_vcall_slot): This is no longer used on ARM, so make it
197         a no-op.
198
199         * mini-trampolines.c (mono_vcall_trampoline): Fix a warning.
200
201         * mini-x86.c (mono_arch_get_vcall_slot): Remove most cases as the only caller
202         is now mono_arch_nullify_class_init_trampoline ().
203         (mono_arch_output_basic_block): Remove the special casing from the CALL_MEMBASE
204         opcodes, they are no longer needed.
205
206         * mini-amd64.c (mono_arch_get_vcall_slot): Remove most cases as the only caller is
207         now mono_arch_nullify_class_init_trampoline ().
208         (mono_arch_output_basic_block): Remove the special casing from the CALL_MEMBASE
209         opcodes, they are no longer needed.
210
211         * mini-trampolines.c (mono_vcall_trampoline): Use the LLVM method of obtaining the
212         vtable on platforms which support it.
213
214         * driver.c: Print the full LLVM version we are compiled against in --version.
215
216         * aot-runtime.c (decode_exception_debug_info): Separate the LLVM and non-LLVM code
217         a bit better. Decode nesting information to fix eh support for llvm+aot.
218
219         * aot-compiler.c (emit_exception_debug_info): Encode nesting information for LLVM
220         methods.
221
222         * mini-llvm.c (mono_llvm_cleanup): Dispose the aot module too.
223
224         * mini-arm.c (get_call_info): Change the managed calling convention so 'this'
225         is always passed as the first argument, before the vtype ret arg. This simplifies
226         get_this_arg_reg () and LLVM integration.
227
228 2010-06-28  Zoltan Varga  <vargaz@gmail.com>
229
230         * mini-trampolines.c mini.c: Rework the virtual call handling code by using a separate
231         vtable trampoline for each vtable slot for both the LLVM and non-LLVM cases. Move
232         most of the vcall specific code to mono_vcall_trampoline () from
233         common_call_trampoline ().
234
235 2010-06-27  Zoltan Varga  <vargaz@gmail.com>
236
237         * mini-trampolines.c (common_call_trampoline): Remove the code which created static
238         rgctx trampolines when called from LLVM, they won't work for dynamic rgctx arguments
239         if the callsite is patched.
240
241         * mini-llvm.c (process_call): Disable calls which need an rgctx arg if not using
242         the llvm branch.
243
244         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Fix the name of
245         the trampoline in the xdebug info.
246
247         * mini-trampolines.c (common_call_trampoline): Make the last change work for LLVM
248         as well.
249
250 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
251
252         * mini-llvm.c: Fix a few problems exposed by make check.
253
254 2010-06-25  Mark Probst  <mark.probst@gmail.com>
255
256         * mini-trampolines.c (common_call_trampoline): An ugly hack to
257         work around a potentially very hard to fix problem with inflating
258         generic methods.
259
260 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
261
262         * method-to-ir.c (mono_emit_wb_aware_memcpy): Remove the workaround as the core
263         problem has been fixes.
264
265 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
266
267         * Makefile.am: Add an 'SGEN' make variable to allow tests to be run with SGEN.
268
269         * mini-gc.c (mini_gc_init_cfg): Use mono_gc_is_moving () instead of HAVE_SGEN_GC.
270         It might be be better to define a MonoGCJitOptions structure later and have the
271         GC return that.
272
273         * mini-darwin.c: Don't undefine pthread_ calls for SGEN, they are no longer defined.
274
275         * Makefile.am: Use libwapi.la for both sgen and non-sgen builds.
276
277         * debugger-agent.c (get_objref): Implement support for sgen.
278
279         * driver.c: Remove the unused gc_wrapper.h include.
280
281         * driver.c (mono_main): Delegate the --desktop mode optimizations to the GC
282         implementation.
283
284 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
285
286         * driver.c (mono_main): Use mono_gc_get_description () to print the GC name.
287
288         * mini-gc.c (mini_gc_init_cfg): New function to initialize GC specific flags
289         in MonoCompile.
290
291         * method-to-ir.c mini.c: Remove usage of HAVE_SGEN_GC and use runtime checks
292         instead.
293
294 2010-06-23  Miguel de Icaza  <miguel@novell.com>
295
296         * Makefile.am: Build the mono-sgen binary a Mono VM with the Sgen
297         GC enabled as well as libmono-sgen-2.0 and libomonosgen-static
298
299         * driver.c: Do not depend on the USED_GC_NAME when using SGen, use
300         it only for Boehm diagnostics.
301
302         * Makefile.am: Make the file a bit more consistent.
303
304         * debug-debugger.c: Wrap the entire file with an #ifdef
305         MONO_DEBUGGER_SUPPORTED to simplify the build.
306
307         * Makefile.am: Fix the opcodes build issue by including the
308         source, not by including the .lo file directly
309
310         Always bring the MDB sources into the build, to drop the
311         dependency on the AM_CONDITIONAL from configure.in as the hard
312         debugger supports Boehm, but not Sgen, this simplifies the build. 
313
314         * Renamed the *.s files into *.S
315
316 2010-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
317
318         * method-to-ir.c (mono_emit_wb_aware_memcpy): Don't emit bitmap
319         wb for now on 64bits systems while issues with valuetype returns
320         are not fixed.
321
322 2010-06-24  Zoltan Varga  <vargaz@gmail.com>
323
324         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add support for using a standard set of
325         passes by calling createStandardFunctionPasses ().
326
327 2010-06-23  Zoltan Varga  <vargaz@gmail.com>
328
329         * mini.h (MONO_INS_HAS_NO_SIDE_EFFECT): Add OP_LDADDR.
330
331 2010-06-22  Zoltan Varga  <vargaz@gmail.com>
332
333         * method-to-ir.c (mono_method_to_ir): Don't mark loads from OP_LDADDR with
334         MONO_INST_FAULT.
335
336         * mini-llvm.c (mono_llvm_emit_method): Recalculate MONO_INST_INDIRECT flags to
337         allow better optimization if the OP_LDADDR which caused the flag to be set was
338         optimized away.
339
340         * exceptions-amd64.c (get_throw_trampoline): Align the stack properly.
341
342         * mini-amd64.c (mono_arch_emit_exceptions): Pass only the type token index, not
343         the type token.
344
345         * mini-llvm.c (emit_entry_bb): Save the this argument only in gshared methods.
346
347         * mini-llvm.c: Fix a couple memory leaks. Get rid of a few #ifdefs.
348
349 2010-06-22  Zoltan Varga  <vargaz@gmail.com>
350
351         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Call patch_callsite ()
352         to handle the code sequence generated for non-near calls. Fixes #616056.
353
354 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
355
356         * exceptions-x86.c (mono_arch_find_jit_info_ext): Adjust eip in the lmf case too.
357
358         * exceptions-x86.c: Add a resume_unwind trampoline for LLVM.
359
360         * mini-llvm.c (exception_cb): For nested clauses, add the same try range to the
361         nesting clause too.
362         (mono_llvm_check_method_supported): Enable llvm for methods with nested clauses.
363         (mono_llvm_emit_method): Instead of calling 'mono_resume_unwind' directly, call a
364         trampoline which saves the context, so changes made to callee saved registers in
365         finally clauses are visible to a nesting catch clause.
366
367         * exceptions-amd64.c: Add a resume_unwind trampoline for LLVM.
368
369         * mini-exceptions.c (mono_handle_exception_internal): Fix support for nested clauses
370         in LLVM compiled code.
371         (mono_handle_exception_internal): Add a 'ctx' argument containing the state after
372         the finally handler has ran.
373
374         * mini.h (ResumeState): New structure containing information required to resume
375         exception handling after executing LLVM compiled finally clauses.
376
377         * exceptions-amd64.c (get_throw_trampoline): Clean up the amd64 throw trampolines a
378         bit, by passing all the registers as one argument.
379
380 2010-06-19  Zoltan Varga  <vargaz@gmail.com>
381
382         * tramp-amd64.c (mono_arch_create_generic_trampoline): Increase the buf len a little,
383         to avoid an assert.
384
385 2010-06-18  Zoltan Varga  <vargaz@gmail.com>
386
387         * aot-compiler.c (emit_klass_info): Mark unloadable classes properly.
388
389         * aot-compiler.c aot-runtime.c: Fix LLVM support.
390
391         * mini-llvm.c: When emitting OP_CALL_HANDLER, avoid branching directly to the landing
392         pad, branch to a new bblock instead.
393
394         * aot-compiler.c (emit_method_code): Use cfg->header instead of the header of
395         orig_method.
396
397         * exceptions-amd64.c (mono_arch_exceptions_init): Fix fullaot support.
398
399         * mini-llvm.c (process_bb): Add support for OP_SQRT when using the LLVM mono branch.
400
401 2010-06-17  Geoff Norton  <gnorton@novell.com>
402
403         * mini-arm.h:
404         * exceptions-arm.c: Move the UCONTEXT macros to mono-sigcontext.h so they
405         can be used by sgen.
406
407 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
408
409         * aot-compiler.c (emit_klass_info): Handle type load exceptions.
410
411         * method-to-ir.c (mono_method_to_ir): Avoid a crash if mono_method_get_header ()
412         fails.
413
414         * exceptions-x86.c (mono_x86_throw_corlib_exception): Negate the decrement of
415         the ip done by throw_exception (), it is not needed for corlib exceptions.
416
417 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
418
419         * method-to-ir.c (mono_emit_wb_aware_memcpy): Simplify this function.
420         Call new jit icall mono_gc_wbarrier_value_copy_bitmap for vt wbarrier
421         of size > 5 words. This support fast barriers for value types up to
422         256/512 bytes which     beyond that the copying itself is the major issue.
423
424         * method-to-ir.c (mini_emit_stobj): The intrinsic version is safe
425         for gsharing, so use it.
426
427         This eliminate all calls to mono_value_copy from managed code in
428         gmcs, fsharp and ipy.
429
430         This gives a 2% perf boost on ipy and 1% on gmcs over previous patches.
431
432         Even thou a lot of mono_value_copy calls were eliminated from fsharp,
433         performance kept
434
435         * mini.c (mini_init): Register new icall.
436
437 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
438
439         * method-to-ir.c (mono_emit_wb_aware_memcpy): Handle nested valuetypes.
440         This eliminates 2% of mono_value_copy calls on ipy and 12% on fsharp.
441
442 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
443
444         * method-to-ir.c (mini_emit_stobj): Don't call mono_value_copy for small
445         value types as the overhead is huge. Manually expand it up to 5 words to
446         avoid code bloat.
447
448         This improves gmcs times by 5% and unmodified binary-tree by 78%. The later
449         is an exception that performance is dominated by mono_value_copy.
450
451         This puts sgen about 5% ahead of boehm in terms of wall-clock on a Core2Quad.
452
453 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
454
455         * mini-llvm.c (process_call): Disable LLVM for calls to generic class init
456         trampolines on x86, since those have their own cconv.
457
458         * exceptions-x86.c (mono_arch_exceptions_init): Implement the llvm throw corlib
459         exception trampolines.
460
461         * tramp-x86.c: Add xdebug info for a few trampolines.
462
463         * mini-llvm.c: Set the name of the arguments.
464
465         * mini-llvm.c (emit_cond_system_exception): Pass the ip of to throw_corlib_trampoline
466         using a block address if using the LLVM mono branch.
467
468         * exceptions-amd64.c (mono_arch_exceptions_init): Add new LLVM throw corlib exception
469         trampolines.
470
471 2010-06-15  Zoltan Varga  <vargaz@gmail.com>
472
473         * mini-ppc.c (mono_arch_get_cie_program): Define this for powerpc too.
474
475         * mini-llvm.c (process_bb): Add a missing CHECK_FAILURE.
476
477         * mini.c (mini_init): Remove some of the llvm restrictions, they are no longer needed.
478
479         * method-to-ir.c (mono_method_to_ir): Enable fast virtual calls when using llvm.
480
481         * mini-trampolines.c (mono_llvm_vcall_trampoline): Rewrite this to use one vtable
482         trampoline per vtable slot index. The slot, along with the 'this' argument is enough
483         to identify the vtable slot address plus the method which needs to be compiled.
484
485         * mini.c (mini_get_vtable_trampoline): Use one vtable trampoline per vtable slot when
486         using llvm.
487
488         * mini-x86.c (get_call_info_internal): Change the managed calling convention so
489         'this' is always passed as the first argument, before the vtype ret arg. This
490         simplifies get_this_arg_reg () and LLVM integration.
491
492         * mini-amd64.c (get_call_info): Fix the handling of MONO_TYPE_TYPEDBYREF after
493         the latest changes.
494
495         * tramp-x86.c (mono_arch_create_generic_trampoline): Emit unwind info for
496         these trampolines.
497
498         * mini-x86.c (mono_arch_get_cie_program): Implement this for x86.
499
500         * mini-llvm.c: Fix compilation with llvm 2.6.
501
502         * mini-amd64.c (CallInfo): Fix the position of the vret_arg_index field.
503
504         * mini-llvm.c (mono_llvm_emit_method): Fix the build if LLVM_MONO_BRANCH is not
505         defined.
506
507         * mini-amd64.c (get_call_info): Change the managed calling convention so 'this'
508         is always passed as the first argument, before the vtype ret arg. This simplifies
509         get_this_arg_reg () and LLVM integration.
510
511 2010-06-14 Rodrigo Kumpera  <rkumpera@novell.com>
512
513         * method-to-ir.c (mono_method_to_ir): Add support for .ctor intrinsics.
514
515         * method-to-ir.c (mini_emit_inst_for_ctor): New function for .ctor intrinsics.
516         For now just call simd intrinsics. This makes "x[0] = new Vector4f (10)" 
517         translate into much nicer code.
518
519 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
520
521         * mini-llvm.c (sig_to_llvm_sig_full): Add a 'sinfo' out argument which returns
522         parameter index information. Use this to simplify a lot of code.
523
524         * unwind.c (mono_unwind_decode_fde): Handle augmentions using a loop.
525
526 2010-06-12  Zoltan Varga  <vargaz@gmail.com>
527
528         * aot-compiler.c (compile_method): Add a 'depth' parameter to add_generic_class too
529         to fix infinite generic recursion. Fixes #612702.
530
531 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
532
533         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
534         imt trampoline per imt slot when using LLVM.
535
536 2010-06-10  Jonathan Pryor  <jpryor@novell.com>
537
538         * mini.c (mini_cleanup): Call mono_runtime_shutdown(). Fixes #438454.
539
540 2010-06-09  Levi Bard  <levi@unity3d.com>
541
542         * debugger-agent.c: Clear unloaded types on appdomain unload.
543
544 2010-06-08  Zoltan Varga  <vargaz@gmail.com>
545
546         * liveness.c (visit_bb): Make the component vregs of long vars volatile as well.
547         Fixes #612206.
548
549         * exceptions.cs: Add a test.
550
551 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
552
553         * mini-llvm.c (mono_llvm_check_method_supported): Only disable llvm for nested clauses.
554
555         * mini.c (mini_method_compile): Move the LLVM checks to a function in mini-llvm.c.
556
557         * mini.c (mono_jit_runtime_invoke): Initialize *exc to NULL before calling the wrapper,
558         so it doesn't have to do it.
559
560         * helpers.c (mono_disassemble_code): Flush stdout, so the output from the spawned
561         process does not mix with ours.
562
563         * mini-llvm.c (mono_llvm_emit_method): Refactor this giant function into smaller
564         ones.
565
566         * mini-llvm.c method-to-ir.c ir-emit.h: When using the llvm mono branch, allow
567         loads/stores which can throw exceptions inside clauses.
568
569 2010-06-05  Zoltan Varga  <vargaz@gmail.com>
570
571         * mini-llvm.c (mono_llvm_emit_method): Fix support for finally clauses with more than
572         one ENDFINALLY.
573
574         * mini.c (mini_init): Register mono_resume_unwind as an icall.
575
576 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
577
578         * dwarfwriter.c: Update after the mono_debug_lookup_locals () changes.
579
580         * debugger-agent.c (method_commands_internal): Ditto. Return scope information for
581         locals.
582
583 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
584
585         * debugger-agent.c (appdomain_unload): Clear all breakpoint instances in the dying
586         appdomain.
587
588 2010-06-02  Zoltan Varga  <vargaz@gmail.com>
589
590         * method-to-ir.c (set_rgctx_arg): New helper function to remove some duplicate code.
591         Use a separate generic class init trampoline for llvm, since it needs a different
592         signature.
593
594         * unwind.c (mono_unwind_decode_fde): Make this decode the mono specific LSDA which
595         includes the location of this/rgctx.
596
597         * mini-llvm.c aot-runtime.c: Enable generic sharing for llvm if using the LLVM mono
598         branch.
599
600 2010-06-01  Zoltan Varga  <vargaz@gmail.com>
601
602         * mini.c (mini_method_compile): Enable llvm+exceptions on LLVM SVN.
603
604         * mini-llvm.c (emit_cond_system_exception): Disable llvm when this occurs in a
605         clause.
606
607 2010-05-31  Zoltan Varga  <vargaz@gmail.com>
608
609         * unwind.c (mono_unwind_decode_fde): The FDE only has an augmention if the CIE
610         says so.
611
612         * aot-runtime.c (decode_eh_frame): Fix an assert condition.
613
614         * aot-compiler.c (patch_to_string): New debugging helper function.
615
616 2010-05-30  Zoltan Varga  <vargaz@gmail.com>
617
618         * exceptions-amd64.c (get_throw_trampoline): Fix the xdebug name of the corlib
619         trampoline.
620
621         * exceptions-x86.c (mono_arch_exceptions_init): Create an llvm rethrow trampoline too.
622
623         * mini-llvm.c (mono_llvm_emit_method): Implement OP_RETHROW.
624
625         * method-to-ir.c (mono_method_to_ir): Emit a OP_NOT_REACHED after a rethrow.
626
627         * mini-llvm.c (emit_call): Compute the containing try clause correctly for nested
628         clauses.
629
630         * mini.c (create_jit_info): Print EH clause info for LLVM too.
631
632 2010-05-28  Mark Probst  <mark.probst@gmail.com>
633
634         * method-to-ir.c (mono_method_to_ir): Emit a write barrier for
635         cpobj with reference types.
636
637 2010-05-28  Mark Probst  <mark.probst@gmail.com>
638
639         * method-to-ir.c (mono_method_to_ir): Only explicitly add the
640         write barrier for reference types.
641
642 2010-05-27  Zoltan Varga  <vargaz@gmail.com>
643
644         * mini-s390x.c (mono_arch_output_basic_block): Applied patch from Aurelien Minvielle
645         . Fix OP_ATOMIC_EXCHANGE_I4 on s390x. Fixes #609023.
646
647 2010-05-31  Martin Baulig  <martin@ximian.com>
648
649         Fix #608271.
650
651         * debugger-agent.c (breakpoints_cleanup): Iterate over `event_requests', call
652         clear_breakpoint() on all breakpoint events and remove them from the list.
653
654 2010-05-27  Martin Baulig  <martin@ximian.com>
655
656         Fix #605698.
657
658         * debugger-agent.c (method_commands, type_commands): Temporarily
659         set the appdomain while executing this method; do all metadata
660         calls in the debuggee's appdomain where user assemblies are loaded.
661
662 2010-05-27  Zoltan Varga  <vargaz@gmail.com>
663
664         * mini-s390x.c (mono_arch_get_delegate_invoke_impls): Fix the s390x build.
665
666 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
667
668         * method-to-ir.c (mono_method_to_ir): Add missing write barrier to stobj.
669
670 2010-05-26  Zoltan Varga  <vargaz@gmail.com>
671
672         * method-to-ir.c: Instead of freeing method headers immediately, save them in a list in
673         MonoCompile, and free them in mono_destroy_compile (), since the MonoType's in them could
674         be referenced even after the header is freed.
675
676         * aot-runtime.c: Remove the half finished support for decoding the .arm_exidx
677         section.
678
679 2010-05-25  Zoltan Varga  <vargaz@gmail.com>
680
681 2010-05-25  Bill Holmes  <billholmes54@gmail.com>
682
683         * genmdesc.c (main): Fixing the detection of the nacl switch.
684
685         Code is contributed under MIT/X11 license.
686
687 2010-05-25  Zoltan Varga  <vargaz@gmail.com>
688
689         * exceptions-amd64.c (mono_arch_find_jit_info_ext): Adjust the ip for LMF frames too.
690
691         * mini-llvm.c aot-compiler.c: More LLVM 2.8 updates.
692
693         * mini.h (LLVM_CHECK_VERSION): New helper macro.
694
695 2010-05-25  Miguel de Icaza  <miguel@novell.com>
696
697         * genmdesc.pl (build_spec): Add support for nacl: keyword also to
698         the Perl program
699
700         * genmdesc.c: Added support for nacl: key on the machine
701         description files to support the extra space required by Google
702         Native Client.
703
704 2010-05-23  Zoltan Varga  <vargaz@gmail.com>
705
706         * mini.c (mono_jit_compile_method_inner): Propagate exceptions in one more place.
707
708 2010-05-23  Zoltan Varga  <vargaz@gmail.com>
709
710         * mini.c (mono_jit_compile_method_inner): Propagate exceptions from
711         mono_runtime_class_init_full ().
712         (mono_jit_runtime_invoke): Ditto. Fixes #608073.
713
714 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
715
716         * mini-llvm.c mini-llvm-cpp.cpp: Update after LLVM 2.8 changes.
717
718 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
719
720         * mini-ppc.c (mono_arch_output_basic_block): Use ins->inst_c1 instead of p1, the
721         two are not the same on ilp32.
722
723 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
724
725         * mini.c (mono_jit_compile_method_inner): Remove a DISABLE_JIT block which was
726         added by mistake.
727
728         * mini-ppc.c: Fix the DISABLE_JIT build.
729
730 2010-05-20  Zoltan Varga  <vargaz@gmail.com>
731
732         * aot-runtime.c (decode_resolve_method_ref): Rename this from decode_method_ref_2.
733         (make_writable): Remove this unused function.
734
735 2010-05-20  Zoltan Varga  <vargaz@gmail.com>
736
737         * aot-compiler.c: Collect all information about a PLT entry into a separate MonoPltEntry
738         structure. Make the labels to plt entries local symbols instead of assembler local
739         labels, since tha latter causes problems for the iphone linker.
740
741 2010-05-19  Zoltan Varga  <vargaz@gmail.com>
742
743         * mini-ppc.c (mono_ppc_is_direct_call_sequence): Handle one more case with ilp32.
744
745 2010-05-17  Zoltan Varga  <vargaz@gmail.com>
746
747         * mini-ppc.c (mono_ppc_is_direct_call_sequence): Handle ilp32.
748         (ppc_patch_full): Ditto.
749
750         * mini-arm.c (mono_arch_build_imt_thunk): Fix the fail_tramp case.
751
752         * method-to-ir.c (mono_method_to_ir): Use fast generic virtual method invocation
753         if gshared is enabled, to avoid asserts in the trampoline code.
754
755         * mini-ia64.c (mono_arch_build_imt_thunk): Implement generalized imt thunks
756         on ia64.
757
758 2010-05-15  Geoff Norton  <gnorton@novell.com>
759
760         * dwarfwriter.c, xdebug.c: Fix a pretty large leak when running in 
761         xdebug mode.
762
763 2010-05-14  Geoff Norton  <gnorton@novell.com>
764
765         * exceptions-x86.c: Fix the alignment of this trampoline so we dont get a 
766         misaligned stack on darwin.
767
768 2010-05-14  Zoltan Varga  <vargaz@gmail.com>
769
770         * mini-arm.c aot-compiler.c: Implement support for generalized imt thunks on
771         arm.
772
773 2010-05-14  Zoltan Varga  <vargaz@gmail.com>
774
775         * xdebug.c: Fix ARM support.
776
777 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
778
779         * exceptions-x86.c (mono_arch_handle_exception): Resume from the signal handler
780         and do most of the work on the normal stack.
781         (mono_x86_get_signal_exception_trampoline): New x86 specific trampoline function.
782
783 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
784
785         * aot-compiler.c: Put non-code data into the .rodata section on linux.
786
787 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
788
789         * exceptions-arm.c (mono_arch_handle_exception): Fix the cross-compile case.
790
791 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
792
793         * exceptions-arm.c (mono_arch_handle_exception): Resume from the signal handler
794         and do most of the work on the normal stack.
795
796 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
797
798         * exceptions-amd64.c (mono_arch_handle_exception): Resume from the signal handler
799         and do most of the work on the normal stack even if sigaltstack is disabled.
800
801 2010-05-12  Zoltan Varga  <vargaz@gmail.com>
802
803         * exceptions-amd64.c (mono_arch_sigctx_to_monoctx): Simplify this now that
804         UCONTEXT_REG_ constants are available on linux as well.
805         (mono_arch_monoctx_to_sigctx): Ditto.
806         (mono_arch_ip_from_context): Ditto.
807
808 2010-05-12  Zoltan Varga  <vargaz@gmail.com>
809
810         * debugger-agent.c (set_breakpoint): Fix setting of pending breakpoints in
811         other domains.
812
813 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
814
815         * aot-compiler.c (emit_plt): Don't align the plt to a pagesize on x86, it is
816         no longer needed.
817
818 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
819
820         * debugger-agent.c (insert_breakpoint): Print a more descriptive error message
821         if a breakpoint cannot be inserted.
822
823 2010-05-08  Zoltan Varga  <vargaz@gmail.com>
824
825         * aot-compiler.c (emit_and_reloc_code): Fix a warning.
826
827 2010-05-07  Zoltan Varga  <vargaz@gmail.com>
828
829         * debugger-agent.c (frame_commands): Return an error instead of asserting if
830         no JIT info is found for the method.
831
832 2010-05-05 Jonathan Chambers  <joncham@gmail.com>
833
834         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Protect against a NULL sigctx
835         in debug printf.
836
837 2010-05-05  Zoltan Varga  <vargaz@gmail.com>
838
839         * mini-amd64.c (mono_arch_get_trampolines): New arch specific function returning
840         a list of arch specific trampolines.
841
842         * aot-compiler.c (emit_trampolines): Use it.
843
844 2010-05-05  Zoltan Varga  <vargaz@gmail.com>
845
846         * tramp-<ARCH>.c exceptions-<ARCH>.c mini-trampolines.c mini-exceptions.c
847         aot-compiler.c: Use the _full trampoline creation functions on all platforms,
848         get rid of the _full from their name.
849
850 2010-05-05  Zoltan Varga  <vargaz@gmail.com>
851
852         * tramp-x86.c (mono_arch_create_generic_trampoline): Call
853         get_nullified_class_init_trampoline to remove some code duplication.
854
855 2010-05-03  Zoltan Varga  <vargaz@gmail.com>
856
857         * mini-x86.c (mono_arch_emit_prolog): Fix full-aot support for thread
858         attach.
859
860 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
861
862         * mini-amd64.c (mono_arch_emit_load_aotconst): New arch-specific function.
863
864         * tramp-amd64.c: Use emit_load_aotconst to remove some code duplication.
865
866         * aot-runtime.c (init_plt): Make the default entries point to the AOT trampoline,
867         there is no need to jump through the first plt entry.
868
869         * aot-runtime.c (mono_aot_get_named_code): Rename to mono_aot_get_trampoline.
870
871         * aot-runtime.c (mono_aot_get_plt_entry): Move the arch specific parts to an
872         arch-specific function.
873         (mono_aot_get_plt_info_offset): Ditto.
874
875         * aot-runtime.c (mono_aot_register_jit_icall): New helper function called from
876         mono_arch_init () to register jit icalls called from full-aot trampolines.
877         (load_function): Get rid of the arch specific #ifdefs, move the relevant code
878         to mini-<ARCH>.c.
879
880         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception_full): Get rid of
881         the specialized throw corlib exception trampoline, use a variant of the normal
882         trampoline along with a new C function which does the call to
883         mono_exception_from_token (), just like on x86.
884
885 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
886
887         * mini-trampolines.c aot-compiler.c tramp-<ARCH>.c exceptions-<ARCH>.c:
888         Reorganize the full aot trampoline creation functions, instead of taking a bunch
889         of out arguments, they will now take a MonoTrampInfo** out argument. Simplify
890         some code in aot-compiler.c because of this. Remove the non-full aot trampoline
891         creation functions on architectures which have the full-aot ones.
892
893 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
894
895         * mini-ppc.c (mono_arch_decompose_long_opts): Fix LNEG.
896
897 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
898
899         * mini-ppc.c (mono_arch_emit_exceptions): Initialize exc_throw_pos/found
900         explicitly, this seems to be required by some gcc versions at -O2.
901
902         * mini-arm.c: Ditto.
903
904 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
905
906         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Fix full-aot support for
907         has_target delegate invokes.
908
909 2010-05-01  Zoltan Varga  <vargaz@gmail.com>
910
911         * mini.h (MonoAotTrampInfo): Rename this to MonoTrampInfo, add patches/unwind
912         info fields.
913
914         * aot-compiler.c (mono_aot_tramp_info_create): Rename to mono_tramp_info_create,
915         add patches/unwind info arguments, move to mini.c.
916
917         * mini-<ARCH>.c aot-compiler.c: Update after the above changes.
918
919 2010-04-30  Zoltan Varga  <vargaz@gmail.com>
920
921         * debugger-agent.c (type_commands): Add a new CMD_TYPE_GET_SOURCE_FILES_2
922         command which returns full path names.
923
924 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
925
926         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline_full): Set the
927         code_size output variable.
928
929         * mini-x86.c (mono_arch_emit_prolog): Compute the GOT addr before calling
930         mono_get_lmf_addr.
931         
932 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
933
934         * mini-x86.c (mono_arch_emit_prolog): Remove a disable_aot which is not needed.
935         (mono_arch_cpu_optimizazions): Make this a no-op when running with full aot.
936         (mono_arch_cpu_enumerate_simd_versions): Ditto.
937
938 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
939
940         * image-writer.c (asm_writer_emit_alignment): Use ilog2 for alignments for the
941         apple assembler.
942
943 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
944
945         * mini-x86.c (mono_arch_emit_prolog): Avoid an assert in full-aot mode.
946
947 2010-04-29  Zoltan Varga  <vargaz@gmail.com>
948
949         * aot-runtime.c (load_function): Use TARGET_X86 instead of __i386__.
950
951 2010-04-28  Zoltan Varga  <vargaz@gmail.com>
952
953         * aot-compiler.c (emit_got_info): Double the buffer size to avoid an assert.
954
955 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
956
957         * dwarfwriter.c (emit_line_number_info): Get rid of the usage of GArray, so
958         line number support works with eglib.
959
960 2010-04-27  Miguel de Icaza  <miguel@novell.com>
961
962         * driver.c, mini.c: Since linking with LLVM makes the default Mono
963         dirty an extra 70kb pages on startup we are now going to choose a
964         different strategy: ship mono and mono-llvm binaries, with the
965         second being the one that links with LLVM and defaults to LLVM
966         being enabled.
967
968 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
969
970         * tramp-x86.c exceptions-x86.c mini-x86.c aot-compiler.c aot-runtime.c: 
971         Implement full-aot support on x86.
972
973         * method-to-ir.c: Always use a got var on x86 too, just like on ppc, because the
974         trampolines depend on it. Use MONO_ARCH_GOT_REG as the got register, instead of
975         the first register returned by get_global_int_regs ().
976
977         * cpu-x86.md: Fix the length of insertx_u1_slow.
978
979         * iltests.il.in: Disable tail call tests when running with full-aot.
980
981 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
982
983         * method-to-ir.c (mono_op_to_op_imm_noemul): Fix a warning.
984
985 2010-04-24  Mark Probst  <mark.probst@gmail.com>
986
987         * mini.c, driver.c: Initialize mono_use_llvm in mono_main(), not
988         in the initializer, because it's non-constant.
989
990 2010-04-23  Miguel de Icaza  <miguel@novell.com>
991
992         * mini.c: Use MONO_USE_LLVM as an environment flag to turn the use
993         of LLVM on by default.   Used for buildbots and other setups.
994
995 2010-04-24  Zoltan Varga  <vargaz@gmail.com>
996
997         * mini.c: Set mono_use_llvm to FALSE even if mono is compiled with LLVM.
998
999 2010-04-23  Kornel Pal  <kornelpal@gmail.com>
1000
1001         * method-to-ir.c (mono_method_to_ir): Enable inlining of pointer-sized unmanaged
1002         initonly static fields when using moving GC.
1003
1004         Contributed under MIT/X11 license.
1005
1006 2010-04-23  Geoff Norton  <gnorton@novell.com>
1007
1008         * mini-amd64.h: Darwin x86_64 support.
1009
1010 2010-04-20  Jonathan Pryor  <jpryor@novell.com>
1011
1012         * exceptions-arm.c: Remove platform checks in favor of configure checks.
1013
1014 2010-04-19  Jonathan Pryor  <jpryor@novell.com>
1015
1016         * exceptions-arm.c: Add Android support for sigcontext structure.
1017
1018 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1019
1020         * mini.c (mono_jit_compile_method_inner): Implement the check for native func
1021         wrappers correctly now that their wrapper info is NULL.
1022
1023 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1024
1025         * mini.c (mono_jit_compile_method_inner): Avoid calling
1026         mono_marshal_method_from_wrapper () for native func wrappers. Fixes #597189.
1027
1028 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1029
1030         * genmdesc.c (inst_name): Define this as a copy of mono_inst_name in helpers.c,
1031         so the latter can be #ifndef DISABLE_JIT-ed.
1032
1033         * helpers.c: Comment out the opstr array if DISABLE_JIT is set.
1034
1035 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1036
1037         * method-to-ir.c driver.c: Disable a few more things when DISABLE_JIT is set.
1038
1039 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1040
1041         * mini-llvm.c (emit_entry_bb): Fix support for simd arguments passed on the
1042         stack.
1043
1044 2010-04-15  Zoltan Varga  <vargaz@gmail.com>
1045
1046         * debugger-agent.c (type_commands): Call mono_class_setup_methods () before
1047         calling mono_class_num_methods (). Fixes #592244.
1048
1049 2010-04-14  Zoltan Varga  <vargaz@gmail.com>
1050
1051         * mini-x86.c (mono_arch_get_llvm_call_info): Handle empty structures correctly.
1052
1053         * mini-llvm.c: Disable LLVM for calls with non-default calling conventions.
1054
1055 2010-04-14  Zoltan Varga  <vargaz@gmail.com>
1056
1057         * method-to-ir.c (handle_box_inst): Merge into handle_box, simplify the merged
1058         version.
1059         * (handle_alloc): Ditto.
1060         (mono_method_to_ir): Remove the constrained call restriction added by a previous
1061         change, its not needed anymore.
1062
1063 2010-04-12  Zoltan Varga   Kumpera  <rkumpera@novell.com>
1064
1065         * mini-posix.c (sigusr1_signal_handler): Fix build on
1066         non x86/amd64 systems.
1067
1068 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
1069
1070         * method-to-ir.c (mono_method_to_ir): Disable generic sharing for constrained
1071         calls where the constrained class needs a context. Fixes #595863.
1072
1073         * iltests.il.in: Add a test.
1074
1075 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
1076
1077         * mini.c (mini_method_compile): Disable llvm+methods with clauses again, llvm
1078         2.6/SVN seems to have broken support for them.
1079
1080 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
1081
1082         * mini-llvm.c: Fix support for LLVM 2.6.
1083
1084 2010-04-10  Zoltan Varga  <vargaz@gmail.com>
1085
1086         * debugger-agent.c (thread_commands): Add a GET_ID command to get the
1087         MonoInternalThread belonging to the thread.
1088
1089 Fri Apr 9 15:28:01 CEST 2010 Paolo Molaro <lupus@ximian.com>
1090
1091         * driver.c, optflags-def.h, ir-emit.h: introduce an unsupported
1092         unsafe optimization that will remove bound checks.
1093
1094 2010-04-08  Kornel Pal  <kornelpal@gmail.com>
1095
1096         * method-to-ir.c (mini_emit_inst_for_method): Fix a typo that caused
1097         CompareExchange not to be inlined for I8.
1098
1099         Contributed under MIT/X11 license.
1100
1101 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1102
1103         * array.cs: Add tests for cast between primitive array types.
1104
1105 2010-04-07 Andreia Gaita  <avidigal@novell.com>
1106
1107         * Makefile.am: create a convenience library for moon to link with
1108
1109 2010-04-07 Paolo Molaro <lupus@ximian.com>
1110
1111         * method-to-ir.c: optimize array accesses from generic interfaces.
1112
1113 2010-04-06  Zoltan Varga  <vargaz@gmail.com>
1114
1115         * mini-llvm.c: Update after the memset/memcpy intrinsics changes in LLVM SVN.
1116
1117 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1118
1119         * method-to-ir.c (mono_method_to_ir): Handle call to virtual final methods
1120         of marshalbyref classes.
1121
1122         Fixes #515884.
1123
1124 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1125
1126         * aot-compiler.c (emit_exception_debug_info): Encode try holes
1127         information.
1128
1129         * aot-runtime.c (decode_exception_debug_info): Decode try holes
1130         information.
1131
1132         * mini.h: Increase AOT version.
1133
1134 2010-04-04  Andreas Faerber  <andreas.faerber@web.de>
1135
1136         * mini-x86.h: Only enable soft debugger when using sigaction or on
1137         Windows. Fixes build on Haiku (lacks siginfo_t).
1138
1139         Code is contributed under MIT/X11 license.
1140
1141 2010-04-02  Andreas Faerber  <andreas.faerber@web.de>
1142
1143         * mini.h, mini-x86.h: Suppress sigaction for Haiku, add support for
1144         BeOS-style signal handlers.
1145
1146         Code is contributed under MIT/X11 license.
1147         
1148 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1149
1150         * mini-posix.c (sigusr1_signal_handler): Fix openbsd support.
1151
1152 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
1153
1154         * mini-exceptions.c: Fix win32 build.
1155
1156 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1157
1158         * mini.c, driver.c: Call mono_gc_base_init() before
1159         mono_debug_init().
1160
1161 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1162
1163         * method-to-ir.c (ensure_method_is_allowed_to_[access_field|
1164         call_method]): Delegate the actual work in security-core-clr.c
1165         to ease code sharing.
1166
1167 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1168
1169         * decompose.c (mono_decompose_opcode): Set the cfg exception if the unsupported
1170         float conv.ovf.un opcodes are encountered, instead of asserting later.
1171         Fixes #566296.
1172
1173 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1174
1175         * decompose.c (mono_decompose_opcode): Add OP_ICONV_TO_U4_UN as a no-op.
1176
1177         * iltests.il.in: Add a test.
1178
1179 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1180
1181         * mini-amd64.c (mono_arch_emit_call): Fail compilation if an argument is too
1182         large. Fixes #567040.
1183
1184         * method-to-ir.c: Call CHECK_CFG_EXCEPTION after emitting a call.
1185
1186 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1187
1188         * method-to-ir.c (handle_ccastclass): Call save_cast_details (). Fixes
1189         #592711.
1190
1191 2010-03-31 Rolf Bjarne Kvinge <RKvinge@novell.com>
1192
1193         * mini-trampolines.c: Surround mono_handler_block_guard_trampoline and
1194         mono_create_handler_block_trampoline with the proper #ifdef so that it
1195         compiles on amd64.
1196
1197 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1198
1199         * mini-exceptions.c: Introduce mono_walk_stack_full, which
1200         allows to select if it's new or old context that is passed to 
1201         the callback.
1202
1203         * mini-exceptions.c (mono_handle_exception_internal): Handle the
1204         case when executing a guarded handler from the EH machinery.
1205
1206         * mini-exceptions.c (mono_install_handler_block_guard): New function
1207         responsible for checking for handler blocks, installing the guard and
1208         clearing abort state.
1209
1210         * mini-posix.c (sigusr1_signal_handler): Call mono_install_handler_block_guard
1211         to check for handler blocks and skip interruption logic if one was found.
1212
1213         * mini-trampolines.c (mono_handler_block_guard_trampoline): Function called
1214         by the handler block guard trampoline. Resumes interruption by raising the
1215         pending ThreadAbortException.
1216
1217         * mini.c (create_jit_info): Calculate the end address of a finally block.
1218
1219         * mini-x86.c (mono_arch_install_handler_block_guard): Patch the return address
1220         of a finally block to a specified address and return the old one.
1221
1222         * tramp-x86.c (mono_arch_create_handler_block_trampoline): The handler block
1223         trampoline patches the original return address and calls the trampoline function.
1224
1225 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1226
1227         * mini-trampolines.c (mono_aot_trampoline): Remove some dead code.
1228
1229         * aot-runtime.c (mono_aot_patch_plt_entry): New helper function, which only
1230         does the patching if the callee is in the same domain.
1231
1232         * aot-runtime.c mini-trampolines.c: Call mono_aot_patch_plt_entry instead
1233         of mono_arch_patch_plt_entry ().
1234
1235 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1236
1237         * mini.c (create_jit_info): Fix try block hole length encoding.
1238
1239 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1240
1241         * mini.c (create_jit_info): Emit saner debug spew. Now it doesn't
1242         duplicate information and print offsets instead of absolute addresses.
1243
1244 2010-03-29  Zoltan Varga  <vargaz@gmail.com>
1245
1246         * debugger-agent.c (jit_end): Send type loads for types loaded before the VMStart
1247         event is sent. Fixes #591733.
1248
1249 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1250
1251         * mini-posix.c (SIG_HANDLER_SIGNATURE): Handle the case when ctx is NULL on
1252         OpenBSD.
1253
1254 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1255
1256         * debugger-agent.c (mono_debugger_agent_init): Set the GC type of the
1257         thread_to_tls hash table.
1258
1259         * image-writer.c (bin_writer_emit_writeout): Fix the size of the got.plt
1260         section. Fixes #591000.
1261
1262 2010-03-26  Andreas Faerber  <andreas.faerber@web.de>
1263
1264         * Makefile.am (version.h): Check for pure .git directory only,
1265         fixes SVN revision when using git without git-svn.
1266
1267         Contributed under MIT/X11 license.
1268
1269 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1270
1271         * aot-runtime.c: Apply some openbsd changes from openbsd ports.
1272
1273 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1274
1275         * basic-simd.cs: Test for vector x scalar binary operators.
1276
1277 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1278
1279         * simd-intrincs.c (simd_intrinsic_emit_binary): Support binary
1280         intrinsics with expanded scalar arguments.
1281
1282 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1283
1284         * mini-exceptions.c (get_exception_catch_class): Non catch clauses
1285         don't have an exception class, so don't decode it. This would crash
1286         with filter clauses.
1287
1288 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1289
1290         Make sure that trunk builds with DISABLE_JIT, an update to the
1291         PlayStation 3 port.
1292         
1293         * mini.c (mini_get_shared_method): this code seems to be necessary
1294         regardless of whether DISABLE_JIT has been defined.
1295
1296         (mono_jit_compile_method_inner): it seems that this method is
1297         required even in full AOT mode, so ifdef out only the pieces that
1298         try to genrate code (the body of code that applies patches to the
1299         code).  
1300
1301         (mini_method_compile): do not compile when using DISABLE_JIT.
1302
1303         * mini-ppc.c (mono_arch_get_allocatable_int_vars)
1304         (mono_arch_output_basic_block, mono-arch_emit_exceptions): Do not
1305         compile when DISABLE_JIT is set.
1306
1307 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1308
1309         * mini.c (mono_create_tls_get): Only create a TLS operation if the
1310         arch really supports it.
1311
1312 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1313
1314         * mini-x86.c, mini-x86.h, mini.c: CEE_MONO_TLS support for Darwin/x86.
1315
1316 2010-03-23  Neale Ferguson <neale@sinenomine.net>
1317
1318         * exceptions-s390x.c: Add support for
1319         mono_arch_get_throw_corlib_exception and fix throw by name.
1320
1321         * mini-s390x.c: Add IMT support; Fix stack parameter passing
1322         logic (especially for varargs); Correct localloc sizing; Add
1323         mono_arch_get_this_arg_from_call and
1324         mono_arch_get_this_arg_from_call.
1325
1326         * mini-s390x.h: Add support for facility list extraction;
1327         Correct/update MONO_ARCH_xxx settings.
1328
1329         * mini-s390.c: Minor corrections to instruction output for
1330         varargs. No IMT implementation - I think it's time to deprecate
1331         s390 and just leave s390x.
1332
1333         * tramp-s390x.c: Correct creation of trampoline instruction
1334
1335
1336         * cpu-s390x.md: Update some instruction lengths
1337
1338 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
1339
1340         * mini-generic-sharing.c (fill_in_rgctx_template_slot): Remove an assert which
1341         can be hit with partial sharing.
1342
1343         * mini-generic-sharing.c (get_shared_class): Handle partially shared methods
1344         in non-shared classes correctly.
1345         (generic_inst_is_sharable): Allow all primitive types in partial sharing.
1346         Turn on partial sharing.
1347
1348 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
1349
1350         * mini-amd64.h: Put back MONO_ARCH_NOMAP32BIT for OpenBSD which was removed
1351         by mistake.
1352
1353 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
1354
1355         * method-to-ir.c (mono_method_to_ir): Handle the failure of
1356         mono_method_signature ().
1357
1358         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
1359
1360         * mini.c (mini_method_compile): Get the signature of cfg->method early with
1361         error checking, so later calls do not need error checking.
1362
1363 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1364
1365         * exceptions-amd64.c: Add support for OpenBSD which has no UCONTEXT_GREGS.
1366
1367         * mini-amd64.h: Enable MONO_ARCH_USE_SIGACTION on OpenBSD as well.
1368
1369 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1370
1371         * mini-exceptions.c (mono_handle_exception_internal): Don't
1372         check try_end for archs different than s390. 
1373
1374         * mini.c (create_jit_info): Don't crash if the finallt block is the
1375         last one.
1376
1377 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1378
1379         * driver.c (mono_main): Don't free global codeman under linux since
1380         glic now peeks at code on stack for more archs than just amd64.
1381
1382 Mon Mar 22 18:09:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1383
1384         * mini.c, method-to-ir.c: changes to support compressed interface
1385         bitmaps.
1386
1387 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1388
1389         * mini-x86.h: Applied patch from Robert Nagy (Robert@openbsd.org).
1390         Use sigaction on OpenBSD too.
1391
1392 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1393
1394         * debugger-agent.c (event_req_matches_assembly): Handle request modifiers too.
1395
1396 2010-03-21  Andreas Faerber  <andreas.faerber@web.de>
1397
1398         * debugger-agent.c: #include sys/select.h for fd_set.
1399
1400         Code is contributed under MIT/X11 license.
1401
1402 2010-03-21  Zoltan Varga  <vargaz@gmail.com>
1403
1404         * mini.c (SIG_HANDLER_SIGNATURE): Fix the build on platforms without sigaction
1405         (openbsd+amd64 ?).
1406
1407 2010-03-21  Zoltan Varga  <vargaz@gmail.com>
1408
1409         * mini-ppc.c (mono_arch_emit_exceptions): Avoid an assert in ppc_patch () for
1410         some large methods with lots of exception handlers. Fixes #440924.
1411
1412 Sat Mar 20 11:56:24 CET 2010 Paolo Molaro <lupus@ximian.com>
1413
1414         * method-to-ir.c: remove code duplication for interface checks.
1415
1416 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
1417
1418         * debugger-agent.c (clear_event_requests_for_assembly): New helper function.
1419         (assembly_unload): Clear all event requests referencing the to-be unloaded
1420         assembly.
1421
1422
1423 Fri Mar 19 16:45:20 CET 2010 Paolo Molaro <lupus@ximian.com>
1424
1425         * mini.h, mini-exceptions.c: restore the state of the stack
1426         guard page permissions.
1427
1428 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
1429
1430         * mini-trampolines.c (common_call_trampoline): Remove the condition guarding the
1431         call site patching code, it doesn't appear to be needed.
1432
1433 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
1434
1435         * mini-generic-sharing.c: Add infrastructure for partial sharing, ie.
1436         sharing generic methods whose type arguments are a mix of reference and
1437         non-reference types. Not yet turned on.
1438
1439         * mini.c (mini_get_shared_method): New helper function to return
1440         the method which will be compiled/registered in the JIT tables when doing
1441         generic sharing.
1442         (mono_domain_lookup_shared_generic): Moved to mini.c from mini-generic-sharing.c,
1443         use mini_get_shared_method ().
1444
1445         * mini.c (mini_method_compile): Register the same method which is compiled when
1446         doing generic sharing.
1447
1448         * mini.c aot-compiler.c aot-runtime.c: Add support for partial sharing.
1449
1450         * generics.cs: Add partial sharing tests.
1451
1452 2010-03-17 Jerry Maine  <crashfourit@gmail.com>
1453
1454         * mini.h : Changed the SIMD_VERSION* enum values to match those in Mono.Simd.AccelMode.
1455                    Add an enum value that or's all possable values together. Add an enum value
1456                    that marks the end of the used bit indexes.
1457
1458         * mini-amd64.c : Make changes to match the changes in mini.h 
1459
1460         * mini-x86.c : Make changes to match the changes in mini.h
1461
1462         * simd-intrinsics.c : Reorder the SimdIntrinsc struct to add more bits to
1463                    simd_version to support more simd versions. Changed the name of
1464                    simd_version to simd_version_flags to make it more intuitive that
1465                    it now contains bit flags. Reordered the *_intrinsics arrays to
1466                    match the changes above. Changed emit_intrinsics() to use the new
1467                    setup mentioned above.
1468
1469         Code is contributed under MIT/X11 license.
1470
1471 2010-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
1472
1473         * mini-*.c (mono_arch_output_basic_block): Record try block holes on all
1474         remaining archs. Alpha and hppa maintainers, please stand up.
1475
1476 2010-03-17  Zoltan Varga  <vargaz@gmail.com>
1477
1478         * mini-ppc.c (mono_arch_build_imt_thunk): Always save and restore r11 since it
1479         is needed even when fail_tramp!=NULL.
1480
1481 2010-03-17  Zoltan Varga  <vargaz@gmail.com>
1482
1483         * debugger-agent.c (insert_breakpoint): Write a log message.
1484
1485 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1486
1487         * iltests.il.in: Add a few tests for LEAVE going over multiple
1488         finally clauses.
1489
1490 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1491
1492          * mini-x86.c (mono_arch_output_basic_block): Record try block holes.
1493
1494 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1495
1496         * mini.h (MonoBasicBlock): Add native_length field.
1497         * mini.h (MonoCompile): Add try_block_holes field.
1498         * mini.h (MonoInst): Add exception_clause pointer to
1499         the data union.
1500
1501         * mini.c (mono_codegen): Calculate MonoBasicBlock::native_length.
1502         * mini.c (mono_cfg_add_try_hole): New function to register possible
1503         holes in try blocks.
1504         * mini.c (create_jit_info): Fill in the holes information.
1505
1506         * mini-exceptions.c: Verify for holes when checking if an IP is covered
1507         by a try block.
1508
1509         * method-to-ir.c: Add the EH clause to the CALL_HANDLE instruction.
1510
1511 Tue Mar 16 13:16:16 CET 2010 Paolo Molaro <lupus@ximian.com>
1512
1513         * jit-icalls.c: adjusted for the array API changes.
1514
1515 2010-03-16  Zoltan Varga  <vargaz@gmail.com>
1516
1517         * iltests.il.in: Disable the fconv_to_i test on sparc too.
1518
1519 2010-03-16  Zoltan Varga  <vargaz@gmail.com>
1520
1521         * debugger-agent.c: Simplify the way breakpoints are processed by removing
1522         the 'pending' flag. This fixes support for appdomains too.
1523
1524
1525 Mon Mar 15 18:25:49 CET 2010 Paolo Molaro <lupus@ximian.com>
1526
1527         * mini-amd64.c, mini-ia64.c: remove direct access to method->header.
1528
1529 2010-03-12  Zoltan Varga  <vargaz@gmail.com>
1530
1531         * simd-intrinsics.c (simd_intrinsic_emit_getter): Don't emit shuffle opcodes
1532         when using LLVM, LLVM generates it itself when needed.
1533
1534         * mini-llvm-cpp.cpp (mono_llvm_build_aligned_load): New helper function.
1535
1536         * mini-llvm.c: Use an unaligned load for OP_LOADX_MEMBASE. Add zero extension
1537         to some OP_EXTRACT_ opcodes. Fix the naming of some sse intrinsics. Fix
1538         OP_ANDNPS/OP_ANDNPD.
1539
1540 2010-03-11  Zoltan Varga  <vargaz@gmail.com>
1541
1542         * tramp-x86.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code' for
1543         the pc instead of 'buf'. Fix the call to mono_arch_flush_icache ().
1544         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
1545
1546 2010-03-11  Martin Baulig  <martin@ximian.com>
1547
1548         * debugger-agent.c (type_commands): Add NULL check to
1549         `CMD_TYPE_GET_SOURCE_FILES'.
1550
1551 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1552
1553         * mini-ppc.c (mono_arch_decompose_opts): Fix OP_ICONV_TO_R_UN when cross-compiling.
1554
1555 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1556
1557         * mini-codegen.c (mono_peephole_ins): Fix the OP_FMOVE optimization. Fixes
1558         #586664.
1559
1560         * iltests.il.in: Add a test.
1561
1562 2010-03-05  Martin Baulig  <martin@ximian.com>
1563
1564         Add support for aborting invocations.
1565
1566         * debugger-agent.c
1567         (InvokeData): Added `InvokeData *last_invoke'.
1568         (DebuggerTlsData): Renamed `invoke' into `pending_invoke' and
1569         added a new `invoke' field to keep the `InvokeData *' throughout
1570         the invocation.
1571         (ErrorCode): Added `ERR_NO_INVOCATION'.
1572         (CmdVM): Added `CMD_VM_ABORT_INVOKE'.
1573         (mono_debugger_agent_handle_exception): Don't report any exception
1574         if an abort was requested.
1575         (invoke_method): Store the `InvokeData *' in `tls->invoke'; reset
1576         a thread abort if necessary.
1577         (vm_commands): Implement `CMD_VM_ABORT_INVOKE'.
1578
1579 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1580
1581         * method-to-ir.c: Store the initial basic block returned by mono_basic_block_split
1582         so we can release the whole list and not just the first one. Free
1583         it in more places as well.
1584
1585 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1586
1587         * method-to-ir.c: Revert r153222 as it doesn't belong here.
1588
1589 Mon Mar 8 17:58:26 CET 2010 Paolo Molaro <lupus@ximian.com>
1590
1591         * mini.h, *.c: prepare for MonoMethodHeader to become a transient entity.
1592
1593 Mon Mar 8 17:35:26 CET 2010 Paolo Molaro <lupus@ximian.com>
1594
1595         * driver.c: report also other misc build options.
1596
1597 2010-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
1598
1599         * method-to-ir.c: Generate better code for the NewObject
1600         intrinsic.
1601         
1602 2010-03-07  Zoltan Varga  <vargaz@gmail.com>
1603
1604         * branch-opts.c (mono_if_conversion): Disable one of the cases when deadce
1605         is disabled. Fixes #582322.
1606
1607         * iltests.il.in: Add a test.
1608
1609 2010-03-06  Zoltan Varga  <vargaz@gmail.com>
1610
1611         * tramp-amd64.c (mono_arch_create_monitor_exit_trampoline_full): Delegate
1612         the handling of obj->synchronization == null and owner != current thread to
1613         mono_monitor_exit ().
1614
1615         * tramp-x86.c (mono_arch_create_monitor_exit_trampoline_full): Ditto.
1616
1617
1618 Sat Mar 6 18:14:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1619
1620         * mini.c: change the way emulated opcode info is stored and save about
1621         4 KB of runtime memory.
1622
1623 2010-03-04  David S. Miller  <davem@davemloft.net>
1624
1625        * mini-sparc.h: Always use MONO_ARCH_USE_SIGACTION.  Linux kernels
1626        that don't provide the siginfo in the second signal handler argument
1627        are buggy, and this has been fixed for years.
1628        * mini.h (GET_CONTEXT): Remove __sparc__ special case.
1629        (SIG_HANDLER_SIGNATURE, SIG_HANDLER_PARMS): Likewise.
1630
1631 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
1632
1633         * aot-runtime.c (find_symbol): Fix a leak.
1634         (decode_patch): Ditto.
1635
1636 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
1637
1638         * mini.h (MONO_INST_IS_TEMP): Kill this unused define.
1639
1640 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
1641
1642         * mini.c (mono_resolve_patch_target): Fix an uninitialized variable.
1643
1644 Wed Mar 3 19:19:21 CET 2010 Paolo Molaro <lupus@ximian.com>
1645
1646         * method-to-ir.c: MONO_PROFILE_STRING_ALLOC is dead.
1647
1648 2010-03-03  Rodrigo Kumpera  <rkumpera@novell.com>
1649
1650         * method-to-ir.c (mono_method_to_ir): Don't create a runtime vtable
1651         to check for errors, it's enough to create the metadata open.
1652
1653         Fixes #562150
1654
1655 2010-03-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1656
1657         * trace.c|h:
1658         * mini-exceptions.c: Add support for printing stack traces when handling
1659         exceptions, and when printing exceptions thrown while tracing also print
1660         the exception message.
1661
1662 2010-03-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1663
1664         * trace.c: We need to parse exclude tokens ('-') before string tokens,
1665         since the exclude token is a valid string character.
1666
1667 2010-03-02  Levi Bard  <levi@unity3d.com>
1668
1669         * debugger-agent.c: Invalidate thread stacks on domain unload.
1670
1671 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1672
1673         * method-to-ir.c: Emit dummy_use for stored reference after write
1674         barriers to make sure the object is pinned if the GC interrupts
1675         before the write barrier is done.
1676
1677 2010-03-02  Zoltan Varga  <vargaz@gmail.com>
1678
1679         * cpu-<ARCH>.md: dummy_use was missing src1:i.
1680
1681 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1682
1683         * debugger-agent.c: Add a log message printing the protocol version.
1684
1685 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1686
1687         * debugger-agent.c: Add a new command to communicate the protocol version used
1688         by the client. This could be used to allow newer runtimes to communicate with
1689         older clients.
1690
1691 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1692
1693         * debugger-agent.c (domain_commands): Add a new command to create a boxed value.
1694
1695 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1696
1697         * debugger-agent.c (type_commands): Fix the setting of fields with a reference
1698         type.
1699
1700 Mon Mar 1 15:20:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1701
1702         * mini-arm.c: make the arm cpu arch configurable with the
1703         MONO_CPU_ARCH env var (for example: "armv4 thumb").
1704         Bug #584198.
1705
1706 Mon Mar 1 14:48:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1707
1708         * mini.c, mini.h, driver.c: added the --jitmap option to enable
1709         support for the perf tool on Linux.
1710
1711 Mon Mar 1 14:43:55 CET 2010 Paolo Molaro <lupus@ximian.com>
1712
1713         * method-to-ir.c: make string.InsertenalSetChar() specialization
1714         effective.
1715
1716 2010-03-01  Robert Jordan  <robertj@gmx.net>
1717
1718         * Makefile.am: fix the non-static build.
1719
1720 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1721
1722         * mini-generic-sharing.c: Move the contents of ../metadata/generic-sharing.c
1723         here.
1724
1725 2010-02-26  Robert Jordan  <robertj@gmx.net>
1726
1727         * tasklets.c (continuation_store): Return from an error condition
1728         immediately.
1729
1730 2010-02-26  Martin Baulig  <martin@ximian.com>
1731
1732         * debug-debugger.c (MonoDebuggerInfo): Added `abort_runtime_invoke'.
1733
1734         * debug-mini.c
1735         (MonoDebuggerThreadInfo): Added `internal_flags'.
1736         (MonoDebuggerInternalThreadFlags): New enum.
1737         (_mono_debugger_throw_exception): Don't signal the debugger if a
1738         type abort was requested.
1739         (_mono_debugger_unhandled_exception): Likewise.
1740         (mono_debugger_abort_runtime_invoke): New method to abort an invocation.
1741         (mono_debugger_runtime_invoke): If the debugger requested a thread
1742         abort during the invocation, reset it here.
1743
1744 2010-02-26  Martin Baulig  <martin@ximian.com>
1745
1746         * debug-mini.c (MonoDebuggerThreadInfo): Use `MonoInternalThread *'
1747         instead of `MonoThread *'.
1748
1749 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1750
1751         * aot-runtime.c (mono_aot_find_jit_info): Use a merge sort for sorting the
1752         code offsets table, as it is mostly sorted.
1753
1754 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1755
1756         * debugger-agent.c (do_invoke_method): Fix invoking of static methods on vtypes.
1757         Fixes #582991.
1758
1759 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1760
1761         * driver.c (mono_main): Get rid of mono_setup_vtable_in_class_init.
1762
1763 Wed Feb 24 15:58:03 CET 2010 Paolo Molaro <lupus@ximian.com>
1764
1765         * Makefile.am: build the new ABI version of the libmono library.
1766         * debugger-agent.c, mini.c: fix warnings with the new API.
1767         * jit.h: don't depend on glib.h being included.
1768
1769 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
1770
1771         * method-to-ir.c (mono_method_to_ir): Implement AOT support for fast TLS access.
1772
1773 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
1774
1775         * method-to-ir.c (mono_method_to_ir): Implement support for fast access to
1776         ThreadStatic variables.
1777
1778 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
1779
1780         * debugger-agent.c (notify_thread): Skip terminated threads, since their tls
1781         data is not freed yet. Fixes #582460.
1782
1783 2010-02-23  Zoltan Varga  <vargaz@gmail.com>
1784
1785         * debugger-agent.c: Add support for the caught/uncaught flags on exception
1786         event requests. Bump protocol minor version.
1787
1788 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
1789
1790         * decompose.c (mono_decompose_long_opts): Handle OP_LCONV_TO_OVF_I8 here too.
1791
1792 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
1793
1794         * decompose.c (mono_decompose_opcode): Handle OP_LCONV_TO_OVF_I8. Fixes
1795         #581950.
1796
1797         * iltests.il.in: Add a test.
1798
1799 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1800
1801         * mini.c (inline_method): Check for loader errors.
1802
1803 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1804
1805         * mini.c (mono_method_check_inlining): Use !mono_method_get_header_summary
1806         instead of mono_method_get_header as it doesn't decode locals
1807         so the called method can have unresolved dependencies that will only
1808         be satisfied after the current method is JIT'd.
1809
1810         Fixes #550968.
1811
1812 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
1813
1814         * basic.cs (test_0_div_opt): Speed this up a bit.
1815
1816 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
1817
1818         * mini-amd64.c: Fix DISABLE_JIT support after the latest changes.
1819
1820         * mini.c (mono_jit_create_remoting_trampoline): Call
1821         mono_create_specific_trampoline () instead of
1822         mono_arch_create_specific_trampoline ().
1823
1824         * mini-trampolines.c tramp-arm.c: Disable more stuff when DISABLE_JIT is set.
1825
1826 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
1827
1828         * unwind.c (mono_unwind_get_cie_program): New function, moved here from
1829         aot-compiler.c, so it can be found even if DISABLE_JIT is set.
1830
1831         * aot-compiler.c xdebug.c: Update callers of mono_arch_unwind_get_cie_program ().
1832
1833         * mini-amd64.c: Fix DISABLE_JIT support.
1834
1835 2010-02-20  Geoff Norton  <gnorton@novell.com>
1836
1837         * aot-runtime.c: Ensure we dont leak a held lock when unwinding exceptions.
1838
1839 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
1840
1841         * debugger-agent.c (mono_debugger_agent_handle_exception): Receive two contexts,
1842         one for the throw and one for the catch. Mark uncaught exceptions by a NULL
1843         CATCH_TXT. Send normal exception events for unhandled exceptions too.
1844         (mono_debugger_agent_handle_unhandled_exception): Remove this, merged into
1845         handle_exception.
1846
1847 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1848
1849         * exceptions-x86.c (mono_arch_get_restore_context): Changes this so it restores
1850         edx/ecx too. This is needed to support OP_SEQ_POINT.
1851
1852 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1853
1854         * exceptions-amd64.c (get_throw_trampoline): Add xdebug info.
1855
1856         * method-to-ir.c (mono_method_to_ir): Fix SIZEOF in dynamic methods.
1857
1858 2010-02-16  Zoltan Varga  <vargaz@gmail.com>
1859
1860         * mini-llvm.c aot-compiler.c aot-runtime.c unwind.c: Finish support
1861         LLVM+AOT+exceptions, not enabled yet.
1862
1863 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1864
1865         * mini.c (SIG_HANDLER_SIGNATURE): Fix the windows build.
1866
1867 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1868
1869         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Emit
1870         xdebug info for these.
1871
1872         * mini-trampolines.c (common_call_trampoline): Use mini_jit_info_table_find ()
1873         in a few places.
1874
1875         * mini.c (mini_get_vtable_trampoline): Make this take a 'slot_index' argument,
1876         not used yet.
1877
1878 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1879
1880         * aot-compiler.c (load_profile_files): Update after the profiler changes.
1881
1882 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1883
1884         * mini.c (mono_jit_compile_method_inner): Avoid passing icall wrappers to
1885         mono_profiler_method_end_jit, since the profiler has no way to process wrappers.
1886
1887         * aot-runtime.c mini.c: Resurrect the aot pagefault profiling stuff, it is useful
1888         for mtouch.
1889
1890 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1891
1892         * debugger-agent.c: handle incomplete reads and EINTR in
1893         recv()/send(). This could have been causing random
1894         disconnections.
1895
1896 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1897
1898         * aot-runtime.c (decode_exception_debug_info): Fix aot support for sequence
1899         points.
1900
1901         * mini-arm.c (mono_arch_allocate_vars): Allocate the seq point related vars first
1902         so they have small offsets. Fixes #566311.
1903
1904 2010-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
1905
1906         * method-to-ir.c (mono_method_check_inlining): Check for loader errors.
1907
1908 2010-02-11  Zoltan Varga  <vargaz@gmail.com>
1909
1910         * mini-amd64.c: Remove the special casing of byref in a few places now that
1911         mini_type_get_underlying_type () handles it.
1912
1913         * mini-generic-sharing.c (mini_type_get_underlying_type): Handle byref as well
1914         by returning native int. Fixes #577984.
1915
1916 2010-02-11  Zoltan Varga  <vargaz@gmail.com>
1917
1918         * method-to-ir.c (handle_isinst): Factor out the is_complex_isinst check into
1919         a macro.
1920
1921         * mini-llvm.c (exception_cb): Put the clause index into the type info instead
1922         of putting the clause itself.
1923
1924         * mini-arm.c mini.c linear-scan.c: Disable more stuff when DISABLE_JIT is used.
1925
1926 2010-02-09  Zoltan Varga  <vargaz@gmail.com>
1927
1928         * unwind.c (mono_unwind_frame): Use read32 for reading a 32 bit value, since it
1929         might be unaligned.
1930
1931 2010-02-10  Geoff Norton  <gnorton@novell.com>
1932
1933         * aot-compiler.c: Make the number of IMT trampolines configurable as well.
1934
1935 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1936
1937         * aot-compiler.c (emit_code): Create the ut trampolines here, so they work for
1938         llvm methods too.
1939
1940         * aot-compiler.c (emit_code): Don't add the llvm label prefix to 'methods', since
1941         it is not an LLVM generated symbol.
1942
1943         * mini-llvm.c (emit_entry_bb): Fix the handling of simd types.
1944
1945         * method-to-ir.c (handle_castclass): Turn off the more efficient isinst/castclass
1946         implementation in gshared mode because it causes regressions.
1947
1948         * mini-trampolines.c: Add a stat for the number of calls to trampolines.
1949
1950         * image-writer.c (asm_writer_emit_global): Don't prepend the global prefix, it
1951         should be done by the caller.
1952
1953         * mini-llvm.c (mono_llvm_emit_method): Don't make the debug symbols global.
1954
1955         * aot-compiler.c (emit_code): Add the llvm label prefix before 'methods'.
1956
1957         * mini-exceptions.c (mini_jit_info_table_find): Search the root domain as well,
1958         since mono_jit_info_table_find () doesn't do it anymore.
1959
1960         * mini-generic-sharing.c debugger-agent.c: Call mini_jit_info_table_find ()
1961         instead of mono_jit_info_table_find ().
1962
1963 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1964
1965         * aot-compiler.c aot-runtime.c: Add support for MONO_WRAPPER_WRITE_BARRIER.
1966
1967         * aot-compiler.c (encode_method_ref): Update after the removal of
1968         mono_gc_get_managed_allocator_type ().
1969
1970         * method-to-ir.c (mono_method_to_ir): Place a seq point just before a RET.
1971         Fixes #564538.
1972
1973 2010-02-06  Zoltan Varga  <vargaz@gmail.com>
1974
1975         * method-to-ir.c (handle_castclass): Use the icall for classes with variant
1976         generic params as well.
1977         (handle_isinst): Ditto.
1978
1979         * method-to-ir.c: Make isninst/castclass checks in gshared code more efficient
1980         instead of always calling an icall.
1981
1982         * aot-compiler.c (emit_llvm_file): Take into account trampolines etc when
1983         computing the size of the got.
1984
1985         * aot-compiler.c (emit_code): Change the way the 'methods' symbol is emitted
1986         when using LLVM. Instead of emitting it as an LLVM method, emit it using
1987         the assembly directive '.set' so it points to the first LLVM emitted method.
1988
1989 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1990
1991         * mini.c (mini_method_verify): Report the method which failed to verify.
1992
1993 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1994
1995         * method-to-ir.c (mono_method_to_ir): Use the new basic block formation pass
1996         to avoid JIT'ng dead basic blocks. This is the same behavior as the
1997         runtime MS verifier.
1998
1999 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2000
2001         * debugger-agent.c (decode_value): Fix decoding of vtype instances. Fixes
2002         #561962.
2003
2004 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2005
2006         * mini-llvm.c: Init the jit module only when first JITting.
2007
2008         * aot-compiler.c (emit_plt): Fix the naming of plt entries of llvm+darwin.
2009
2010         * mini-llvm.c (get_plt_entry): Make the plt entries have hidden visibility.
2011
2012         * mini-llvm.c (mono_llvm_emit_aot_module): Remove the dummy got after it is
2013         replaced with the real got.
2014
2015         * debugger-agent.c (type_commands): Return the enumness if the type as well.
2016
2017         * image-writer.c: Reduce the amount of #ifdefs a bit.
2018
2019         * aot-compiler.c: Reduce the amount of #ifdefs. Add beginnings of support for
2020         llvm on darwin/arm.
2021
2022         * aot-compiler.c (mono_compile_assembly): Handle asmonly+llvm mode.
2023
2024         * mini-llvm.c (mono_llvm_emit_method): Don't make the 'type_info' symbols
2025         global.
2026
2027 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2028
2029         * mini-llvm.c (mono_llvm_emit_method): Add support for unaligned loads.
2030         (mono_llvm_emit_method): Fix unaligned stores too.
2031
2032         * mini-amd64.c (mono_arch_emit_prolog): Initialize lmf->rsp in the prolog too
2033         so async stack walks don't crash.
2034
2035 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2036
2037         * mini-trampolines.c (common_call_trampoline): Fix a problem where the callsite
2038         was not patched if the callee needed an rgctx trampoline.
2039
2040 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
2041
2042         * mini-ppc.c (mono_arch_get_global_int_regs): Reserve r29 for holding the
2043         vtable address in AOT code.
2044
2045 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
2046
2047         * mini-codegen.c: Remove support for CEE_ opcodes which cannot occur in
2048         MonoInst's.
2049
2050 Mon Feb 1 16:29:10 CET 2010 Paolo Molaro <lupus@ximian.com>
2051
2052         * genmdesc.pl: remove dependency on external cpp.
2053
2054 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
2055
2056         * method-to-ir.c (mini_emit_ldelema_1_ins): Avoid emitting an OP_SEXT_I4 when
2057         using LLVM, its not needed, and abcrem can't handle it.
2058
2059 Mon Feb 1 14:29:43 CET 2010 Paolo Molaro <lupus@ximian.com>
2060
2061         * genmdesc.c, genmdesc.pl, cpu-x86.md: introduced templates to make
2062         it easier to group instructions and reduce duplication.
2063
2064 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
2065
2066         * decompose.c: Move the array/soft float decompose routines here from
2067         method-to-ir.c.
2068
2069         * method-to-ir.c: Export a few functions so they can be used from decompose.c.
2070
2071 2010-01-31  Zoltan Varga  <vargaz@gmail.com>
2072
2073         * mini-llvm.c (mono_llvm_emit_method): Add a call to llvm.invariant.start
2074         to tell LLVM that the got is constant, not used yet.
2075
2076         * aot-compiler.c: Pass more optimization flags to llvm's 'opt'.
2077
2078 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2079
2080         * mini-ppc.c (mono_arch_emit_prolog): Fix full aot support for native to
2081         managed wrappers.
2082
2083 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2084
2085         * aot-compiler.c (add_wrappers): Commit the hack which generates
2086         native-to-managed wrappers for methods decorated with the MonoPInvokeCallback
2087         custom attribute.
2088
2089 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2090
2091         * mini.h (MONO_INST_FAULT): New instruction flag for loads which can cause
2092         a fault, only used by the LLVM backend.
2093
2094         * ir-emit.h: Add _FAULT variants of the LOAD_MEMBASE macros. Mark
2095         OP_CHECK_THIS with OP_IMPLICIT_EXCEPTION.
2096
2097         * method-to-ir.c: Use the new LOAD_MEMBASE_FAULT opcodes, get rid of the
2098         calls to MONO_EMIT_NULL_CHECK which is automatically done by the new macros.
2099
2100         * mini-llvm.c: Only generate volatile loads from load instructions which have
2101         the MONO_INST_FAULT flag set.
2102
2103 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2104
2105         * unwind.c (mono_unwind_decode_fde): Fix the decoding of the LSDA offset on
2106         64 bit platforms.
2107
2108 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2109
2110         * mini.c (mono_save_seq_point_info): Fix the handling of bblocks without
2111         sequence points. Fixes #571236.
2112
2113 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2114
2115         * debugger-agent.c (mono_debugger_agent_init): Call appdomain_unload at the
2116         end of the appdomain unload process, after assemblies have been unloaded.
2117         Fixes #574842.
2118
2119 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2120
2121         * abcremoval.c (process_block): Fix the if (region) check so abcrem actually
2122         works.
2123
2124         * mini-amd64.c: Make the soft debugger work on platforms without MAP_32BIT.
2125         Fixes #573988.
2126
2127 2010-01-26  Zoltan Varga  <vargaz@gmail.com>
2128
2129         * dwarfwriter.c (emit_type): Treat MONO_TYPE_PTR as 'I' not 'I4'.
2130
2131 2010-01-26  Geoff Norton  <gnorton@novell.com>
2132
2133         * aot-compiler.c: Fix a logic error introduced when guarding against enums
2134         with struct marshalability.
2135
2136 2010-01-24  Zoltan Varga  <vargaz@gmail.com>
2137
2138         * mini.c (mini_method_compile): Improve the processing MONO_VERBOSE_METHOD so
2139         it supports class names as well.
2140
2141         * mini.h (MonoCompile): Add a few flags to control JIT behavior which are
2142         needed by the GC map code.
2143
2144         * mini.c (mini_method_compile): Call a function in mini-gc.c to set the new
2145         flags if needed.
2146
2147         * method-to-ir.c (mono_method_to_ir): Emit initialization code for ref variables
2148         if cfg->init_ref_vars is set.
2149
2150         * liveness.c (optimize_initlocals): Disable the initlocals opt for ref vars if
2151         cfg->disable_initlocals_op_refs is set.
2152
2153         * method-to-ir.c (mono_spill_global_vars): Compute more precise live ranges
2154         using liveness info if cfg->compute_precise_live_ranges is set.
2155
2156         * mini-gc.c: Ongoing work. Improve logging and debugging support. Handle
2157         volatile variables correctly. Add comments about the live ranges. Not enabled
2158         yet.
2159
2160 2010-01-24  Zoltan Varga  <vargaz@gmail.com>
2161
2162         * mini.h (MonoDebugOptions): Add an option to init stack frames by writing
2163         0x2a into them in method prologs.
2164
2165         * mini-amd64.c (mono_arch_emit_prolog): Implement it.
2166
2167 2010-01-22  Zoltan Varga  <vargaz@gmail.com>
2168
2169         * mini-llvm-cpp.cpp: Remove uses of dynamic_cast, it no longer works with llvm
2170         classes, since llvm is compiled with -fno-rtti.
2171
2172         * mini.h (COMPILE_SOFT_FLOAT): New macro, similar to COMPILE_LLVM.
2173
2174         * method-to-ir.c ir-emit.h: Use if (COMPILE_SOFT_FLOAT) in a few places since
2175         llvm does not require it.
2176
2177         * aot-runtime.c (load_method): Print the full name of the last aot method.
2178
2179 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
2180
2181         * exceptions-amd64.c (mono_arch_notify_pending_exc): Avoid a crash if the
2182         thread has not fully started yet.
2183
2184 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
2185
2186         * aot-compiler.c (can_marshal_struct): Allow marshalling enums.
2187
2188 2010-01-21  Miguel de Icaza  <miguel@novell.com>
2189
2190         * driver.c: Do not abort if LLVM is not supported, print a
2191         warning and add the information to the Mono JIT information.
2192
2193 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
2194
2195         * ir-emit.h (MONO_EMIT_NULL_CHECK): Don't emit an OP_IMPLICIT_EXCEPTION when
2196         using explicit null checks.
2197
2198 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2199
2200         * xdebug.c: New file extracted from aot-compiler.c, containing the XDEBUG
2201         related code.
2202
2203         * aot-compiler.c (encode_method_ref): Use mono_marshal_wrapper_info_from_wrapper
2204         () in one place.
2205         (mono_aot_wrapper_name): Remove the special handling of delegate invoke wrappers,
2206         its no longer needed.
2207
2208         * method-to-ir.c (mono_method_to_ir): Fix a warning.
2209
2210         * exceptions-<ARCH>.c: Introduce a MONO_ARCH_HAVE_THROW_EXCEPTION_BY_NAME
2211         define for platforms still using it (s390). Get rid of the
2212         mono_arch_get_throw_exception_by_name () routines on all other platforms.
2213
2214         * exceptions-x86.c: Rework the throw trampolines so there is only one function
2215         which can generate throw/rethrow/corlib trampolines for llvm/not llvm code.
2216
2217         * exceptions-x86.c: Add LLVM specific throw trampolines which doesn't assume
2218         the caller pushed the arguments.
2219
2220         * mini-llvm.c: Enable throwing exceptions on x86.
2221
2222         * mini-posix.c (SIG_HANDLER_SIGNATURE): Avoid
2223         "Thread (nil) may have been prematurely finalized" messages if this is called
2224         on a thread not registered with the runtime.
2225
2226         * mini-exceptions.c (mono_handle_native_sigsegv): Ditto.
2227
2228 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2229
2230         * jit-icalls.c (mono_array_new_3): New jit icall.
2231
2232         * aot-compiler.c aot-runtime.c: Add support for ElementAddr wrappers.
2233
2234         * arrays.cs: Add a test for 3 dimensional arrays.
2235
2236 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2237
2238         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Emit xdebug info.
2239         (mono_arch_find_jit_info_ext): Disable the popping of arguments when LLVM is
2240         used.
2241
2242         * mini-llvm.c (emit_cond_system_exception): Abort when an implicit exception is
2243         thrown on x86.
2244
2245         * unwind.c (mono_unwind_decode_fde): Fix an assert on x86.
2246
2247         * mini-x86.h (MONO_CONTEXT_SET_LLVM_EXC_REG): Define this for x86.
2248
2249         * mini-llvm.c: Disable OP_THROW on x86, it doesn't work yet.
2250
2251 2010-01-18  Bill Holmes  <billholmes54@gmail.com>
2252
2253         * debugger-agent.c : Changing the PLATFORM_WIN32 preprocessor check to
2254           HOST_WIN32.  Also including winsock2. to define struct in_addr.
2255
2256         * mini-amd64.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
2257
2258         * mini-x86.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
2259
2260         Code is contributed under MIT/X11 license.
2261
2262 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2263
2264         * mini.h (MonoCompile): Add 'disable_out_of_line_bblocks' flag.
2265
2266         * branch-opts.c (mono_optimize_branches): Honor the new flag.
2267
2268         * mini.c (mini_method_compile): Set the new flag when running under the
2269         debugger.
2270
2271 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2272
2273         * mini-gc.c: Change the GC map to use a ref/noref/pin value instead of just
2274         a ref/noref value + a global pin flag, so parts of stack frames can still be
2275         precisely marked even if they include stuff which needs pinning. Improve logging.
2276         Fix many bugs. Not enabled yet.
2277
2278         * gc-test.cs: Add a few tests.
2279
2280         * liveness.c (mono_analyze_liveness): Make the debug output controllable by
2281         the normal -v options. Avoid propagating liveness information through bblocks
2282         which end with a NOT_REACHED opcode.
2283
2284         * mini.c (mono_jit_compile_method_inner): Avoid reading cfg->prof_options
2285         after cfg has been freed.
2286
2287 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2288
2289         * branch-opts.c (mono_branch_optimize_exception_target): Stop the optimization
2290         if a clause is skipped because it uses the exception object, since it could
2291         have caught the exception.
2292
2293         * exceptions.cs: Add a test.
2294
2295 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2296
2297        * mini-trampolines.c (mono_create_static_rgctx_trampoline): Add an assert.
2298
2299         * aot-runtime.c (mono_aot_get_method): Handle ftnptr's correctly for the
2300         ICollection<T> wrappers.
2301
2302 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2303
2304         * debugger-agent.c (decode_value): Fix the decoding of I/U/PTR.
2305
2306 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2307
2308         * mini-amd64.c (emit_call_body): Always use near calls when AOTing even if
2309         NOMAP32BIT or optimize_for_xen is set.
2310
2311 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2312
2313         * aot-compiler.c aot-runtime.c: Get rid of mono_aot_str_hash (), use
2314         mono_metadata_str_hash () instead.
2315
2316 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2317
2318         * ir-emit.h (MONO_EMIT_NEW_ICOMPARE_IMM): Use sizeof (mgreg_t) instead of
2319         sizeof (void*).
2320
2321         * unwind.c (mono_unwind_frame): Use mgreg_t instead of gssize.
2322
2323 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2324
2325         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): Emit an explicit null check if the
2326         flag is set.
2327
2328         * mini-ppc.c (mono_arch_emit_exceptions): Compute the size of the exception
2329         throwing code correctly.
2330
2331         * mini.h (MONO_AOT_FILE_VERSION): Bump this because of the IMT hashing changes.
2332
2333 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2334
2335         * aot-runtime.c (mono_aot_plt_resolve): Reenable the previous assert for
2336         ftnptrs created by us, handle RGCTX_FETCH correctly.
2337         (mono_aot_get_lazy_fetch_trampoline): Add an ftnptr.
2338
2339         * mini-trampolines.c (mono_create_generic_class_init_trampoline): Remove the
2340         ftnptr added by mono_aot_get_named_code ().
2341
2342 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2343
2344         * mini-arm.c: Fix a few LLVM problems.
2345
2346         * mini-llvm.c (simd_class_to_llvm_type): Fix compilation on !x86/amd64.
2347
2348 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2349
2350         * method-to-ir.c (mini_emit_stobj): Use EMIT_NEW_CLASSCONST when
2351         AOT compiling.
2352
2353 Wed Jan 13 15:54:53 CET 2010 Paolo Molaro <lupus@ximian.com>
2354
2355         * jit.h, method-to-ir.c: added ability to set the policy for
2356         inserting breakpoints from the break IL instruction or the
2357         Debugger.Break () API call.
2358
2359 2010-01-13  Zoltan Varga  <vargaz@gmail.com>
2360
2361         * aot-runtime.c (load_aot_module): Add more comments to explain why referenced
2362         assemblies need to be eagerly loaded.
2363
2364 2010-01-12  Zoltan Varga  <vargaz@gmail.com>
2365
2366         * dwarfwriter.c (emit_line_number_info): Fix the eglib case so it doesn't crash.
2367
2368 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2369
2370         * debugger-agent.c (mono_debugger_agent_parse_options): Allow onthrow without
2371         an argument which matches any exception.
2372
2373 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
2374
2375         * method-to-ir.c (mono_emit_method_call_full): Avoid the virt->nonvirt
2376         optimization if the called method is gshared and marshalbyref, since gshared
2377         methods can' have wrappers. Fixes #569390.
2378
2379         * generics.cs: Add a test.
2380
2381 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
2382
2383         * mini-exceptions.c (mono_print_thread_dump_from_ctx): New helper function
2384         callable from gdb.
2385
2386 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
2387
2388         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
2389
2390 2010-01-09  Zoltan Varga  <vargaz@gmail.com>
2391
2392         * debugger-agent.c (transport_connect): comment out freeaddrinfo calls under win32,
2393         since it is not supported in win2000.
2394
2395 2010-01-08  Zoltan Varga  <vargaz@gmail.com>
2396
2397         * aot-runtime.c (load_image): Add a SET_ERROR argument to set the loader
2398         error if loading an assembly fails.
2399         (mono_aot_plt_resolve): Return NULL instead of asserting if loading fails.
2400
2401         * mini-trampolines.c (mono_aot_plt_trampoline): Throw a pending loader error
2402         if exists.
2403
2404         * aot-runtime.c (decode_exception_debug_info): Set jinfo->from_llvm for LLVM
2405         compiled methods.
2406
2407         * mini-llvm-cpp.cpp: Remove the unused ctx variable.
2408
2409         * mini-llvm.c (mono_llvm_emit_method): Add some comments about why aot+clauses
2410         is not supported yet.
2411
2412         * unwind.c (DW_EH_PE_absptr): Add more DW_EH_PE_ constants.
2413
2414 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2415
2416         * method-to-ir.c: All types with variant arguments must fallback to the
2417         slow path. This makes cast of variant delegates work.
2418
2419         * mini-trampolines.c (mono_get_vcall_slot_addr): Add new variance_used out
2420         argument that is set to TRUE is the returned vtable slot is for a variant
2421         interface. Changed a g_print + g_assert_not_reached to a g_error.
2422
2423         * mini-trampilines.c (common_call_trampoline): Handle variant interfaces in
2424         a similar fashion of generic virtual methods.
2425
2426 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2427
2428         * helpers.c (mono_disassemble_code): Fix a g_hash_table warning
2429         when cfg is null.
2430
2431         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Convert a given
2432         method using a variance aware function.
2433
2434         * mini-x86.c: Add support for dumping IMT thunks if DEBUG_IMT is defined.
2435
2436 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2437
2438         * method-to-ir.c (mono_method_to_ir): Casts to variant interfaces
2439         do an icall for now.
2440
2441 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
2442
2443         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add an ugly hack to fix #564695.
2444         If LLVM decides to set the code model to Large, reset it to Default.
2445
2446 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
2447
2448         * aot-compiler.c (mono_xdebug_flush): Export it so it is present in
2449         stripped binaries as well.
2450
2451 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
2452
2453         * mini-trampolines.c (common_call_trampoline): Add an rgctx trampoline if a shared
2454         method is called from LLVM compiled code, as that code can't pass an rgctx arg.
2455
2456         * mini-llvm.c (mono_llvm_emit_method): Enable calls to methods needing an rgctx
2457         reg.
2458
2459 2010-01-06  Zoltan Varga  <vargaz@gmail.com>
2460
2461         * mini.c (mini_method_compile): Extract the JIT info creation code into a
2462         separate function.
2463
2464         * mini-llvm.c (mono_llvm_emit_method): Pass the info in MonoExceptionClause
2465         as the type info to llvm.eh.selector.
2466         (exception_cb): Use the type info for filling out some fields of
2467         MonoJitExceptionInfo like the flags and the exception class. This is needed
2468         because the LLVM produced exception handling clauses might not match the original
2469         IL clauses, i.e. there might be more than one LLVM clause for one IL clause.
2470
2471         * unwind.c (mono_unwind_decode_fde): Extract the LSDA decoding code into a
2472         separate function. Add an extra argument which returns the type infos
2473         corresponding to the exception clauses.
2474
2475         * mini.c (mini_method_compile): Enable LLVM compilation of methods having
2476         exception handling clauses.
2477
2478 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2479
2480         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
2481         mono_method_get_vtable_slot () instead of accessing imt_method->slot directly,
2482         to fix an AOT case.
2483
2484 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2485
2486         * mini.c (mono_compile_is_broken): Skip methods from serialization's
2487         internal assembly.
2488
2489 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2490
2491         * mini.c (mini_method_compile): Fix a few memory leaks introduced by the
2492         llvm code.
2493
2494 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2495
2496         * mini.c (mini_method_compile): Verify the method before calling
2497         mono_compile_create_vars as this might crash since it uses method
2498         information.
2499
2500         Fixes #560196.
2501
2502 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2503
2504         * method-to-ir.c (mono_method_to_ir): Avoid calling mono_class_vtable () in
2505         one case if AOTing, since the class might not be a concrete class.
2506
2507 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2508
2509         * mini-codegen.c abcremoval.c: Remove the duplicate g_slist_append_mempool
2510         functions which are now defined in mempool-internals.h.
2511
2512         * mini.c (mini_free_jit_domain_info): Free the seq point hash tables.
2513
2514         * mini-llvm.c (mono_llvm_emit_method): Handle OP_ABS.
2515
2516 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2517
2518         * mini.c:
2519         * method-to.ir.c:
2520         * mini-*.c: Properly handle generic enums.
2521
2522         Fixes #566294
2523
2524 2009-12-28  Zoltan Varga  <vargaz@gmail.com>
2525
2526         * method-to-ir.c (mono_method_to_ir): Handle the failure of mono_class_vtable ()
2527         in a few more places.
2528
2529 2009-12-27  Zoltan Varga  <vargaz@gmail.com>
2530
2531         * aot-compiler.c (add_wrappers): Don't use dyn runtime invoke for methods with
2532         nullable parameters. Fixes #567351.
2533
2534 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2535
2536         * mini-trampolines.c (common_call_trampoline): Add assert for NULL resolved generic method.
2537
2538 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2539
2540         * mini-trampolines.c: Use mono_arch_get_this_arg_from_call () to avoid the slow
2541         mono_get_generic_context_from_code () call.
2542
2543         * mini-<ARCH>.c: Get rid of mono_arch_find_this_arg (), it is no longer used.
2544
2545 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
2546
2547         * aot-runtime.c (decode_klass_ref): Don't call mono_class_init (), its not
2548         needed.
2549
2550 2009-12-24  Sebastien Pouliot  <sebastien@ximian.com>
2551
2552         * method-to-ir.c (mono_method_to_ir): Avoid SIGSEGV when
2553         mono_method_get_signature returns NULL. Fix #567084
2554
2555 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
2556
2557         * aot-runtime.c (find_extra_method): Call mono_aot_wrapper_name only once,
2558         instead of once for each module.
2559
2560 2009-12-22  Zoltan Varga  <vargaz@gmail.com>
2561
2562         * debugger-agent.c (ss_start): Implement step over for the last sequence
2563         point in methods.
2564
2565         * mini.c (mono_save_seq_point_info): Don't link sequence points which don't
2566         have the STEP_LOC flag set.
2567
2568         * aot-runtime.c (decode_klass_ref): Avoid a crash if a decode_klass_ref () call
2569         fails. Fixes #566689.
2570
2571 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
2572
2573         * mini.c (mono_add_seq_point): New helper function.
2574         (mono_save_seq_point_info): New function to save sequence point info, extracted
2575         from mini_method_compile ().
2576
2577         * mini-<ARCH>.c: Call mono_add_seq_point to remember sequence points.
2578
2579         * mini.h (MonoSeqPointInfo): New structure containing information about
2580         the sequence points of a JITted method.
2581         (MonoBasicBlock): Add 'seq_points' and 'last_seq_point' fields. Remove unused
2582         'bucket' field.
2583
2584         * mini.c debugger-agent.c aot-compiler.c aot-runtime.c: Change the way sequence
2585         point information is stored, use a MonoSeqPointInfo structure instead of a
2586         GPtrArray. For each seq point, compute a list of successor seq points.
2587
2588         * debugger-agent.c: Use the successor list to implement step-over more
2589         efficiently: instead of single stepping until a different line/IL offset is
2590         reached, place breakpoints into all successor seq points.
2591
2592         * mini.h: Bump AOT file format version.
2593
2594 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
2595
2596         * Makefile.am (AM_CFLAGS): Include LLVM_CFLAGS.
2597
2598         * mini-llvm.c: Avoid defining the __STDC_... macros if already defined.
2599
2600 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
2601
2602         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): Fix the cross-compiler
2603         build.
2604
2605 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2606
2607         * mini-x86.c (mono_arch_get_argument_info): Allocate memory for CallInfo using
2608         alloca as g_malloc is not signal safe.
2609
2610 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2611
2612         * tramp-x86.c (mono_arch_patch_callsite): Fix the call to
2613         VALGRIND_DISCARD_TRANSLATIONS.
2614
2615         * *.c: Include mono/utils/memcheck.h, and remove #ifdef HAVE_VALGRIND_MEMCHECK_H
2616         checks, they are no longer needed.
2617
2618         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): New helper function to set
2619         a function into a sigctx which can handle function pointers.
2620
2621         * mini-ppc.c: Implement soft debugger support on ppc64.
2622
2623         * mini-ppc.c: Implement soft debugger support.
2624
2625 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2626
2627         * mini-llvm.c: Handle OP_LADD_OVF_UN. Place all alloca's into the entry bb.
2628
2629 2009-12-17  Marek Habersack  <mhabersack@novell.com>
2630
2631         * mini.c (mono_get_runtime_build_info): include Mono version in
2632         the returned value.
2633
2634         * driver.c (mono_main): VERSION is now included in the string
2635         returned from mono_get_runtime_build_info()
2636
2637 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2638
2639         * method-to-ir.c (mono_method_to_ir): Add support for CALLI with unmanaged
2640         signatures. Fixes #565143.
2641
2642         * jit-icalls.c (mono_get_native_calli_wrapper): New JIT icall.
2643
2644 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2645
2646         * aot-compiler.c (arch_emit_autoreg): Align code to 4 in the ppc case.
2647
2648 2009-12-16 Rodrigo Kumpera  <rkumpera@novell.com>
2649
2650         * mini-x86.h: Forgot to add a 0x to MONO_ARCH_MAX_FRAME_SIZE define
2651         making max stack 10x smaller.
2652
2653 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2654
2655         * mini.c (mono_resolve_patch_target): Comment out an assert which could be hit.
2656
2657 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
2658
2659         * method-to-ir.c (mini_emit_memcpy): Assert if size is too big.
2660
2661 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
2662
2663         * mini-x86.c (mono_arch_allocate_vars): Fail compilation if the frame size is
2664         bigger than MONO_ARCH_MAX_FRAME_SIZE.
2665
2666         * mini-x86.c (mono_arch_emit_prolog): Handle huge frames.
2667
2668         * mini-x86.h: Define MONO_ARCH_MAX_FRAME_SIZE to be 1Mb.
2669
2670         * mini-amd64.c / mini-amd64.h: Same fixes as of above.
2671
2672         * mini.c (mini_method_compile): Check if mono_arch_allocate_vars failed
2673         the compilation.
2674
2675 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2676
2677         * method-to-ir.c (mono_method_to_ir): CEE_UNUSUED opcodes now
2678         raise an invalid program exception.   
2679
2680         For other opcodes that we might not handle use a g_warning and
2681         raise the exception.   Beats termination.
2682
2683         Fixes #561724
2684
2685 2009-12-14  Zoltan Varga  <vargaz@gmail.com>
2686
2687         * method-to-ir.c (mono_emit_rgctx_method_call_full): Fix a warning.
2688
2689         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix the LLVM support
2690         by merging the LLVM and !MAP_32BIT cases.
2691
2692 2009-12-13 Jonathan Chambers <joncham@gmail.com>
2693
2694         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Handle a NULL
2695         sigctx being passed in, as we have no CONTEXT available in the APC.
2696
2697         (mono_debugger_agent_cleanup): Use explicit cond wait implementation
2698         for now.
2699
2700         Code contributed under MIT/X11 license.
2701
2702 2009-12-13  Zoltan Varga  <vargaz@gmail.com>
2703
2704         * method-to-ir.c mini-llvm.c: Fix support for monitor enter/exit trampolines
2705         in the LLVM backend on AMD64.
2706
2707         * aot-runtime.c (decode_eh_frame): Initialize the clauses from the info in the
2708         FDE.
2709
2710         * unwind.c (mono_unwind_decode_fde): Implement decoding of a couple more formats.
2711
2712         * mini-llvm.c: Export mono_personality for AOT.
2713
2714         * mini.c (mini_method_compile): Fix some problems with llvm+aot+clauses.
2715
2716         * mini-ops.h (OP_IMPLICIT_EXCEPTION): New opcode marking the place where an
2717         implicit exception can occur.
2718
2719         * ir-emit.h (MONO_EMIT_NEW_IMPLICIT_EXCEPTION): New macro to emit an
2720         OP_IMPLICIT_EXCEPTION instruction.
2721
2722         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): New macro.
2723
2724         * method-to-ir.c: Use MONO_EMIT_NEW_CHECK_THIS in a few places.
2725
2726         * mini-llvm.c: Handle OP_IMPLICIT_EXCEPTION by disabling llvm if it occurs
2727         inside a protected block.
2728
2729         * mini-llvm.c: Revert the last change, the signature of monitor entry/exit
2730         trampolines doesn't include the argument.
2731
2732         * mini-llvm.c (mono_llvm_emit_method): Enable calls to monitor entry/exit
2733         trampolines on amd64.
2734
2735         * mini-amd64.h (MONO_ARCH_MONITOR_OBJECT_REG): Use MONO_AMD64_ARG_REG1 instead
2736         of RDI.
2737
2738         * mini.c (mini_method_compile): Add some comments as to why LLVM is currently
2739         disabled for methods with clauses.
2740
2741         * mini-llvm.c: Enable support for catch clauses.
2742
2743         * mini-exceptions.c (mono_resume_unwind): New function to resume unwinding at the
2744         end of an LLVM compiled finally clause.
2745         (mono_handle_exception_internal): Save the exception handling state in TLS
2746         before calling an LLVM compiled finally clause, so mono_resume_unwind () can
2747         resume unwinding from that point.
2748
2749         * unwind.c (mono_unwind_get_ops_from_fde): Rename this to
2750         mono_unwind_decode_fde, decode the Language Specific Data Area (LSDA) too,
2751         to obtain the addresses of the exception handling regions.
2752
2753         * mini-llvm.c: Add beginnings of support for exception handling, currently only
2754         finally clauses are supported.
2755
2756         * mini.c (mini_method_compile): Add support for LLVM code with exception
2757         handlers.
2758
2759 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
2760
2761         * mini-llvm.c (mono_llvm_emit_method): Allocate the 'pindexes' array with the
2762         proper size.
2763
2764 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
2765
2766         * debugger-agent.c: Encode the this argument of vtype methods as a struct, not
2767         as a primitive type.
2768
2769 2009-12-11  Zoltan Varga  <vargaz@gmail.com>
2770
2771         * driver.c: Applied patch from Matt McClellan (matt@mc-c.net). Add a check
2772         for 2 parameter sched_setaffinity in older glibc versions. Fixes
2773         #564000.
2774
2775 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2776
2777         * method-to-ir.c (mini_redirect_call): do not redirect the
2778         InternalAllocateStr internal call if string profiling is enabled.
2779
2780 2009-12-10  Zoltan Varga  <vargaz@gmail.com>
2781
2782         * aot-compiler.c (add_wrappers): Avoid generating synchronized wrappers for
2783         generic methods.
2784
2785         * unwind.h: Rename this to mini-unwind.h to avoid conflicts with the gcc
2786         unwind.h header file.
2787
2788         * tramp-x86.c (mono_arch_patch_callsite): Patch the code when using valgrind,
2789         newer valgrind versions seems to handle this fine.
2790
2791 2009-12-09  Zoltan Varga  <vargaz@gmail.com>
2792
2793         * debugger-agent.c (start_runtime_invoke): Fix a crash if this is called
2794         on the debugger thread.
2795
2796 2009-12-08  Zoltan Varga  <vargaz@gmail.com>
2797
2798         * mini-llvm.c (mono_llvm_emit_method): Add more SIMD opcodes.
2799
2800         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
2801
2802         * mini-codegen.c (mono_local_regalloc): Allow non-call opcodes with cloc:c.
2803
2804         * cpu-<ARCH>.md: Make call_handler clob:c.
2805
2806         * mini.c: Reenable SSA for methods with clauses.
2807
2808         * mini.c (mini_method_compile): Disable SSA for now for methods with clauses,
2809         as it causes failures on x86.
2810
2811 2009-12-08  Sebastien Pouliot  <sebastien@ximian.com>
2812
2813         * driver.c: Fail gracefully with --compile-all if mono_method_signature
2814         returns NULL (e.g. a bad assembly).
2815
2816 2009-12-08  Geoff Norton  <gnorton@novell.com>
2817
2818         * debugger-agent.c:  Refactor the mono_runtime_invoke guarding against
2819         stepping out into native code.  There were issues with nested invokes
2820         like .cctors.
2821
2822 2009-12-07  Zoltan Varga  <vargaz@gmail.com>
2823
2824         * mini.c (mini_method_compile): Do the disable_llvm checks early
2825         and avoid the LLVM compile pass if the checks fail.
2826
2827         * mini.c ssa.c abcremoval.c: Enable SSA for methods with exception clauses.
2828
2829         * mini-llvm.c: Put our methods/globals into the 'llvm.used' array, so the
2830         LLVM optimizations don't try to remove them.
2831
2832         * aot-compiler.c (emit_llvm_file): Save the result of opt into a
2833         different file so the original remains.
2834
2835 2009-12-06  Zoltan Varga  <vargaz@gmail.com>
2836
2837         * mini-llvm.c mini.c: Fix alignment issues with SIMD vars.
2838
2839         * aot-runtime.c (decode_arm_exidx): Handle most descriptors created by gas.
2840
2841         * aot-runtime.c (decode_arm_exidx): Refactor this into two functions, add
2842         support for non-inline unwind descriptors.
2843
2844 2009-12-07  Geoff Norton  <gnorton@novell.com>
2845
2846         * debugger-agent.c:  Darwin can colesce signals, so we need to handle
2847         the interrupt_count slightly differently.  Native threads were never
2848         marked as resumed.
2849
2850 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2851
2852         * aot-runtime.c (decode_arm_exidx): New function to initialize a MonoJitInfo
2853         based on the contents of the ARM .exidx section. Not yet used since llvm doesn't
2854         yet generate this info.
2855
2856         * mini-llvm.c: Fix the conversion of call results if they are unsigned.
2857
2858         * debugger-agent.c (buffer_add_value): Treat I/U as a valuetype, so the
2859         client can distinguish between intptrs and longs.
2860
2861 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2862
2863         * aot-compiler.c (emit_trampoline): Emit the trampoline info into the global
2864         blob.
2865
2866         * aot-runtime.c (load_function): Update after the change above.
2867
2868         * mini.h: Bump AOT file format version.
2869
2870         * method-to-ir.c (mono_method_to_ir): Disallow the delegate optimization
2871         if the delegate class is dynamic.
2872
2873         * method-to-ir.c (handle_delegate_ctor): Allow the method_code optimization
2874         in gshared code too using the new rgctx info type
2875         MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2876
2877 2009-12-04  Geoff Norton  <gnorton@novell.com>
2878
2879         * debugger-agent.c: When doing a func-eval invoke on a suspended runtime,
2880         we need to track the original suspend count so the thread properly
2881         wakes up in resume_thread.
2882
2883 2009-12-04  Zoltan Varga  <vargaz@gmail.com>
2884
2885         * method-to-ir.c (handle_delegate_ctor): Add support for using this from gshared
2886         code.
2887
2888         * generics.cs: Add a test.
2889
2890         * method-to-ir.c (emit_get_rgctx_method): Make this work even if context_used
2891         is 0. Simplify a lot of code using this.
2892
2893         * mini-trampolines.c (mono_delegate_trampoline): Call
2894         mono_create_static_rgctx_trampoline () before saving the final address in
2895         delegate->method_code, to avoid calling it each time a delegate is first called.
2896
2897         * method-to-ir.c (mono_method_to_ir): Allow fast delegate creation for methods
2898         which need static rgctx trampolines.
2899
2900         * mini-trampolines.c (mono_create_static_rgctx_trampoline): Use a cache
2901         keyed on the method+addr pair, since addr could be either the method addr or
2902         an unbox trampoline in the AOT case. Fixes #560246.
2903
2904 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2905
2906         * mini.c (mini_method_compile): Call handle_exception_clauses () in the same
2907         place it was called before too.
2908
2909 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2910
2911         * mini.c (mono_jit_runtime_invoke): Avoid the call to mono_class_setup_vtable ()
2912         if no security manager is present, to speed up the AOT case. Call
2913         mono_class_vtable () full with raise_on_error == TRUE instead.
2914
2915 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2916
2917         * mini.c (mini_method_compile): Call handle_exception_clauses earlier so
2918         the local optimization passes can take its result into account. Fixes
2919         #559876.
2920
2921         * exceptions.cs: Add a test.
2922
2923 2009-01-24  Steven Munroe  <munroesj@us.ibm.com>
2924
2925         This patch is contributed under the terms of the MIT/X11 license
2926
2927         * cpu-ppc64.md (load_memindex): Add loadi8_memindex.
2928
2929 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
2930
2931         * mini.h (MonoInst): Remove unused 'ssa_op' field.
2932
2933         * debugger-agent.c: Rework the handling of stack traces of running threads to
2934         avoid crashes if compute_frames () tries to walk the stack of running thread.
2935
2936         * mini.c (mono_print_method_from_ip): Use mini_jit_info_table_find.
2937
2938         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): Set frame->lmf.
2939
2940         * mini.h (StackFrameInfo): Add an 'lmf' field.
2941
2942 2009-12-02  Zoltan Varga  <vargaz@gmail.com>
2943
2944         * debugger-agent.c (suspend_current): Always set really_suspended.
2945
2946         * debugger-agent.c (clear_event_request): Clear method entry/exit requests too.
2947
2948         * exceptions-x86.c (mono_arch_get_restore_context): Restore EAX too.
2949
2950 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
2951
2952         * debugger-agent.c (vm_commands): Don't allow invokes on threads which are not
2953         really suspended.
2954
2955 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
2956
2957         * cpu-ppc64.md (store_memindex): Add storei8_memindex.
2958
2959 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
2960
2961         * mini-trampolines.c: Fix MSVC build.
2962
2963 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
2964
2965         * mini-trampolines.c: Check for mono_method_get_vtable_slot failures.
2966
2967 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
2968
2969         * mini-arm.c (mono_arch_lowering_pass): Fix an assert which is hit when
2970         the instruction following an OP_FCOMPARE is optimized away.
2971
2972 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * aot-compiler.c (arch_emit_autoreg): Extract the auto-registration code from
2975         emit_autoreg () into this arch-specific function.
2976
2977         * aot-compiler.c (emit_exception_debug_info): Don't emit the length of the
2978         code, it is no longer needed.
2979
2980         * aot-runtime.c (decode_exception_debug_info): Don't read the code length.
2981
2982         * mini.h: Bump AOT file format version.
2983
2984         * aot-runtime.c (mono_aot_find_jit_info): Compute the length of the method
2985         using the sorted_code_offsets array, instead of reading it from the
2986         exception debug info.
2987         (load_method): Call mono_aot_find_jit_info instead of
2988         decode_exception_debug_info ().
2989
2990         * aot-compiler.c (emit_exception_debug_info): Emit whenever the method was
2991         LLVM compiled as a flag.
2992
2993 2009-11-29  Zoltan Varga  <vargaz@gmail.com>
2994
2995         * debugger-agent.c (resume_thread): Fix a warning.
2996
2997         * aot-compiler.c: Add an option to set the number of static rgctx trampolines
2998         generated.
2999
3000 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3001
3002         * aot-compiler.c aot-runtime.c: Get rid of a few global symbols, move their
3003         contents to MonoAotFileInfo.
3004
3005 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3006
3007         * aot-compiler.c aot-runtime.c: Reorganize the AOT file format once again.
3008         Put all binary data into a giant blob, similarly to the way .net assemblies
3009         store binary data. Emit offset tables in a compact form to reduce their size.
3010
3011         * mini.h: Bump AOT file format version.
3012
3013         * aot-compiler.c (emit_globals_table): Use temp_prefix instead of .L in a few
3014         places.
3015
3016         * aot-compiler.c (emit_globals_table): Emit a hash table for the globals, to
3017         avoid linear searches at runtime.
3018
3019         * aot-runtime.c (find_symbol): Update this to use the hash.
3020
3021         * mini.h: Bump AOT file format version.
3022
3023 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3024
3025         * aot-compiler.c (emit_klass_info): Save whenever the class has a generic
3026         container.
3027
3028         * aot-runtime.c (decode_cached_class_info): Set the is_generic_container field
3029         too.
3030
3031         * aot-compiler.c (mono_compile_assembly): Add a 'stats' option to print out
3032         the distribution of got slot types.
3033
3034         * mini.h (MonoDebugOptions): Add 'explicit_null_checks' option.
3035
3036         * method-to-ir.c: Add support for generating explicit null checks.
3037
3038 2009-11-25  Zoltan Varga  <vargaz@gmail.com>
3039
3040         * debugger-agent.c (vm_commands): Implement EXIT by invoking Environment.Exit ()
3041         on a random thread if possible.
3042
3043         * aot-runtime.c (mono_aot_plt_resolve): Clean up the handling of function
3044         descriptors a bit, add comments, handle RGCTX_FETCH/GENERIC_CLASS_INIT_TRAMPOLINE
3045         correctly.
3046
3047         * exceptions-ppc.c (mono_arch_find_jit_info_ext): Use mgreg_t as the type of
3048         regs. Pass the real size of the regs array to mono_unwind_frame ().
3049
3050         * unwind.c (mono_unwind_frame): Remove an incorrect assert, add more correct
3051         ones instead.
3052
3053 2009-11-24  Geoff Norton  <gnorton@novell.com>
3054
3055         * mini-darwin.c: Work around apple bug rdar://7209349  See
3056         http://openradar.appspot.com/7209349 for details.  Synopsis,
3057         CoreFoundation SIGTRAP's if you dlopen it off the main thread if its
3058         never been initialized before.
3059
3060 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
3061
3062         * tramp-arm.c: Use blx instead of mov pc, reg to improve support for thumb.
3063
3064         * mini-arm.c (mono_arm_thumb_supported): New helper function.
3065
3066 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
3067
3068         * cfold.c (mono_constant_fold_ins): Fix a problem in the previous change,
3069         OP_SHL_IMM is not 32 bit.
3070
3071 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
3072
3073         * aot-compiler.c (encode_patch): Fix the encoding of R8 on big-endian systems.
3074
3075 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
3076
3077         * aot-compiler.c: Avoid infinite recursion when generic virtual recursion is
3078         encountered.
3079
3080         * debugger-agent.c (resume_vm): Signal the suspend_cond even if suspend_count
3081         > 0 since some threads can resume if their resume_count is > 0.
3082         (invoke_method): Avoid reading freed memory.
3083
3084         * debugger-agent.c (process_suspend): Extract the suspend code from
3085         process_single_step_inner () to a separate function. Rework the code to prevent
3086         races between this function and thread interrupts.
3087
3088         * debugger-agent.c (suspend_current): Check the resume_count field instead
3089         of resume_one so suspends+resumes during single threaded invokes work
3090         correctly.
3091
3092 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3093
3094         * aot-compiler.c (emit_llvm_file): Enable some llvm optimizations which seem
3095         to make the generated code smaller.
3096
3097         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Add a code
3098         sequence generated by recent LLVM versions.
3099
3100         * mini-llvm.c: Add support for a few simple cases which weren't supported
3101         before.
3102
3103         * mini-trampolines.c (mono_magic_trampoline): Don't call
3104         mono_arch_get_vcall_slot () when llvm is enabled.
3105
3106         * aot-compiler.c (emit_llvm_file): Add code to run the 'opt' llvm tool.
3107
3108         * mini-trampolines.c (mono_magic_trampoline): Extract the bulk of this function
3109         into a new function called common_call_trampoline () which is used by the
3110         llvm vcall trampoline as well.
3111
3112         * debugger-agent.c: Implement single threaded invokes.
3113
3114         * debugger-agent.c: Revert change which broke the agent on linux.
3115
3116         * method-to-ir.c (inline_method): Prevent infinite recursion. Fixes
3117         #557606.
3118
3119         * generics.cs: Add a test.
3120
3121 2009-11-22  Zoltan Varga  <vargaz@gmail.com>
3122
3123         * debugger-agent.c: Fix the cygwin build.
3124
3125 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
3126
3127         * cprop.c: Remove this unused file.
3128
3129 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
3130
3131         * cfold.c (mono_constant_fold_ins): Fix constant folding of shr_imm. Fixes
3132         #557262.
3133
3134         * basic.cs: Add a test.
3135
3136 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
3137
3138         * method-to-ir.c (mono_method_to_ir): Use mono_use_llvm instead of ENABLE_LLVM
3139         in one more place.
3140
3141 2009-11-20  Zoltan Varga  <vargaz@gmail.com>
3142
3143         * mini.c mini-trampolines.c driver.c: Add a 'mono_use_llvm' flag to control
3144         whenever the runtime uses LLVM code. Add a '--llvm' command line option to set
3145         it. Use this flag to control llvm related code paths instead of #ifdef
3146         ENABLE_LLVM, so a runtime configured without --enable-llvm can use LLVM compiled
3147         AOT code.
3148
3149         * aot-runtime.c aot-compiler.c: Add a 'flag' field to MonoAotFileInfo.
3150
3151         * mini.h: Bump AOT file format version.
3152
3153         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline_full): These
3154         receive their argument in MONO_ARCH_VTABLE_REG, not in the first argument reg.
3155
3156         * debugger-agent.c (create_event_list): Fix a crash if an empty assembly list
3157         was used as an assembly filter.
3158
3159 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
3160
3161         * unwind.c: Fix support for ppc.
3162
3163         * exceptions-ppc.c (mono_arch_find_jit_info): Change this to use dwarf frame
3164         unwind info. Change to the mono_arch_find_jit_info_ext () interface.
3165
3166 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
3167
3168         * mini-ppc.c (mono_arch_emit_prolog): Fix a copy-paste error to fix the ppc64
3169         port.
3170         (mono_arch_cpu_init): Don't set cpu_hw_flags to 0 at the end, this was somehow
3171         added by the ps3 changes.
3172
3173 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
3174
3175         * mini-gc.c: Resurrect this, so at least it compiles.
3176
3177         * debugger-agent.c (assembly_commands): Implement GET_NAME command.
3178
3179 2009-11-18  Zoltan Varga  <vargaz@gmail.com>
3180
3181         * debugger-agent.c (mono_debugger_agent_handle_exception): Pass a MonoJitInfo to
3182         create_event_list () so assembly filters can be used.
3183
3184         * exceptions-ppc.c (mono_arch_find_jit_info): Fix the restoration of registers
3185         from the LMF.
3186
3187 2009-11-17  Zoltan Varga  <vargaz@gmail.com>
3188
3189         * debugger-agent.c (mono_debugger_agent_breakpoint_hit): Fix a warning.
3190         (mono_debugger_agent_thread_interrupt): Make this return FALSE if the agent
3191         is disabled.
3192
3193         * aot-compiler.c (add_generic_instances): Emit instances of common generic
3194         classes for char/bool too.
3195
3196         * debugger-agent.c (DebuggerTlsData): Honor the DISABLE_SOFT_DEBUG option.
3197
3198         * debugger-agent.c (DebuggerTlsData): Add a 'really_suspended' flag, not yet
3199         used.
3200
3201         * debugger-agent.c: Add some definitions to make backporting to 2.6 easier.
3202         Fix warnings.
3203
3204 2009-11-15  Andreas Faerber  <andreas.faerber@web.de>
3205
3206         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Signature fix.
3207         
3208         Code contributed under MIT/X11 license.
3209
3210 2009-11-14  Zoltan Varga  <vargaz@gmail.com>
3211
3212         (mono_debugger_agent_thread_interrupt): Save the context so stacktraces for
3213         threads in native code work.
3214
3215         * debugger-agent.c: Pass the 'flags' argument to VM_INVOKE_METHOD earlier in
3216         the parameter list, so it can be acted upon by vm_commands (). Bump protocol
3217         version.
3218
3219 2009-11-13 Jonathan Chambers <joncham@gmail.com>
3220
3221         * debugger-agent.c: Implementation for Windows platform.
3222
3223         * mini-x86.c: Add support for Windows. Use mono-* synchronization
3224         primitives. Use SEH to implement breakpoints and single stepping.
3225
3226         * mini-x86.h: Enable soft debugger on Windows.
3227
3228         Code contributed under MIT/X11 license.
3229
3230 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
3231
3232         * mini-amd64.c (emit_call_body): Disable usage of near calls when running
3233         under XEN. Fixes #522894.
3234
3235         * patch-info.h: Add LLVM_IMT_TRAMPOLINE.
3236
3237         * mini-llvm.c aot-compiler.c aot-runtime.c mini.c: Add support for making
3238         interface calls in LLVM AOT code.
3239
3240         * aot-compiler.c mini-llvm.c: Abort llvm compilation if a non-encodable patch
3241         is found.
3242
3243         * mini-llvm.c: Add support for OP_VPHI.
3244
3245         * objects.cs: Add a test.
3246
3247 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
3248
3249         * debugger-agent.c (mono_debugger_agent_single_step_event): Avoid a crash if
3250         this is called on the debugger thread.
3251
3252 2009-11-12  Zoltan Varga  <vargaz@gmail.com>
3253
3254         * mini-llvm.c: Add soft-float support.
3255
3256         * method-to-ir.c (mono_decompose_soft_float): Restart after decomposing an
3257         FCALL which returns an R4.
3258
3259         * driver.c (mono_main): Add a missing '\n'.
3260
3261         * mini-trampolines.c (mono_create_llvm_imt_trampoline): Fix the build on
3262         platforms which doesn't support the LLVM IMT trampoline.
3263
3264 2009-11-11  Zoltan Varga  <vargaz@gmail.com>
3265
3266         * mini-llvm.c (mono_llvm_emit_method): Fix LOCALLOC.
3267
3268         * mini-llvm-cpp.cpp: Update to latest LLVM SVN.
3269
3270         * mini-llvm.c (mono_llvm_emit_method): Avoid creating plt entries for
3271         virtual calls.
3272
3273         * aot-runtime.c: Don't define HAVE_DL_ITERATE_PHDR, configure now does that.
3274
3275 2009-11-10  Zoltan Varga  <vargaz@gmail.com>
3276
3277         * aot-compiler.c aot-runtime.c: Change how mono_arch_find_jit_info () works.
3278         Instead of emitting a method_order table, sort the contents of the code_offsets
3279         table and do a binary search in the sorted table. The previous approach doesn't
3280         work with LLVM which emits methods in a arbitrary order.
3281
3282         * aot-runtime.c: Add support for creating MonoJitInfo structures by searching
3283         in the .eh_frame section in ELF files.
3284
3285         * mini.h: Bump corlib file format version.
3286
3287         * mini-llvm.c aot-compiler.c: Add support for AOT to the LLVM back end.
3288
3289         * exceptions-arm.c (mono_arch_get_call_filter_full): Update after the
3290         LDMIA->LDM macro name change.
3291
3292 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3293
3294         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Fix and enable this for
3295         x86.
3296
3297         * mini-llvm-cpp.cpp (JITMemoryManager): Fix compilation with LLVM 2.7
3298         SVN.
3299
3300         * aot-compiler.c: Ditto.
3301
3302         * mini-arm.c (mono_arch_allocate_vars): Fix the previous change by passing
3303         &align to mini_type_stack_size_full ().
3304
3305         * mini-arm.c (mono_arch_emit_prolog): Implement support for varargs.
3306
3307         * mini-ops.h: Add documentation for the OP_ARGLIST opcode.
3308
3309 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
3310
3311         * mini-arm.c: Compute the stack space used by arguments using
3312         mini_type_stack_size_full ().
3313
3314 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
3315
3316         * optflags-def.h: Remove dead TREEPROP optimization.
3317
3318 2009-11-08  Rodrigo Kumpera  <rkumpera@novell.com>
3319
3320         * mini-ppc.h: Make mono compiler under FreeBSD/ppc64. 
3321
3322         Patch by Justin Hibbits <chmeeedalf@gmail.com>.
3323
3324 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
3325
3326         * driver.c (mono_jit_parse_options): New public API function to parse options
3327         as done by the runtime executable.
3328
3329         * debugger-agent.c (buffer_add_cattrs): Fix reading an uninitialized variable
3330         when handling named arguments.
3331
3332 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
3333
3334         * mini-arm.c: Implement support for returning vtypes in registers, fix support
3335         for passing small vtypes in registers, make the CallInfo structures more
3336         similar to the code on the other platforms.
3337
3338         * mini-arm.c (mono_arch_allocate_vars): Align small vtypes to 4 bytes too since
3339         the code in the prolog requires it.
3340
3341 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
3342
3343         * mini-arm.c debugger-agent.c: Android changes from Koushik K. Dutta
3344         (koush@koushikdutta.com).
3345
3346         * mini-arm.c (handle_thunk): Add a domain argument to control the domain
3347         where the thunk memory should be allocated from. Fixes appdomain unloading
3348         on arm.
3349
3350 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
3351
3352         * mini-arm.c exceptions-arm.c: Make ctx->regs map directly to the 16 hardware
3353         registers, instead of r4..r11,ip,lr. Make restore_context () restore r0..r3 too.
3354
3355 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3356
3357         * mini-amd64.c (mono_arch_output_basic_block): Don't allow OP_SEQ_POINT in
3358         AOT, as it is not implemented yet.
3359
3360         * mini-x86.c (mono_arch_output_basic_block): Ditto.
3361
3362 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3363
3364         * debugger-agent.c: Fix windows build.
3365
3366 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * debugger-agent.c (debugger_thread): Call mono_set_is_debugger_attached ()
3369         after the client connects/disconnects.
3370
3371         * debugger-agent.c: Add an 'onthrow' option to start the debugger agent
3372         when an exception of a given type is thrown.
3373
3374         * debugger-agent.c: Add a 'onuncaught' option to start the debugger agent
3375         only on an uncaught exception.
3376
3377         * mini-exceptions.c: Notify the debugger agent on an uncaught exception.
3378
3379         * debugger-agent.c: Add a 'launch' option.
3380
3381 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3382
3383         * debugger-agent.c: Add a 'timeout' option.
3384
3385 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3386
3387         * debugger-agent.c: Implement the 'server' and 'suspend' options supported by
3388         the JDWP agent.
3389
3390 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3391
3392         * debugger-agent.c (set_breakpoint): Emit a log message.
3393
3394 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3395
3396         * mini-arm.c: Fix the arm build.
3397
3398 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3399
3400         * aot-compiler.c: don't leak the value returned from
3401         mono_type_full_name().
3402
3403 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3404
3405         * debugger-agent.c: defer including mono-mutex.h until we know the
3406         agent is supported.
3407
3408 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3409
3410         * debugger-agent.c: Changes to build on windows. Use mono-mutex instead
3411         of pthreads directly.
3412
3413         * mini.c (mono_sigfpe_signal_handler): Changed signature of Windows
3414         exception handlers. Pass info argument.
3415
3416         * mini.h: Adjust signatures of soft debugger functions to pass void*
3417         instead of siginfo_t. Adjust SIG_HANDLER_SIGNATURE on Windows.
3418
3419         * mini-amd64.c (mono_arch_is_single_step_event): Adjust signature to pass void*
3420         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3421         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
3422         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3423
3424         * mini-amd64.h: Adjust MonoW32ExceptionHandler signature.
3425
3426         * mini-x86.c (mono_arch_is_single_step_event): Adjust signature to pass void*
3427         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3428         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
3429         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
3430
3431         * mini-x86.h: Adjust MonoW32ExceptionHandler signature.
3432
3433         * exceptions-x86.c: Adjust W32_SEH_HANDLE_EX for new signature.
3434
3435         * exceptions-amd64.c: Adjust W32_SEH_HANDLE_EX for new signature.
3436
3437         * mono-semaphore.h: Skeleton implementation for Windows.
3438
3439         Code contributed under MIT/X11 license.
3440
3441 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3442
3443         * simd-intrinsics.c (simd_intrinsic_emit_setter): Unfix my fix.
3444
3445         Code contributed under MIT/X11 license.
3446
3447 2009-11-04 Jonathan Chambers <joncham@gmail.com>
3448
3449         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix windows build.
3450
3451         Code contributed under MIT/X11 license.
3452
3453 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3454
3455         * aot-compiler.c (mono_save_xdebug_info): Bump the threshold for flushing
3456         debug info to 100 because 10 still slows down gdb too much.
3457
3458         * method-to-ir.c (mono_method_to_ir): Avoid rethrowing thread abort exceptions
3459         inside runtime invoke wrappers. This avoids the need to call ResetAbort () on
3460         them in the wrappers.
3461
3462 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3463
3464         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
3465
3466         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix a warning.
3467
3468         * aot-runtime.c (mono_aot_get_method): Refactor some code into a new helper
3469         function mono_aot_get_array_helper_from_wrapper ().
3470
3471         * aot-compiler.c (add_generic_class): Refactor the code a bit, really emit
3472         array helper methods.
3473
3474 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3475
3476         * simd-intrinsics.c (load_simd_vreg): Add extra argument to signal if
3477         the value was loaded from memory.
3478
3479         * simd-intrinsics.c (simd_intrinsic_emit_setter): Store back to memory if
3480         the value was loader from there.
3481
3482         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Fail correctly for Shuffle
3483         without constant swizzle.
3484
3485 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3486
3487         * mini-amd64.c: Put soft debugger functions behind a
3488         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
3489
3490         * mini-amd64.h: disable the soft debugger in windows.
3491
3492         Code contributed under MIT/X11 license.
3493
3494 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3495
3496         * mini-x86.c: Put soft debugger functions behind a
3497         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
3498
3499         Code contributed under MIT/X11 license.
3500
3501 2009-11-02 Jonathan Chambers <joncham@gmail.com>
3502
3503         * exceptions-x86.c (win32_handle_stack_overflow): Fix parameters
3504         to mono_arch_find_jit_info_ext.
3505
3506         Code contributed under MIT/X11 license.
3507
3508 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3509
3510         * debugger-agent.c: Include netinet/in.h to fix the bsd build.
3511
3512         * debugger-agent.c: Add support for filtering events by assemblies.
3513
3514         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Return false if
3515         the agent is not enabled.
3516
3517 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3518
3519         * exceptions-x86.c: hopefully last change to fix the windows build.
3520         This one courtesy of Jonathan Chambers.
3521
3522 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3523
3524         * debugger-agent.c: remove unused function.
3525
3526 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3527
3528         * debugger-agent.c: add #ifdefs for a few header files.
3529         * mini-x86.h: disable the soft debugger in windows.
3530         Step 1 of 2 to make this compile on windows with gcc.
3531
3532 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3533
3534         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Comment this out for now
3535         as it breaks the build.
3536
3537 2009-07-01  Zoltan Varga  <vargaz@gmail.com>
3538
3539         Merge the soft debugger branch.
3540
3541         * debugger-agent.h debugger-agent.c: New files containing the soft
3542         mode debugger module.
3543
3544         * method-to-ir.c (mono_method_to_ir): Generate OP_SEQ_POINT opcodes
3545         at the appropriate locations.
3546
3547         * mini-<ARCH>.c (mono_arch_output_basic_block): Handle OP_SEQ_POINT
3548         opcode.
3549
3550         * mini-<ARCH>.c: Add new arch-specific functions to set/clear breakpoints,
3551         enable/disable single stepping.
3552
3553         * exceptions-<ARCH>.c (mono_arch_find_jit_info_ext): New stack unwinding api
3554         which returns all information in a StackFrameInfo structure, and can handle the
3555         LMF frames added by the debugger.
3556
3557         * mini-<ARCH>.h (MonoLMFExt): New structure containing additional information
3558         about an LMF frame.
3559
3560         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): New stack
3561         walker function which works on a specific thread and passes a StackFrameInfo
3562         structure to its callback.
3563
3564         * mini.c (mini_init): Initialize the debugger agent.
3565
3566         * aot-compiler.c aot-runtime.c: Add soft-debug support.
3567
3568         * mini-ops.h: Add OP_SEQ_POINT opcode.
3569
3570         * driver.c (mono_main): Add new '--debugger-agent' option for passing
3571         arguments to the debugger agent.
3572
3573 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3574
3575         * mini.c (mini_method_compile): Disable llvm for methods with an lmf here to
3576         speed things up.
3577
3578         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOCALLOC.
3579
3580         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Implement this for x86.
3581
3582         * mini.c (mini_init): Avoid using the IMT trampoline in the LLVM case.
3583
3584         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add a static rgctx trampoline
3585         if needed.
3586         (mono_create_llvm_imt_trampoline): New function to create a trampoline which
3587         sets the IMT argument and makes a virtual call.
3588
3589         * mini-llvm.c: Enable interface calls using the llvm imt trampoline.
3590
3591 2009-11-01  Zoltan Varga  <vargaz@gmail.com>
3592
3593         * Makefile.am (llvm_sources): Enable the llvm option since it no longer breaks
3594         the windows build.
3595
3596 2009-10-30  Zoltan Varga  <vargaz@gmail.com>
3597
3598         * mini.c (mini_cleanup): Call profiler shutdown before shutting down the
3599         runtime. Fixes #551228.
3600
3601 2009-10-29  Zoltan Varga  <vargaz@gmail.com>
3602
3603         * mini-x86.c (mono_arch_output_basic_block): Fix % 1. Fixes #550970.
3604
3605         * basic.cs: Add a test.
3606
3607         * method-to-ir.c (mono_method_to_ir): Use EMIT_NEW_LOAD_MEMBASE_TYPE to
3608         load vtypes instead if OP_LOADV_MEMBASE in the implementation of
3609         CONSTRAINED. Fixes #550964.
3610
3611         * generics.cs: Add a test.
3612
3613 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3614
3615         * mini-posix.c (add_signal_handler): Use
3616         mono_gc_get_suspend_signal() instead of GC_get_suspend_signal().
3617
3618 2009-10-28 Jerry Maine <crashfourit@gmail.com>
3619
3620         Contributed under the terms of the MIT/X11 license by
3621         Jerry Maine <crashfourit@gail.com>.
3622
3623         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
3624         sse4a for simd intrinsics.
3625
3626         * mini-amd64.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
3627         sse4a for simd intrinsics.
3628
3629 2009-10-27  Zoltan Varga  <vargaz@gmail.com>
3630
3631         * ir-emit.h method-to-ir.c: Change a few _IMM macros to assign to inst_imm
3632         instead of inst_p1 which is not the same on ILP32 platforms.
3633
3634 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3635
3636         * mini-ppc.c (mono_arch_emit_prolog): Load the current got address,
3637         not the mscorlib one before calling mono_get_lmf_addr.
3638
3639         * tramp-ppc.c (mono_arch_create_trampoline_code_full): Fix the storing
3640         of the ip to the LMF.
3641
3642         * method-to-ir.c (mono_method_to_ir): Fix the handling of the
3643         immediate in the op->op_imm optimization.
3644
3645         * mini-ppc.c: Add a 'vtregs' field to ArgInfo to make the code easier to
3646         understand. VTypes now work, but are not abi compliant, as they are
3647         split into 4 byte parts instead of 8.
3648         (emit_memcpy): Fix the unrolled case to work on the PS3.
3649
3650         * mini-ppc.c (get_delegate_invoke_impl): Fix this for the PS3.
3651
3652         * aot-compiler.c (mono_compile_assembly): Make the autoreg option
3653         the default when static linking.
3654
3655         * mini-ppc.c (mono_arch_emit_prolog): Fix handling of I8 arguments.
3656
3657         * aot-compiler.c: Add an autoreg option to automatically register
3658         statically linked aot modules using ELF .ctors.
3659
3660         * genmdesc.pl: Add __ppc64__ to allowed defines.
3661
3662 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3663
3664         * mini-posix.c (add_signal_handler): Delay the GC suspend signal while
3665         executing a SIGSEGV handler on an altstack, since libgc can't handle that.
3666
3667 2009-10-24  Mark Probst  <mark.probst@gmail.com>
3668
3669         * exceptions-x86.c (mono_arch_find_jit_info): Fix build.
3670
3671 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3672
3673         * mini-exceptions.c (mini_jit_info_table_find): Add an 'out_domain' argument
3674         which will contain the domain where the method was found.
3675
3676         * exceptions-<ARCH>.c mini-exceptions.c: Update callers of
3677         mini_jit_info_table_find ().
3678
3679         * aot-compiler.c (xdebug_end_emit): Remove so stray debug code.
3680
3681         * branch-opts.c (mono_if_conversion): Avoid running deadce if it is disabled.
3682
3683 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3684
3685         * mini-x86.c (mono_arch_emit_prolog): Disable aot for methods with save_lmf
3686         set, its not supported yet.
3687
3688 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3689
3690         * aot-runtime.c (mono_aot_get_method): Avoid asserting if a array generic
3691         iface wrapper is not found.
3692         (mono_aot_get_method): Ditto for GetGenericValueImpl.
3693
3694 2009-10-21  Zoltan Varga  <vargaz@gmail.com>
3695
3696         * aot-runtime.c (mono_aot_get_method): Fix support for the IList<T> wrappers,
3697         which have a different name.
3698
3699         * aot-runtime.c (mono_aot_get_method): Special case the array generic iface
3700         wrappers and Array.GetGenericValueImpl ().
3701
3702         * aot-compiler.c: Avoid emitting some wrappers which are not needed anymore
3703         because of the change above.
3704
3705         * generics.cs: Add a test for full aot + generic array ifaces.
3706
3707 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3708
3709         * aot-compiler.c (emit_plt): Remove duplicate 'debug_sym' variable 
3710         that hides the previous one.
3711
3712 2009-10-18  Zoltan Varga  <vargaz@gmail.com>
3713
3714         * aot-compiler.c (can_marshal_struct): Allow some System.dll structs to be
3715         marshalled. Fixes #541623.
3716
3717 2009-10-16  Zoltan Varga  <vargaz@gmail.com>
3718
3719         * aot-compiler.c (emit_extra_methods): Remove some asserts which are not needed.
3720
3721 2009-10-15  Zoltan Varga  <vargaz@gmail.com>
3722
3723         * mini.c (mono_op_imm_to_op): Handle OP_AND/OR/XOR_IMM.
3724
3725 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3726
3727         * mini-posix.c (sigprof_signal_handler):
3728         Implemented support for building stat call chans in different ways.
3729
3730 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3731
3732         * mini-exceptions.c (mono_find_jit_info):
3733         Also check that a jit info has been found (fixes a profiler crash).
3734
3735 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3736
3737         * mini.c (mono_codegen):
3738         Call mono_profiler_code_buffer_new with correct code address.
3739
3740 2009-10-14  Zoltan Varga  <vargaz@gmail.com>
3741
3742         * driver.c (mono_main): Change the date in the copyright.
3743
3744 2009-10-14  Mark Probst  <mark.probst@gmail.com>
3745
3746         * method-to-ir.c (mono_method_to_ir): Don't use a managed array
3747         allocator in shared generic code for open classes, because we
3748         can't get those classes' vtables.  We need to make managed
3749         allocators not depend on the vtable at compile-time to solve this.
3750
3751 2009-10-13  Martin Baulig  <martin@ximian.com>
3752
3753         * debug-mini.c (mono_debugger_trampoline_compiled): Add
3754         `const guint8 *trampoline' argument; send both the old and the new
3755         notification.
3756
3757 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3758
3759         * aot-compiler.c (add_wrappers): Add a runtime invoke wrapper which is used by
3760         mono_runtime_capture_context () without calling mono_runtime_invoke ().
3761         (can_marshal_struct): Skip structures with auto layout.
3762
3763         * tramp-arm.c (GEN_TRAMP_SIZE): Increase this by 4.
3764
3765 2009-10-02  Zoltan Varga  <vargaz@gmail.com>
3766
3767         * mini-sparc.c (mono_arch_emit_setret): Emit long return values using OP_LMOVE.
3768         (mono_arch_create_vars): Instead of allocating a stack slot by hand, allocate
3769         a variable to hold the stack slot used by the int<->float conversion opcodes.
3770
3771         * mini-sparc.c (mono_arch_build_imt_thunk): Implement support for fail_tramp.
3772
3773 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3774
3775         * aot-compiler.c (add_generic_class): Only add GetGenericValueImpl wrappers
3776         when using full-aot.
3777
3778 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3779
3780         * aot-compiler.c (add_generic_class): Add an instance of GenericComparer<T> for
3781         each instance of Comparer<T>.
3782
3783         * generics.cs: Add a new test.
3784
3785 2009-10-09  Zoltan Varga  <vargaz@gmail.com>
3786
3787         * driver.c (parse_debug_options): Add a 'gdb' option.
3788
3789         * mini.c (mini_parse_debug_options): Add a 'gdb' option.
3790
3791         * image-writer.c: Add support for emitting the image into a memory buffer.
3792
3793         * dwarfwriter.c: Add support for sharing one IL file between multiple images.
3794
3795         * aot-compiler.c: Add support for registering debug info with GDB using the
3796         new JIT debugging interface in GDB 7.0. It can be turned on by setting
3797         MONO_XDEBUG to 'gdb'.
3798
3799 2009-10-10  Zoltan Varga  <vargaz@gmail.com>
3800
3801         * aot-compiler.c (mono_save_trampoline_xdebug_info): Implement this for the
3802         gdb mode.
3803
3804 2009-10-11  Zoltan Varga  <vargaz@gmail.com>
3805
3806         * aot-compiler.c (mono_save_xdebug_info): Emit a symbol for the method which
3807         can be used to set breakpoints in gdb.
3808
3809         * image-writer.c (bin_writer_emit_writeout): Add support for setting the text
3810         segment to an absolute address.
3811
3812 2009-10-13  Mark Probst  <mark.probst@gmail.com>
3813
3814         * method-to-ir.c: Use the managed array allocator method if
3815         available.
3816
3817 2009-10-13  Bill Holmes  <billholmes54@gmail.com>
3818
3819         * aot-compiler.c : Fix the MSVC builds
3820
3821         Code is contributed under MIT/X11 license.
3822
3823 2009-10-13  Zoltan Varga  <vargaz@gmail.com>
3824
3825         * aot-compiler.c (mono_save_xdebug_info): Group methods into groups of 10 to
3826         avoid registering 1 symbol file per method with gdb.
3827
3828 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3829
3830         * mini-sparc.c: Fix the handling of enums with base type long.
3831
3832         * mini-sparc.c (mono_arch_output_basic_block): Fix IREM_UN_IMM.
3833
3834         * mini-sparc.c (mono_arch_allocate_vars): Use mono_class_from_mono_type ()
3835         instead of using type->data.klass as the later doesn't work with generics.
3836
3837 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3838
3839         * method-to-ir.c, mini.h, mini-alpha.c, mini-amd64.c, mini-arm.c,
3840         mini-hppa.c, mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c,
3841         mini-s390x.c, mini-sparc.c, mini-x86.c: Thread.get_CurrentThread
3842         works differently now and we don't handle it in the JIT anymore.
3843
3844         * mini.c, mini-exceptions.c, mini-posix.c, debug-debugger.c,
3845         debug-mini.c, tramp-amd64.c, tramp-x86.c: Changes resulting from
3846         the Thread class split.
3847
3848 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3849
3850         * driver.c: Don't run tests with the obsolete treeprop optimization.
3851
3852         * mini-sparc.c (mono_arch_create_vars): Make the component vars of a long ret
3853         variable volatile. Fixes #541577.
3854
3855         * basic-calls.cs: Add a new test.
3856
3857         * basic-long.cs: Remove tests which are now in basic-calls.cs.
3858
3859 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3860
3861         * dwarfwriter.c (emit_debug_info_end): Disable this as it doesn't seem to
3862         work/required with recent iphone sdk versions.
3863
3864         * aot-compiler.c (add_wrappers): Generate PtrToStructure wrappers for more
3865         structures.
3866
3867         * decompose.c (mono_decompose_vtype_opts): Avoid reading uninitialized memory
3868         in the VCALL decomposition code.
3869
3870 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3871
3872         * mini-ia64.c (mono_arch_output_basic_block): Fix ISHR/ISHR_IMM.
3873
3874         * basic.cs: Add a test.
3875
3876         * mini-ia64.c (mono_arch_build_imt_thunk): Implement support the virtual
3877         generic invokes.
3878
3879         * mini-exceptions.c (mini_jit_info_table_find): New helper function which
3880         searches all the domains of the current thread.
3881
3882         * exceptions-<ARCH>.c: Use it. Fixes #539394.
3883
3884 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3885
3886         * exceptions-arm.c (mono_arm_throw_exception): Set ctx->ebp to fp instead of sp
3887         so catching exceptions thrown in the same method works. Fixes exception17.exe.
3888
3889         * tramp-arm.c (mono_arch_create_trampoline_code_full): Store NULL into lmf->method
3890         for non-jit trampolines.
3891
3892         * mini.c (mono_jit_runtime_invoke): Allow string ctors with dyn runtime invoke.
3893
3894         * aot-compiler.c (add_wrappers): Ditto.
3895
3896         * mini-arm.c: Implement support for passing vtypes and floats, and increase
3897         the size of the param area used by dyn_call to 6 which covers the majority of
3898         methods.
3899
3900         * mini.c aot-compiler.c: Allow dyn_call for string methods except ctors.
3901
3902         * mini-arm.c: Implement support for passing/receiving
3903         longs and receiving floats in the dyn_call code.
3904
3905         * mini-amd64.c: Implement support for receiving vtypes in registers in
3906         the dyn_call code.
3907
3908         * mini.c mini-amd64.c: Implement partial support for passing vtypes in
3909         the dyn_call code.
3910
3911 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3912
3913         * mini-arm.c (get_call_info): Return more precise information in
3914         ArgInfo->regtype.
3915         (dyn_call_supported): Use the information in CallInfo.
3916
3917         * mini-arm.c: Enable support for returning vtypes in the dyn_call code.
3918
3919         * mini.c mini-amd64.c: Enable support for returning vtypes in the dyn_call
3920         code.
3921
3922         * mini-arm.c: Update after the dyn_call api changes.
3923
3924         * mini.c (mini_create_jit_domain_info): Register a destructor function
3925         for the runtime_invoke_hash.
3926
3927         * mini-amd64.c (mono_arch_get_dyn_call_args): Rename this to
3928         'mono_arch_dyn_call_start'. Pass the pointer to the return value buffer to
3929         this function.
3930         (mono_arch_get_dyn_call_ret): Rename this to 'mono_arch_dyn_call_finish'.
3931         (dyn_call_supported): Simplify this by using get_call_info ().
3932         (mono_arch_dyn_call_free): New destructor function.
3933
3934         * generics.cs: Remove a printf.
3935
3936         * method-to-ir.c (mono_method_to_ir): Allocate some param area for DYN_CALL.
3937
3938         * mini-arm.c: Add support for enum return values and passing a few arguments
3939         on the stack.
3940         
3941         * mini.c (mono_jit_runtime_invoke): Add support for enum return values to
3942         dyn invoke.
3943
3944         * mini-amd64.c (mono_arch_get_dyn_call_ret): Ditto.
3945
3946         * aot-compiler.c (add_wrappers): Add a few restrictions for the use of
3947         the dynamic invoke wrappers.
3948
3949         * mini-arm.c: Implement OP_DYN_CALL for arm.
3950
3951         * aot-compiler.c (add_wrappers): Avoid aot-ing runtime invoke wrappers
3952         supported by the dynamic runtime invoke wrapper.
3953
3954         * aot-compiler.c aot-runtime.c: Add support for encoding the dynamic
3955         runtime invoke wrapper.
3956
3957         * mini.c (mono_jit_runtime_invoke): Use the dynamic runtime invoke wrappers
3958         if possible when running with full-aot.
3959
3960         * mini-ops.h: Add OP_DYN_CALL opcode.
3961
3962         * mini-amd64.c method-to-ir.c: Add infrastructure for making method calls
3963         with dynamic arguments lists similar to libffi.
3964
3965 2009-09-19  Zoltan Varga  <vargaz@gmail.com>
3966
3967         * method-to-ir.c: Fix the previous change on 64 bit platforms.
3968         
3969         * method-to-ir.c: Applied patch from Rodrigo Kumpera. Allow an i8 argument
3970         to NEWARR.
3971
3972         * iltests.il.in: Add a new test.
3973         
3974 2009-09-18  Zoltan Varga  <vargaz@gmail.com>
3975
3976         * aot-compiler.c (add_generic_instances): Add more instances of
3977         GenericEqualityComparer.
3978
3979 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3980
3981         * mini.c: Add asserts for mono_class_vtable calls that are not meant to fail.
3982
3983 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3984
3985         * method-to-ir.c: Handle failures from mono_class_vtable. Added some
3986         comments on some functions that now can fail.
3987
3988 2009-09-17  Andrew Jorgensen  <ajorgensen@novell.com>
3989
3990         * Makefile.am: Add Info.plist to EXTRA_DIST
3991
3992 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3993
3994         * method-to-ir.c (mono_method_to_ir): Allow AOT for CEE_LDTOKEN in
3995         static synchronized wrappers. Fixes #539500.
3996
3997 2009-09-14  Rodrigo Kumpera  <rkumpera@novell.com>
3998
3999         * jit-icalls.c (mono_class_static_field_address): handle vtable failure
4000         properly.
4001
4002 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4003
4004         * mini-exceptions.c (mono_handle_exception_internal): Store the computed
4005         lmf before calling filter clauses as well. Fixes #539550.
4006
4007         * exceptions.cs: Add a test.
4008         
4009 2009-09-14  Zoltan Varga  <vargaz@gmail.com>
4010
4011         * aot-compiler.c (add_generic_class): Add instances of
4012         Array.GetGenericValueImpl as well.
4013
4014         * Makefile.am (fullaotcheck): Copy and aot more assemblies so linq
4015         can be tested too.
4016
4017         * generics.cs: Add a fullaot linq test.
4018
4019 2009-09-10  Zoltan Varga  <vargaz@gmail.com>
4020
4021         * aot-compiler.c (arch_emit_static_rgctx_trampoline): Don't clobber argument
4022         reg r1 on arm.
4023
4024 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4025
4026         * mini-trampolines.c (mono_delegate_trampoline) : Call
4027           mono_cominterop_get_invoke if the delegate target object
4028           is a COM object.
4029
4030         Code is contributed under MIT/X11 license.
4031
4032 2009-09-09  Sebastien Pouliot  <sebastien@ximian.com>
4033
4034         * method-to-ir.c: For CoreCLR throw a SecurityException if an 
4035         internal call is defined outside platform code. Reduce code 
4036         duplication with existing [Method|Field]AccessException
4037
4038 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4039
4040         * mini-x86.c (mono_arch_emit_call): Don't reduce stack usage by 4
4041         if the return value is a small struct passed on regs.
4042
4043 2009-09-09  Zoltan Varga  <vargaz@gmail.com>
4044
4045         * cpu-arm.md mini-arm.c: Remove unused opcodes.
4046
4047         * mini-codegen.c: Enable the cpu description validation for arm.
4048
4049 2009-09-08  Zoltan Varga  <vargaz@gmail.com>
4050
4051         * basic-calls.cs: Move the test_0_float_load_and_store_with_big_offset ()
4052         test which depends on structs to objects.cs.
4053         
4054         * basic-calls.cs: Remove calls to Console.WriteLine and throws, since those
4055         require object model related stuff working.
4056
4057         * cpu-x86.md mini-x86.c: Remove more unused opcodes.
4058
4059         * mini-ops.h: Fix OP_BIGMUL instruction descriptions.
4060
4061         * mini-codegen.c (mono_local_regalloc): Validate the cpu description 
4062         against the instruction metadata in mini-ops.h. amd64 only for now.
4063
4064         * mini-ops.h: Fix some instruction descriptions.
4065
4066         * mini-ops.h mini-x86.c mini-amd64.c cpu-<ARCH>.md: Remove some
4067         unused instructions.
4068
4069 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
4070
4071         * exceptions.cs: Add a new test.
4072
4073 2009-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
4074
4075         * mini-x86.c (needs_stack_frame): OSX requires full frames to keep proper alignment.
4076
4077 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
4078
4079         * mini-llvm.c (mono_llvm_emit_method): Add a few more missing casts,
4080         skip empty phi opcodes.
4081         
4082         * mini-llvm.c (mono_llvm_emit_method): Handle unsigned volatile variables
4083         correctly by zero extending after loads. Skip methods containing calls
4084         to the monitor enter/exit trampolines.
4085
4086         * tramp-x86.c (mono_arch_create_trampoline_code): Align the stack
4087         when calling mono_thread_force_interruption_checkpoint ().
4088
4089         * mini.c (mini_method_compile): Disable llvm when AOT compiling.
4090
4091         * tramp-amd64.c (mono_arch_patch_callsite): Add support for 32 bit ->
4092         64 bit thunks.
4093         (mono_arch_nullify_class_init_trampoline): Read 'buf' instead of 'code'.
4094
4095         * mini-llvm.c (mono_llvm_emit_method): Add a few missing conversions so a 
4096         bootstrap could run.
4097
4098 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4099
4100         * mini.c (mini_init): Set callbacks.get_runtime_build_info ().
4101
4102 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4103
4104         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass the start
4105         of the method to
4106         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
4107         LLVM might be very short.
4108
4109         * mini-x86.c (mono_arch_output_basic_block): Maintain stack alignment
4110         in OP_THROW/RETHROW.
4111
4112         * exceptions-x86.c: Rewrite the throw trampolines so they maintain stack
4113         alignment on osx.
4114
4115 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4116
4117         * mini-amd64.c (mono_arch_get_vcall_slot): Pass the start of the method to
4118         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
4119         LLVM might be very short.
4120
4121 2009-09-01  Zoltan Varga  <vargaz@gmail.com>
4122
4123         * exceptions-x86.c (throw_exception): Fix the previous change by substracting
4124         the alignment for the value of sp.
4125
4126 2009-09-01  Geoff Norton  <gnorton@novell.com>
4127
4128         * mini.c (mono_get_lmf_addr): Fix jit_thread_attach for native to 
4129         managed wrappers in full aot.
4130
4131 2009-08-31  Zoltan Varga  <vargaz@gmail.com>
4132
4133         * exceptions-x86.c (get_throw_exception): Align the stack on osx.
4134
4135 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4136
4137         * mini-llvm-cpp.cpp mini-llvm.c: Update to latest llvm api.
4138
4139 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
4140
4141         * aot-compiler.c (emit_exception_debug_info): Emit ei->flags too.
4142
4143         * aot-runtime.c (decode_exception_debug_info): Decode ei->flags from the
4144         saved info.
4145
4146         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
4147
4148         * aot-runtime.c aot-compiler.c: Emit exception causes fully so we don't
4149         depend on the info MonoMethodHeader which could be missing in IL stripped
4150         assemblies.
4151
4152 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
4153
4154         * mini-arm.c (add_general): Fix the passing of 64 bit values on darwin, where
4155         they are only 4 byte aligned.
4156
4157 2009-08-21  Zoltan Varga  <vargaz@gmail.com>
4158
4159         * mini-arm.c (mono_arch_allocate_vars): Use FP as the frame pointer as
4160         was done previously, since using SP causes too many problems.
4161
4162         * exceptions-arm.c: Fix the handling of sp/fp so unwinding through
4163         frames without a frame pointer works.
4164
4165         * mini-arm.c (mono_arch_get_global_int_regs): Avoid using V5 as a
4166         global register in methods with calls, since the calls can go through
4167         a static rgctx trampoline which doesn't save it.
4168
4169 2009-08-19  Zoltan Varga  <vargaz@gmail.com>
4170
4171         * mini-arm.c (mono_arch_context_get_int_reg): Handle SP as well.
4172
4173 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4174
4175         * aot-compiler.c (add_generic_instances): Fix the net 1.1 build.
4176
4177 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4178
4179         * method-to-ir.c: Fix warnings for uninitialized variables.
4180
4181 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4182
4183         * mini-exceptions.c:
4184         * aot-compiler.c: Fix printf warnings.
4185
4186 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4187
4188         * aot-compiler.c (add_generic_instances): Add string[] wrapper methods.
4189         Add GetGenericValueImpl<string>.
4190         
4191         * aot-compiler.c (add_generic_instances): Add instances of
4192         GenericEqualityComparer<T> for primitive types. Only emit the array
4193         wrappers into the mscorlib image.
4194
4195 2009-08-15  Zoltan Varga  <vargaz@gmail.com>
4196
4197         * aot-runtime.c (load_method): Rename 'aot_module' -> 'amodule'. Allocate
4198         the methods_loaded array using amodule->info->nmethods.
4199
4200         * mini.h (MonoAotFileInfo): Add an 'nmethods' field.
4201         (MONO_AOT_FILE_VERSION): Bump this.
4202
4203         * aot-compiler.c: Emit more generic instances allowing some parts of linq
4204         to work.
4205
4206         * aot-runtime.c (mono_aot_get_unwind_info): Handle the case when the
4207         MonoJitInfo doesn't belong to its methods aot image.
4208
4209 2009-08-14  Zoltan Varga  <vargaz@gmail.com>
4210
4211         * mini-arm.c (mono_arch_allocate_vars): Use SP as the default frame reg.
4212
4213         * mini-arm.c: Fix warnings.
4214         
4215         * mini-arm.c (mono_arm_emit_load_imm): Only emit a movt if needed.
4216
4217         * mini-arm.c (mono_arm_emit_load_imm): Use movt/movw if the cpu
4218         supports it.
4219
4220 2009-08-12  Zoltan Varga  <vargaz@gmail.com>
4221
4222         * aot-compiler.c (arch_emit_imt_thunk): Rework the arm code to
4223         avoid clobbering IP.
4224
4225         * mini-trampolines.c (mono_magic_trampoline): Allocate a local to
4226         hold the trampoline argument, so its initial value is available during
4227         debugging.
4228
4229 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4230
4231         * exceptions-arm.c:
4232         * exceptions-hppa.c:
4233         * mini.c:
4234         * exceptions-s390x.c:
4235         * exceptions-mips.c:
4236         * exceptions-ppc.c:
4237         * exceptions-sparc.c:
4238         * exceptions-alpha.c:
4239         * aot-runtime.c:
4240         * mini-trampolines.c:
4241         * exceptions-x86.c:
4242         * exceptions-s390.c: add and use #define's instead of sizeof()
4243         for MonoJitInfo and MonoJitInfoTable.
4244
4245 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4246
4247         * tramp-arm.c:
4248         * tramp-amd64.c:
4249         * tramp-ppc.c:
4250         * tramp-x86.c: use a #define instead of sizeof() for a few
4251         structures that use a zero-length array.
4252
4253 2009-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
4254
4255         * method-to-ir.c (mono_method_to_ir/CEE_CONSTRAINED_): Handle the
4256         case when the method is dynamic. Fixes #529238.
4257
4258 2009-08-06  Zoltan Varga  <vargaz@gmail.com>
4259
4260         * mini.c (mono_jit_compile_method_inner): Throw an exception instead
4261         of asserting when a method is JIT compiled in full-aot mode.
4262
4263 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
4264         
4265         Contributed under the terms of the MIT/X11 license by
4266         Jerry Maine <crashfourit@gail.com>.
4267         
4268         * fixed wrong dates in changelog.
4269
4270 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
4271         
4272         Contributed under the terms of the MIT/X11 license by
4273         Jerry Maine <crashfourit@gail.com>.
4274
4275         * basic-simd.cs: added test for packed double square root.
4276         * cpu-amd64.md: added opcode info for packed double square root.
4277         * cpu-x86.md: added opcode info for packed double square root.
4278         * mini-ops.h: added IR opcode for packed double square root.
4279         * mini-x86.c: added IR to native translation code for packed double square root.
4280         * mini-amd64.c: removed todo for packed double square root.
4281         * simd-intrinsics.c: added method to IR opcode converstion for
4282         packed double square root.
4283
4284 2009-08-03 Jerry Maine <crashfourit@gmail.com>
4285
4286         Contributed under the terms of the MIT/X11 license by
4287         Jerry Maine <crashfourit@gail.com>.
4288
4289         * mini-amd64.c: Added a change to help tell the difference as 
4290         to what perpose the xmm register is being used--mainly to help
4291         with debuging.
4292         * mini-amd64.h: Changed callee regs to use 15 out of 16 
4293         (one used for special cases) xmm registers for both fp
4294         and simd ops. Added define to turn on new feature in the regalloc
4295         that allows fp and simd ops to share the xmm regs happily.
4296         * codegen.c: Added code to detect for which perpose an xmm reg is
4297         being used (fp or simd) and to translate back and forth to the
4298         correct logical reg bank (fp or simd) for 'spill load's.
4299
4300 2009-08-03 Jerry Maine <crashfourit@gmail.com>
4301
4302         Contributed under the terms of the MIT/X11 license by
4303         Jerry Maine <crashfourit@gail.com>.
4304
4305         * basic-simd.cs: Added tests for stressing the regalloc when running with
4306         16 simd regs and when simd and fp ops share the same reg bank.
4307
4308 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4309
4310         * method-to-ir.c (mini_emit_stobj): If we call mono_value_copy()
4311         in shared generic code, we might have to look up the class in the
4312         RGCTX.  If we use the class directly, compute its GC descriptor.
4313
4314 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4315
4316         * mini.c (mono_jit_runtime_invoke): Fix a warning.
4317
4318 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4319
4320         * mini.c (mono_jit_runtime_invoke): Initialize the class and
4321         check for errors. Fixed the case when the class with the Main
4322         method is broken.
4323
4324 2009-07-31 Jerry Maine <crashfourit@gmail.com>
4325
4326         Contributed under the terms of the MIT/X11 license by
4327         Jerry Maine <crashfourit@gail.com>.
4328
4329         * cpu-amd64.md: Fixed simple bug in machine discrition file.
4330
4331 2009-07-31  Zoltan Varga  <vargaz@gmail.com>
4332
4333         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_IREM_UN_IMM.
4334
4335 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4336
4337         * method-to-ir.c: Fix naming of stelem and ldelem.
4338
4339 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4340
4341         * driver.c (main_thread_handler): Check that the assembly loaded
4342         matches the filename when doing AOT.
4343
4344 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4345
4346         * mini.c: get_ip_from_sigctx installer has been removed, so don't
4347         call it anymore.
4348
4349         * mini-x86.h, mini-amd64.h, mini-ppc.h: UCONTEXT macros moved (to
4350         utils/mono-sigcontext.h).
4351
4352         * exceptions-amd64.c: Use the UCONTEXT_GREGS macro instead of an
4353         #ifdef.
4354
4355 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4356
4357         * mini.c (mono_codegen):
4358         Call profiler hook to keep track of method code buffers.
4359
4360 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4361
4362         * method-to-ir.c: Invoke write barriers for the
4363         Interlocked.(Compare)Exchange JIT intrinsics.
4364
4365 2009-07-26  Raja R Harinath  <harinath@hurrynot.org>
4366
4367         * Makefile.am (version.h): Fix issues when built out of tree.
4368         Remove some redundant 'grep's piped through 'sed's.
4369
4370 Fri Jul 24 17:28:37 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
4371
4372         This patch is contributed under the terms of the MIT/X11 license
4373
4374         * mini-ppc.c (mono_arch_output_basic_block):
4375         (OP_STOREI1_MEMBASE_REG): Handle 32-bit offsets combining addis
4376         for bits 32-47 with signed load/store diplacements for bits
4377         48-63.  Use prefered base/offset order for indexed form.
4378         (OP_STOREI2_MEMBASE_REG, OP_STORE_MEMBASE_REG): Same.
4379         (OP_LOAD_MEMBASE, OP_LOADI4_MEMBASE, OP_LOADU4_MEMBASE,
4380         OP_LOADI1_MEMBASE, OP_LOADU1_MEMBASE, OP_LOADU2_MEMBASE,
4381         OP_LOADI2_MEMBASE): Same.
4382         (OP_STORER8_MEMBASE_REG, OP_LOADR8_MEMBASE,
4383         OP_STORER4_MEMBASE_REG, OP_LOADR4_MEMBASE): Same.
4384         (OP_STOREI1_MEMINDEX): Use prefered base/offset order for
4385         indexed form.
4386         (OP_STOREI2_MEMINDEX, OP_STORE_MEMINDEX): Same.
4387         (OP_LOAD_MEMINDEX, OP_LOADI4_MEMINDEX, OP_LOADU4_MEMINDEX,
4388         OP_LOADU2_MEMINDEX, OP_LOADI2_MEMINDEX, OP_LOADU1_MEMINDEX,
4389         OP_LOADI1_MEMINDEX): Same
4390         (OP_LOADR4_MEMINDEX, OP_LOADR8_MEMINDEX, OP_STORER4_MEMINDEX,
4391         OP_STORER8_MEMINDEX): Same
4392         (OP_JMP): Use addis/addi sequence for int cfg->stack_usage
4393         computations.
4394         (mono_arch_emit_prolog): Handle 32-bit offsets combining addis
4395         for bits 32-47 with signed load/store diplacements for bits
4396         48-63.  Use prefered base/offset order for indexed form.
4397
4398 Fri Jul 24 16:57:12 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
4399
4400 This patch is contributed under the terms of the MIT/X11 license
4401
4402         * mini-ppc.c: Define PPC_MOVE_FPR_GPR and PPC_ISA_64.
4403         (mono_arch_get_vcall_slot): Fx pointer to int cast warning.
4404         (mono_arch_decompose_opts): Make OP_ICONV_TO_R4 and
4405         OP_ICONV_TO_R8 decompose conditional on !PPC_ISA_64.
4406         (mono_arch_output_basic_block) [OP_JMP]: Use ppc_load32 for
4407         cfg->stack_usage to avoid size warnings.
4408         (mono_arch_output_basic_block) [__mono_ppc64__]: Replace
4409         store/load sequence with mffgpr if PPC_MOVE_FPR_GPR is true.
4410         (mono_arch_output_basic_block) [!__mono_ppc64__]: For
4411         OP_ICONV_TO_R4 or OP_ICONV_TO_R8 and PPC_ISA_64 use fcfid
4412         to convert.
4413         (mono_arch_emit_prolog): Move mono_emit_unwind_op_def_cfa 
4414         after code varible is initialized.
4415         Add g_assert ppc_is_imm16 for ainfo->offset. Handle
4416         ainfo->size == 8 when ainfo->offset !ppc_is_imm16.
4417         (mono_arch_emit_epilog): 
4418         Move Use ppc_load32 for cfg->stack_usage to avoid size
4419         warnings.
4420
4421 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4422
4423         * method-to-ir.c: The write barrier doesn't do the store anymore,
4424         so we have always to emit it.  Also, emit the wbarrier after the
4425         store.
4426
4427 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4428
4429         * mini-arm.c (mono_arch_get_delegate_invoke_impls): Add a trampoline
4430         for argument count 3 too.
4431
4432 2009-07-23  Zoltan Varga  <vargaz@gmail.com>
4433
4434         * mini.c (mono_jit_compile_method_with_opt): Add an 'ex' argument to let
4435         the caller handle the exceptions.
4436         (mono_jit_runtime_invoke): Handle exceptions thrown while compiling the
4437         method. Fixes #524498.
4438
4439 2009-07-22  Geoff Norton  <gnorton@novell.com>
4440
4441         * mini-exceptions.c: Fix build on ia64.
4442
4443 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4444
4445         * mini-exceptions.c (ves_icall_get_frame_info): Use write
4446         barriers.
4447
4448 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4449
4450         * mini-arm.c (mono_arch_emit_prolog): Fix thread attaching in aot
4451         code.
4452
4453 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
4454
4455         * basic-simd.cs (Main): Pass args to the test driver.
4456
4457 2009-07-20  Geoff Norton  <gnorton@novell.com>
4458
4459         * mini-x86.h: Fix the x86 version guards to use Apple's
4460         properly defined macros.
4461
4462 2009-07-20  Geoff Norton  <gnorton@novell.com>
4463
4464         * mini-x86.c: Fix --trace on darwin-x86 and other systems which require
4465         aligned access.
4466
4467 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
4468
4469         * mini.c (mono_jit_runtime_invoke): Speed this up by adding a hash to
4470         MonoJitDomainInfo which maps MonoMethod's to a structure containing all
4471         the information which is needed for invokes, so only one locking+hash table
4472         lookup is needed.
4473
4474         * aot-compiler.c: Add a 'tool-prefix' option to be used when cross-compiling.
4475         
4476         * aot-compiler.c (add_generic_instances): Emit instances of 
4477         GenericComparer<T> for primitive types.
4478
4479 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4480
4481         * mini-posix.c: Fix linux build.
4482
4483 2009-07-19  Geoff Norton  <gnorton@novell.com>
4484
4485         * mini.h: Add prototypes for mono_runtime_syscall_fork and
4486         mono_gdb_render_native_backtraces
4487         * mini-darwin.c: Apple's syscall(SYS_fork) is very weird on x86,
4488         so we implement the sane semantics to the runtime here
4489         (mono_gdb_render_native_backtraces).  Apple also uses an ancient gdb
4490         so we need to call it differently (mono_gdb_render_native_backtraces)
4491         * mini-posix.c: Move the old semantics from mini.c to the prototypes
4492         here for default implementations.
4493         * mini.c: Refactor mono_handle_native_sigsegv so that we can properly
4494         support Apple's weird syscall (SYS_fork) implementation and not busy
4495         loop in abort() on native crashes on OSX anymore.
4496
4497 2009-07-18  Zoltan Varga  <vargaz@gmail.com>
4498
4499         * aot-runtime.c (load_method): Change the handling of the
4500         MONO_LASTAOT env variable so MONO_LASTAOT=0 means that no aot methods
4501         are used.
4502
4503         * mini.c (mono_patch_info_equal): Really fix the handling of RGCTX_FETCH.
4504
4505 2009-07-17  Zoltan Varga  <vargaz@gmail.com>
4506
4507         * mini.c (mono_patch_info_equal): Revert the last change for now as it
4508         seems to break the aot tests.
4509         
4510         * mini.c (mono_patch_info_equal): Fix the handling of 
4511         MONO_PATCH_INFO_RGCTX_FETCH.
4512
4513 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
4514
4515         * unwind.c: Use TARGET_AMD64 instead of __x86_64__.
4516
4517         * mini.c (mono_patch_info_hash): Fix the handling of 
4518         MONO_PATCH_INFO_INTERNAL_METHOD.
4519         (mono_patch_info_equal): Ditto.
4520
4521 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
4522
4523         * mini-llvm.c (mono_llvm_emit_method): Use module instead of ctx->module
4524         in a few places.
4525         
4526         * mini-llvm.c: Add some infrastructure for AOT support.
4527
4528 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
4529
4530         * mini-llvm-cpp.c: Update to the latest llvm api.
4531         
4532         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Set the EnablePrettyStackTrace
4533         option to false to prevent llvm from installing signal handlers which
4534         trip up the gc.
4535         
4536 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4537
4538         * cpu-x86.md:
4539         * cpu-amd64.md: Revert previous change as those instructions
4540         take 2 separate arguments. Remember to read the arch docs more
4541         carefully next time.
4542
4543 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
4544
4545         * mini-llvm-cpp.cpp (mono_llvm_build_alloca): Update to latest llvm api.
4546
4547 Wed Jul 15 17:20:27 CEST 2009 Paolo Molaro <lupus@ximian.com>
4548
4549         * mini-ppc.c: exploit multiple load/store units if available (rest of
4550         the change from Steven Munroe (<munroesj@us.ibm.com>) first patch at 
4551         http://bugzilla.novell.com/show_bug.cgi?id=487846).
4552
4553 Wed Jul 15 16:24:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4554
4555         * mini-ppc.c: integrate most of Steven Munroe (<munroesj@us.ibm.com>)
4556         first patch at http://bugzilla.novell.com/show_bug.cgi?id=487846.
4557
4558 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * cpu-x86.md: Fix missing clobbering from trancendental simd
4561         ops.
4562
4563         * cpu-amd64.md: Same.
4564
4565 2009-07-14 Jerry Maine <crashfourit@gmail.com>
4566
4567         Contributed under the terms of the MIT/X11 license by
4568         Jerry Maine <crashfourit@gail.com>.
4569
4570         * basic-simd.cs: Added tests for single and doulble indexers.
4571
4572         * cpu-amd64.md: Added simd opcode information.
4573
4574         * mini-amd64.c: Added IR to native simd generation code.
4575         Added simd register names and function that returns them.
4576
4577         * mini-amd64.h: Added marcos to turn on simd code compilation in
4578         amd64. Added max simd register count marco. Added caller/callee
4579         register mask marcos. Added marcos to use simd register bank.
4580
4581         * mini.h: Added helper marco for shufling dwords and simple
4582         floats.
4583
4584 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4585
4586         * mini-llvm-cpp.cpp: Update to latest llvm SVN api.
4587
4588         * Makefile.am (mono_LDADD): Pass LLVM_LDFLAGS to the linked.
4589
4590         * unwind.c (mono_unwind_get_ops_from_fde): Make this return
4591         the length of the native code as well.
4592
4593         * basic-simd.cs: Add a test for #521662.
4594
4595 Mon Jul 13 17:58:50 CEST 2009 Paolo Molaro <lupus@ximian.com>
4596
4597         * mini-ppc.c: fixed bug introduced by Steven's TLS changes.
4598
4599 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4600
4601         * mini.c: Register function for getting the IP from a signal
4602         context with metadata.
4603
4604 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4605
4606         * method-to-ir.c (mono_method_to_ir): When calling a gshared method,
4607         call a generic class init trampoline if needed. Fixes #519336.
4608
4609         * generics.cs: Add a test.
4610         
4611 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4612
4613         * method-to-ir.c: When doing a call which might be remote from
4614         shared generic code to other shared code with open type arguments,
4615         get the remoting invoke wrapper from the RGCTX and do an indirect
4616         call to it.
4617
4618 2009-07-03  Zoltan Varga  <vargaz@gmail.com>
4619
4620         * mini-trampolines.c (get_unbox_trampoline): Add an rgctx trampoline
4621         after the unbox trampoline in the full-aot case.
4622
4623 2009-07-02  jonas echterhoff <jonas@unity3d.com>
4624         
4625         * mini.c: Move initialization of jit_mutex before debugger initialization
4626         
4627         to avoid crashes.
4628         
4629         
4630         * Info.plist: added Info.plist and link flag to enable the mono executable
4631         to access other processes. Requires codesigning of the executable to work.
4632         
4633         * mdb-debug-info32-darwin.s: The same as mdb-debug-info32.s, changed to 
4634         
4635         compile on OS X.
4636         
4637
4638 2009-06-30  Zoltan Varga  <vargaz@gmail.com>
4639
4640         * driver.c (mini_regression): Handle loading errors. Fixes #508869.
4641
4642 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4643
4644         * mini-exceptions.c (get_generic_context_from_stack_frame): Fix the case
4645         when the generic instance is an instantiation of a subclass of the
4646         methods class. Fixes #517166.
4647
4648 2009-06-26  Zoltan Varga  <vargaz@gmail.com>
4649
4650         * mini-amd64.c (mono_arch_emit_prolog): Fix thread attaching in AOTed
4651         code.
4652
4653         * mini.c (mono_jit_thread_attach): Allow domain to be NULL for calls from
4654         AOTed code.
4655
4656         * CMakeLists.txt: Add minimal support for installation.
4657
4658 2009-06-25  Zoltan Varga  <vargaz@gmail.com>
4659
4660         * aot-compiler.c (emit_and_reloc_code): Factor out the code to
4661         determine whenever a method is directly callable to a separate function.
4662
4663         * mini-<ARCH>.c tramp-<ARCH>.c: Remove needless casts and add new
4664         needed ones as a result of the previous change.
4665
4666         * mini-<ARCH>.c tramp-<ARCH>.c: Use mgreg_t* as the
4667         type of register arrays.
4668
4669         * mini-trampolines.c tramp-<ARCH>.c aot-runtime.c: Use mgreg_t* as the
4670         type of register arrays.
4671
4672 2009-06-24  Jerry Maine  <crashfourit@gmail.com>
4673         
4674         Contributed under the terms of the MIT/X11 license by
4675         Jerry Maine <crashfourit@gail.com>.
4676
4677         * mini-amd64.c: Added code to convert simd IR to native amd64 sse.
4678
4679 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4680
4681         * aot-compiler.c (emit_plt): Define debug labels for most plt entries.
4682
4683 2009-06-24  Neale Ferguson <neale@sinenomine.net>
4684
4685         * mini-s390x.c: Correct LCONV_TO_Ix and ICONV_TO_Ix routines. Fix leave_method
4686         dump of structure return value. Fix some formatting.
4687         * cpu-s390x.md: Fix lengths of instruction sequences.
4688         * mini-s390.c: Minor formatting changes.
4689
4690 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4691
4692         * mini-x86.h: Applied patch from Romain Tartiere (romain@blogreen.org).
4693         Use sigaction on freebsd as well.
4694
4695 2009-06-23  Zoltan Varga  <vargaz@gmail.com>
4696
4697         * mini.h: Don't define MONO_ARCH_HAVE_TLS_GET to 0, as some code
4698         uses #ifdef on it.
4699         
4700         * mini.c (mini_init): Revert a change which breaks cross-compilation.
4701
4702 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4703
4704         * mini-ppc.c, cpu-ppc.md: Enable TLS on Darwin/G4.
4705
4706 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4707
4708         * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
4709
4710 2009-06-20  Martin Baulig  <martin@ximian.com>
4711
4712         * debug-mini.c
4713         (MonoDebuggerThreadFlags): New enum typedef.
4714         (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
4715         (mono_debugger_thread_created): Added `gpointer func' argument;
4716         initialize the new `thread_flags' field.
4717
4718 2009-06-18  Martin Baulig  <martin@ximian.com>
4719
4720         * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
4721         (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
4722
4723         * debug-debugger.c
4724         (mini_debugger_set_attach_ok): New function; sets the attach-ok
4725         flag in `MONO_DEBUGGER__info.runtime_info'.
4726
4727         * driver.c
4728         (mono_main): Call mini_debugger_set_attach_ok() if generics
4729         sharing is disabled.
4730
4731 2009-06-22  Zoltan Varga  <vargaz@gmail.com>
4732
4733         * aot-compiler.c (add_wrappers): Fix a warning.
4734
4735         * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
4736         the ppc load/store macro changes.
4737
4738 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4739
4740         * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
4741
4742         * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
4743         not just the got symbol.
4744
4745         * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
4746         on ppc.
4747
4748         * aot-compiler.c unwind.c: Add infrastructure for unwind support on
4749         ppc.
4750         
4751         * aot-compiler.c: Remove some fixmes.
4752
4753         * driver.c (mono_main): Print a helpful message when cross-compiling.
4754
4755         * mini.c (mini_init): Disable signal handlers when cross-compiling.
4756
4757         * method-to-ir.c (initialize_array_data): Do the optimization if the
4758         target byte order is little endian, instead of the host byte order.
4759
4760         * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
4761         wrappers into the mscorlib image, Emit a unique plt symbol for each
4762         image, emit symbols for plt entries.
4763
4764         * image-writer.c (img_writer_emit_symbol_size): New function to emit
4765         a .size directive.
4766         
4767 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
4768
4769         * aot-compiler.c (add_wrappers): Avoid calling 
4770         mono_marshal_get_type_info () since it can assert for some types.
4771
4772         * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of 
4773         ldtoken are used inside wrappers.
4774
4775         * helpers.c: Add support for prefixing tools with the arch name.
4776
4777         * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
4778         quantities when using ilp32.
4779
4780         * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
4781         spill slots. Use sizeof(mgreg_t) for the spill slot size.
4782
4783         * image-writer.c: Use .long on ilp32.
4784
4785         * aot-compiler.c: Use 32 bit loads on ilp32.
4786         
4787 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4788
4789         * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
4790
4791         * mini-ops.h: Use TARGET_POWERPC define for consistency.
4792
4793         * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
4794
4795         * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the 
4796         second got slot of every aot image.
4797         
4798         * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
4799         aot on platforms with function pointers.
4800
4801         * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
4802         support for aot/full aot on ppc/ppc64.
4803         
4804         * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
4805         arguments which are needed on ppc.
4806
4807         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
4808         argument.
4809
4810         * mini-trampolines.c aot-runtime.c: Update after the above changes.
4811         
4812         * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
4813
4814         * regalloc2.c (BITS_PER_CHUNK): Ditto.  
4815
4816         * aot-compiler.c (emit_got_info): Fix reading unused memory.
4817
4818         * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
4819
4820 2009-06-17  Geoff Norton  <gnorton@novell.com>
4821
4822         * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
4823
4824 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4825
4826         * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
4827         to control whenever the dwarf writer is in xdebug or aot mode.
4828         (emit_class_dwarf_info): Use a separate abbrev for structures without
4829         children.
4830
4831         * aot-compiler.c: Pass the appending parameter to 
4832         mono_dwarf_writer_create ().
4833
4834         * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
4835         falls through to its next bblock. Fixes #513931.
4836
4837         * iltests.il: Add a test.
4838
4839         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
4840         infor even if emit_line is FALSE, as the apple linker seems to require it.
4841
4842         * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
4843
4844         * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
4845         gcc does.
4846         (emit_fde): Ditto.
4847
4848 2009-06-15  Zoltan Varga  <vargaz@gmail.com>
4849
4850         * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
4851         mips build.
4852
4853 2009-06-13  Zoltan Varga  <vargaz@gmail.com>
4854
4855         * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and 
4856         'has_call_handler' fields.
4857
4858         * method-to-ir.c (mono_method_to_ir): Set them if needed.
4859
4860         * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
4861         first bblock if not needed. Fixes #512790.
4862         
4863 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4864
4865         * aot-compiler.c (mono_compile_assembly): Fix a warning.
4866         
4867         * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
4868         wrappers.
4869
4870         * aot-runtime.c (mono_aot_get_method): Use the original method's code for
4871         remoting-invoke-with-check wrappers, which are not needed when running with
4872         full-aot, since it doesn't support remoting.
4873         
4874 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4875
4876         * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
4877
4878         * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
4879         method info, it is not used anymore.
4880
4881         * mini.h: Bump AOT file format version.
4882         
4883         * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
4884         word smaller.
4885
4886         * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
4887         change above.
4888         
4889         * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
4890
4891         * mini.h: Bump AOT file format version.
4892         
4893 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4894
4895         * image-writer.c (asm_writer_emit_symbol_diff): Disable the 
4896         TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
4897         iphone.
4898
4899         * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
4900         of CKFINITE and FBGE for VFP.
4901
4902 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4903
4904         * aot-compiler.c: Don't align code to 16 bytes on arm.
4905         
4906         * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
4907         before the methods they belong to.
4908
4909         * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
4910         the full-aot case if possible, since the trampoline will be called right 
4911         away.
4912
4913         * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
4914         trampolines to 1024 after the change above.
4915
4916         * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
4917         trampoline to save 8 bytes per trampoline.
4918
4919         * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
4920         change above.
4921
4922 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
4923
4924         * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
4925
4926 2009-06-08  Martin Baulig  <martin@ximian.com>
4927
4928         * debug-mini.c
4929         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
4930         (_mono_debugger_throw_exception): Don't make this static.
4931         (_mono_debugger_unhandled_exception): Likewise.
4932         (mono_debugger_handle_exception): Moved to mini-exceptions.c
4933
4934         * debug-mini.c
4935         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
4936         (_mono_debugger_throw_exception): Add function prototype.
4937         (_mono_debugger_unhandled_exception): Likewise.
4938
4939         * mini-exceptions.c
4940         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
4941         arg; return the first exception handler if the exception is caught
4942         and we're running inside the debugger.
4943         (mono_debugger_handle_exception): Moved here from debug-mini.c;
4944         improve exception handle inside runtime-invoke, check whether the
4945         exception is actually caught in the method being invoked and not
4946         by the runtime-invoke-wrapper.
4947
4948 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
4949
4950         * image-writer.c: Improve support for the osx assembler.
4951
4952         * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
4953         support them.
4954
4955 2009-06-08  Martin Baulig  <martin@ximian.com>
4956
4957         * debug-mini.c
4958         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
4959         (_mono_debugger_throw_exception): Don't make this static.
4960         (_mono_debugger_unhandled_exception): Likewise.
4961         (mono_debugger_handle_exception): Moved to mini-exceptions.c
4962
4963         * debug-mini.c
4964         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
4965         (_mono_debugger_throw_exception): Add function prototype.
4966         (_mono_debugger_unhandled_exception): Likewise.
4967
4968         * mini-exceptions.c
4969         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
4970         arg; return the first exception handler if the exception is caught
4971         and we're running inside the debugger.
4972         (mono_debugger_handle_exception): Moved here from debug-mini.c;
4973         improve exception handle inside runtime-invoke, check whether the
4974         exception is actually caught in the method being invoked and not
4975         by the runtime-invoke-wrapper.
4976
4977 2009-06-07  Zoltan Varga  <vargaz@gmail.com>
4978
4979         * image-writer.c (append_subsection): Don't align subsections of the
4980         debug_line section as a workaround.
4981
4982         * dwarfwriter.c: Emit line number info in the AOT case as well.
4983
4984 2009-06-06  Steven Munroe  <munroesj@us.ibm.com>
4985
4986         This patch is contributed under the terms of the MIT/X11 license
4987
4988        * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
4989        code_len <= code_size
4990
4991 2009-06-06  Zoltan Varga  <vargaz@gmail.com>
4992
4993         * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
4994
4995 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4996
4997         * aot-compiler.c aot-runtime.c: Delete references to static rgctx
4998         invoke wrappers, we now use trampolines instead.
4999
5000 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5001
5002         * mini-darwin.c: The exception thread must not be registered with
5003         the GC.
5004
5005 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5006
5007         * mini-gc.c: Disable the code because it makes SGen crash.
5008
5009 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5010
5011         * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
5012         instead of asserting.
5013
5014 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5015
5016         * aot-compiler.c (mono_compile_assembly): Move the creation of the
5017         output file after the code has been compiled.
5018
5019 2009-05-30  Zoltan Varga  <vargaz@gmail.com>
5020
5021         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
5022
5023 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5024
5025         * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
5026         entries distinction to simplify the code.
5027
5028         * mini.h: Bump AOT file format version.
5029         
5030 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5031
5032         * objects.cs: Fix the signature of one of the tests.
5033
5034         * mini.c (mini_create_ftnptr): New helper function, moved here from
5035         object.c.
5036         (mini_get_addr_from_ftnptr): Ditto.
5037         (mini_init): Install the new helpers.
5038
5039 2009-05-28  Martin Baulig  <martin@ximian.com>
5040
5041         Correctly initialize the debugger when embedding Mono.
5042
5043         * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
5044         `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
5045         see documentation in mini_debug_running_inside_mdb().
5046
5047         * debug-debugger.c
5048         (mini_debug_running_inside_mdb): New function to check whether
5049         we're running inside mdb.
5050
5051         * mini.c (mini_init): Call mini_debugger_init() if we're running
5052         inside the debugger.
5053
5054         * driver.c (mono_main): Moved the call to mini_debugger_init()
5055         into mini_init() to make this work when embedding Mono.
5056
5057         * debug-debugger.c (mini_debugger_init): Warn about duplicate
5058         calls to mini_debugger_init().
5059
5060         * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
5061         mono_debugger_main() -> mini_debugger_main() and put them inside a
5062         `MONO_DEBUGGER_SUPPORTED' conditional.
5063
5064 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5065
5066         * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
5067         this is no longer in use.
5068         * mini.h: Same.
5069
5070 2009-05-26  Zoltan Varga  <vargaz@gmail.com>
5071
5072         * mini-sparc.c (add_outarg_load): Fix the sparc build.
5073
5074         * aot-compiler.c (emit_method_code): Always write out C style symbols for
5075         methods.
5076
5077 2009-05-27  Martin Baulig  <martin@ximian.com>
5078
5079 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5080
5081         * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
5082         long_conv_to_r_un to 64 bits.
5083
5084         * cpu-x86.md: Increase the instruction size due to the changes.
5085
5086         * iltests.il.in: Add regression test.
5087
5088         Fixes #467201.
5089
5090 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5091
5092         * objects.cs: Move the previous test from basic.cs to here.
5093
5094 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5095
5096         * basic.cs: Add regression test for #506915.
5097
5098 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5099
5100         * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
5101         optimization we must check the bb of the first byte of stobj as
5102         it's the only one set in cil_offset_to_bb.
5103
5104         Fixes #506915.  
5105
5106 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5107
5108         * image-writer.c: Fix pointer directive on ppc64.
5109
5110 2009-05-24  Zoltan Varga  <vargaz@gmail.com>
5111
5112         * image-writer.c (asm_writer_emit_section_change): Avoid using
5113         .bss subsections on ppc too.
5114
5115 2009-05-23  Zoltan Varga  <vargaz@gmail.com>
5116
5117         * image-writer.c: Fix the definition of TARGET_ASM_....
5118         
5119         * image-writer.c: Fix the emission of assembler directives in the last
5120         change.
5121
5122         * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
5123         exception throwing code to accomodate ppc64.
5124
5125         * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
5126         size to work on ppc64 too.
5127
5128         * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
5129         too.
5130
5131         * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
5132         the assembler dialect instead of using platform specific defines.
5133
5134 2009-05-22  Geoff Norton  <gnorton@novell.com>
5135
5136         * mini-arm.c (get_call_info): If a structure is split between the stack
5137         and argument registers, we should not advance the stack pointer by the entire
5138         native size, but just by the amount that spilled.
5139
5140 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
5141
5142         * mini-arm.c (get_call_info): Handle structures with alignment requirements
5143         correctly.
5144
5145 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5146
5147         * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
5148         wrappers normally.
5149         
5150         * aot-compiler.c (add_extra_method): Fix up the collection of extra
5151         methods so wrapper don't get added twice.
5152         (add_generic_instances): Don't add methods of arrays.
5153
5154         * generics.cs: Mark one test as !FULLAOT.
5155
5156 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
5157
5158         * mini-x86.c (emit_move_return_value): Remove unused vars.
5159
5160 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
5161
5162         * mini-x86.c (mono_arch_emit_call): The decompose code now supports
5163         decomposing 8 bytes structs into a LCALL.
5164
5165         * mini-x86.c (emit_move_return_value): We no longer push the vtype
5166         pointer for where to store the returned regs.
5167
5168         * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
5169         state the concern.
5170
5171         Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
5172
5173 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5174
5175         * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
5176         without getenv.
5177
5178 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5179
5180         * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
5181
5182         * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
5183         generics.
5184
5185 2009-05-20 Rodrigo Kumpera  <rkumpera@novell.com>
5186
5187         * local-propagation.c (mono_local_cprop): Avoid local propagation
5188         across paired add/sub if the first instruction dest reg is it's
5189         source reg. For example:
5190
5191         int_add_imm R12 <- R12 [1] clobbers: 1
5192         int_sub_imm R42 <- R12 [1] clobbers: 1
5193
5194         The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
5195         maintain the math identify.
5196
5197         Fixes #505375.
5198
5199 2009-05-20  Andreia Gaita  <avidigal@novell.com>
5200
5201         * Makefile.am: avoid going on the network just to get the revision,
5202         use git log instead
5203
5204 2009-05-19  Massimiliano Mantione  <massi@ximian.com>
5205
5206         Fixed estimate for short branches on amd64 (they were off mark, and
5207         enabling call prolog-epilog instrumentations caused assertions).
5208         * mini.h (struct MonoBasicBlock): added max_length field to hold the
5209         estimate for the maximum length of this basic block.
5210         * mini-amd64.c:
5211         - mono_arch_emit_prolog: compute max_length for each basic block
5212           (instead of max_offset), and inflate size estimate also for entry bb
5213           in case of code instrumentation.
5214         - mono_arch_output_basic_block: get rid of "cpos" (the current
5215           estimated "position" in the code), and always use "offset" instead,
5216           which is accurate; at the beginning of the function quickly recompute
5217           max_offset for all the remaining blocks, starting from the current
5218           cfg->code_len (which is correct, and not estimated) and using the
5219           estimated block lengths computed previously.
5220
5221 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5222
5223         * exceptions-ppc.c: Remove the caching from the trampoline creation 
5224         functions, it is already done in the caller.
5225
5226         * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
5227
5228         * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add 
5229         MONO_ARCH_GSHARED_SUPPORTED define.
5230
5231         * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
5232
5233         * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
5234         function.
5235
5236 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5237
5238         * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the 
5239         call to mono_marshal_get_rgctx_invoke ().
5240
5241         * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
5242         mono_marshal_get_static_rgctx_invoke (), all platforms which support
5243         gshared use the static rgctx trampolines now.
5244         
5245         * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
5246         platform supports it.
5247
5248 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5249
5250         * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
5251
5252         * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
5253
5254 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5255
5256         * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
5257
5258         * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
5259         for ppc.
5260
5261 2009-05-15  Massimiliano Mantione  <massi@ximian.com>
5262
5263         Made it possible for mono_arch_instrument_epilog to preserve
5264         argument registers, otherwise instrumenting the "epilogue" before
5265         a tail call would clobber them.
5266         * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
5267         if like mono_arch_instrument_epilog but with an additional parameter
5268         that states if argument registers must be preserved.
5269         * mini.c: implemented mono_arch_instrument_epilog as a call to
5270         mono_arch_instrument_epilog_full without asking to preserve argument
5271         registers (this makes the existing code work as usual).
5272         * mini-amd64.c:
5273         - mono_arch_instrument_epilog: add parameter to transform it into
5274         mono_arch_instrument_epilog_full, and preserve argument registers
5275         when required.
5276         - mono_arch_output_basic_block, OP_TAILCALL case: call
5277         mono_arch_instrument_epilog_full.
5278         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
5279         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
5280         only transformed mono_arch_instrument_epilog into
5281         mono_arch_instrument_epilog_full.
5282
5283 2009-05-15  Geoff Norton  <gnorton@novell.com>
5284
5285         * mini-darwin.c: This works on arm now.
5286
5287 2009-05-14  Geoff Norton  <gnorton@novell.com>
5288
5289         * jit.h, driver.c: Allow full-aot to be decided programatically by the
5290         embedding api.
5291
5292 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5293
5294         * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
5295         label names.
5296
5297         * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
5298         wrappers during full aot mode correctly.
5299
5300         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
5301         methods correctly.
5302
5303         * aot-compiler.c (mono_aot_method_hash): Use our internal version of
5304         mono_metadata_type_hash ().
5305
5306 2009-05-14  Massimiliano Mantione  <massi@ximian.com>
5307
5308         * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
5309         mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
5310         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
5311         Removed MONO_INST_BRLABEL from the instruction flags, and the
5312         remaining code that used it, because we do not support branches inside
5313         basic blocks (and branch target labels) anymore.
5314         * Makefile.am: As part of the above cleanup, remove reference to
5315         BURG files which don't exist anymore.
5316
5317 2009-05-14  Zoltan Varga  <vargaz@gmail.com>
5318
5319         * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
5320         osx.
5321
5322         * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
5323         to use mono_arch_throw_corlib_exception.
5324
5325         * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use 
5326         mono_arch_throw_corlib_exception for throwing corlib exceptions.
5327
5328         * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
5329         domain mempool.
5330
5331         * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
5332
5333         * aot-compiler.c: Emit a local symbol prefixed with the assembly name 
5334         for the got to make debugging easier and to avoid confusing it with the
5335         system got.
5336         
5337         * aot-compiler.c (emit_method_code): Emit a C style symbol for each
5338         method so a breakpoint can be set when using gdb.
5339
5340 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5341
5342         * aot-compiler.c (mono_aot_method_hash): Implement this properly based
5343         on mono_method_get_imt_slot ().
5344
5345         * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
5346         num_decodes variables.
5347
5348         * aot-compiler.c (mono_aot_method_hash): Revert part of the last
5349         change as it doesn't seem to work.
5350         
5351         * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
5352         wrappers.
5353
5354 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5355
5356         * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill 
5357         MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
5358
5359         * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
5360         builder when using full aot.
5361
5362         * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
5363         here, it is already handled.
5364         
5365         * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
5366         correctly for IMT.
5367
5368         * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
5369
5370         * mini-arm.h: Enable IMT for full aot.
5371         
5372         * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
5373         arch doesn't support it.
5374
5375         * mini.c (mini_init): Don't disable IMT for full aot if the
5376         architecture supports it.
5377
5378         * mini.h (MonoAotTrampoline): New enum containing the different types
5379         of 'numerous' trampolines.
5380         (MONO_AOT_FILE_VERSION): Bump this.
5381
5382         * aot-compiler.c aot-runtime.c: Unify the handling of specific and
5383         static rgctx trampolines. Add support for full-aot IMT thunks.
5384
5385         * mini-amd64.h: Enable IMT for full aot.
5386
5387         * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
5388         to exclude tests belonging to a category.
5389
5390         * generics.cs: Mark some tests with a !FULLAOT category.
5391
5392         * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
5393         generics tests.
5394
5395 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
5396
5397         * aot-compiler.c (emit_and_reloc_code): Move the implementation of
5398         MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
5399         (emit_plt): Fix a warning.
5400
5401 2009-05-10  Zoltan Varga  <vargaz@gmail.com>
5402
5403         * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
5404         back into aot-compiler.c to a place where the other functions shared by
5405         the runtime and aot compiler are.
5406         
5407         * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
5408         as done previously, instead of in MonoAotFileInfo, since pointers might have
5409         alignment requirements.
5410
5411         * mini.h: Bump AOT file format version.
5412
5413 2009-05-10  Miguel de Icaza  <miguel@novell.com>
5414
5415         * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
5416         that is used at runtime from the aot-compiler.c, this makes it
5417         work on setups that remove the AOT compiler from the output
5418         image. 
5419
5420 2009-05-09  Zoltan Varga  <vargaz@gmail.com>
5421
5422         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
5423         PPC.
5424
5425         * mini-ppc.h: Enable static rgctx trampolines for ppc.
5426
5427         * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
5428
5429         * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific 
5430         stuff to mono_arch_decompose_long_opts ().
5431         (mono_decompose_opcode): Remove some dead code.
5432
5433 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
5434
5435         * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
5436         cmethod can be null for quite a some reasons.
5437
5438 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
5439
5440         * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
5441
5442 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5443
5444         * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
5445
5446 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5447
5448         * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
5449         (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
5450         whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
5451         calls returning structures by addr on amd64.
5452
5453         * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
5454
5455         * iltests.il.in: Restructure the tail call tests a bit.
5456         
5457 2009-05-07  Zoltan Varga  <vargaz@gmail.com>
5458
5459         * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
5460         for virtual methods too.
5461
5462 2009-05-06  Raja R Harinath  <harinath@hurrynot.org>
5463
5464         * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
5465         due to regression in verifying System.dll.
5466
5467 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5468
5469         * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
5470         in dynamic methods.
5471
5472         * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
5473         instances.
5474
5475         * aot-compiler.c aot-runtime.c: Use our own hash function instead of
5476         g_str_hash () which can change.
5477
5478         * driver.c (mini_regression): Disable optimizations not supported by
5479         the cpu. Fixes #500019.
5480
5481         * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
5482         build.
5483
5484 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5485
5486         * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
5487         to the latest LLVM code.
5488
5489 2009-05-05  Zoltan Varga  <vargaz@gmail.com>
5490
5491         * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
5492
5493 2009-05-04  Zoltan Varga  <vargaz@gmail.com>
5494
5495         * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on 
5496         x86/amd64.
5497
5498         * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
5499         no longer saving offsets, so just save the patch types along with the other
5500         info.
5501         * aot-runtime.c (load_patch_info): Update after the changes to 
5502         encode_patch_list ().
5503         (decode_got_entry): Removed, merged into load_patch_info ().
5504         (is_shared_got_patch): Removed, call the same function from
5505         aot-compiler.c.
5506
5507         * mini.h: Bump aot file format version.
5508         
5509         * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
5510         half-finished no-dlsym code.
5511
5512         * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
5513         option.
5514
5515         * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the 
5516         MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
5517
5518 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5519
5520         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
5521         buffer length to work with AOT code.
5522
5523         * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
5524         ldfld/stfld opcodes.
5525
5526         * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
5527         as it is not used.
5528
5529         * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
5530
5531         * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
5532
5533         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
5534         LLVM API.
5535
5536         * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
5537         if needed. Don't decompose long operations when using llvm.
5538
5539 2009-05-01  Zoltan Varga  <vargaz@gmail.com>
5540
5541         * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
5542         PAGESIZE constant.
5543
5544         * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
5545
5546 2009-05-03  Martin Baulig  <martin@ximian.com>
5547
5548         * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
5549         mono_debugger_insert_method_breakpoint() since the class init
5550         handler we're inserting at the top of the method already gives us
5551         a notification.
5552
5553 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5554
5555         * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
5556         to mono_arch_decompose_long_opts () for x86 and arm.
5557
5558 2009-04-29  Zoltan Varga  <vargaz@gmail.com>
5559
5560         * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
5561         TARGET_AMD64 here.
5562
5563 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5564
5565         * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
5566         JIT code.
5567
5568 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
5569
5570         * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
5571         number of trampolines used in full-aot mode.
5572
5573         * aot-compiler.c: Add an ntrampolines option to set the number of 
5574         trampolines emitted in full-aot mode.
5575
5576 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5577
5578         * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
5579         a volatile load. Get rid of get_tempname (), llvm assigns names
5580         automatically.
5581
5582         * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
5583         builder function.
5584
5585         * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
5586         a value.
5587
5588         * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
5589         level 1.
5590
5591         * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
5592         to the same register as a fixed sreg2. Fixes #497271.
5593
5594         * iltests.il.in: Add a new test.
5595
5596 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
5597
5598         * mini-amd64.c: Use moves instead of pushes for passing arguments on the
5599         stack, since pushes complicate exception handling.
5600
5601         * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
5602         the stack if they are passed using moves.
5603
5604         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
5605
5606         * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
5607         when using llvm.
5608
5609         * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the 
5610         icalls themselves. Convert arguments of FCOMPARE. Convert the destination
5611         of FMOVE if it is an R4.
5612
5613 2009-04-25  Zoltan Varga  <vargaz@gmail.com>
5614
5615         * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
5616
5617         * mini.h (LLVMCallInfo): New structure to store calling convention 
5618         information for the LLVM back end similar to the CallInfo structures in 
5619         the back-ends.
5620
5621         * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
5622         call information in a format usable by LLVM.
5623         (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
5624
5625         * method-to-ir.c (mono_emit_call_args): Emit calls using 
5626         mono_llvm_emit_call () when compiling using LLVM.
5627
5628         * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
5629         comments to all functions. Fix memory leaks. Add a public init/cleanup
5630         function.
5631
5632         * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
5633
5634         * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
5635         mono_array_new_va () jit icall.
5636         
5637 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
5638
5639         * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
5640         multiple machine description files to be specified.
5641         * mini-ops.h: fixes for cross-compilation.
5642
5643 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5644
5645         * aot-runtime.c (make_writable): Use mono_mprotect to simplify
5646         some porting work.
5647
5648 2009-04-22  Zoltan Varga  <vargaz@gmail.com>
5649
5650         * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
5651         to prevent asserts in various passes. Fixes #497220.
5652
5653 2009-04-21  Zoltan Varga  <vargaz@gmail.com>
5654
5655         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
5656         a racy assert.
5657
5658         * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
5659         table to avoid duplicates.
5660
5661         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5662         
5663         * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
5664         option is used.
5665
5666 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5667
5668         * mini.c (mini_method_verify): Fail fulltrust code if the exception
5669         is for method or field access.
5670
5671 2009-04-20  Zoltan Varga  <vargaz@gmail.com>
5672
5673         * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
5674         a Value to stdout.
5675
5676         * mini-llvm.c (mono_llvm_emit_method): Use it.
5677         
5678         * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
5679         (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
5680         on volatile values.
5681
5682         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for 
5683         synchronized methods.
5684
5685         * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
5686
5687         * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
5688
5689         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
5690         OP_LOADI8_MEM.
5691
5692         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
5693         allowing some options to be set dynamically.
5694
5695 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5696
5697         * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
5698         unconditional branch.
5699
5700         * mini.h (MonoTrampolineType): Add new trampoline type 
5701         'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
5702         compiled code.
5703
5704         * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline 
5705         function.
5706
5707         * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
5708         creation function.
5709
5710         * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
5711         is enabled. Instead, use the llvm vcall trampoline.
5712         
5713         * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
5714
5715         * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
5716         
5717         * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
5718         functions.
5719
5720         * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of 
5721         MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
5722
5723         * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
5724         OP_IA64_CSET opcode.
5725
5726         * mini.c: Fix a warning.
5727
5728         * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
5729         THROW to the appropriate llvm type.
5730
5731 2009-04-18  Zoltan Varga  <vargaz@gmail.com>
5732
5733         * mini.c (mini_method_compile): Add statistics for methods JITted
5734         with/without LLVM.
5735
5736 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
5737
5738         * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
5739         OP_IA64_CMP_<cond>_IMM opcodes.
5740
5741 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
5742
5743         * mini-llvm.c (emit_cond_system_exception): Implement throwing of
5744         corlib exceptions.
5745
5746         * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
5747         correctly.
5748
5749         * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
5750         GENERICINST.
5751
5752 2009-04-17  Atsushi Enomoto  <atsushi@ximian.com>
5753
5754         * mini-exceptions.c : add thread id to EXCEPTION trace message.
5755
5756 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
5757
5758         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
5759         support.
5760
5761         * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
5762         rgctx invoke trampolines for x86.
5763
5764         * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
5765         indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
5766         (mono_arch_get_vcall_slot): Simplify this.
5767
5768 2009-04-16  Zoltan Varga  <vargaz@gmail.com>
5769
5770         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
5771         mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
5772
5773 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5774
5775         * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx 
5776         trampolines for ARM. Add full-aot support for delegate invokes for ARM.
5777
5778         * mini-trampolines.c (mono_magic_trampoline): Fix the build.
5779
5780         * liveness.c (visit_bb): Remove a needless assert.
5781
5782 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5783
5784         * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
5785         full aot support to the arch specific code.
5786
5787         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
5788
5789         * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
5790
5791         * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
5792         
5793         * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
5794         collect information about the delegate invoke impl trampolines.
5795
5796         * mini.h (MonoAotTrampInfo): New structure collecting the information needed
5797         to save trampolines during full-aot mode.
5798
5799         * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
5800         creation function which returns a trampoline which sets the rgctx
5801         argument.
5802         (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
5803         wrapper if possible.
5804         (mono_delegate_trampoline): Ditto.
5805
5806         * mini.c (mono_jit_runtime_invoke): Ditto.
5807
5808         * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
5809         
5810         * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
5811
5812         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5813         
5814 2009-04-12  Zoltan Varga  <vargaz@gmail.com>
5815
5816         * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
5817         just setting the opcode to OP_NOP.
5818
5819 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5820
5821         * mini.c (mini_method_compile): Put the last change inside an 
5822         #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
5823         
5824         * mini.c (mini_method_compile): Disable sharing of stack slots/registers
5825         and extend live ranges to cover the whole method when using xdb.
5826
5827         * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
5828         do it in the trampolines.
5829
5830         * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
5831         needed.
5832
5833         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
5834         
5835         * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
5836         call code in full-aot mode since IMT is disabled there.
5837         (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
5838         new JIT no longer has that restriction.
5839
5840         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5841
5842         * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
5843         a more compact format.
5844         (mono_aot_wrapper_name): New function to return a unique name for a
5845         wrapper method, also used by the AOT runtime.
5846
5847         * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
5848         aot-compiler.c.
5849
5850         * aot-compiler.c (add_generic_class): Add the helper methods from T[]
5851         when a ICollection<T> etc is encountered.
5852         (add_generic_instances): Process method arguments/locals too.
5853         (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
5854         trampoline names.
5855
5856         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
5857         
5858 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
5859
5860         * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
5861
5862         * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
5863
5864         * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
5865         representing the result of the decomposition. Nullify instructions
5866         instead of setting them to OP_NOP since nops can't have registers
5867         set.
5868
5869 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5870
5871         * aot-compiler.c (mono_compile_assembly): Split this huge function into
5872         smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
5873         info. Strip 'mapping symbols' on ARM.
5874
5875         * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
5876         
5877         * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
5878         this with the native genmdesc.
5879
5880 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5881
5882         * aot-runtime.c:  Fixing the MSVC build.
5883
5884         Code is contributed under MIT/X11 license.
5885
5886 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
5887
5888         * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since 
5889         JITted code depends on it.
5890
5891 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5892
5893         * aot-compiler.c: Use new MonoGenericParam accessors.
5894
5895 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5896
5897         Reduce memory usage and improve correctness wrt MonoGenericParam
5898         * aot-runtime.c (decode_klass_ref): Simplify generic parameter
5899         handing.  Avoid allocating MonoGenericParams, but use the ones in
5900         the container itself.
5901
5902 2009-04-07  Miguel de Icaza  <miguel@novell.com>
5903
5904         * tasklets.c: Return exceptions in the out argument.
5905
5906 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
5907
5908         * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
5909         opcode. Use pointer types in more places instead of casting them to 
5910         integers.
5911
5912         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
5913         optimizations.
5914         (mono_llvm_optimize_method): New helper function to optimize a method.
5915
5916         * method-to-ir.c (mono_emit_widen_call_res): Extract the call result 
5917         widening code so it could be called from more places.
5918         (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
5919         code paths in the call opcodes.
5920
5921 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
5922
5923         * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
5924
5925 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5926
5927         * dwarfwriter.c: Use _ to separate class name 
5928         components as gdb can't handle '.'. Represent reference variables
5929         as 'class <NAME>&'.
5930         
5931         * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
5932
5933         * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
5934         
5935         * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
5936
5937         * gc-test.cs: New file with GC stack marking tests.
5938         
5939         * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
5940         negative numbers for vfp.
5941
5942         * basic-float.cs: Add a test.
5943         
5944 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
5945
5946         * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
5947
5948 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
5949
5950         * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
5951         part of tasklet/continuation support.
5952
5953 2009-04-05  Zoltan Varga  <vargaz@gmail.com>
5954
5955         * mini-llvm.c (mono_llvm_emit_method): Move the handling of
5956         amd64 opcodes inside an ifdef.
5957
5958         * dwarfwriter.c: Emit inheritance information for classes, emit fields
5959         of complex types.
5960         
5961         * dwarfwriter.c (emit_type): Emit the class info for classes.
5962
5963 2009-04-04  Zoltan Varga  <vargaz@gmail.com>
5964
5965         * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
5966
5967         * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
5968
5969         * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
5970
5971         * ssa.c (mono_ssa_compute): Fix some memory leaks.
5972
5973 2009-04-03  Zoltan Varga  <vargaz@gmail.com>
5974
5975         * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
5976
5977         * mini-llvm.c: Update comments.
5978
5979         * mini.h (COMPILE_LLVM): New macro.
5980
5981         * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
5982
5983         * ssa.c (mono_ssa_compute): Ditto.
5984         
5985         * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
5986         the unwind ops from a DWARF FDE.
5987
5988         * mini-llvm.c: Implement generation of unwind info for LLVM compiled
5989         methods by extracting the dwarf unwind ops from the unwind info generated
5990         by LLVM.
5991         
5992         * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
5993         calls.
5994
5995         * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
5996         addressing modes.
5997
5998 2009-04-02  Zoltan Varga  <vargaz@gmail.com>
5999
6000         * Makefile.am (llvm_sources): Enable this.
6001
6002         * mini.c (mini_method_compile): Add support for compiling with LLVM, 
6003         failing back to the JIT if something cannot be handled.
6004
6005         * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
6006         compiling with LLVM.
6007
6008         * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
6009         compiling with LLVM.
6010
6011         * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when 
6012         compiling with LLVM.
6013
6014         * mini-ops.h: Add a few opcodes needed by LLVM.
6015
6016         * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
6017         has no unwind info.
6018
6019         * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
6020         backend.
6021
6022         * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
6023
6024         * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
6025
6026 2009-04-01  Mark Probst  <mark.probst@gmail.com>
6027
6028         * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
6029         ridiculously large methods.
6030
6031 2009-03-31  Martin Baulig  <martin@ximian.com>
6032
6033         * debug-debugger.c (debugger_remove_breakpoint): Call
6034         mono_debugger_remove_class_init_callback ().
6035
6036 2009-03-31  Zoltan Varga  <vargaz@gmail.com>
6037
6038         * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
6039         right before emitting code, not at the start.
6040
6041         * mini.c (mono_postprocess_patches): Extract this into a separate function
6042         from mono_codegen ().
6043
6044         * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
6045         byref types correctly.
6046
6047 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6048
6049         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
6050         by the last change.
6051
6052 2009-03-29  Zoltan Varga  <vargaz@gmail.com>
6053
6054         * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before 
6055         indirect calls, this avoids problems where get_vcall_slot () would get
6056         confused by the native code for the instruction preceeding the call.
6057         (mono_arch_get_vcall_slot): Simplify this.
6058         (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
6059
6060         * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
6061         register allocator now seems to depend on them instead of the data in
6062         cpu-<ARCH>.md.
6063
6064         * mini.c (mini_method_compile): Throw the correct type of exception if
6065         mono_method_get_header () fails because of a loading error.
6066
6067 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6068
6069         * mini.c (mini_method_compile): Clear the loader error if the method
6070         header cannot be decoded.
6071
6072         * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual 
6073         interface methods on proxies correctly.
6074
6075         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
6076         this argument for vtype methods. Add precise liveness info for arguments.
6077
6078         * mini-codegen.c (mono_print_ins_index): Print the vreg of the
6079         LIVERANGE_START/END opcodes.
6080
6081         * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
6082         for arguments and values in registers.
6083
6084 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6085
6086         * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
6087         return a valuetype. Fixes #487518.
6088
6089         * iltests.il: Add a test.
6090         
6091         * aot-compiler.c: Use mono_thread_create () to create helper threads.
6092
6093         * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
6094         closed over a null reference correctly.
6095
6096 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6097
6098         * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
6099
6100 2009-03-25  Mark Probst  <mark.probst@gmail.com>
6101
6102         * mini-codegen.c (mono_local_regalloc): Don't let sregs get
6103         allocated to the same registers as fixed sregs.
6104
6105 2009-03-24  Mark Probst  <mark.probst@gmail.com>
6106
6107         * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
6108         ATOMIC_CAS_IMM ops.
6109
6110         * method-to-ir.c: Handle more cases for
6111         Interlocked.CompareExchange.
6112
6113         * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
6114         mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
6115         ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
6116
6117 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6118
6119         * aot-runtime.c (decode_method_ref): Fix a warning.
6120
6121         * unwind.c (mono_unwind_frame): Ditto.  
6122
6123 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
6124
6125         * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
6126         (mono_compile_assembly): Enable the binary writer for full-aot as well.
6127
6128         * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
6129         fix the handling of large values in the ALU_PC_G0_NC relocation.
6130
6131 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
6132
6133         * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
6134
6135 2009-03-22  Mark Probst  <mark.probst@gmail.com>
6136
6137         * method-to-ir.c (mono_spill_global_vars): Support for ternary
6138         ops.
6139
6140 2009-03-22  Mark Probst  <mark.probst@gmail.com>
6141
6142         * method-to-ir.c: MINI_OP3 needs a comma.
6143
6144         * method-to-ir.c, mini.h, mini.c: Remove
6145         mono_init_op_sreg_counts ().
6146
6147 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
6148
6149         * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
6150         OP_JMP.
6151         
6152         * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
6153         assertion.
6154
6155         * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
6156
6157         * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
6158         code somewhat.
6159
6160 2009-03-21  Mark Probst  <mark.probst@gmail.com>
6161
6162         * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
6163         liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
6164         mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
6165         operations.
6166
6167 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6168
6169         * driver.c: Change location of gc_wrapper.h.
6170
6171         * method-to-ir.c (mono_find_block_region): Handle try clauses nested
6172         inside finally clauses correctly. Fixes #485721.
6173
6174         * mini.c (mono_find_spvar_for_region): This needs to handle try regions
6175         after the change above.
6176
6177         * exceptions.cs: Add a test.
6178         
6179 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6180
6181         * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
6182
6183         * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
6184         into cfg->used_int_regs, it is not needed with the dwarf unwinder.
6185         (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
6186
6187         * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
6188         the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
6189
6190 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
6191
6192         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
6193         Simplify logic for ensure_method_is_allowed_to_call_method. 
6194         Handle wrappers on callers.
6195
6196 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6197
6198         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
6199         them don't run yet.
6200
6201         * basic-simd.cs: Fix the names of some test methods.
6202
6203 2009-03-18  Geoff Norton  <gnorton@novell.com>
6204
6205         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
6206
6207 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6208
6209         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
6210
6211 2009-03-17  Jb Evain  <jbevain@novell.com>
6212
6213         * driver.c: remove now uneeded call to mono_gc_base_init before
6214         mono_profiler_load.
6215
6216 2009-03-17  Jb Evain  <jbevain@novell.com>
6217
6218         * dwarfwriter.c (token_handler): handle more cases.
6219
6220 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
6221
6222         * method-to-ir.c: Remove more dead code (that was required only
6223         because of method_is_safe). Fix compiler warnings.
6224
6225 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6226
6227         * method-to-ir.c: Remove unneeded/useless method_is_safe
6228         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
6229
6230 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6231
6232         * mini.c (mini_method_compile): Print the method been compiled with
6233         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
6234         for people not familiar with the runtime.
6235
6236 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6237
6238         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
6239         a managed object which is later put into a GList. Return its class instead.
6240
6241         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
6242         stack slots when using sgen.
6243
6244 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
6245
6246         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
6247
6248 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
6249
6250         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
6251         > so it works on the first vreg as well.
6252
6253 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
6254
6255         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
6256         trigger randomly.
6257
6258         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
6259         
6260         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
6261         implement GArray.
6262
6263 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6264
6265         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
6266         native->IL offset mapping.
6267
6268 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
6269
6270         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
6271
6272         * basic.cs: Add a test.
6273
6274 2009-03-11  Mark Probst  <mark.probst@gmail.com>
6275
6276         * mini-x86.c (mono_arch_output_basic_block): Use different
6277         registers in case the ones we want to overwrite are used by the
6278         other operand.  Fixes regression in #480807.
6279
6280 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6281
6282         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
6283
6284         * dwarfwriter.c (emit_line_number_info): The line number info for
6285         IL code was off by one. Fix that.
6286
6287         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
6288         stack.
6289
6290 2009-03-09  Mark Probst  <mark.probst@gmail.com>
6291
6292         Contributed under the terms of the MIT/X11 license by Steven
6293         Munroe <munroesj@us.ibm.com>.
6294
6295         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
6296         Fixes #483462.
6297
6298 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6299
6300         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
6301         as well.
6302
6303 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6304
6305         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
6306         the delegate ctor handling code. Fixes #482638.
6307         
6308         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
6309         #481458.
6310
6311         * iltests.il.in: Add a test.
6312         
6313         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
6314         mini-posix.c.
6315
6316 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6317
6318         * mini-trampolines.c (mono_create_jump_trampoline): If the method
6319         is shared generic code, return the trampoline, even if the method
6320         has already been compiled.  Fixes #479763.
6321
6322         * mini.c, mini.h: New function
6323         mono_jit_find_compiled_method_with_jit_info() which is the same as
6324         mono_jit_find_compiled_method() but also returns the jit info.
6325
6326 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6327
6328         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
6329         for methods which actually have one.  For all other methods, make
6330         sure the this argument var is live the whole method.
6331
6332         * mini.c (mini_method_compile): Every shared method has a
6333         this/vtable/mrgctx info.  Fixes #480807.
6334
6335 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6336
6337         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
6338         generic/imt thunks where some entries branch through the vtable,
6339         while other entries branch directly.
6340
6341 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6342
6343         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
6344
6345         * mini-windows.c: Ditto.
6346         
6347         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
6348         ctors.
6349
6350 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
6351
6352         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
6353         down an assert.
6354
6355 2009-03-04  Mark Probst  <mark.probst@gmail.com>
6356
6357         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
6358         #481403.
6359
6360 2009-03-04  Mark Probst  <mark.probst@gmail.com>
6361
6362         * exceptions-x86.c: Include debug-mini.h - fixes build.
6363
6364 2009-03-04  Martin Baulig  <martin@ximian.com>
6365
6366         * debug-mini.c: Clean up the exception API and add documentation.
6367         (mono_debugger_handle_exception): New public method; this is
6368         called when throwing an exception or encountering an unhandled one.
6369         (mono_debugger_call_exception_handler): Formerly known as
6370         mono_debugger_handle_exception(); this is used to tell the
6371         debugger that we're about to invoke an exception handler.
6372
6373 2009-03-04  Martin Baulig  <martin@ximian.com>
6374
6375         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
6376         ../metadata/mono-debug-debugger.c; save and reset exception state.
6377
6378 2009-03-02  Martin Baulig  <martin@ximian.com>
6379
6380         * debug-mini.c: Moved the debugger exception handling here from
6381         ../metadata/mono-debug-debugger.c.
6382
6383         * debug-mini.h
6384         (MonoDebuggerExceptionAction): New exception typedef.
6385
6386         * debug-mini.c
6387         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
6388
6389         * exceptions-amd64.c
6390         (mono_amd64_throw_exception): Use the new debugger exception
6391         handling code.
6392
6393         * mini-exceptions.c
6394         (mono_handle_exception_internal): Don't call
6395         mono_debugger_unhandled_exception() here.
6396
6397 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6398
6399         * mini.c aot-compiler.c: Update after the changes to 
6400         mono_marshal_get_runtime_invoke ().
6401
6402         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
6403         Virtual generic methods might not have method->slot set, work around
6404         that.
6405
6406         * generics.cs: Add a test.
6407
6408 2009-03-02  Geoff Norton  <gnorton@novell.com>
6409
6410         * mini.c:
6411         * driver.c: Allow signal chaining of SIGFPE as well.
6412
6413 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6414
6415         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
6416         this since it now receives the method not its generic context in the
6417         IMT reg.
6418
6419         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
6420         generic/imt thunks where some entries branch through the vtable, while
6421         other entries branch directly.
6422
6423         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
6424
6425         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
6426         support for interface methods as well.
6427
6428         * mini-trampolines.c: Add support for virtual generic methods in interfaces
6429         using the normal IMT thunks.
6430
6431         generics.cs: Add new tests.
6432         
6433         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
6434         the generic inst to the generic imt thunks. This fixes AOT support, 
6435         improves consistency with the normal IMT thunks, and makes it easier to
6436         add support for interface generic virtual methods later.
6437
6438         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
6439         
6440 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
6441
6442         * driver.c (mono_set_signal_chaining): New public API function to enable
6443         signal chaining on POSIX platforms.
6444
6445         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
6446         (si@lindenlab.com) to implement signal chaining. The original patch was
6447         contributed under the MIT X/11 license:
6448         https://bugzilla.novell.com/show_bug.cgi?id=318894
6449
6450 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6451
6452         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
6453         too until it can be made to run on amd64.
6454
6455 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6456
6457         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
6458         to  get_generic_context_from_code () + get_call_info () if possible.
6459
6460 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6461
6462         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
6463         suspend-on-sigsegv functionality.
6464
6465         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
6466         to suspend when a native SIGSEGV is received. This is useful for debugging
6467         crashes which don't happen under gdb, since a live process contains more
6468         information than a core file.
6469
6470         * mini-exceptions.c (mono_print_thread_dump): Use 
6471         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
6472
6473         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
6474
6475         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
6476         
6477         * basic-float.cs: Disable the tests which currently fail on amd64.
6478
6479         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
6480         value to mono_arch_patch_callsite () to fix crashes.
6481         
6482         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
6483
6484 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6485
6486         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
6487         nop code by patching the call address to point to the nullified class init
6488         trampoline, as the former does not seem to be safe on SMP machines.
6489
6490 2009-02-23  Mark Probst  <mark.probst@gmail.com>
6491
6492         * mini-ops.h: Fix the argument types for a few x86 opcodes where
6493         they were wrong.
6494
6495 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6496
6497         * basic-float.cs basic-calls.cs: Fix warnings.
6498
6499 2009-02-22  Mark Probst  <mark.probst@gmail.com>
6500
6501         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
6502         correct frame pointer in the LMF.  Should fix #478394.
6503
6504 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6505
6506         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
6507
6508         * image-writer.c: Make the binary writer less verbose.
6509
6510 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6511
6512         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
6513         are called from runtime invoke wrappers.
6514
6515 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6516
6517         * cpu-ppc.md (store_memindex): Increase the size of this.
6518
6519 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6520
6521         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6522
6523         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
6524
6525         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
6526         OP_LCONV_TO_R_UN.
6527
6528         Last fix for of #467201.
6529
6530
6531 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6532
6533         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6534
6535         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
6536         and long_conv_to_r8_2:
6537
6538         Fixed part of #467201.
6539
6540 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6541
6542         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6543
6544         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
6545         conversion to 32 bits.
6546
6547         * cpu-x86.md: Increase the size of int_conv_to_r4.
6548
6549         * basic-float.cs: Add a test for this.
6550
6551         Fixed part of #467201.
6552
6553 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6554
6555         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6556
6557         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
6558         conversion to 64 bits.
6559
6560         * basic-float.cs: Add a test for this.
6561
6562         Fixed part of #467201.
6563
6564 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6565
6566         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6567
6568         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
6569         This behavior is compatible with MS.
6570
6571         * iltest.il.in: Add a test for this.
6572
6573         Fixed part of #467201.
6574
6575 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
6576
6577         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
6578
6579         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
6580         change the precision of the value.
6581
6582         * cpu-x86.md: Define len for float_conv_to_r4.
6583
6584         * basic-float.cs: Add a test for this.
6585
6586         Fixed part of #467201.
6587
6588 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6589
6590         * mini.c: Adjust locking order to the new semantics where the loader lock
6591         comes first.
6592
6593 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
6594
6595         * aot-runtime.c:
6596         * mini-amd64.c:
6597         * mini-arm.c:
6598         * mini-ia64.c:
6599         * mini-mips.c:
6600         * mini-ppc.c:
6601         * mini-sparc.c:
6602         * mini-trampolines.c:
6603         * mini-x86.c:
6604         * mini.c:
6605         * tramp-alpha.c:
6606         * tramp-amd64.c:
6607         * tramp-arm.c:
6608         * tramp-hppa.c:
6609         * tramp-ia64.c:
6610         * tramp-mips.c:
6611         * tramp-ppc.c:
6612         * tramp-s390.c:
6613         * tramp-s390x.c:
6614         * tramp-sparc.c:
6615         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
6616
6617 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6618
6619         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
6620         as it is incorrect.
6621
6622 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6623
6624         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
6625         for cctors if needed.
6626
6627 2009-02-17  Mark Probst  <mark.probst@gmail.com>
6628
6629         * mini-ppc.c: Fix build on Darwin.
6630
6631 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6632
6633         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
6634         version instead of 3 as valgrind doesn't like version 3.
6635
6636         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
6637
6638         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
6639         usable for hashing methods.
6640         (emit_extra_methods): Use the new hash to avoid putting every method in the
6641         same hash bucket.
6642
6643         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
6644
6645         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
6646         whenever a method ref could match a method.
6647         
6648         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
6649         test to fail.
6650         
6651         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
6652         methods refs.
6653
6654         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
6655
6656         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
6657         the encoding buffer.
6658
6659         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
6660         mono_method_get_header () on inflated methods as an optimization.
6661
6662 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6663
6664         * ssa.c (fold_ins): Fix another crash if the instruction following the
6665         switch was optimized away.
6666
6667 2009-02-16  Mark Probst  <mark.probst@gmail.com>
6668
6669         Contributed under the terms of the MIT/X11 license by Steven
6670         Munroe <munroesj@us.ibm.com>.
6671
6672         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
6673
6674 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6675
6676         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
6677         around the mono_domain_alloc calls, it is now done by the functions
6678         themselves.
6679
6680         * aot-compiler.c (compile_method): Only add wrappers referenced by
6681         the method if compiling with full AOT.
6682         (mono_compile_assembly): Error out if --aot=full is specified on
6683         a platform where it is not supported.
6684
6685         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
6686         on ARM too.
6687
6688         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
6689         AOT support.
6690
6691         * aot-runtime.c (load_named_code): Handle 
6692         mono_arm_throw_exception_by_token.
6693
6694         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
6695
6696         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
6697         unaligned.
6698
6699         * Makefile.am (fullaotcheck): Exit if a test fails.
6700
6701         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
6702         on ARM.
6703         (mono_compile_assembly): Handle the assembler failing.
6704
6705         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
6706         accepting subsections of .bss.
6707
6708         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
6709         was optimized away.
6710
6711         * aot-compiler.c: Remove some unused includes.
6712         
6713         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
6714         now in MonoImageWriter.
6715
6716         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
6717         code sequence which matches a non-virtual call. Fixes #472654.
6718
6719 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6720
6721         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
6722         xdebug code.
6723         
6724         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
6725         use the image/dwarf writers directly.
6726
6727         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
6728         field.
6729
6730         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
6731         MonoDwarfWriter.
6732
6733         * image-writer.h: Fix some typos.
6734
6735         * dwarfwriter.h dwarfwriter.c: New files.
6736         
6737         * aot-compiler.c: Extract the DWARF info writing functionality into a 
6738         separate module.
6739
6740         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
6741         argument to return unwind info.
6742
6743         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
6744
6745         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
6746         
6747         * aot-runtime.c (decode_method_ref): Add a case for 
6748         MONO_AOT_METHODREF_WRAPPER_NAME.
6749
6750         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
6751         for AOT.
6752
6753         * aot-compiler.c (encode_method_ref): Use the new constants.
6754
6755         * aot-runtime.c (decode_method_ref): Ditto.
6756
6757         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
6758         be compiled, not the icall itself.
6759
6760 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
6761
6762         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
6763         using decode_method_ref ().
6764
6765         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
6766         convert it to an in32. Fixes #475859.
6767
6768         * arrays.cs: Add a test.
6769
6770 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
6771
6772         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
6773         OP_LCONV_TO_U2.
6774
6775         * basic-long.cs: Add a test.
6776
6777 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6778
6779         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
6780         remove the frame pointer in leaf methods which don't receive any
6781         arguments, don't throw exceptions and don't do dynamic stack
6782         allocations.
6783
6784 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
6785
6786         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
6787         the fail_tramp changes. Hopefully fixes #475132.
6788
6789 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
6790
6791         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
6792         instead of mono_metadata_signature_dup_full.
6793
6794 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
6795
6796         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
6797         for processing jump tables. Fixes #473787.
6798
6799 2009-02-11  Mark Probst  <mark.probst@gmail.com>
6800
6801         * mini-generic-sharing.c: mini_method_get_context() just calls
6802         mono_method_get_context_general() now.
6803
6804         * mini.c, mini.h: Moved get_object_generic_inst(),
6805         construct_object_context_for_method() and
6806         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
6807
6808 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
6809
6810         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
6811         basic block fell through to its successor bblock without a branch. Fixes
6812         #474718.
6813
6814         * iltests.il.in: Add a test.
6815         
6816         * aot-compiler.c (encode_method_ref): Encode methods of array types.
6817         (can_encode_patch): We can now handle arrays of generic parameters and
6818         array methods.
6819
6820         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
6821
6822         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
6823         the AOT file to avoid some #ifdefs in aot-runtime.c
6824
6825         * mini.h: Bump AOT file format version.
6826
6827 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6828
6829         * Makefile.am (fullaotcheck): Make this run the tests.
6830
6831         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
6832
6833 2009-02-10  Mark Probst  <mark.probst@gmail.com>
6834
6835         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
6836         individually.  Fixes #473482.
6837
6838 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6839
6840         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
6841
6842 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
6843
6844         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
6845         (mono_compile_assembly): Hush compile warnings about
6846         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
6847         code path.
6848
6849 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6850
6851         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
6852
6853         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
6854
6855         * aot-compiler.c: Fix arm support.
6856
6857         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
6858         img_writer_emit_unset_mode () function.
6859
6860         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
6861         (mono_unwind_get_dwarf_pc_reg): Ditto.
6862
6863         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
6864         Move almost all platform specific code to a set of arch_ functions, 
6865         and document them to ease porting.
6866         
6867         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
6868
6869         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
6870
6871         * aot-compiler.c: Extract the image writing functionality into a separate
6872         module to reduce the size of this file.
6873
6874 2009-02-09  Geoff Norton  <gnorton@novell.com>
6875
6876         * mini-s390.c: Fix the signature of emit_sig_cookie.
6877
6878 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
6879
6880         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
6881
6882         * aot-runtime.c (is_shared_got_patch): Ditto.
6883
6884         * aot-runtime.c (load_named_code): Cope with the fact that 
6885         decode_got_entry () won't decode the patch fully if its corresponding got
6886         entry is already filled.
6887         
6888         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
6889         Initialize *ji.
6890         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
6891
6892         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
6893         as the moving pointer instead of 'buf' for consistency with the rest of the
6894         codebase.
6895         (mono_arch_create_monitor_exit_trampoline): Ditto.
6896
6897         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
6898         generic_class_init trampolines.
6899         (add_generic_class): Extract some code from add_generic_instances () into a
6900         separate function so it can be called from other places too.
6901         (compile_method): Call add_generic_class () for the classes of inflated methods
6902         referenced by the method.
6903         (can_encode_patch): Allow references to generic parameters.
6904
6905         * aot-runtime.c: Add support the patches required by the new trampolines.
6906         
6907         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
6908         support.
6909
6910         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
6911         full-aot support.
6912
6913         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
6914         this from get_throw_pending_exception, make the signature full aot compatible.
6915
6916         * Makefile.am (fullaotcheck): New target to run full-aot tests.
6917
6918         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
6919
6920         * exceptions.cs: Add a test.
6921
6922 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6923
6924         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
6925         use the DWARF_DATA_ALIGN constant instead.
6926
6927         * exception-<ARCH>.c: Update after the above change.
6928
6929         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
6930         dwarf unwinder.
6931
6932         * mini-arm.c: Enable the dwarf unwinder.
6933
6934         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
6935         instead of mono_class_setup_vtable ().
6936
6937 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6938
6939         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
6940         dwarf unwinder.
6941
6942         * mini-x86.h: Enable the dwarf unwinder.
6943
6944 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
6945
6946         Fix mcs/tests/test-7.cs
6947         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
6948         2009-02-03.
6949
6950 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6951
6952         * mini.c (print_jit_stats): Remove some unused statistics.
6953
6954 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6955
6956         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
6957
6958 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6959
6960         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
6961         the method we get from mono_object_get_virtual_method() because
6962         that function does it properly, now.
6963
6964 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6965
6966         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
6967         opcodes. Fixes #472775.
6968
6969 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6970
6971         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
6972         fact that mono_find_jit_info() sometimes returns the context
6973         corresponding to the jit info in new_ctx.  Fixes #472600.
6974
6975 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6976
6977         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
6978         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
6979         klass->enum_basetype directly.
6980
6981         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
6982         enum subtypes.
6983
6984         * unwind.c: Avoid 0 sized arrays.
6985
6986 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6987
6988         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
6989         size on systems with 64k pages. Fixes #471389.
6990
6991 2009-02-04  Mark Probst  <mark.probst@gmail.com>
6992
6993         Contributed under the terms of the MIT/X11 license by Steven
6994         Munroe <munroesj@us.ibm.com>.
6995
6996         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
6997         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
6998         necessary.
6999
7000 2009-02-04  Mark Probst  <mark.probst@gmail.com>
7001
7002         Contributed under the terms of the MIT/X11 license by Steven
7003         Munroe <munroesj@us.ibm.com>.
7004
7005         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
7006         comparison fix.
7007
7008         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
7009         The trampoline can be longer on PPC64.
7010
7011 2009-02-04  Mark Probst  <mark.probst@gmail.com>
7012
7013         Contributed under the terms of the MIT/X11 license by Steven
7014         Munroe <munroesj@us.ibm.com>.
7015
7016         * mini-ppc.c: Compiler warning fixes and trivial code
7017         simplifications.
7018
7019 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7020
7021         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
7022         ins->dreg which could be a hardware register, not a vreg.
7023
7024         * aot-compiler.c (emit_method_dwarf_info): Ditto.
7025         
7026         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
7027         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
7028
7029         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
7030         
7031         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
7032         ->dreg, that is not the vreg we are looking for.
7033
7034         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
7035
7036         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
7037         LIVERANGE_END.
7038
7039         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
7040         strange crashes.
7041
7042 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7043
7044         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
7045
7046         * aot-compiler.c (emit_line_number_info): Fix line number emission when
7047         the line diff is 0.
7048
7049         * aot-compiler.c: Add xdebug support on x86.
7050
7051         * unwind.c: Add x86 support.
7052         
7053         * aot-compiler.c (emit_exception_debug_info): Control the emission of
7054         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
7055
7056         * mini.c (mini_method_compile): Ditto.
7057         
7058         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
7059         the variable index.
7060
7061         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
7062         which mimic .push_section/.pop_section in GAS.
7063         
7064         * aot-compiler.c: Emit precise live range information for variables.
7065
7066         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
7067
7068         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
7069         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
7070         them.
7071
7072         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
7073         the live ranges of variables.
7074
7075         * mini.h (struct MonoMethodVar): Add two fields containing the live range
7076         of the variable in terms of native offsets.
7077
7078 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
7079
7080         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
7081         
7082 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7083
7084         Contributed under the terms of the MIT/X11 license by Steven
7085         Munroe <munroesj@us.ibm.com>.
7086
7087         * exceptions-ppc.c (restore_regs_from_context): Correct operand
7088         order (offset then base reg) for ppc_load_multiple_regs.
7089         (emit_save_saved_regs) Correct operand order for
7090         ppc_store_multiple_regs.
7091         (mono_arch_get_call_filter): Correct operand order for
7092         ppc_load_multiple_regs.
7093
7094         * mini-ppc.c (emit_memcpy): Fix operand order for
7095         ppc_load_reg_update and ppc_store_reg_update.
7096         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
7097         (mono_arch_emit_epilog): Correct operand order for
7098         ppc_load_multiple_regs.
7099
7100         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
7101         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
7102
7103 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7104
7105         * cpu-ppc64.md: Fixed storer4_memindex length.
7106
7107 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7108
7109         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
7110         line number info.
7111         
7112         * aot-compiler.c (emit_line_number_info): Optimize this.
7113
7114 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7115
7116         * aot-compiler.c: Disassemble tokens in the IL disassembly.
7117         
7118         * aot-compiler.c: Add debug info for methods without debug info by
7119         emitting an IL file and having the line number info referencing that file.
7120
7121         * aot-compiler.c: Optimize the size of the generated line number info.
7122
7123         * aot-compiler.c: Emit line number info in xdebug mode.
7124
7125         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
7126         million arguments.
7127
7128 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7129
7130         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
7131
7132         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
7133         is used.
7134
7135 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
7136
7137         * basic-calls.cs: Test for the weird crash found on arm.
7138         
7139 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
7140
7141         * cpu-arm.md: Increase the size of storer8_membase_reg and
7142         loadr8_membase_reg to 24 bytes to accomodate the extra add.
7143
7144         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
7145         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
7146         reg to LR otherwise we'll be loading/storing from just the offset.
7147
7148 2009-01-30  Miguel de Icaza  <miguel@novell.com>
7149
7150         Question: if we are storing gint32's inside the "*native_offset",
7151         should we change the signature to "gint32 *native_offset" to
7152         ensure that we do not have type definition problems?
7153         
7154         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
7155         an int * as this is what the other function expects, causes
7156         problems with Freescale's compiler that defined int32_t to be a
7157         long and makes int incompatible 
7158
7159 2009-01-30  Miguel de Icaza  <miguel@novell.com>
7160
7161         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
7162         filename conflict with bjam.
7163
7164 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
7165
7166         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
7167         as it might use decomposed ops.
7168
7169 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
7170
7171         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
7172
7173         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
7174         is defined.
7175
7176         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
7177
7178         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
7179         offsets.
7180
7181         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
7182         way registers are stored in MonoContext on arm.
7183
7184         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
7185         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
7186
7187         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
7188
7189         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
7190
7191         * mini.c (mini_init): Register mono_isfinite.
7192
7193         * jit-icalls.c (mono_isfinite): New jit icall.
7194
7195         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
7196         
7197         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
7198         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
7199         the parent frame.
7200
7201 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
7202
7203         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
7204         separate frame and stack pointers, so we must use FP to find the register
7205         spill area.
7206         The FP reg is retrieved from the MonoContext::regs array.
7207
7208 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
7209
7210         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
7211         as FPA requires it.
7212
7213 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
7214
7215         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
7216         return R4 and R8 when not running under softfloat.
7217
7218         Fixes basic-calls.exe
7219
7220 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
7221
7222         * mini-arm.c: Implement some overflow opcodes.
7223
7224 2009-01-29  Miguel de Icaza  <miguel@novell.com>
7225
7226         * ssa.c: handle another alloca.h
7227
7228         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
7229         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
7230         MONO_ARCH_USE_SIGACTION. 
7231
7232         * aot-runtime.c, mini-exceptions.c: Replace platform define with
7233         capability defines.
7234
7235         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
7236
7237         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
7238         PPC targets as sigaction does not exist on all platforms, define
7239         this on a per-platform basis.
7240
7241         Instead of erroring out if the platform is not defined, include
7242         mini-ppc-os.h, and expect that the OS specific setting provides
7243         the required information.   
7244
7245 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
7246
7247         * aot-compiler.c: Fix --enable-minimal=aot.
7248
7249 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
7250
7251         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
7252         previous change.
7253
7254 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7255
7256         * exceptions-arm.c: Fix warnings.
7257
7258         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
7259         ARM.
7260
7261         * mini-x86.c: Fix --enable-minimal=jit build.
7262
7263         * mini.c: Really fix --enable-minimal=jit build.
7264         
7265         * mini.c (construct_object_context_for_method): Move this outside
7266         the DISABLE_JIT block to fix the --enable-minimal=jit build.
7267
7268         "Backported" of r124984 from 2.0 branch.
7269         
7270         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
7271
7272         "Backport" of r124977 + r124978 from 2.0 branch.
7273         
7274         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
7275         to avoid calling mono_exception_from_token () from the throw trampoline.
7276         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
7277         for throwing corlib exceptions, this fixes full-aot support for corlib
7278         exceptions.
7279
7280         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
7281
7282 2009-01-29  Miguel de Icaza  <miguel@novell.com>
7283
7284         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
7285         part of the changes to split the code in mini into operating
7286         system specific files.
7287
7288         This patch was done by copying mini.c to the respective files to
7289         preserve SVN history.
7290
7291 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7292
7293         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
7294
7295 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7296
7297         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
7298         remoting-invoke-with-check wrappers of shared methods.
7299
7300         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
7301
7302 2009-01-27  Mark Probst  <mark.probst@gmail.com>
7303
7304         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
7305         optimization if the top of stack is the last instruction in the
7306         bblock.  Otherwise it might have been used after its definition.
7307         Fixes #469742.
7308
7309 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7310
7311         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
7312         method as well when get_vcall_slot () fails to match a code sequence.
7313
7314         * mini-arm.c: Fix the android build, which doesn't have
7315         __aeabi_read_tp.
7316
7317 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7318
7319         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
7320         the s390x build.
7321
7322 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
7323
7324         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
7325
7326 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7327
7328         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
7329         and put its id into jinfo->used_regs. This is only used on amd64,
7330         which is currently the only platform generating unwind info.
7331
7332         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
7333         the dwarf unwinder. This is required to correctly handle async exceptions
7334         like thread abort and stack overflows, which can happen while a method
7335         is in the middle of its prolog or epilog.
7336         
7337         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
7338         the unwind info belonging to an AOTed method.
7339
7340         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
7341         into cfg->unwind_ops.
7342         
7343         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
7344
7345         * mini.c (mini_init): Call mono_unwind_init ().
7346         (mini_cleanup): Call mono_unwind_cleanup ().
7347
7348         * unwind.c: Add functions for managing a set of unwind info entries, allowing
7349         unwind info to be shared between methods.
7350
7351         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
7352         saved in the LMF.
7353
7354         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
7355         get_throw_pending_exception () to avoid initialization races.
7356
7357         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
7358         mono_arch_exceptions_init () function.
7359
7360         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
7361
7362 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
7363
7364         * mini.c (mono_get_domain_intrinsic): New helper function.
7365         (mono_get_thread_intrinsic): Ditto.
7366
7367         * mini-arm.c mini-ia64.c: Use the new helper functions.
7368         
7369         * method-to-ir.c (mono_method_to_ir): Fix the comment for
7370         the last constrained_call change, since it is needed in the non-AOT
7371         case as well.
7372
7373         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
7374         
7375         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
7376         mono_get_lmf_addr () on arm eabi linux.
7377
7378 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
7379
7380         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
7381         code sequence which matches a non-virtual call.
7382
7383 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7384
7385         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
7386         stack pointer (r1).
7387
7388 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7389
7390         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
7391         runtime-invoke wrappers, since they are also shared based on signature.
7392
7393 2009-01-22  Mark Probst  <mark.probst@gmail.com>
7394
7395         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
7396         info from the (correct) context.
7397
7398 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
7399
7400         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
7401         
7402         * unwind.c (mono_unwind_frame): New function to unwind through a frame
7403         using dwarf unwinding info. Not yet used.
7404
7405         * mini.c (mini_init): When using xdebug, disable freeing of domains.
7406
7407 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7408
7409         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
7410         descriptors.
7411
7412         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
7413         special case and handle mono_arch_delegate_invoke_impl() returning
7414         function descriptors.
7415
7416         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
7417         trampolines return function descriptors, too.
7418
7419 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7420
7421         * method-to-ir.c (handle_alloc): Avoid generic instances in the
7422         out_of_line optimization.
7423
7424 2009-01-21  Martin Baulig  <martin@ximian.com>
7425
7426         * mini.h
7427         (MonoCompile): Added `disable_deadce_vars' to disable removing
7428         unused variables.
7429
7430         * mini.c
7431         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
7432         inside the debugger.
7433
7434         * liveness.c (mono_analyze_liveness): Don't remove any unused
7435         variables if `cfg->disable_deadce_vars' is set.
7436
7437 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7438
7439         * method-to-ir.c: Only apply exception constructor optimization if
7440         the the method actually belongs to an exception class.  Fixes
7441         #467456.
7442
7443 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7444
7445         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
7446         change inside a #ifdef __mono_ppc64__.
7447
7448         * aot-compiler.c (compile_method): Remove the previous limitation.
7449
7450         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
7451         on type variables in AOTed code.
7452         
7453         * aot-compiler.c (compile_method): Skip generic methods having type 
7454         constraints on their generic parameters.
7455
7456         * aot-compiler.c (compile_method): Check for methods which cannot be
7457         encoded inside RGCTX_FETCH patches as well.
7458
7459         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
7460         build.
7461
7462 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7463
7464         * method-to-ir.c: Force the vtable variable in shared generic code
7465         for the case that they might show up on a stack trace where they
7466         are needed.
7467
7468         * mini-exceptions.c: Save and use generic sharing info as well as
7469         IP in stack traces to resolve shared generic instantiations.
7470
7471 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
7472
7473         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
7474         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
7475
7476 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7477
7478         * method-to-ir.c: Do generic sharing for array constructors.
7479
7480 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
7481
7482         * mini-exceptions.c (mono_print_thread_dump): Add information
7483         about the thread state using wapi_current_thread_desc.
7484
7485 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
7486
7487         * basic-simd.cs: Tests for the new constructors. 
7488
7489 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
7490
7491         * mini-ops.h: Added OP_EXPAND_*
7492
7493         * cpu-x86.md: Same.
7494
7495         * mini-x86.c (mono_arch_output_basic_block): Same.
7496         
7497         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
7498
7499 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7500
7501         * iltests.il.in: Add a test for #467385.
7502
7503 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7504
7505         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
7506         thread been cleaned up is not the same currently in execution.
7507
7508         Fixes appdomain-unload crashes on windows, osx and linux variants
7509         without the __thread keyword.
7510
7511 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7512
7513         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
7514         (koush@koushikdutta.com). Implement this for android.
7515
7516         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
7517         begins with a digit.
7518
7519         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
7520         mono_marshal_get_write_barrier ().
7521
7522 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
7523
7524         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
7525         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
7526         that pass them on a register pair.
7527
7528         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
7529         test was crashing due to that.
7530
7531 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
7532
7533         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
7534         trampoline code. Include ucontext.h only if available.
7535
7536 2009-01-15  Mark Probst  <mark.probst@gmail.com>
7537
7538         * mini.c: mono_domain_lookup_shared_generic() takes an open method
7539         and doesn't check whether it's sharable, like it was before
7540         removing the shared generics hash.  This brings IronPython
7541         performance back to what it was before that change.
7542
7543 2009-01-14  Mark Probst  <mark.probst@gmail.com>
7544
7545         * method-to-ir.c: Handle delegate invocation optimization earlier,
7546         otherwise it would be handled (much more slowly) by the
7547         final/sealed optimization.
7548
7549 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7550
7551         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
7552         domain is not set. Fixes #465864.
7553
7554 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7555
7556         * method-to-ir.c: Don't stop sharing of generic methods with catch
7557         clauses - we already handle those.
7558
7559 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7560
7561         * mini.c, mini.h: lookup_generic_method() is now
7562         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
7563         making the shared_generics_hash obsolete.
7564
7565 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7566
7567         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
7568         use the red zone.  Make room on the stack first and then use it,
7569         not the other way around.
7570
7571 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7572
7573         * mini.c (mini_init): Call mono_xdebug_init ().
7574
7575         * aot-compiler.c (mono_xdebug_init): Make this non-static.
7576
7577 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
7578
7579         * TestDriver.cs: Add an --iter argument to run tests multiple times.
7580
7581         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
7582         trampolines.
7583
7584         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
7585         debug+unwind info for trampolines.
7586
7587         * mini.c (mono_create_unwind_op): New helper function.
7588
7589         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
7590
7591 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7592
7593         * aot-compiler.c: Fix the build.
7594
7595 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7596
7597         * Makefile.am: Update dtrace-prelink.sh location.
7598
7599 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
7600
7601         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
7602         optimization. Fixes #464520.
7603
7604 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
7605
7606         * mini-amd64.c : Adding code to save/restore non-volatile registers
7607            on Winx64.
7608
7609         * exceptions-amd64.c : Adding code to save/restore non-volatile 
7610           registers on Winx64.
7611
7612         Contributed under MIT/X11 license.
7613
7614 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
7615
7616         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
7617         __GNUC_MINOR__ which can break when the major version changes.
7618
7619 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
7620
7621         * basic-simd.cs: Add tests for usage of the sizeof opcode.
7622
7623 2009-01-07  Geoff Norton  <gnorton@novell.com>
7624
7625         * helpers.c:  Allow mono -v -v -v to work on darwin.
7626
7627 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
7628
7629         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
7630           pattern. 
7631
7632         Contributed under MIT/X11 license.
7633
7634 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
7635
7636         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
7637         instead of directly accessing type->data.klass. Fixes #462016.
7638         (mono_allocate_stack_slots_full): Ditto.
7639
7640         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
7641         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
7642
7643         * aot-compiler.c (emit_plt): Fix ARM build.
7644
7645 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
7646
7647         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
7648         
7649         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
7650         change.
7651
7652         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
7653         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
7654         #463357.
7655
7656         * iltests.il.in: Add a regression test.
7657
7658 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7659
7660         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
7661
7662 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7663
7664         * basic-simd.cs: Add a regression test for #462457.
7665
7666 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7667
7668         * mini-ops.h: Add a definition of XPHI.
7669
7670         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
7671
7672         * ssa.c (op_phi_to_move): Handle XPHI.
7673
7674         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
7675
7676         Fixes #462457
7677
7678 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
7679
7680         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
7681
7682 2008-12-31  Geoff Norton  <gnorton@novell.com>
7683
7684         * mini-ppc.c: The prolog size allocated can be too small for darwin
7685         ppc32 under certain circumstances.  Also fix a small logic bug.
7686
7687 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
7688
7689         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
7690         while loading AOT methods.
7691
7692         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
7693         since only the former is nulled out after a successful cast. This prevents
7694         crashes with rethrown exceptions when using --debug=casts.
7695
7696 2008-12-24  Mark Probst  <mark.probst@gmail.com>
7697
7698         * mini.h: New macro for checking whether a method is final,
7699         i.e. whether the method or its class is marked final.
7700
7701         * method-to-ir.c: Use the new macro for all final-checks
7702         consistently.  Fixes the crash in the System.ServiceModel tests.
7703
7704 2008-12-23  Mark Probst  <mark.probst@gmail.com>
7705
7706         * mini-exceptions.c (get_exception_catch_class): Corrected another
7707         overly strict assertion.
7708
7709 2008-12-23  Mark Probst  <mark.probst@gmail.com>
7710
7711         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
7712         Clobbering it is not allowed because the caller might use it as
7713         the vtable register in the interface call.
7714
7715 2008-12-19  Mark Probst  <mark.probst@gmail.com>
7716
7717         * mini-exceptions.c (get_exception_catch_class): Corrected an
7718         overly strict assertion.
7719
7720 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
7721         
7722         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
7723
7724         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
7725
7726         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
7727
7728         * cpu-mips.md: correct lengths for certain long_ opcodes.
7729
7730         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
7731
7732         * 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().
7733         
7734 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
7735
7736         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
7737         
7738 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
7739         
7740         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
7741         
7742 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
7743
7744         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
7745         next basic block.
7746         
7747 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
7748
7749         * 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
7750
7751         * 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)
7752         
7753 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
7754         
7755         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
7756         
7757 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
7758
7759         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
7760         gshared code. Fixes #458947.
7761
7762         * generics.cs: Add a test.
7763
7764 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
7765         
7766         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7767         
7768         * mini-mips.c: first pass n32 code generation.
7769
7770         * mini-mips.h: datatypes and defines for n32 support.
7771
7772         * exceptions-mips.c: first pass n32 code generation.
7773         
7774         * tramp-mips.c: first pass n32 code generation.
7775         
7776         * cpu-mips.md: add long_ opcodes.
7777         
7778 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
7779
7780         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7781
7782         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7783         
7784         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7785         
7786         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7787
7788         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7789
7790         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7791
7792         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7793
7794         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
7795
7796         * helpers.c: for mips/n32, don't pass -mips32 to objdump
7797
7798 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
7799
7800         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
7801
7802 2008-12-12  Andres G. Aragoneses  <aaragoneses@novell.com>
7803
7804         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
7805
7806 2008-12-12  Mark Probst  <mark.probst@gmail.com>
7807
7808         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
7809         descriptors for helper functions directly in front of the code.
7810
7811 2008-12-11  Mark Probst  <mark.probst@gmail.com>
7812
7813         * method-to-ir.c: Removed an unnecessary assertion.
7814
7815 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7816
7817         * method-to-ir.c: Merge SGEN changes from the old JIT.
7818
7819 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7820
7821         * driver.c (compile_all_methods_thread_main): Handle failure of
7822         mono_get_method ().
7823
7824 2008-12-10  Mark Probst  <mark.probst@gmail.com>
7825
7826         * mini-ppc.c: Merged with mini-ppc64.c.
7827
7828         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
7829
7830         * Makefile.am: Use the same sources for PPC and PPC64.
7831
7832         * mini-ppc64.c: Removed.
7833
7834 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
7835
7836         * branch-opts.c (remove_block_if_useless): Extract fall through detection
7837         code to mono_bb_is_fall_through.
7838         
7839         * branch-opts.c (mono_remove_critical_edges): Same.
7840
7841 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
7842
7843         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
7844         expect that an OP_BR_REG will be there.
7845
7846 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
7847
7848         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
7849         for the many branch ops. The original check miss OP_BR_REG.
7850
7851         Fixes #457574.
7852         
7853 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
7854
7855         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
7856
7857 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7858
7859         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
7860         while holding the aot lock.
7861
7862 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
7863
7864         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
7865         
7866 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7867
7868         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
7869           to release all runtime callable wrappers held by the runtime.
7870
7871         Contributed under MIT/X11 license.
7872
7873 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7874
7875         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
7876           for Winx64.
7877
7878         Contributed under MIT/X11 license.
7879
7880 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7881
7882         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
7883         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
7884
7885 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
7886
7887         * cpu-mips.md: fix ckfinite length
7888
7889         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
7890         (mono_arch_lowering_pass): cleanup, rearrange for clarity
7891         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
7892         
7893 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
7894
7895         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
7896         
7897 2008-12-08  Geoff Norton  <gnorton@novell.com>
7898
7899         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
7900         size by 8 bytes as well.
7901
7902 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7903
7904         * basic-simd.cs: Fix method names for Vector16b.
7905         
7906 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7907
7908         * basic-simd.cs: Fix method names for Vector16sb.
7909
7910 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7911
7912         * basic-simd.cs: Fix method names for Vector8us.
7913         
7914 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7915
7916         * basic-simd.cs: Fix method names for Vector8s.
7917         
7918 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7919
7920         * basic-simd.cs: Fix method names for Vector4ui.
7921
7922 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7923
7924         * basic-simd.cs: Fix method names for Vector2l.
7925
7926 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7927
7928         * basic-simd.cs: Fix method names for Vector2d.
7929
7930 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7931
7932         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
7933         that are extension methods.
7934
7935 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
7936
7937         * basic-simd.cs: Fix method names for Vector4f.
7938
7939 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
7940
7941         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
7942         as such. Fixes #456669.
7943
7944 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
7945
7946         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
7947         
7948 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
7949
7950         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
7951         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
7952         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
7953         (mips_adjust_stackframe): handle FP spills
7954                 
7955         * mini-ops.h: add mips_mtc1_s2
7956         
7957         * cpu-mips.md: add mips_mtc1_s2
7958         
7959 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
7960
7961         * unwind.c: New file, move the unwind info encoding functions here from
7962         aot-compiler.c, so they could be used at runtime too.
7963
7964 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
7965
7966         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
7967         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
7968         
7969 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
7970
7971         * mini-mips.c: cleanup warnings
7972         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
7973         (mips_adjust_stackframe): handle case of taking the address of stack locals
7974         
7975 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
7976
7977         * aot-compiler.c: Implement a few functions missing from the asm writer.
7978         (emit_method_code): Only write symbols for methods when using the bin
7979         writer, since the assembler can't deal with the characters in our method
7980         names.
7981
7982         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
7983
7984         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
7985         call.
7986
7987         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
7988         a bit to also restore %rax.
7989
7990 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7991
7992         * mini-ppc.c: Some simple merges from mini-ppc64.c.
7993
7994 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
7995
7996         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
7997         arguments.
7998
7999 2008-12-05  Mark Probst  <mark.probst@gmail.com>
8000
8001         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
8002
8003         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
8004         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
8005
8006         * exceptions-ppc64.c: Removed.
8007
8008         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
8009
8010 2008-12-05  Mark Probst  <mark.probst@gmail.com>
8011
8012         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
8013         tramp-ppc64.c.
8014
8015         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
8016
8017         * tramp-ppc64.c: Removed.
8018
8019 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
8020
8021         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
8022         the TYPESPEC table.
8023
8024 2008-12-05  Mark Probst  <mark.probst@gmail.com>
8025
8026         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
8027
8028         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
8029         mini-ppc.h instead of mini-ppc64.h.
8030
8031         * mini-ppc64.h: Removed.
8032
8033 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
8034
8035         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
8036         
8037         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
8038         
8039 2008-12-05  Mark Probst  <mark.probst@gmail.com>
8040
8041         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
8042         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
8043         code easier.
8044
8045 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8046
8047         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
8048
8049 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8050
8051         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
8052
8053 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8054
8055         * basic-simd.cs: Tests for operator == and != on Vector4f.
8056
8057 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8058
8059         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
8060
8061         * simd-intrinsics.c: Kill useless enum.
8062
8063 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
8064
8065         * cpu-mips.md: add long_conv_to_ovf_i4_2
8066         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
8067
8068 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
8069
8070         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
8071         
8072         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
8073
8074 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
8075
8076         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
8077         
8078 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
8079
8080         * basic-simd.cs: Add tests for new methods.
8081
8082 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
8083
8084         * simd-intrinsics.c: Add support for operator == and !=
8085         on Vector4(u)i.
8086
8087         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
8088
8089 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
8090
8091         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
8092
8093 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8094
8095         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
8096
8097         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
8098         MONO_PATCH_INFO_ICALL_ADDR.
8099
8100         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
8101
8102         * aot-compiler.c: Resurrect full-aot support.
8103
8104 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
8105
8106         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
8107         
8108 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
8109
8110         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
8111         
8112 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
8113
8114         * basic-simd.cs: Fix tests to work under ppc.
8115         Remove tests for methods that will be removed.
8116
8117 2008-12-03  Mark Probst  <mark.probst@gmail.com>
8118
8119         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
8120         generic type (via a typedef or typeref) correctly.
8121
8122 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8123
8124         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
8125         diagnose an assertion failure.
8126
8127 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8128
8129         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
8130         Fix trampoline size.
8131
8132         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
8133         conversion opcodes are implemented natively instead via emulation.
8134
8135 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
8136
8137         * cpu-mips.md: remove mips_xori
8138
8139         * mini-ops.h:  remove mips_xori
8140
8141         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
8142
8143         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
8144         
8145         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
8146         
8147 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
8148
8149         * cpu-mips.md: fix instruction lengths.
8150
8151         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
8152
8153         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
8154
8155         * mini-ops.h: fix slti / sltiu op profiles.
8156         
8157 2008-12-02  Martin Baulig  <martin@ximian.com>
8158
8159         * method-to-ir.c (mono_method_to_ir): Disable debugging
8160         information for the init locals block to make the debugger stop
8161         after all locals have been initalized.
8162
8163 2008-12-02  Martin Baulig  <martin@ximian.com>
8164
8165         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
8166         running inside the debugger.
8167
8168 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
8169
8170         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
8171         is enabled.
8172
8173         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
8174         alu->alu imm optimization which only shows if deadce is disabled.
8175
8176         * aot-compiler.c: Rename the function names for the binary and asm writers
8177         so they can coexist in the same process. Rework the xdebug code to use the
8178         asm writer. This avoids the need to call into the runtime to dump the
8179         debugging info. Add more debugging info for types.
8180
8181         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
8182
8183         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
8184         cpu description tables, they can't occur in cpu-<ARCH>.md.
8185
8186         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
8187         the stack in CEE_LDFLDA. Fixes #450542.
8188
8189         * generics.cs: Add a new test.
8190
8191 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
8192
8193         * mini-ops.h: updated MIPS opcodes
8194         * mini-mips.c: decompose long opts
8195         * mini-mips.h: decompose long opts
8196         
8197 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
8198
8199         * cpu-mips.md: fix length on int_rem_un
8200         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
8201         
8202 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
8203
8204         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
8205
8206         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
8207
8208 2008-11-29  Martin Baulig  <martin@ximian.com>
8209
8210         * mini-exceptions.c (mono_handle_native_sigsegv): Check
8211         mono_debug_using_mono_debugger() in addition to the
8212         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
8213
8214 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
8215
8216         * mini-ops.h: updated more MIPS opcodes
8217         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
8218         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
8219         
8220 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8221
8222         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
8223
8224 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
8225
8226         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
8227         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
8228         * mini-ops.h: correct selected mips opcode entries
8229         
8230 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8231
8232         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
8233         make them work.
8234
8235 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8236
8237         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
8238
8239 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
8240
8241         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
8242         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
8243         * mini-mips.h: disable IMT
8244         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
8245         
8246 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8247
8248         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
8249
8250 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8251
8252         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
8253
8254 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
8255
8256         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
8257         consistency.
8258
8259 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
8260
8261         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
8262         for Set/GetVector aligned versions.
8263
8264 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
8265
8266         * basic-simd.cs: Add tests for Get/SetVector.
8267
8268 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8269
8270         * mini.c: Removed g_slist_append_mempool().  Now in
8271         metadata/mempool.c.
8272
8273 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
8274
8275         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
8276         size properly and make the bounds check optional.
8277
8278         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
8279         for SetVector and IsAligned.
8280
8281 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
8282
8283         * mini.c: Remove unused mono_normalize_opcodes () function.
8284
8285 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8286
8287         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
8288         using the new atomic add ops now.
8289
8290         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
8291         add.
8292
8293 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8294
8295         * mini-ppc64.c: Several fixes.
8296
8297 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
8298
8299         * cpu-mips.md: added jump_table
8300         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
8301
8302 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
8303
8304         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
8305
8306 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
8307
8308         * mini-ops.h: corrected a handful of MIPS opcodes.
8309
8310 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
8311
8312         * aot-compiler.c: MIPS to use ELF writer
8313
8314 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
8315
8316         * mini-codegen.c: remove MIPS specific assert.
8317
8318 2008-11-25  Mark Probst  <mark.probst@gmail.com>
8319
8320         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
8321         fixes.  PPC64 now passes most of the runtime regressions.
8322
8323 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
8324
8325         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
8326         volatile intervals a bit.
8327
8328 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8329
8330         * basic-long.cs: New test case.
8331
8332 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
8333
8334         * mini.c (mini_method_compile): Disable globalra for large methods for 
8335         now.
8336
8337         * regalloc2.c (order_moves): Add fp support.
8338
8339         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
8340         source bblock ends with an OP_BR_REG.
8341
8342         * ratests.cs: Add a new test.
8343
8344 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8345
8346         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
8347         sharing.  PPC64 now passes generics.exe.
8348
8349 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8350
8351         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
8352
8353 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
8354
8355         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
8356         memory when mono_jit_info_table_find () can't find the method in the
8357         LMF case.
8358
8359         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
8360         AOTed code too.
8361         
8362         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
8363         writer too.
8364
8365 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8366
8367         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
8368         Several fixes.  PPC64 now runs exceptions.exe and
8369         devirtualization.exe.
8370
8371 2008-11-22  Mark Probst  <mark.probst@gmail.com>
8372
8373         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
8374         arrays.exe and basic-math.exe.
8375
8376 2008-11-22  Mark Probst  <mark.probst@gmail.com>
8377
8378         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
8379         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
8380
8381 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
8382
8383         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
8384
8385 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
8386
8387         * method-to-ir.c: Move bounds checking macros to ir-emit.h
8388
8389         * ir-emit.h: Move macros from method-to-ir.c to here.
8390
8391 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
8392
8393         * mini-ops.h: Correct the long simd ops to use LREG.
8394
8395 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
8396
8397         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
8398         
8399         * mini-ops.h: Correct the dreg type of a few long opcodes.
8400
8401         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
8402         Add netbsd support.
8403
8404 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
8405
8406         * mini-ppc.c: remove negative stack references in epilog
8407         for platforms that don't support the red zone.
8408
8409 2008-11-21  Mark Probst  <mark.probst@gmail.com>
8410
8411         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
8412         point regs.  Now PPC64 passes basic-calls.exe.
8413
8414 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8415
8416         * basic-simd.cs: Add tests for accessors of Vector2l.
8417
8418 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8419
8420         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
8421
8422         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
8423         
8424         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
8425
8426 2008-11-21  Mark Probst  <mark.probst@gmail.com>
8427
8428         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
8429         PPC64 passes basic-long.exe.
8430
8431 2008-11-20  Mark Probst  <mark.probst@gmail.com>
8432
8433         * decompose.c: Decompose carry and overflow add on PPC64 like on
8434         other 64 bit archs.  Don't decompose sub at all on PPC64.
8435
8436         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
8437         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
8438         basic-long.exe.
8439
8440 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8441
8442         * basic-simd.cs: Add tests for accessors of Vector2d.
8443
8444 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8445
8446         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
8447
8448         * cpu-x86.md: Same.
8449
8450         * mini-x86.c (mono_arch_output_basic_block): Same.
8451         
8452         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
8453
8454 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8455
8456         * basic-simd.cs: Add tests for accessors of Vector4f.
8457
8458 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8459
8460         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
8461
8462         * cpu-x86.md: Same.
8463
8464         * mini-x86.c (mono_arch_output_basic_block): Same.
8465         
8466         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
8467
8468 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8469
8470         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
8471
8472 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8473
8474         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
8475
8476         * cpu-x86.md: Same.
8477
8478         * mini-x86.c (mono_arch_output_basic_block): Same.
8479         
8480         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
8481
8482 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8483
8484         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
8485
8486 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8487
8488         * simd-intrinsics.c: Enable setters for Vector16sb.
8489
8490 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
8491
8492         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
8493
8494         * cpu-x86.md: Same.
8495
8496         * mini-x86.c (mono_arch_output_basic_block): Same.
8497         
8498         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
8499
8500 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
8501
8502         * simd-intrinsics.c: Implement setter for Vector8us.
8503
8504 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
8505
8506         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
8507         for dead variables.
8508
8509 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8510
8511         * mini-ppc.c: remove references to the red zone in the prolog
8512         (for systems that don't support it).
8513
8514 2008-11-19  Mark Probst  <mark.probst@gmail.com>
8515
8516         * cpu-ppc64.md: Fixed a few instruction lengths.
8517
8518         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
8519         now.
8520
8521 2008-11-19  Mark Probst  <mark.probst@gmail.com>
8522
8523         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
8524         basic.exe now.
8525
8526 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
8527
8528         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
8529
8530 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
8531
8532         * mini-ops.h: Added OP_INSERT_I2.
8533
8534         * cpu-x86.md: Same.
8535
8536         * mini-x86.c (mono_arch_output_basic_block): Same.
8537         
8538         * simd-intrinsics.c: Implement setter for Vector8s.
8539
8540         * simd-methods.h: Add the names of get setters of Vector8s.
8541
8542 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8543
8544         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
8545         
8546         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
8547         parameters.
8548
8549         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
8550
8551 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8552
8553         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
8554         for PPC64.  An empty program runs now.
8555
8556 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8557
8558         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
8559
8560         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
8561         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
8562         info for JITted code is emitted into a shared library, loadable into gdb.
8563
8564 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8565
8566         * Makefile.am: Changes to build PPC64.
8567
8568         * mini-arch.h: Include mini-ppc64.h on PPC64.
8569
8570 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8571
8572         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
8573         in PPC code up to r119147.
8574
8575 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8576
8577         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
8578         cpu-ppc64.md: Changes for PPC64.
8579
8580         Based on code submitted by andreas.faerber@web.de at
8581         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
8582         X11/MIT license.
8583
8584 2008-11-18  Mark Probst  <mark.probst@gmail.com>
8585
8586         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
8587         cpu-ppc64.md: Copied from the corresponding PPC files from
8588         r118846.
8589
8590 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
8591
8592         * mini-ops.h: Added OP_ROUND.
8593
8594         * cpu-x86.md: Added round.
8595
8596         * mini-x86.c: Added support for intrinsicing Math.Round (double).
8597
8598         * basic-math.cs: Added test_0_round to test rounding.
8599
8600         Contributed under MIT/X11 license.
8601
8602 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8603
8604         * aot-compiler.c : Fix the Winx64 build.
8605
8606         Contributed under MIT/X11 license.
8607
8608 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
8609
8610         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
8611         in OP_EXTRACT_R8 to avoid possible stack corruption.
8612
8613 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
8614
8615         * mini-ops.h: Added OP_EXTRACT_R8/I8.
8616
8617         * cpu-x86.md: Added extract_r8.
8618
8619         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
8620         
8621         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
8622         a couple of OP_EXTRACT_I4.
8623
8624         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
8625
8626         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
8627
8628 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
8629
8630         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
8631         and not 4.1. 
8632
8633 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
8634
8635         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
8636         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
8637
8638         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
8639         are not needed any more.
8640
8641         * mini.h: Remove the unused INS_LIST macros.
8642
8643         * mini.c (mini_method_compile): Remove a disable globalra case which is no
8644         longer needed.
8645
8646         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
8647         ir-emit.h.
8648
8649         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
8650         mono_alloc_ireg () instead.
8651
8652         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
8653         macros.
8654
8655         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
8656         on amd64.
8657
8658         * aot-runtime.c (load_aot_module): Disable AOT when running under
8659         CAS.
8660
8661         * mini-amd64.h: Change the monitor fastpath defines to check for
8662         !PLATFORM_WIN32 so they work on *bsd too.
8663
8664         * mini.h mini.c mini-hhpa.c: Remove more unused code.
8665
8666         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
8667
8668         * mini.h (MonoCompile): Remove new_ir flag.
8669
8670         * regalloc.h regalloc.c: Remove unused code.
8671
8672         * cpu-*.md: Remove more unused opcodes.
8673
8674         * simple-cee-ops.h simple-mini-ops.h: Removed.
8675
8676         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
8677         
8678 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
8679
8680         * aliasing.h: Removed.
8681
8682         * *.c: Remove references to aliasing.h and inssel.h.
8683
8684         * mini.c: Remove additional unused functions.
8685
8686         * mini-ops.h cpu-*.md: Remove unused opcodes.
8687
8688 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
8689
8690         Remove the old JIT code.
8691
8692         * inssel*.brg: Removed.
8693
8694         * ssa.c abcremoval.c aliasing.c: Removed.
8695
8696         * ssa2.c: Renamed to ssa.c.
8697
8698         * abcremoval2.c: Renamed to abcremoval.c.
8699
8700         * *.c: Removed all !cfg->new_ir code.
8701
8702         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
8703         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
8704
8705         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
8706         
8707 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
8708
8709         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
8710         to simplify the code and cut back on the number of global symbols in the AOT
8711         file.
8712         
8713         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
8714
8715 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
8716
8717         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
8718         with the got/got_info tables.
8719
8720         * mini.h: Bump AOT file format version.
8721         
8722         * unwind.h: New file, contains definitions for stack unwinding.
8723
8724         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
8725         to cfg->unwind_ops.
8726         
8727         * aot-compiler.c: Generalize the emitting of unwind information to use the
8728         information in cfg->unwind_ops.
8729
8730         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
8731
8732         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
8733         AOT method frames. Enable writing symbols for methods by default.
8734
8735 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
8736
8737         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
8738         and make it work with vectors of element sizes 1, 2 and 4.
8739
8740         * simd-intrinsics.c: Enable getter for all vectors with element size
8741         1, 2 or 4.
8742
8743         * simd-methods.h: Add the names of other getters.
8744
8745         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
8746
8747         * cpu-x86.md: Same.
8748
8749         * mini-x86.c: Same.
8750
8751 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
8752
8753         * mini-ppc.h: portability fix.
8754
8755 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
8756
8757         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
8758         buggy and will overwrite it.
8759
8760 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8761
8762         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
8763         Use it to emit local symbols for all methods so AOTed methods show up with
8764         their full name in gdb/valgrind output.
8765
8766 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
8767
8768         * mini-ppc.c: portability fixes.
8769
8770 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8771
8772         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
8773         entries out of the if (!generic_shared...) code so it is always done.
8774         (mono_class_init_trampoline): Do the patching when running under valgrind
8775         too, newer versions of valgrind have no problems with it.
8776
8777 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
8778
8779         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
8780         further sections.
8781
8782 2008-11-13  Mark Probst  <mark.probst@gmail.com>
8783
8784         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
8785         filters.
8786
8787 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8788
8789         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
8790
8791 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8792
8793         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
8794
8795         * cpu-x86.md: Same.
8796
8797         * mini-x86.c: Same.
8798
8799         * simd-intrinsics.c: Same.
8800
8801 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8802
8803         * simd-intrinsics.c: Enable constructor intrinsics for all types.
8804
8805 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8806
8807         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
8808         to work with more Vector types.
8809
8810 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
8811
8812         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
8813         store the elemens directly instead of using and intermediate.
8814
8815 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
8816
8817         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
8818
8819         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
8820         to preserve %eax for aot plt trampolines.
8821
8822         * aot-compiler.c (compile_method): Don't skip synchronized methods.
8823         (encode_method_ref): Flag synchronized methods so they won't go through
8824         the AOT trampoline.
8825
8826         * aot-compiler.c: Additional work to support AOTing synchronized methods/
8827         wrappers.
8828
8829         * cpu-ia64.md (jmp): Increase max length.
8830
8831 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
8832
8833         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
8834         open generic classes.
8835
8836         * aot-compiler.c: Enable the ELF writer on ELF platforms.
8837
8838         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
8839         box+brtrue optimization since it causes test failures on x86.
8840
8841 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8842
8843         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
8844
8845         * cpu-x86.md: Same.
8846
8847         * mini-x86.c: Same.
8848
8849         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
8850         for simd ctor values. 
8851
8852         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
8853         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
8854
8855 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8856
8857         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
8858         LogicalRightShift.
8859
8860         * simd-instrincs.c: Same.
8861
8862         * basic-simd.cs: Same.
8863
8864 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
8865
8866         * ratests.cs: Add more tests.
8867
8868         * regalloc2.c (add_spill_code): Handle more corner cases.
8869
8870 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
8871
8872         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
8873         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
8874         both the source an destination of an instruction.
8875
8876 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
8877
8878         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
8879         wapihandles.c: more portability changes.
8880
8881 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
8882
8883         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
8884         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
8885         safe to execute in a signal handler and the kernel provides better
8886         the info in /proc/self/smaps. Avoid the assert on sigaction during
8887         cleanup.
8888
8889 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
8890
8891         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
8892         do the bblock linking hack if it is actually needed.
8893
8894         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
8895         up linking.
8896
8897         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
8898         crash problem is fixed.
8899
8900         * branch-opts.c (mono_remove_critical_edges): Link up newly added
8901         bblocks.
8902
8903         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
8904         for catch clauses.
8905         (mini_method_compile): Set the starting value of next_vreg to 
8906         MAX_IREGS + MAX_FREGS when using globalra.
8907
8908         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
8909         filter clauses with BB_EXCEPTION_HANDLER.
8910
8911         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
8912
8913 2008-11-10  Mark Probst  <mark.probst@gmail.com>
8914
8915         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
8916         space for stdcall.  Fixes regressions on Win32.
8917
8918 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
8919
8920         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
8921         bblocks.
8922         (linear_scan): Remove an assert which doesn't seem to be needed.
8923
8924         * local-propagation.c (mono_local_deadce): Avoid a call to
8925         MONO_DELETE_INS which would screw up the instruction linking.
8926
8927         * mini.c (mono_decompose_op_imm): Make this work with globalra.
8928
8929         * regalloc2.c: Upgrade to work the current JIT code.
8930
8931 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
8932
8933         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
8934         case.
8935
8936         * aot-runtime.c: Remove some dead code.
8937
8938         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
8939         consistency.
8940         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
8941
8942         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
8943         trampolines using sscanf since atoi doesn't work on large unsigned values.
8944
8945         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
8946         Initialize code_size.
8947
8948 2008-11-08  Mark Probst  <mark.probst@gmail.com>
8949
8950         * method-to-ir.c (mini_emit_inst_for_method): Make
8951         Interlocked.CompareExchange work for Int arguments on 32 bit
8952         archs, as well.
8953
8954 2008-11-07  Mark Probst  <mark.probst@gmail.com>
8955
8956         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
8957
8958 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
8959
8960         * main.c Fix MSVC build.
8961
8962         Contributed under MIT/X11 license.
8963
8964 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8965
8966         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
8967         alignment larger than 8 bytes are aligned correctly, too.
8968
8969         * mini.c: Honor the min_align field of MonoClass when laying out
8970         the stack.
8971
8972 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
8973
8974         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
8975
8976         * aot-compiler.c (emit_plt): Fix a warning.
8977         
8978         * aot-compiler.c: Implement ARM support in the binary writer.
8979
8980 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8981
8982         * basic-simd.cs: Add test for getter with byref arg.
8983         Fix the naming of a few tests.
8984         Add missing checks to a test.
8985
8986 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
8987
8988         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
8989
8990         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
8991         most of the full-aot support for monitor enter/exit trampolines.
8992
8993         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
8994         enter/exit trampoline creation functions.
8995
8996         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
8997         make dist.
8998
8999 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
9000
9001         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
9002         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
9003         implement the needed functionality without adding crap to the runtime.
9004
9005 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
9006
9007         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
9008         non-x86 builds.
9009
9010         * mini.c (mono_build_date): New global version holding the build date in
9011         string format.
9012         
9013         * Makefile.am (buildver.c): Generate a file containing the build date.
9014
9015         * main.c: Set the build date from the generated file.
9016
9017         * mini.c (mono_get_runtime_build_info): New helper function returning build
9018         information in a string format.
9019         
9020         * driver.c (mono_main): Print the build date in --version.
9021
9022         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
9023         file when the bind-to-runtime-version option is used.
9024
9025 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
9026
9027         * simd-intrinsics.c: Fix bug when using getters and byref args. 
9028
9029 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
9030
9031         * simd-methods.h: Rename prefetch methods.
9032
9033         * simd-intrinsics.c: Same.      
9034
9035 2008-11-05  Mark Probst  <mark.probst@gmail.com>
9036
9037         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
9038         sizes.
9039
9040 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9041
9042         * aot-compiler.c: Use the bundled elf header files instead of depending on
9043         the system one.
9044         
9045         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
9046         mempool.
9047
9048         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
9049         on every call.
9050
9051 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
9052
9053         * cpu-x86.md: Add store nta ops.
9054
9055         * mini-ops.h: Same.
9056
9057         * mini-x86.c: Same.
9058
9059         * mini.h: Add an enum for simd prefetch modes.
9060
9061         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
9062         of store. Use the changed code to support store nta.
9063
9064         * simd-intrinsics.c: Add prefetch ops for all vector types.
9065
9066 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9067
9068         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
9069         threads.
9070         
9071         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
9072         names.
9073
9074         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
9075         trampolines.
9076
9077 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9078
9079         * mini-x86.c: Fixed commit.
9080
9081 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9082
9083         * aot-compiler.c (emit_plt): Align the plt section only on x86.
9084
9085 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9086
9087         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
9088         and MONITOR_EXIT, for the ASM fastpaths.
9089
9090         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
9091         available.
9092
9093         * mini.c, patch-info.h: Signature and patch infos for
9094         Monitor.Enter/Exit trampolines.
9095
9096         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
9097
9098         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
9099         Monitor.Enter/Exit ASM fastpath for Linux.
9100
9101 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9102
9103         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
9104
9105         * objects.cs: Add a new test.
9106         
9107         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
9108
9109         * aot-runtime.c (load_method): Run class initialization in the PLT case even
9110         if MONO_LOG_LEVEL is set.
9111
9112         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
9113
9114         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
9115
9116         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
9117         
9118         * aot-compiler.c: Change the relocation code to use virtual addresses instead
9119         of file offsets. Align the sections belonging to the data segment to 
9120         PAGESIZE.
9121
9122 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
9123
9124         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
9125         elf.h. Port it to amd64.
9126
9127 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
9128
9129         * driver.c: Enable SIMD by default.
9130
9131 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
9132
9133         * cpu-x86.md: Add prefetch op.
9134
9135         * mini-ops.h: Same.
9136
9137         * mini-x86.c: Same.
9138
9139         * mini.h: Add an enum for simd prefetch modes.
9140
9141         * simd-methods.h: Add prefetch function names.
9142
9143         * simd-intrinsics.c: Add prefetch ops for all vector types.
9144
9145 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
9146
9147         * aot-compiler.c (emit_bytes): Speed this up a little.
9148
9149 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9150
9151         * aot-compiler.c: Add JIT time etc. statistics.
9152         
9153         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
9154
9155         * mini.h (MonoCompile): Add 'got_offset' field.
9156
9157         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
9158         method_got_offsets array.
9159
9160         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
9161         wrappers.
9162
9163         * aot-compiler.c (compile_method): Add generic method instances referenced
9164         by the method to the list of methods to be compiled, this is required so if
9165         A<T> references B<T>, and another assembly references A<int>, then it will
9166         also get a copy of B<int>.
9167
9168         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
9169         when checking for monitor enter/exit.
9170
9171 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9172
9173         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
9174         for Monitor.Enter and Monitor.Exit if enabled.
9175
9176         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
9177         Solaris.
9178
9179 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
9180
9181         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
9182         of an OP_MOVE. Fixes #440046.
9183
9184         * basic-long.cs: Add a new test.
9185
9186 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
9187
9188         * mini.h: Add synchronization note for the managed counter-part.
9189
9190         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
9191         returns the simd caps of the current cpu.
9192
9193 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
9194
9195         * basic-simd.cs: Remove Console.WriteLine.
9196
9197 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9198
9199         * basic-simd.cs: New tests for Vector2ul.
9200
9201 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9202
9203         * simd-intrinsics.c: Add new vector type Vector2ul.
9204
9205 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9206
9207         * basic-simd.cs: New tests for Vector2l.
9208
9209 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9210
9211         * cpu-x86.md: Add long version of most packed int ops.
9212
9213         * mini-ops.h: Same.
9214
9215         * mini-x86.h: Same.
9216
9217         * simd-intrinsics.c: Add new vector type Vector2l.
9218
9219 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9220
9221         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
9222
9223         * simd-methods.h: Remove SN_op_BitwiseXor.
9224
9225 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
9226
9227         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
9228         alignment.
9229
9230 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9231
9232         * basic-simd.cs: Test for Vector2d.
9233
9234         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
9235         value.
9236
9237 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9238
9239         * cpu-x86.md: Add double version of all packed float ops.
9240
9241         * mini-ops.h: Same.
9242
9243         * mini-x86.h: Same.
9244
9245         * simd-intrinsics.c: Add new vector type Vector2d.
9246
9247         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
9248
9249         * simd-methods.h: Add Duplicate.
9250
9251 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9252
9253         * basic-simd.cs: Test for packing with signed saturation.
9254
9255 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
9256
9257         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
9258         found in the TYPESPEC table.
9259
9260 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9261
9262         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
9263         too.
9264
9265         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
9266
9267         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
9268         instead of the RVA, since the RVA can be changed by tools like the cil 
9269         stripper.
9270
9271         * method-to-ir.c (mono_method_to_ir2): Ditto.
9272
9273         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
9274         (deserialize_variable): Ditto.
9275
9276 2008-10-25  Martin Baulig  <martin@ximian.com>
9277
9278         * debug-mini.c (write_variable): Use
9279         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
9280
9281 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9282
9283         * cpu-x86.md: Add unsigned variants of packd and packw.
9284
9285         * mini-ops.h: Same.
9286
9287         * mini-x86.h: Emit the right instruction for packd and packw.
9288         Add unsigned variants of packd and packw.
9289
9290         * simd-intrinsics.c: Packd and packw were used in place of their
9291         unsigned variants. Change that.
9292         Add intrinsics for (Signed)PackWithSignedSaturation.
9293
9294         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
9295
9296 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9297
9298         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
9299
9300 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9301
9302         * mini-ops.h: Remove dword packed add/sub with saturation ops.
9303
9304         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
9305
9306         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
9307         sse instructions.
9308
9309         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
9310
9311 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9312
9313         * method-to-ir.c, mini.c: Special casing for the synchronized
9314         wrapper for the ldtoken+GetTypeFromHandle case.
9315
9316 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
9317
9318         * mini.c (mono_replace_ins): Move this to branch-opts.c.
9319
9320         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
9321         created/split bblocks.
9322
9323 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9324
9325         * mini-ops.h: Add packed signed mul high.
9326         
9327         * cpu-x86.md: Same.
9328
9329         * mini-x86.c (mono_arch_output_basic_block): Same.
9330
9331         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
9332
9333         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
9334
9335 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9336
9337         * basic-simd.cs: Tests for Vector16sb.
9338
9339 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
9340
9341         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
9342
9343 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9344
9345         * mini-ops.h: Add packed signed min, max and compare greater.
9346         
9347         * cpu-x86.md: Same.
9348
9349         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
9350         saturation.
9351
9352         * simd-methods.h: Add CompareGreaterThan.
9353
9354         * simd-methods.h: Remove CompareEquals.
9355
9356         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
9357
9358         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
9359
9360         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
9361         CompareEqual.
9362
9363 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9364
9365         * basic-simd.cs: Fix tests due to change in the API.
9366
9367 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9368
9369         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
9370
9371 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
9372
9373         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
9374
9375         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
9376         inst_offset as this has invalid values for LDADDR.
9377
9378 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
9379
9380         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
9381
9382         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
9383
9384 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9385
9386         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
9387         for accessing field->data.
9388
9389 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
9390
9391         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
9392
9393 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
9394
9395         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
9396
9397         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
9398
9399 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9400
9401         * dominators.c (mono_compute_natural_loops): Allocate GList enties
9402         from the cfg mempool.
9403
9404 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
9405
9406         * basic-simd.cs: Tests for new methods in Vector8us.
9407
9408 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
9409
9410         * mini-ops.h: Add multiply and store high.
9411         
9412         * cpu-x86.md: Same.
9413
9414         * mini-x86.c (mono_arch_output_basic_block): Same.
9415
9416         * simd-methods.h: Same.
9417
9418         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
9419         and CompareEqual.
9420
9421 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9422
9423         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
9424         mono_class_setup_vtable ().
9425
9426         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
9427         mono_class_get_vtable_entry () for accessing klass->vtable.
9428
9429         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
9430
9431         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
9432         found.
9433
9434         * method-to-ir.c (mono_save_token_info): Don't save references made from
9435         wrappers.
9436
9437         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
9438         of generic instances.
9439
9440         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
9441
9442 2008-10-19  Mark Probst  <mark.probst@gmail.com>
9443
9444         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
9445         OP_JMP depends on the method signature.  Calculate it properly.
9446
9447 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9448         
9449         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
9450         called directly.
9451
9452         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
9453         instances.
9454         (emit_extra_methods): Add another table mapping method indexes to 
9455         offsets in the extra_method_info table.
9456
9457         * mini.h: Bump AOT file format version.
9458         
9459         * aot-runtime.c: Merge most of the code from mono_aot_get_method
9460         and mono_aot_get_method_from_token () into one function.
9461
9462 2008-10-19  Mark Probst  <mark.probst@gmail.com>
9463
9464         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
9465         separate counter.
9466
9467 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
9468
9469         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
9470         methods.
9471
9472         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
9473         disable_aot.
9474
9475         * mini.c (mono_patch_info_equal): Compare the generic context as well.
9476
9477         * mini.h: Bump aot file format version.
9478
9479         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
9480         AOT file can contain native code for methods which are not in the METHOD
9481         table. Generate code for non-sharable generic instances of generic methods
9482         found in the METHODSPEC table.
9483         
9484         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
9485         encoding generic type handles.
9486
9487         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
9488         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
9489
9490         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
9491         macros + MONO_ADD_INS.
9492
9493         * mini.c (mono_jump_info_token_new2): New function which takes a generic
9494         context as well.
9495
9496         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
9497
9498         * mini.h: Bump aot file format version.
9499
9500         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
9501
9502 2008-10-17  Mark Probst  <mark.probst@gmail.com>
9503
9504         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
9505         platforms, with definable stack alignment value.  Set to 16 now
9506         for all platforms.
9507
9508         * mini.c, mini.h, driver.c: Command line option for disabling
9509         stack alignment.
9510
9511 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
9512
9513         * basic-simd.cs: Tests for new methods in Vector4ui.
9514
9515 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
9516
9517         * mini-ops.h: Add packed int shuffle.
9518         
9519         * cpu-x86.md: Same.
9520
9521         * mini-x86.c (mono_arch_output_basic_block): Same.
9522
9523         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
9524         extract mask, max, min, shuffle.
9525
9526         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
9527
9528 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
9529
9530         * basic-simd.cs: Tests for new methods in Vector8us.
9531
9532 2008-10-17  Mark Probst  <mark.probst@gmail.com>
9533
9534         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
9535         RuntimeTypeHandle, not a TypedReference.
9536
9537 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
9538
9539         * simd-intrinsics.c: remove relocations.
9540
9541 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
9542
9543         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
9544         optimizations from the x86 backend.
9545
9546 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
9547
9548         * simd-methods.h, simd-intrinsics.c: debloat method names and
9549         prepare for no relocations.
9550
9551 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9552
9553         * mini-ops.h: Add packed min/equal and sum of absolute differences.
9554         
9555         * cpu-x86.md: Same.
9556
9557         * mini-x86.c (mono_arch_output_basic_block): Same.
9558
9559         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
9560         extract mask, max, min and sum of absolute differences.
9561
9562         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
9563         method name.
9564
9565 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9566
9567         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
9568         Renamed one test for consistency.
9569
9570 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9571
9572         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
9573         fix to the code that deal with other blocks.
9574
9575 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9576
9577         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
9578
9579 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
9580
9581         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
9582         that deals with vreg interference. Explicitly check for OP_LDADDR to be
9583         able to process the source reg.
9584
9585 2008-10-16  Martin Baulig  <martin@ximian.com>
9586
9587         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
9588
9589         * inssel.brg: Add `OP_HARD_NOP'.
9590
9591         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
9592
9593         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
9594         `OP_HARD_NOP' instruction when running inside the debugger.
9595
9596         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
9597         `OP_HARD_NOP' instruction when running inside the debugger.
9598
9599 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9600
9601         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
9602         now works. The issue with the regalloc tripping up no longer
9603         happens.
9604
9605         * simd-intrinsics.c (load_simd_vreg): Same.
9606
9607 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9608         
9609         * basic-simd.cs: Tests for new Vector8ui methods.
9610
9611 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9612
9613         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
9614         only for type. This fixes crashes where MonoInst::klass is checked
9615         for ops of type != VTYPE or OBJ.
9616
9617         * simd-intrinsics.c (load_simd_vreg): Same.
9618
9619 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
9620
9621         * mini-ops.h: Add ops for packed shuffle/max/avg and
9622         extract mask.
9623         
9624         * cpu-x86.md: Same.
9625
9626         * mini-x86.c (mono_arch_output_basic_block): Same.
9627
9628         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
9629         extract mask.
9630
9631         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
9632         to emit extract mask op.
9633
9634         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
9635         to emit word shuffles.
9636
9637 2008-10-15  Mark Probst  <mark.probst@gmail.com>
9638
9639         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
9640         the largest alignment needed by a variable, but at least
9641         sizeof(gpointer).
9642
9643 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9644
9645         * basic-simd.cs: Tests for the fixes in the last commit.
9646
9647 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9648
9649         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
9650         no longer handles STACK_PTR input.
9651
9652         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
9653
9654         * simd-intrinsics.c (load_simd_vreg): New function that works like 
9655         get_simd_vreg   but handles STACK_PTR input.
9656
9657         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
9658         as the input can be an arbitrary pointer.
9659
9660         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
9661         LDADDR local optimization directly otherwise use a store op.
9662
9663 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9664
9665         * basic-simd.cs: Tests for dup low and dup high.
9666
9667 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
9668
9669         * mini-ops.h: Add dup low and dup high ops.
9670         
9671         * cpu-x86.md: Same.
9672
9673         * mini-x86.c (mono_arch_output_basic_block): Same.
9674
9675         * simd-intrinsics.c (vector4f_intrinsics): Same.
9676
9677 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
9678
9679         * basic-simd.cs: Tests for recently added functionality.
9680
9681 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
9682
9683         * mini-ops.h: Add remaining sse1 fp ops.
9684         
9685         * cpu-x86.md: Add remaining sse1 fp ops.
9686
9687         * mini-x86.c (mono_arch_output_basic_block): Same.
9688
9689         * mini.h: Add enum for simd FP compare conditions.
9690
9691         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
9692
9693         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
9694         so the backed can generate the appropriate op.
9695
9696 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
9697         This patch squeese one more byte from the SimdIntrinsc struct.
9698
9699         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
9700         a a shift amount intead of simply or'ing it.
9701
9702         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
9703
9704         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
9705         byte so we can have an aditional flags field without increasing struct size.
9706
9707         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
9708         against the simd_supported_versions bitmask.
9709
9710         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
9711
9712 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
9713
9714         * mini.c: remove rawbuffer code (the only use here is unsafe because
9715         it takes locks during signal handling and the kernel now provides much
9716         better info in proc/pid/smaps these days).
9717
9718 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9719
9720         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
9721         OP_X86_PUSH_OBJ. Fixes #434620.
9722
9723         * objects.cs: Add a test.
9724         
9725 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
9726
9727         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
9728         that the packuswb/packusdw don't work with unsigned numbers for what
9729         would be negative numbers in signed format.
9730
9731         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
9732         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
9733
9734         * mini-ops.h: Add doubleword forms of many ops and packing ones.
9735
9736         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
9737
9738         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
9739
9740         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
9741
9742         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
9743         add more ops.
9744
9745         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
9746         version as the enum in mini.h.
9747
9748         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
9749         for sse3 ops, check the simd_version field if present. This way the code
9750         works with all versions of sse.
9751
9752 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9753
9754         * simd-intrinsics.c: Fixed intrinsic name typo.
9755
9756         * mini.h: Added missing simd exported function.
9757
9758         * basic-simd.cs: Added tests for Vector4ui.
9759         Fixed broken test for Vector16b.
9760
9761 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9762
9763         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
9764         the max length to 64.
9765
9766 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9767
9768         * method-to-ir.c: Only do the fast virtual generic method call for
9769         non-wrapper methods.
9770
9771         * mini.h, mini-trampolines.c: The new generic virtual remoting
9772         trampoline handles virtual method calls via the vtable (as done by
9773         the fast virtual generic method calls) to remoting proxies.
9774
9775         * mini.c (mono_jit_create_remoting_trampoline): For generic
9776         methods reate a generic virtual remoting trampoline.
9777
9778         * mini-amd64.h: Enable fast virtual generic method calls again.
9779
9780 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9781
9782         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
9783         restore registers when doing tail calls.
9784
9785 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9786
9787         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
9788         Vector4ui.
9789
9790 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9791
9792         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
9793
9794 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9795
9796         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
9797
9798 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9799
9800         * basic-simd.cs: Retrofit for API changes.
9801
9802 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9803
9804         * mini-ppc.c: Handle integer stack arguments for tail calls.
9805
9806 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9807
9808         * optflags-def.h: Removed sse3 optimization.
9809
9810         * driver.c: Same.
9811
9812         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
9813         sse3.
9814
9815         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
9816
9817         * mini.h: Added enumeration with simd versions.
9818
9819         * simd-intrinsics.c (emit_intrinsics): Use the new static var
9820         for detecting SSE3.
9821
9822         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
9823
9824         * mini.c (mini_init): Call mono_simd_intrinsics_init.
9825
9826 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9827
9828         * basic-simd.cs: Added tests for Vector8u and Vector16u.
9829
9830         * basic-simd.cs: Fixed test naming.
9831
9832 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9833
9834         * mini-ops.h: Added ops for packed and saturated math, shifts
9835         and packing/unpacking.
9836
9837         * cpu-x86.md: Added descriptors for the above ops.
9838
9839         * mini-x86.c: Added code to emmit the above ops.
9840
9841         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
9842
9843 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9844
9845         * aot-compiler.c (compile_method): Enable AOT for generic code.
9846
9847         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
9848
9849 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
9850
9851         * mini.c: add a workaround for a common screwup that ends up blamed
9852         to mono (other processes blocking signal delivery).
9853
9854 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9855
9856         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
9857         in the LDFLD/STFLD opcodes. Fixes #432673.
9858
9859         * iltests.il.in: Add a new test.
9860
9861 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
9862
9863         * mini-arm.c: attach the thread in unmanaged->managed transitions
9864         using delegates (bug #433148).
9865
9866 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
9867
9868        * basic-simd.cs: Use new ShuffleSel constants.
9869
9870 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
9871
9872         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
9873
9874         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
9875         only disable simd intrinsics if no sse2 is detected.
9876
9877         * optflags-def.h: Added sse3.
9878
9879         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
9880         is disabled.
9881
9882 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9883
9884         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
9885         when adding delegate-invoke wrappers.
9886
9887 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9888
9889         * Makefile.am: Reenable the simd tests.
9890
9891 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9892
9893         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
9894           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
9895           other vreg is allocated to that hreg.
9896
9897         Contributed under MIT/X11 license.
9898
9899 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
9900
9901         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
9902         yet checked in.
9903
9904 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
9905
9906         * basic-simd.cs: New test suite for SIMD intrinsics.
9907
9908         * Makefile.am: Added new tests.
9909
9910 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
9911
9912         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
9913
9914         * mini-ops.h: Same.
9915
9916         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
9917
9918         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
9919         using SSE2 aware opcodes.
9920
9921         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
9922         is enabled, this code path is only reachable if conversion ops are emmited after
9923         mono_method_to_ir.
9924
9925         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
9926
9927         This optimization saves 6 bytes per conversion against the old version.
9928
9929 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9930
9931         * aot-compiler.c (compile_method): Don't skip methods referencing 
9932         generic methods without a corresponding entry in token_info_hash, since
9933         encode_method_ref () can handle all generic methods now.
9934
9935         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
9936         generic context is set.
9937         
9938         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
9939         generic sharing of LDTOKEN.
9940
9941 2008-10-06  Mark Probst  <mark.probst@gmail.com>
9942
9943         * mini-amd64.h: Temporarily disabled fast virtual generic method
9944         calls because it breaks the System.Runtime.Remoting tests.
9945
9946 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9947
9948         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
9949
9950         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
9951         so inlining actually works.
9952         (check_inline_caller_method_name_limit): Ditto.
9953
9954 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
9955
9956         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
9957         64 bit safety (from Olaf Hering and Andreas Farber).
9958
9959 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9960         
9961         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
9962         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
9963         unused virtual call support code.
9964
9965         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
9966         
9967         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
9968         which can't use aot trampolines.
9969         (decode_patch): Don't create aot trampolines for methods which can't use
9970         them.
9971
9972         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
9973         use aot trampolines.
9974
9975         * mini.h: Bump AOT image format version.
9976         
9977 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
9978
9979         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
9980         to save_token_info () since cmethod is inflated for constrained calls.
9981
9982         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
9983
9984 2008-10-04  Andreas Farber  <andreas.faerber@web.de>
9985
9986         * Makefile.am: Add build rules for ppc64.
9987         This avoids the build failing at pedump with unresolved symbols
9988         due to lack of arch_sources. Instead it will now fail earlier
9989         due to lack of cpu-ppc64.md.
9990
9991         Contributed under MIT/X11 license.
9992
9993 2008-10-04  Mark Probst  <mark.probst@gmail.com>
9994
9995         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
9996         tail calls.
9997
9998         * iltests.il.in: Add test case for tail call with many arguments.
9999
10000 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10001
10002         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
10003         to the fast virtual generic method code until the aot case is fixed.
10004
10005 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10006
10007         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
10008
10009 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10010
10011         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
10012         thunks.
10013
10014 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10015         
10016         * simd-intrinsics.c: Forgot to add this one.
10017
10018         * mini-codegen.c: Fix macro in case SIMD is not supported.
10019
10020 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10021         
10022         This patch land initial JIT support for simd intrinsics.
10023
10024         * mini-x86.h: Added new define to make --enable_minimal work on x86.
10025
10026         * Makefile.am: Added simd-intrinsics.c
10027
10028         * simd-intrinsics.c: New file with simd instrinsic related
10029         code.
10030
10031         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
10032
10033         * cpu-x86.md: Add simd related instructions.
10034
10035         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
10036
10037         * driver.c: Added two new --regression variants.
10038
10039         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
10040
10041         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
10042
10043         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
10044         extract some complicated logic to helper functions.
10045
10046         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
10047
10048         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
10049
10050         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
10051         the specialized simplification pass.
10052
10053         * method-to-ir.c (mono_spill_global_vars): Use new macro.
10054
10055         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
10056
10057         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
10058         table.
10059
10060         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
10061         if MONO_ARCH_NEED_SIMD_BANK is defined.
10062
10063         * mini-ops.h: Added the new simd ops.
10064
10065         * mini-x86.c: Added mono_arch_xregname.
10066
10067         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
10068
10069         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
10070
10071         * mini-x86.h: Define simd related MONO_ARCH macros.
10072
10073         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
10074
10075         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
10076
10077         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
10078         MONO_CLASS_IS_SIMD to deal with simd related IR.
10079
10080         * mini.h (MonoInst): Added spill_var to the backend union.
10081
10082         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
10083
10084         * mini.h: Added forward declarations of the new simd fuctions.
10085
10086         * optflags-def.h: Added new optimization names SIMD.
10087
10088         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
10089
10090         * regalloc.h: Added support for working with 3 register banks.
10091
10092         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
10093
10094         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
10095
10096 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
10097
10098         * mini-exceptions.c: remove 64 bit related ifdef clutter.
10099
10100 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10101
10102         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
10103         instead of one on 64 bit systems.
10104
10105         * method-to-ir.c: Remove unused includes.
10106
10107 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
10108
10109         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
10110         cfg->used_int_regs, since the two are different on arm.
10111
10112 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10113
10114         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
10115         mono_method_get_vtable_index() to get the vtable index.
10116
10117 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10118
10119         * method-to-ir.c (mono_method_to_ir2): Don't create native
10120         wrappers for array methods, because they're never called (and if
10121         they were called they wouldn't work).
10122
10123 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10124
10125         * method-to-ir.c (mono_method_to_ir2): Array methods are
10126         special-cased and must not be invoked indirectly via the (M)RGCTX
10127         when generic sharing is turned on.  Fixes #431413.
10128
10129 2008-10-01  Mark Probst  <mark.probst@gmail.com>
10130
10131         * method-to-ir.c: When generic sharing is active, call
10132         non-interface virtual generic methods via the standard trampoline.
10133
10134         * mini-trampolines.c: Handle virtual generic shared methods.
10135
10136         * mini.h, mini-x86.c, mini-x86.h: New argument for
10137         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
10138         method thunks and which is the trampoline to call if the lookup
10139         fails.  Enable the virtual generic method thunk for x86.
10140
10141         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
10142         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
10143         argument but assert that it's NULL, because these archs don't yet
10144         implement the virtual generic method thunk.  Changes in the IMT
10145         thunk data structures.
10146
10147 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
10148
10149         * aot-compiler.c (emit_globals): Avoid invalid characters in
10150         the static linking symbol.
10151
10152         * objects.cs: Add a test for the range check optimization. Fix warnings.
10153
10154         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
10155         optimization from the current JIT.
10156
10157         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
10158         later in decompose_array_access_opts () to allow more optimizations.
10159
10160         * method-to-ir.c (mono_handle_soft_float): Rename this to 
10161         mono_decompose_soft_float () for consistency.
10162
10163         * mini-ops.h: Fix arguments of OP_STRLEN.
10164
10165         * method-to-ir.c (save_cast_details): Extract the cast details saving code
10166         into a separate function.
10167         (reset_cast_details): Ditto.
10168         (handle_unbox): Save cast details. Fixes #431254.
10169
10170         * method-to-ir.c: Remove some obsolete FIXMEs.
10171
10172 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10173
10174         * ir-emit.h (alloc_dreg): Write a warning before crashing.
10175
10176 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10177
10178         * mini-codegen.c: More work on macros to make them
10179         ready for multiple regbanks.
10180
10181 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10182
10183         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
10184
10185         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
10186
10187 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10188
10189         * mini-codegen.c (mono_spillvar_offset): Proper support for
10190         multiple regbanks.
10191
10192 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
10193
10194         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
10195         the stack overflow changes.
10196
10197 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10198
10199         * mini-codegen.c: Make all bank macros depend on reg_bank.
10200
10201         * mini-codegen.c (mono_local_regalloc): Make free mask
10202         initialization regbank aware.
10203
10204 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10205
10206         * mini-codegen.c (mono_local_regalloc): Extract callee
10207         mask selection to a function and make it regbank aware.
10208
10209 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
10210
10211         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
10212         code to deal with many regbanks.
10213
10214 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
10215
10216         * mini-codegen.c: More fp->regbank changes.
10217
10218 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
10219
10220         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
10221         of a hardcoded constant.
10222
10223 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
10224
10225         * method-to-ir.c (type_from_stack_type): Fix typo.
10226
10227 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
10228
10229         * mini-ia64.c (emit_move_return_value): Convert float return values to
10230         double.
10231
10232         * objects.cs: Add a new test.
10233         
10234         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
10235         VARARG methods to fix an assert later.
10236
10237         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
10238         end so it at least compiles.
10239
10240 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
10241
10242         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
10243
10244 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
10245
10246         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
10247         optimization to a new function (emit_optimized_ldloca_ir) and enable
10248         it for both ldloca and ldloca_s.
10249
10250 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
10251
10252         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
10253         gshared CASTCLASS code.
10254
10255         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
10256         amd64, where the libc stack unwinder encounters stack frames referring to
10257         native code in unmapped memory.
10258
10259         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
10260         sharing.
10261
10262         * generics.cs: Add new test.
10263
10264 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
10265
10266         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
10267         add a check that one of the ARM_FPU_ constants is defined.
10268
10269         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
10270         
10271         * mini-exceptions.c: Fix build on non-altstack platforms.
10272
10273         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
10274         sharing of vtypes.
10275
10276         * ir-emit.h: Add a comment to NEW_PCONST.
10277
10278         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
10279
10280         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
10281
10282         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
10283         after the changes to MonoJitDomainInfo.
10284
10285 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10286
10287         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
10288
10289 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10290
10291         * mini-ppc.c: Compiler warning fixes.
10292
10293 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10294
10295         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
10296         for pinvokes.
10297
10298 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10299
10300         * exceptions-ppc.c, mini-ppc.h: Compile
10301         mono_arch_handle_altstack_exception() on Darwin, too.
10302
10303 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10304
10305         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
10306         work on archs which don't have generic sharing implemented, only
10307         without the vtable_arg.
10308
10309 2008-09-26  Mark Probst  <mark.probst@gmail.com>
10310
10311         * mini.c: Added comment explaining why delegate ctor icall
10312         wrappers are compiled.
10313
10314 2008-09-26  Mark Probst  <mark.probst@gmail.com>
10315
10316         * mini.c: Don't produce trampolines to delegate ctor icall
10317         wrappers but compile them upfront.
10318
10319 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
10320
10321         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
10322         runtime-set function when going back to managed code. Currently this
10323         is used to set back the protection on the soft ovf pages and/or to
10324         throw the stack overflow exception that happened in unmanaged code.
10325
10326 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
10327
10328         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
10329         runtime-set function when going back to managed code. Currently this
10330         is used to set back the protection on the soft ovf pages and/or to
10331         throw the stack overflow exception that happened in unmanaged code.
10332
10333 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
10334
10335         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
10336         the support code for restoring stack protection after stack overflows
10337         that happen in unmanaged code. Don't set the exec permission on the
10338         soft overflow area.
10339
10340 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
10341
10342         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
10343         delegate->method_ptr is set. Fixes #428054.
10344
10345 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10346
10347         * tests.cs: Rename to ratests.cs.
10348
10349         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
10350         emit_get_rgctx_... functions.
10351
10352 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10353
10354         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
10355
10356 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10357
10358         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
10359         before asserting that method is sharable.
10360
10361 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10362
10363         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
10364         whether method needs a static RGCTX wrapper used instead of
10365         complex conditions.
10366
10367         * generic-sharing.c, mini.h: A few functions moved to
10368         metadata/generic-sharing.c.
10369
10370 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10371
10372         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
10373         Generic code sharing for value types, which essentially means
10374         treating value type methods like static methods.  The RGCTX is
10375         passed in the same way.
10376
10377 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10378
10379         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
10380         opcode when creating multi-dimensional arrays of open types.
10381
10382         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
10383         open generic types.
10384
10385         * generics.cs: Add a test.
10386
10387         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
10388
10389 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10390
10391         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
10392
10393         * mini.c (mini_method_compile): Set it when running under the debugger. 
10394
10395         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
10396         vreg optimization if the flag is set.
10397
10398         * driver.c (mono_main): Add --attach= option to pass options to
10399         the attach agent.
10400
10401         * mini.c (sigquit_signal_handler): Start the attach agent.
10402
10403         * ssapre.c: Disable this to save space since it is not yet ported to
10404         linear IR.
10405
10406         * regalloc2.c: Disable this to save space.
10407
10408         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
10409
10410 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
10411
10412         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
10413         the -v option useful again.
10414
10415 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10416
10417         * mini-amd64.c (mono_arch_output_basic_block): Add support for
10418         --break-at-bb.
10419
10420         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
10421         arrays of arrays. Fixes #428406.
10422
10423         * method-to-ir.c (mini_emit_castclass): Ditto.
10424
10425         * objects.cs: Add new test.
10426         
10427 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
10428
10429         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
10430         was wrong at it choked against target_type_is_incompatible for byref types.
10431
10432 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
10433
10434         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
10435         places.
10436
10437 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
10438
10439         * mini-exceptions.c: update a few more exceptions-related counters.
10440
10441 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
10442
10443         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
10444         new functions to allocate from persistent mempools.
10445
10446 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
10447
10448         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
10449         multiple register banks in the future.
10450
10451         * mini-codegen.c (mono_local_regalloc): Fix a warning.
10452
10453 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
10454
10455         * mini.c (type_to_eval_stack_type): Remove duplicated function.
10456
10457         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
10458
10459         * mini.h: Export type_to_eval_stack_type.
10460
10461         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
10462         is only ins->klass of byref types.
10463
10464 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10465
10466         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
10467         (mini_emit_memcpy2): Ditto.
10468
10469         * mini-amd64.c: Fix a warning.
10470
10471 2008-09-21  Mark Probst  <mark.probst@gmail.com>
10472
10473         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
10474         linking.
10475
10476 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
10477
10478         * method-to-ir.c: Extract stloc micro-optimization to a
10479         function and apply it to all cases.
10480
10481 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10482
10483         * method-to-ir.c: Don't fail generic code sharing in cases we
10484         already support.
10485
10486 2008-09-18  Mark Probst  <mark.probst@gmail.com>
10487
10488         * mini-ppc.c: Handle structs in tailcalls on Darwin.
10489
10490 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
10491
10492         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
10493         implementation.
10494
10495 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
10496
10497         * trace.c: make tracing more useful and correct, with per-thread
10498         id and indent info.
10499
10500 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10501
10502         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
10503         doing a method call and the argument is an R4.
10504
10505 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
10506
10507         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
10508         generic methods.
10509
10510 2008-09-13  Mark Probst  <mark.probst@gmail.com>
10511
10512         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
10513
10514 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
10515
10516         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
10517         (MONO_JUMP_TABLE_FROM_INS): Ditto.
10518
10519 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
10520
10521         * driver.c: Add a --agent argument (not supported yet) to load managed
10522         agent assemblies before loading the main assembly, similarly to how the
10523         Java VM handles agents.
10524
10525 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10526
10527         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
10528         function to do stack layout of local variables.
10529
10530 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10531
10532         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
10533         calculation.
10534
10535 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
10536
10537         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
10538         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
10539         JIT if DISABLE_JIT is defined.
10540
10541         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
10542         defined.
10543
10544 2008-09-10  Mark Probst  <mark.probst@gmail.com>
10545
10546         * iltests.il.in: Disable the fconv test on PPC (the result is
10547         undefined according to ECMA).
10548
10549 2008-09-10  Mark Probst  <mark.probst@gmail.com>
10550
10551         * iltests.il.in: Enable tail call tests for PPC.
10552
10553         * mini.h: Add variable for storing incoming valuetype argument
10554         addresses for tail calls.
10555
10556         * mini-ppc.c: Implement valuetype arguments and return values for
10557         tailcalls on Linux.
10558
10559 2008-09-09  Mark Probst  <mark.probst@gmail.com>
10560
10561         * mini-ppc.c: Partially implement tail calls (struct arguments and
10562         return values not supported).
10563
10564         * method-to-ir.c: Enable tail calls on PPC.
10565
10566 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
10567
10568         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
10569         runtime-invoke wrappers to work around the problem of them getting
10570         assigned to a random class.
10571
10572         * aot-runtime.c (mono_aot_get_method): Ditto.
10573         
10574 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
10575
10576         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
10577         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
10578
10579 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10580
10581         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
10582         until they're implemented properly.
10583
10584         * exceptions-ppc.c: Use arch-independent exception-handling code
10585         instead of custom one.
10586
10587         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
10588         for Linear IR.
10589
10590         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
10591
10592         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
10593         applies when __powerpc__ is defined.
10594
10595 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
10596
10597         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
10598         methods to their code to avoid computing the full name of wrappers and
10599         doing a lookup in a string hash table.
10600
10601 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
10602
10603         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
10604         we identify bblocks before method_to_ir () is ran.
10605
10606         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
10607         Also avoid optimizing branches pointing to themselves.
10608
10609         * mini.c (mini_method_compile): Ditto. Fixes #422947.
10610
10611 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
10612
10613         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
10614
10615 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
10616
10617         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
10618         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
10619         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
10620         'buf'.
10621
10622         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
10623         jumped to the same entry in plt_jump_table.
10624
10625 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
10626
10627         * method-to-ir.c (initialize_array_data): Handle field with RVA from
10628         dynamic images.
10629
10630 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10631
10632         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
10633         other assignment can be if converted. Saves 1.5% on corlib size and fixes
10634         #421807.
10635
10636 2008-08-29  Geoff Norton  <gnorton@novell.com>
10637
10638         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
10639         segment, and doesn't properly handle .space as .text.  Fixes
10640         AOT Mach/ARM
10641
10642 2008-08-29  Geoff Norton  <gnorton@novell.com>
10643
10644         * mini.c: Disable the mach exception handler when running on 
10645         ARM
10646
10647 2008-08-29  Geoff Norton  <gnorton@novell.com>
10648
10649         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
10650         globals on Darwin/ARM
10651
10652 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10653
10654         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
10655         since too many things depend on it. Instead, call 
10656         mono_runtime_set_no_exec ().
10657         
10658         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
10659         the new JIT.
10660
10661         * aot-compiler.c: Add an 'asm-only' AOT option.
10662
10663         * mini.c: Avoid initializing the runtime when doing AOT compilation.
10664                 
10665         * aot-compiler.c (compile_method): Disable gshared support for now as it
10666         doesn't yet work.
10667
10668 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
10669
10670         * mini-amd64.h : Fix a compiler warning.
10671
10672         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
10673           Changed to use a callback function to retrieve the unwind info.
10674           This avoids problems observed when code blocks were removed by
10675           unloading an app domain.
10676
10677         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
10678           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
10679           to work properly.
10680
10681         Contributed under MIT/X11 license.
10682
10683 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
10684
10685         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
10686           case to keep the stack aligned to 8.
10687
10688         Contributed under MIT/X11 license.
10689
10690 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
10691
10692         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
10693         avoid repeated linear searches.
10694
10695 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10696
10697         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
10698         methods it can't handle.
10699         
10700         * aot-compiler.c (add_method): Avoid adding a method twice.
10701         (add_wrappers): Add runtime invoke wrappers for all methods.
10702
10703         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
10704         function to create an aot-compatible version of this trampoline.
10705
10706         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
10707
10708 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10709
10710         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
10711
10712         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
10713         with a generic sharing failure.
10714
10715         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
10716
10717         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
10718         CEE_RETHROW. Fixes #419634.
10719
10720         * mini.c (mono_method_to_ir): Ditto.
10721
10722         * exceptions.cs: Add a new test.
10723         
10724         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
10725         to mono_type_stack_size_internal () since some callers might not pass in
10726         an rgctx.
10727
10728         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
10729         instrument_prolog. Fixes #419878.
10730
10731         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
10732         doubles in soft float mode volatile.
10733
10734 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10735
10736         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
10737
10738         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
10739         to handle soft float correctly.
10740
10741         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
10742         the fast path.
10743
10744         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
10745
10746         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
10747         to sp, since the generics catch code requires it.
10748
10749         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
10750         copying.
10751
10752         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
10753         mono_arch_emit_imt_argument ().
10754
10755         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
10756
10757         * mini-arm.c tramp-arm.c: Generic sharing updates.
10758
10759 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10760
10761         * mini-arm.c: Fix the arm build.
10762
10763         * generic-sharing.c (mini_type_get_underlying_type): New helper function
10764         handling enums, generic instances and generic sharing.
10765         (mini_type_stack_size_full): Ditto.
10766
10767         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
10768         
10769         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
10770
10771         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
10772
10773         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
10774         trampolines.
10775
10776         * mini-arm.c: Various small generic sharing changes.
10777
10778         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
10779         this for x86.
10780         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
10781         custom code.
10782
10783         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
10784         helper function to return a generic class init trampoline.
10785
10786         * method-to-ir.c mini.c: Use it.
10787         
10788         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
10789         arch-specfic function to return a generic class init trampoline.
10790
10791         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
10792         the GENERIC_CLASS_INIT custom code.
10793
10794         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
10795         a fatal error, not a sharing failure.
10796
10797         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
10798         needed.
10799
10800         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
10801         trampoline argument from MONO_ARCH_VTABLE_REG.
10802
10803         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
10804         order of the arguments to the C trampoline: pass 'slot' as the trampoline
10805         argument, and pass the vtable in VTABLE_REG.
10806
10807         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
10808         order of the arguments to the C trampoline: pass 'slot' as the trampoline
10809         argument, and pass the vtable in VTABLE_REG.
10810         (mono_arch_create_trampoline_code_full): Remove some special casing for
10811         the rgctx fetch trampoline.
10812
10813         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
10814         Fixes #419273.
10815
10816         * iltests.il: Add a test for it.
10817
10818 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10819
10820         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
10821
10822         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
10823         no longer needed.
10824
10825         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
10826         use mono_jit_info_table_find () to avoid recursion.
10827         (mono_delegate_trampoline): Add a sync wrapper here.
10828
10829         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
10830         here.
10831
10832         * mini.c (mono_method_to_ir): Ditto.
10833         
10834         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
10835         add_sync_wrapper argument. Don't add a sync wrapper here.
10836         (mono_create_jump_trampoline): Don't add a sync wrapper here.
10837
10838         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
10839         
10840 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10841
10842         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
10843           of nonvolatile registers back from MonoContext to CONTEXT.
10844
10845         Contributed under MIT/X11 license.
10846
10847 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10848
10849         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
10850           arguments on Winx64 there are only 4 argument registers.  For this
10851           logic to work the last argument must be pulled from the stack.  
10852
10853         Contributed under MIT/X11 license.
10854
10855 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10856
10857         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10858
10859         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
10860         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
10861         encode/decode_method_ref ().
10862
10863         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
10864
10865         * aot-runtime.c (decode_patch): Ditto.  
10866
10867         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
10868         MONO_PATCH_INFO_METHOD.
10869
10870         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
10871         MonoGenericJitInfo.
10872
10873         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
10874         MonoGenericJitInfo.
10875
10876         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
10877
10878         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
10879         one from the caller.
10880
10881         * aot-runtime.c (decode_generic_inst): New function to decode and
10882         return a interned generic inst.
10883         (decode_klass_ref): Use it.
10884         (decode_method_ref): Ditto.
10885
10886         * aot-compiler.c (emit_exception_debug_info): Save 
10887         jinfo->has_generic_jit_info too.
10888
10889 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
10890
10891         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
10892
10893         * iltests.il.in: Add a test for fconv_to_i.
10894
10895         * liveness.c: Disable the liveness2 pass for now to save space.
10896
10897         * regalloc2.c: Include mempool-internals.h to fix warnings.
10898
10899         * aot-compiler.c (encode_method_ref): Encode the context of generic
10900         instance methods.
10901
10902         * aot-runtime.c (decode_method_ref): Inflate generic methods using
10903         the context saved in the aot file.
10904
10905         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10906
10907         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
10908
10909         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
10910         volatile so they won't be optimized away.
10911
10912 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
10913
10914         * ssa.c:
10915         * ssa2.c:
10916         * mini.c:
10917         * regalloc2.c:
10918         * dominators.c: Remove duplicated functions that now are in
10919         mempool-internals.h.
10920
10921 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
10922
10923         * aot-compiler.c: Fix warnings.
10924
10925         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
10926
10927         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
10928
10929         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
10930         as the patch type.
10931
10932         * mini.c (mono_resolve_patch_target): Ditto.
10933         
10934         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
10935         (encode_klass_ref): Add support for encoding VARs/MVARs.
10936
10937         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
10938
10939         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
10940         the handling of the got entries into a separate 'decode_got_entry' function.
10941         Add support for RGCTX_FETCH.
10942
10943         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
10944         clobbered by the trampoline code.
10945
10946         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
10947         not clobbered by the indirect calling code.
10948
10949 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
10950
10951         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
10952         to fix the build.
10953
10954 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
10955
10956         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
10957         signature using the compilation mempool otherwise we would leak it.
10958
10959 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
10960
10961         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
10962         mono_emit_abs_call ().
10963
10964         * patch-info.h: Add GENERIC_CLASS_INIT.
10965
10966         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
10967
10968         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
10969         as their target as a near call.
10970
10971         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
10972         ABS handling code.
10973         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
10974
10975         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
10976         call to a runtime function described by a patch.
10977
10978         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
10979         mono_emit_abs_call, this has the advantage that the ABS handling code in
10980         mono_codegen () can handle them both, and can handle other stuff in the
10981         future without additional code.
10982
10983         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
10984         entry.
10985         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
10986         abs addresses.
10987
10988         * mini.h: Add missing bblock related prototypes.
10989
10990         * mini.h (MonoCompile): Remove unused reverse_inst_list and
10991         reverse_inst_list_len fields.
10992
10993         * mini.c: Refactor this file a bit by moving branch optimizations to 
10994         branch-opts.c.
10995
10996         * method-to-ir.c: Merge generic sharing changes missed earlier.
10997
10998         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
10999
11000         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
11001         shared patches. Process METHODCONST as a shared patch.
11002
11003         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
11004         as it crashes on the 2.0 mscorlib.
11005
11006         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
11007         to cause crashes.
11008         
11009         * aot-compiler.c: Use is_plt_patch () in a few additional places.
11010         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
11011         by IMT.
11012
11013         * aot-compiler.c: Reorganize the got handling code to be a bit more
11014         understandable.
11015
11016 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
11017
11018         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
11019         mono_patch_info_equals/hash, and use it to massively simplify
11020         get_plt_index ().
11021
11022         * mini.c (mono_patch_info_hash): Simplify this and add support for
11023         more patch types.
11024
11025         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
11026
11027         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
11028         handling code, since an offset is not enough to identify a trampoline.
11029
11030         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
11031
11032 2008-08-17  Mark Probst  <mark.probst@gmail.com>
11033
11034         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
11035
11036         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
11037
11038         * mini-ops.h: Argument and result types for OVF_CARRY ops.
11039
11040         * decompose.c: PPC decompositions for various ops.
11041
11042         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
11043
11044 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
11045
11046         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
11047         call the generic trampoline code using a call, instead of a jump, to
11048         remove some special casing from the generic trampoline code.
11049
11050         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
11051         (mono_codegen): Ditto.
11052
11053         * aot-compiler.c aot-runtime.c: Ditto.
11054
11055         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
11056
11057         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
11058         helper function to find the offset corresponding to a lazy fetch trampoline.
11059
11060         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
11061         when doing generic sharing.
11062
11063         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
11064         places.
11065         
11066         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
11067         mini-trampolines.c to be with the other trampoline creation functions.
11068
11069         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
11070         as it is equal to method->signature in most cases, add a 
11071         mono_emit_method_call_full variant which takes a signature and an imt
11072         argument as well.
11073
11074 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
11075
11076         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
11077         to this function, since it could be computed easily from the method 
11078         argument.
11079         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
11080         more.
11081
11082         * method-to-ir.c mini.c: Remove references to 
11083         compile_generic_method_wo_context.
11084
11085         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
11086         generic method calls.
11087         
11088         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
11089         dimensional non-szarrays.
11090
11091         * mini.c (mini_init): Register mono_array_new_1.
11092
11093         * jit-icalls.c (mono_array_new_1): New jit icall.
11094
11095         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
11096         pointing to the method.
11097
11098         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
11099         method addresses belonging to METHOD_JUMP patches in the 
11100         jump_target_got_slot_hash.
11101         (mono_aot_load_method): Ditto.
11102
11103         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
11104         METHOD_JUMP patches.
11105
11106         * mini.c (mini_create_jit_domain_info): New helper function which 
11107         initializes/frees domain->runtime_info.
11108         (mini_free_jit_domain_info): Ditto.
11109         (mini_init): Install the domain hook functions with the runtime.
11110
11111         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
11112         information maintained by the JIT.
11113
11114         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
11115         insertion into jump_table_hash into mono_codegen (), also implement proper
11116         locking.
11117
11118         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
11119         tail calls, it is already done by the aot code.
11120         
11121         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
11122         mechanism on amd64.
11123
11124         * iltests.il.in: Make the jmp test a bit more complex.
11125
11126         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
11127         generic instances which doesn't have a token.
11128
11129         * aot-runtime.c (decode_method_ref): Ditto.
11130         
11131         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
11132         can handle this case now.
11133         (handle_box): Ditto.
11134
11135 2008-08-15  Geoff Norton  <gnorton@novell.com>
11136
11137         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
11138         debugging check.
11139
11140 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
11141
11142         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
11143         calling generic methods.
11144
11145         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
11146
11147         * aot-runtime.c (decode_patch_info): Ditto.
11148
11149         * mini.c (mono_resolve_patch_target): Ditto.
11150         
11151         * patch-info.h: Add METHOD_RGCTX.
11152
11153         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
11154
11155 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
11156
11157         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
11158         arguments in registers.
11159
11160         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
11161         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
11162
11163         * mini.c (mini_method_compile): Abort aot compilation for generic
11164         methods if generic sharing is disabled.
11165         
11166         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
11167         an mrgctx.
11168
11169         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
11170         requiring an mrgctx.
11171
11172         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
11173         store instructions when converting a vcall to a normal call.
11174
11175         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
11176         mono_arch_find_jit_info.
11177
11178 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
11179
11180         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
11181         avoid calling mono_method_full_name () for every method even if the
11182         env var is not set.
11183         (check_inline_caller_method_name_limit): Ditto.
11184
11185 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
11186
11187         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
11188         assemblies in one run.
11189
11190         * aot-compiler.c (mono_compile_assembly): Only print out a count of
11191         skipped methods if it is not 0.
11192
11193         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
11194
11195 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
11196
11197         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
11198           MONO_ARCH_HAVE_UNWIND_TABLE.
11199
11200         Contributed under MIT/X11 license.
11201
11202 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
11203
11204         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
11205           from default optimizaton list on Winx64.
11206
11207         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
11208
11209         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
11210           the LMF from the MonoJitTlsData structure.
11211
11212         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
11213
11214         Contributed under MIT/X11 license.
11215
11216 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
11217
11218         * mini.c (sigsegv_signal_handler): Fix the build.
11219
11220         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
11221         assembly->aot_module.
11222
11223         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
11224         hash table. This simplifies and speeds up a lot of code, and fixes support
11225         for .netmodules.
11226
11227         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
11228         with the runtime.
11229
11230         * mini-exceptions.c: Ditto.
11231         
11232         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
11233         'native_offset' argument, since these are computed in the 
11234         mono_find_jit_info () function.
11235
11236         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
11237         is used by exceptions-ppc.c.
11238
11239         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
11240         mono_arch_find_jit_info ().
11241         
11242         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
11243         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
11244         generic code in mini-exceptions.c.
11245
11246 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
11247
11248         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
11249
11250         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
11251         
11252         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
11253         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
11254         called while holding the loader lock. Fixes #415608.
11255         (mono_aot_get_method_from_token_inner): Ditto.
11256
11257 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
11258
11259         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
11260         to reduce differences between this and the generic implementation in
11261         mini-exceptions.c.
11262         (ves_icall_get_frame_info): Ditto.
11263
11264         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
11265
11266         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
11267         longer neccesarry.
11268
11269         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
11270         mono_arch_get_call_filter () and make it non-static, for consistency with the
11271         other architectures.
11272
11273 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
11274
11275         * mini.c:
11276         * local-propagation.c:
11277         * mini-x86.c: Correct the name of arch defines.
11278
11279 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
11280
11281         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
11282         NO_EMULATE_LONG_SHIFT_OPS define.
11283
11284 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
11285
11286         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
11287         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
11288
11289         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
11290         MACH fixes. Merged from the 2.0 branch.
11291
11292         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
11293
11294         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
11295         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
11296
11297         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
11298
11299         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
11300         mono_marshal_get_native_wrapper () signature changes.
11301
11302 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
11303
11304         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
11305         conversion bug under arm.
11306
11307 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
11308
11309         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
11310
11311         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
11312         with overflow checking.
11313
11314 2008-08-05  Marek Habersack  <mhabersack@novell.com>
11315
11316         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
11317         to the genmdesc.pl file
11318
11319 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
11320
11321         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
11322         arg_array in the soft-float versions of the LOAD/STORE macros.
11323
11324         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
11325         implementation.
11326
11327         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
11328
11329 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
11330
11331         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
11332         a float HFA. Fixes #413621.
11333
11334 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
11335
11336         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
11337         frame_size to args_size. Fixes build.
11338
11339 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
11340
11341         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
11342         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
11343
11344         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
11345         the stack are not unaligned. Fixes #413247.
11346         
11347 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
11348
11349         * mini.c: update jitted methods performance counters.
11350
11351 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
11352
11353         * mini-exceptions.c: increase the exceptions thrown performance
11354         counter in mono_handle_exception ().
11355
11356 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
11357
11358         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
11359         can work with netmodules.
11360
11361 2008-07-28  Geoff Norton  <gnorton@novell.com>
11362
11363         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
11364         regression tests.
11365
11366 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
11367
11368         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
11369         correct place.
11370
11371 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
11372
11373         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
11374           The float param registers and other param registers must be the 
11375           same index on Windows x64.
11376
11377         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
11378           ArgValuetypeAddrInIReg argument case.  Setting the argument
11379           op to OP_VTARG_ADDR (OP_REGOFFSET)).
11380
11381         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
11382           variable computed above as the copy length for arguments of storage
11383           type ArgValuetypeAddrInIReg.
11384
11385         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
11386           ArgValuetypeAddrInIReg argument case.  This case will rely on
11387           mono_arch_emit_outarg_vt to emit the correct code later in the process.
11388
11389         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
11390           a 32 byte stack allocation for all calls.  We will omit the adjustment for
11391           jump and tail call instructoins as they do not follow the typical call behavior.
11392
11393         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
11394           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
11395           local variable and pass the local variable by reference to the called method.
11396
11397         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
11398           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
11399           of a struct is passed in a register it must be saved with the other
11400           volatile argument on the stack.
11401
11402         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
11403           frame pointer the stack adjustment value must be saved to the unwind 
11404           info structure.
11405
11406         Contributed under MIT/X11 license.
11407
11408 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
11409
11410         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
11411         which got lost in the merge.
11412
11413 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
11414
11415         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
11416         build.
11417
11418         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
11419         
11420         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
11421         icalls, since they won't be patched.
11422
11423         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
11424         different code sequence when running under valgrind to prevent some valgrind
11425         errors.
11426
11427         * iltests.il.in: Add new regression test.
11428
11429         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
11430         end with a throw.
11431
11432         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
11433         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
11434
11435         * iltests.il.in: Add new test.
11436
11437         * aot-compiler.c: Fix some warnings.
11438
11439         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
11440         Fixes #412494.
11441
11442 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
11443
11444         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
11445         (mini_usage_jitdeveloper): Add a missing --wapi option.
11446
11447 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
11448
11449         * mini-codegen.c: Simplify the is_fp macros.
11450         (free_up_ireg): Remove, use free_up_reg instead.
11451         (free_up_reg): Fix the fp case.
11452
11453 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
11454
11455         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
11456         lowered earlier.
11457
11458         * exceptions-x86.c: Merge some changes which seemed to have got lost
11459         in the linear-ir merge.
11460
11461         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
11462
11463         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
11464         long vreg volatile even if the variable was already created.
11465
11466         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
11467         volatile variables.
11468
11469 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
11470
11471         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
11472
11473         * mini.c (mono_jit_compile_method_inner): Add support for 
11474         MONO_EXCEPTION_BAD_IMAGE.
11475
11476         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
11477         mini_method_get_context () returns NULL. Fixes #356531.
11478
11479         * mini.c (mono_method_to_ir): Ditto.
11480         
11481         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
11482         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
11483
11484 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
11485
11486         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
11487         in the LDFTN implementation.
11488
11489 2008-07-25  Mark Probst  <mark.probst@gmail.com>
11490
11491         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
11492         code, patch calls to icalls, too, even if they're not in the
11493         shared generic code hash.  Fixes #411962.
11494
11495 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
11496
11497         * cpu-x86.md: Increase the length of the fcall opcodes.
11498
11499         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
11500         calls returning floats.
11501
11502         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
11503         on NEWARR.
11504         
11505         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
11506         missed earlier.
11507
11508         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
11509         into the domain->method_code_hash.
11510
11511         * aot-compiler.c: Fix win32 build.
11512
11513         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
11514         
11515         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
11516         gshared NEWARR implementation.
11517
11518         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
11519
11520         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
11521         can be used outside of method_to_ir.
11522
11523         * mini.h (MonoCompile): Add arg_types field.
11524
11525         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
11526         
11527         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
11528         the values of the local arg_array and param_types array.
11529
11530 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
11531
11532         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
11533         got accesses might only get generated later when NEWOBJ is decomposed.
11534         
11535         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
11536         looking up the native code of the target method when a delegate is called
11537         for the first time.
11538
11539         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
11540         optimization.
11541
11542         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
11543
11544         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
11545         AOT work on platforms without a working dlsym implementation.
11546
11547         * mini.h: Bump AOT image format version.
11548         
11549 2008-07-24  Mark Probst  <mark.probst@gmail.com>
11550
11551         * mini-exceptions.c: Free a MonoType with
11552         mono_metadata_free_type() instead of g_free().
11553
11554         * aot-runtime.c: Free a MonoType.
11555
11556 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
11557
11558         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
11559         optimization.
11560
11561         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
11562         fp stack on x86.
11563
11564 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
11565         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
11566         profiler hook.
11567
11568 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
11569
11570         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
11571         NEWOBJ calls on valuetypes.
11572
11573         * iltests.il.in: Add new test.
11574
11575         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
11576
11577 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
11578
11579         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
11580         is no longer needed.
11581
11582         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
11583         non register sized integer arguments.
11584         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
11585         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
11586         emit_memcpy2 ().
11587
11588         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
11589         CEE_MONO_RETOBJ.
11590         
11591         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
11592         two a binop with different sized arguments is emitted.
11593
11594         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
11595         instruction in the ins==NULL case.
11596
11597 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
11598
11599         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
11600
11601         * mini-x86.c: Fix osx build.
11602
11603         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
11604         opcodes as well.
11605
11606         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
11607         instruction for non int sized variables.
11608
11609         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
11610         implementation.
11611
11612 2008-07-23  Robert Jordan  <robertj@gmx.net>
11613
11614         * method-to-ir.c: Fix MSVC build.
11615
11616 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
11617
11618         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
11619         a non int sized type, widen it to an int since newer versions of gcc seem to
11620         generate code which needs this.
11621
11622         * ssa2.c abcremoval2.c: Fix warnings.
11623
11624         * *: Merge the Linear IR branch.
11625
11626         The original branch is at trunk/branches/vargaz/mini-linear-il, and
11627         the ChangeLog file there describes all the changes done over the years. 
11628         Further documentation can be found at www.mono-project.com/Linear_IL.
11629
11630 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
11631
11632         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
11633           The float param registers and other param registers must be the 
11634           same index on Windows x64.
11635
11636         Contributed under MIT/X11 license.
11637
11638 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
11639
11640         * mini.c: Make the previous fix GC safe.
11641
11642 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
11643
11644         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
11645
11646 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
11647
11648         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
11649           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
11650           ArgValuetypeAddrInIReg instead.
11651
11652         Contributed under MIT/X11 license.
11653
11654 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
11655
11656         * mini-codegen.c (get_register_spilling): Fix a warning.
11657
11658 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
11659
11660         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
11661         for types which the initialization fails. Raises the provided exception
11662         at the right stop after cleanup.
11663
11664 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
11665
11666         * aot-compiler.c: Free most of the memory allocated during compilation.
11667
11668         * mini.c (mini_parse_debug_options): Fix a leak.
11669         
11670         * mini.c (mini_method_compile): Don't add the method to the jit info tables
11671         during aot compilation.
11672
11673 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
11674
11675         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
11676         it has too much register pressure.
11677
11678 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
11679
11680         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
11681
11682 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
11683
11684         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
11685         on x86.
11686
11687         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
11688         on amd64 similar to the way it is done on arm.
11689
11690         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
11691
11692         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
11693         consistency, normalize error messages, avoid loading aot-only modules in
11694         normal mode.
11695
11696         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
11697         for consistency.
11698
11699         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
11700
11701 2008-07-11  Martin Baulig  <martin@ximian.com>
11702
11703         * debug-debugger.h
11704         (MonoDebuggerInfo): Add `interruption_request'.
11705
11706 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
11707
11708         * aot-compiler.c (emit_plt): Remove some dead code.
11709
11710         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
11711
11712         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
11713         return the plt info offset belonging to a given plt entry.
11714
11715         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
11716         mono_aot_get_plt_info_offset.
11717         
11718         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
11719         similar to the amd64 code by makeing jumps through a separate jump table 
11720         instead of embedding the jump addresses into the code.
11721
11722 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
11723
11724         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
11725         method.
11726
11727 2008-07-10  Martin Baulig  <martin@ximian.com>
11728
11729         * mini.c (mini_method_compile): Disable generics sharing when
11730         running in the debugger.
11731
11732 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
11733
11734         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
11735
11736         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
11737         the local register allocator from running out of registers on x86 when 
11738         using aot.
11739
11740 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
11741
11742         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
11743         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
11744         C4146.
11745
11746         Contributed under MIT/X11 license.
11747
11748 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
11749
11750         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
11751         speed up the assembler.
11752
11753 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
11754
11755         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
11756         support.
11757
11758         * mini.c: Move the soft float handling macros a bit earlier, add 
11759         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
11760         place.
11761
11762         * mini.h: Add prototype for mono_arch_fixup_jinfo.
11763
11764         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
11765         read-only to help catch code allocation requests.
11766         
11767         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
11768         and turn it off when using --aot-only or when compiling with --aot=full.
11769
11770         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
11771         jump table for switches from the normal domain mempool, not the code
11772         manager.
11773
11774         * mini-trampolines.c (get_unbox_trampoline): New function to return an
11775         unbox trampoline which handles aot-only mode too.
11776
11777         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
11778         an AOTed unbox trampoline.
11779
11780         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
11781
11782 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
11783
11784         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
11785         ""
11786
11787         Contributed under MIT/X11 license.
11788
11789 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
11790
11791         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
11792           the unwind information for the method at the end of the allocated block.
11793           
11794         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
11795           MonoCompileArch to hold the unwind info for SEH on Winx64
11796         
11797         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
11798           frame pointer info for the method being compiled.
11799           
11800         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
11801           the call to mono_exception_from_token.
11802           
11803         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
11804           storing the method prolog information in a format that the Winx64 SEH can understand.  This
11805           information is stored a the end of the method block because it is all 32-bit offset based.
11806
11807         Contributed under MIT/X11 license.
11808
11809 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
11810
11811         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
11812
11813         * wapihandles.c: Fix warnings.
11814
11815         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
11816         mode.
11817
11818         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
11819         mono_jit_compile_method in aot-only mode since that calls the type 
11820         initializer.
11821         
11822         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
11823         get_delegate_invoke_impl in aot-only mode.
11824
11825         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
11826
11827 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
11828
11829         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
11830
11831         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
11832         is on by default.
11833
11834         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
11835
11836         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
11837         init trampoline from the AOT file as well.
11838
11839         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
11840         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
11841         code.
11842
11843         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
11844         mono_init.
11845
11846         * exceptions-amd64.c: Add _full variants for the remaining exception code
11847         creation functions as well, allow emission of relocatable code, remove
11848         caching since that is now done by the caller.
11849
11850         * mini-exceptions.c: Add _full variants for the remaining exception code
11851         creation functions as well, add aot-only support.
11852
11853         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
11854         if we can determine a proper token for them.
11855         (add_wrappers): Add a few more wrappers.
11856         (emit_method_code): Remove some dead code.
11857         (emit_trampolines): Emit exception code too.
11858
11859         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
11860
11861         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
11862         mono_array_new_va which avoids varargs.
11863
11864         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
11865
11866         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
11867         mono_arch_create_specific_trampoline () in all places.
11868
11869         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
11870         a bit so it can be used for other things as well.
11871         
11872         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
11873         on demand as well.
11874
11875         * exceptions-amd64.c: Rename the caching from the exception code creation
11876         functions, it is done by the caller instead.
11877         
11878         * exceptions-amd64.c: Change the signature of the exception code creation 
11879         functions to allow the creation of relocatable code later.
11880
11881         * mini-exceptions.c: Add a set of functions to query the various 
11882         runtime-generated exception functions.
11883
11884         * mini.c mini-exceptions.c: Use the newly added functions instead of the
11885         mono_arch_.. () functions.
11886         
11887 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
11888
11889         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
11890
11891         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
11892
11893         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
11894         (mini_get_vtable_trampoline): Ditto.
11895
11896         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
11897         code in the AOT case by returning the code size and a list of relocations to
11898         the caller.
11899
11900         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
11901
11902 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
11903
11904         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
11905           clean the stack.
11906
11907         Contributed under MIT/X11 license.
11908
11909 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
11910
11911         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
11912         so the buffer size can be computed correctly. Fixes #404735.
11913
11914         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
11915         normally as cfg->debug_info is already freed.
11916
11917 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
11918
11919         * mini-amd64.c: For calls returning vtypes in registers, don't store
11920         the return address on the stack, instead allocate a separate local for
11921         it. Fixes #404729.
11922
11923 2008-07-05  Mark Probst  <mark.probst@gmail.com>
11924
11925         * mini-trampolines.c, mini.h: Add an argument to
11926         mono_create_jit_trampoline_in_domain() for turning off the adding
11927         of the sync wrapper.
11928
11929         * mini.c: Use the JIT trampoline without sync instead of
11930         ldftn_nosync in static RGCTX invoke wrappers so that the call can
11931         be patched.
11932
11933 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11934
11935         * driver.c: Turn on GSHARED optimization by default.
11936
11937 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
11938
11939         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
11940         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
11941
11942         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
11943         create a variant of the generic trampoline code callable from AOTed trampolines.
11944
11945         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
11946         trampoline code callable from AOTed trampolines.
11947
11948         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
11949
11950 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11951
11952         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
11953         pass-through manner.
11954
11955         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
11956         and don't fail sharing for them anymore.
11957
11958         * mini-exceptions.c: Handle exceptions in shared generic methods.
11959
11960         * generic-sharing.c: When checking the context of a generic
11961         method, also check its class's context.  Don't treat wrappers as
11962         sharable.
11963
11964         * mini-trampolines.c: Some code factored out to
11965         metadata/generic-sharing.c.  Handle the MRGCTX case.
11966
11967         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
11968         we must deal with the method being of another instantiation of the
11969         class.  Add static rgctx invoke wrappers to generic methods.
11970
11971 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11972
11973         * mini.c: Provide all jit infos of generic shared methods with a
11974         generic jit info.
11975
11976         * mini-exceptions.c: Handle the new situation that a generic info
11977         might be available, but not info about the this/vtable/mrgctx
11978         variable.
11979
11980 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11981
11982         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
11983         generic methods.
11984
11985 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
11986
11987         * dominators.c (check_dominance_frontier): Fix a warning.
11988
11989         * mini.h: Add some missing prototypes.
11990
11991         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
11992
11993         * driver.c (mono_jit_init_version): Correct the comments since the first
11994         argument should be the name of the root domain, not a filename.
11995
11996         * aot-runtime.c (make_writable): Error out if this is called while running
11997         with --aot-only.
11998         (load_aot_module): Ditto.
11999
12000         * aot-compiler.c: Really fix the computation of method indexes.
12001
12002         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
12003         optimizations as this is no longer called frequently.
12004
12005         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
12006         method and the invoke impl code and pass it to the delegate trampoline instead of
12007         just the delegate class.
12008
12009 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
12010
12011         * aot-compiler.c: Fixup the computation of method indexes.
12012         (add_wrappers): Create the base methods of the runtime invoke wrappers using
12013         the method builder infrastructure.
12014
12015         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
12016         has no header.
12017
12018         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
12019         mode, load the method right away instead of creating a trampoline.
12020
12021         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
12022
12023         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
12024         some checks a bit.
12025
12026 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
12027
12028         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
12029         (mono_aot_load_method): Use method_index instead of method->token.
12030
12031         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
12032         can handle icalls etc. properly.
12033
12034         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
12035
12036         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
12037
12038         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
12039         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
12040         JIT_ICALL_ADDR patch type.
12041
12042         * patch-info.h: Add JIT_ICALL_ADDR patch type.
12043
12044         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
12045         request flag.
12046         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
12047
12048         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
12049
12050 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
12051
12052         * mini.c: Use domain->jit_code_hash_lock for controlling access to
12053         domain->jit_code_hash.
12054
12055 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
12056
12057         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
12058
12059 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
12060
12061         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
12062         get_this_arg_from_call, let it compute it when needed.
12063
12064         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
12065         gsctx from code only when needed.
12066
12067         * mini-trampolines.c (get_generic_context): Rename this to 
12068         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
12069         it can be called by the arch backends.
12070
12071         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
12072
12073 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
12074
12075         * driver.c (mono_main): Add experimental --aot-only command line option.
12076
12077         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
12078         set.
12079
12080 2008-06-26  Kornel Pal  <kornelpal@gmail.com>
12081
12082         * driver.c (DllMain): Remove mono_module_handle.
12083
12084         Contributed under MIT/X11 license.
12085
12086 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
12087
12088         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
12089         for emitting methods which are not in the source assembly. Detect and report
12090         failure of assembling+linking.
12091         
12092         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
12093
12094         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
12095
12096 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
12097
12098         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
12099
12100 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
12101
12102         * mini.h: Remove some obsolete prototypes.
12103
12104         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
12105
12106 2008-06-24  Mark Probst  <mark.probst@gmail.com>
12107
12108         * mini.c (get_object_generic_inst): Variable-sized arrays are not
12109         supported by Visual Studio, so use alloca().
12110
12111 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
12112
12113         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
12114         Fixes #402585.
12115
12116 2008-06-23  Mark Probst  <mark.probst@gmail.com>
12117
12118         * mini.c: Fail sharing of a generic method if it contains an open
12119         catch clause (because we don't pass MRGCTXs yet).
12120
12121 2008-06-23  Mark Probst  <mark.probst@gmail.com>
12122
12123         * mini.c: When compiling a method with generic sharing, insert the
12124         method instantiated with an all-Object generic context into the
12125         jit info table, instead of the context of the first instantiation
12126         of the method we happen to compile.
12127
12128 2008-06-18  Martin Baulig  <martin@ximian.com>
12129
12130         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
12131         `major_version' and `minor_version'.
12132
12133 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12134
12135         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
12136         mono_method_is_generic_sharable_impl() takes an additional
12137         argument specifying whether to treat type variables as reference
12138         types.
12139
12140 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12141
12142         * mini.h: Removed obsolete prototypes.
12143
12144 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12145
12146         * mini.c: Don't fail generic sharing for initobj and sizeof - we
12147         already handle them.
12148
12149 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12150
12151         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
12152         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
12153         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
12154         tramp-x86.c: Added a MonoGenericContext* argument to
12155         mono_arch_get_unbox_trampoline() so that it can call other
12156         functions which require it.
12157
12158 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12159
12160         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
12161         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
12162         mono_arch_get_this_arg_from_call() takes a
12163         MonoGenericSharingContext* as well.
12164
12165 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12166
12167         * mini.c: Factor out code for emitting unbox into emit_unbox() and
12168         implement generic sharing of unbox.
12169
12170 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12171
12172         * mini.c: Don't compute the vtable to determine whether a field is
12173         special static, because it might not work for open types.
12174
12175 2008-06-17  Mark Probst  <mark.probst@gmail.com>
12176
12177         * mini.c: Removed the unused token_type and token_source arguments
12178         from get_runtime_generic_context_ptr().
12179
12180 2008-06-17  Marek Habersack  <mhabersack@novell.com>
12181
12182         * mini.c (ADD_BINOP): fix the build
12183
12184 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
12185
12186         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
12187         a widening op.
12188
12189 2008-06-16  Mark Probst  <mark.probst@gmail.com>
12190
12191         * mini.h: Removed class relations enum that's not used anymore.
12192
12193 2008-06-16  Mark Probst  <mark.probst@gmail.com>
12194
12195         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
12196
12197         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
12198         the lazy fetch trampoline access code.
12199
12200 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
12201
12202         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
12203
12204 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
12205
12206         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
12207
12208         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
12209
12210         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
12211
12212 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
12213
12214         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
12215         intrinsics.
12216
12217         * mini-ops.h: Add MIN/MAX_UN opcodes.
12218
12219         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
12220         intrinsics.
12221
12222         * basic-math.cs: Add more min/max tests.
12223
12224         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
12225
12226 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12227
12228         * mini.c: Small fix in the prologue of emit_castclass.
12229
12230 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
12231
12232         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
12233
12234         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
12235         do not work even for unsigned types. Fixes #400014.
12236
12237         * basic-math.cs: Add regression tests for unsigned Min/Max.
12238
12239 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12240
12241         * mini.c: Added additional context_used argument to several
12242         functions, which will be needed for sharing generic methods.  Use
12243         GET_RGCTX macro wherever appropriate.  Declare only one
12244         context_used in mono_method_to_ir().
12245
12246 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12247
12248         * mini.c, generic-sharing.c: Removed generic class relations.
12249
12250         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
12251         functions due to MRGCTX changes.
12252
12253 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12254
12255         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
12256         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
12257         with calculated IMT.
12258
12259         * mini.c: Generic sharing of calls via generic interfaces.
12260
12261         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
12262         generic method with non-constant MonoGenericContext*.  Instead,
12263         the context is taken out of the method itself.
12264
12265 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12266
12267         * mini.c: Generic sharing of ldvirtftn.
12268
12269 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12270
12271         * mini.c: Generic sharing of ldftn.
12272
12273 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12274
12275         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
12276
12277 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12278
12279         * mini.c: Generic sharing of the special case of ldtoken followed
12280         by a call to GetTypeFromHandle.
12281
12282 2008-06-13  Mark Probst  <mark.probst@gmail.com>
12283
12284         * mini.c: Generic sharing of box for nullable types.
12285
12286 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
12287
12288         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
12289         are passed on the stack. Fixes #324807.
12290
12291 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
12292
12293         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
12294         for the ArgValuetypeAddrInIReg case.
12295
12296         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
12297         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
12298
12299         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
12300         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
12301         local variable and pass the local variable by reference to the called method.
12302           
12303         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
12304         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
12305
12306         Contributed under MIT/X11 license.
12307
12308 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
12309
12310         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
12311
12312         * debug-mini.c (mono_debug_print_vars): Release memory after printing
12313         everything.
12314
12315 2008-06-10  Martin Baulig  <martin@ximian.com>
12316
12317         * debug-mini.c
12318         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
12319
12320 2008-06-09  Kornel Pal  <kornelpal@gmail.com>
12321
12322         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
12323         possible error when no arguments are passed.
12324
12325         Contributed under MIT/X11 license.
12326
12327 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
12328
12329         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
12330         where the file name is NULL.
12331
12332 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
12333
12334         * mini.c: Fix s390 build.
12335
12336 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
12337
12338         * trace.c (mono_trace_parse_options): Fix warnings.
12339
12340         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
12341
12342 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
12343
12344         * mini.c (remove_block_if_useless): Avoid printing the method name.
12345         
12346         * mini.c: Remove needless setting of ins->cil_code which is now done by 
12347         MONO_INST_NEW.
12348
12349         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
12350         LMF. Not yet used.
12351
12352         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
12353         translated code after it has been patched.
12354
12355 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
12356
12357         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
12358         avoid problems during code patching on SMP systems.
12359         (emit_call): Avoid adding a patch info which is already added by 
12360         emit_call_body.
12361         (mono_arch_emit_exceptions): Ditto.
12362
12363 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
12364
12365         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
12366         MONO_TYPE_ISSTRUCT already checks for it.
12367
12368 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
12369
12370         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
12371           structs with floats on Winx64 the float registers are not used.  
12372           The integer registers are always used..
12373         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
12374           only one register will be used and only if the size of the struct 
12375           is 1,2,4, or 8 bytes.
12376
12377         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
12378           to work for Winx64.
12379
12380         Contributed under MIT/X11 license.
12381
12382 2008-06-05  Martin Baulig  <martin@ximian.com>
12383
12384         * debug-debugger.c (debugger_lookup_class): Also call
12385         mono_class_setup_methods() here; we're only called from RTI.
12386
12387 2008-06-05  Andreas Farber  <andreas.faerber@web.de>
12388
12389         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
12390         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
12391         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
12392         Post-process object files and add dtrace-generated object, if necessary.
12393
12394         Contributed under MIT/X11 license.
12395
12396 2008-06-04  Mark Probst  <mark.probst@gmail.com>
12397
12398         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
12399         element class.
12400
12401         * mini.c: Generic sharing for unbox.any and castclass.
12402
12403 2008-06-04  Mark Probst  <mark.probst@gmail.com>
12404
12405         * mini.c: Ignore tailcall prefix in shared generic code and when
12406         doing calls which require a vtable/rgctx argument.
12407
12408 2008-06-04  Mark Probst  <mark.probst@gmail.com>
12409
12410         * mini.c: Don't free the JIT info.
12411
12412         * driver.c: Changes in the JIT info table testing code.
12413
12414 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
12415
12416         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
12417         interruption. Fix some warnings.
12418
12419         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
12420         interruption_checkpoint.
12421
12422 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
12423
12424         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
12425         from embedding applications.
12426
12427 2008-06-02  William Holmes  <billholmes54@gmail.com>
12428
12429         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
12430           reserving 32 bytes on the stack when making calls. 
12431
12432         Contributed under MIT/X11 license.
12433
12434 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
12435
12436         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
12437         the linear IL branch.
12438
12439         * driver.c: Print out more information for --version on arm.
12440
12441 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
12442
12443         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
12444         bb_exit instead, since out of line bblocks might not actually be emitted
12445         out-of-line.
12446         
12447         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
12448         maximum epilog size for out of line bblocks if tracing is enabled.
12449
12450         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
12451
12452 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
12453
12454         * arrays.cs: Regression tests for allocating arrays with negative sizes.
12455
12456 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
12457
12458         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
12459         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
12460         opcodes.
12461
12462 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12463
12464         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
12465         the 'value' to store is a constant.
12466
12467         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
12468
12469         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
12470         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
12471
12472 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12473
12474         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
12475         for accessing method->generic_container.
12476
12477 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12478
12479         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
12480         
12481         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
12482
12483         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
12484
12485         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
12486         fails.
12487
12488 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12489
12490         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
12491
12492         * mini.c: Handle the case when mono_class_vtable () fails.
12493
12494 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12495         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
12496         the stat profiler.
12497
12498 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12499
12500         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
12501         together with domain sharing.
12502
12503 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12504
12505         * mini.c: Treat callvirts to final methods like non-virtual calls
12506         when doing generic sharing, i.e. look them up in the runtime
12507         generic context.
12508
12509 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12510
12511         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
12512         with computed types (for generic sharing).
12513
12514         * mini.c: Generic sharing for mkrefany and refanyval.
12515
12516 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12517
12518         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
12519         possible.
12520
12521         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
12522         the generic sharing code.
12523         
12524         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
12525         when needed.
12526
12527 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12528
12529         * mini.h: Remove the declaration of mono_aot_init_vtable ().
12530
12531 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
12532
12533         * driver.c: updated copyright date
12534
12535 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12536
12537         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
12538         needed.
12539
12540 2008-05-19  Martin Baulig  <martin@ximian.com>
12541
12542         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
12543         pointing to the new `_mono_debug_using_mono_debugger' variable.
12544
12545         * driver.c
12546         (mono_main): Check mono_debug_using_mono_debugger() rather than
12547         the `MONO_INSIDE_MDB' environment variable to check whether we're
12548         inside the debugger.
12549
12550 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
12551
12552         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
12553         argument.
12554
12555 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
12556
12557         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
12558
12559         * mini.c: Added mini_assembly_can_skip_verification. This
12560         function checks if the assembly requested to skip verification. 
12561         Fixes part of #387274.
12562
12563 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12564
12565         * mini.c (mini_get_method): Disable the check for open generic classes when
12566         using generic sharing.
12567
12568         * generics.cs: Add a test for #387034.
12569
12570         * mini.c (mini_get_method): Check whenever the method class is an open generic
12571         type, and return NULL in that case, causing a verification error. Fixes
12572         #384123.
12573
12574 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
12575
12576         * driver.c (mono_main): Revert r102623. The right
12577         thing to do is to enable the verifier under verifiable
12578         unless a --security flag was passed.
12579
12580         We need this non-trivial behavior for --verify-all otherwise
12581         mcs-compileall won't be able to use it. As it needs everything to
12582         be verified under validil.
12583
12584 2008-05-06  Martin Baulig  <martin@ximian.com>
12585
12586         Fix #383749.
12587
12588         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
12589         (mono_debugger_thread_cleanup): Likewise.
12590         (mono_debugger_extended_notification): Likewise.
12591
12592 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
12593
12594         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
12595         against both inflated and non-inflated methods. We need to check against the
12596         generic definition for cases where the instantiated method is not visible.
12597         We need to check against the inflated types for cases where the instantiation
12598         changes any super type. This fixes #382986.
12599
12600         Note that this doesn't need to be applied to other parts of mono_method_to_ir
12601         that check for visibiliy as generic params only appears as the type subject
12602         of tokens on call opcodes. Field manipulation and ldftn must always
12603         target an exact type.
12604
12605 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
12606
12607         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
12608         if no related --security flag is passed.
12609
12610 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
12611
12612         * mini-arch.h: Prepare support for ppc64.
12613
12614         Contributed under MIT/X11 license.
12615
12616 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
12617
12618         * aot-runtime.c: Prepare support for ppc64.
12619
12620         Contributed under MIT/X11 license.
12621
12622 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
12623
12624         * mini-ops.h: Prepare support for ppc64.
12625
12626         Contributed under MIT/X11 license.
12627
12628 2008-05-04  Andreas Farber  <andreas.faerber@web.de>
12629
12630         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
12631
12632         Contributed under MIT/X11 license.
12633
12634 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
12635
12636         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
12637         assemblies, since aot_name is not a full path, causing us to load MS.NET 
12638         assemblies on windows.
12639
12640 ?2008-04-28  Kornel Pal  <kornelpal@gmail.com>
12641
12642         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
12643         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
12644         * main.c: Use UTF-8 encoded command line instead of Windows default code
12645         page on Windows to support Unicode.
12646         * driver.c (DllMain): New function for mixed-mode assembly support.
12647         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
12648         export __stdcall functions without decoration.
12649
12650         Contributed under MIT/X11 license.
12651
12652 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12653
12654         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
12655         saving it very early.
12656
12657 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12658
12659         * mini.h, mini.c: Lots of code for accessing the old RGCTX
12660         deleted.  The only way to access the new RGCTX is via the
12661         trampline.
12662
12663         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
12664         vtable instead of the RGCTX to static methods.
12665
12666         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
12667         accessing the new RGCTX.
12668
12669         * generic-sharing.c: There is no separation between self, type
12670         arguments and other types in the RGCTX anymore.
12671
12672 2008-04-25  Jonathan Chambers <joncham@gmail.com>
12673
12674         * mini-amd64.c (add_general): Remove previous stack adjustment.
12675         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
12676         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
12677         for 32 bytes of stack space reserved for all calls.
12678         
12679         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
12680         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
12681         adjustment.
12682         
12683         Code contributed under MIT/X11 license.
12684
12685 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
12686
12687         * mini.c (mini_method_verify): Only verify non-inflated methods, check
12688         against the root definition, peeling out method and type instantiations.
12689         Cache verify success results, code that fails verification is still
12690         checked multiple times.
12691
12692 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12693
12694         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
12695
12696 2008-04-23  Jonathan Chambers <joncham@gmail.com>
12697
12698         * mini-amd64.c (add_general): Always increment stack on Win64.
12699         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
12700         on Win64.
12701         
12702         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
12703         stack based argument handling on Win64.
12704         
12705         Code contributed under MIT/X11 license.
12706
12707 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
12708
12709         * Makefile.am (version.h): Add support for git-svn.
12710
12711 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12712
12713         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
12714         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
12715         avoiding allocations and libc functions which might deadlock.
12716         
12717         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
12718         'no-gdb-backtrace' option is set.
12719
12720         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
12721
12722         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
12723
12724 2008-04-21  Martin Baulig  <martin@ximian.com>
12725
12726         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
12727         and `get_lmf_addr'; `notification_address' is no longer a pointer.
12728
12729 2008-04-21  Martin Baulig  <martin@ximian.com>
12730
12731         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
12732         `thread_vtable', `event_handler_ptr' and `event_handler'.
12733
12734 2008-04-21  Martin Baulig  <martin@ximian.com>
12735
12736         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
12737         allows delayed initialization of the `executable_code_buffer' when
12738         attaching.
12739
12740 2008-04-21  Martin Baulig  <martin@ximian.com>
12741
12742         * mini.h (mono_debugger_create_notification_function): Removed.
12743         * tramp-*.c (mono_debugger_create_notification_function): Removed.
12744
12745         * mdb-debug-info64.s
12746         (MONO_DEBUGGER__notification_function): Added this in the .text section.
12747
12748         * mdb-debug-info32.s
12749         (MONO_DEBUGGER__notification_function): Added this in the .text section.
12750
12751         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
12752         currently only works on x86 and x86_64, so don't create it on ppc.
12753
12754 2008-04-21  Martin Baulig  <martin@ximian.com>
12755
12756         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
12757
12758         * mini.c
12759         (mini_method_compile): In the fp elimination check, check
12760         `debug_options.mdb_optimizations' in addition to
12761         mono_debug_using_mono_debugger().       
12762
12763         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
12764         disable some JIT optimizations which are only disabled when
12765         running inside the debugger.
12766         Added `--help-debug' option to describe the debugging options.
12767         (parse_debug_options): New static function to parse the `--debug'
12768         options, so we can easily add more stuff in future.
12769
12770 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
12771
12772         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
12773         the method has no body.
12774
12775 2008-04-19  Jonathan Chambers <joncham@gmail.com>
12776
12777         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
12778         assembly is not allowed in MSVC 64-bit compiler. 
12779         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
12780         as we get floating point exceptions everywhere.
12781         
12782         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
12783         correctly align arguments for call to throw_exception.
12784         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
12785         
12786         Code contributed under MIT/X11 license.
12787
12788 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
12789
12790         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
12791
12792 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
12793
12794         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
12795
12796         * mini-amd64.c (NEW_INS): Set cil_code.
12797
12798         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
12799         from mini-amd64.c so all debugger related logic is in one place.
12800
12801         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
12802         later won't have a random ip assigned to them.
12803
12804 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
12805
12806         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
12807         the arch specific function initializes code_size.
12808         (mono_create_delegate_trampoline): Ditto.
12809
12810         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
12811         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
12812         platforms.
12813
12814         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
12815         running under the debugger.
12816
12817         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
12818         debugger.
12819
12820         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
12821         debugger. Also move the disabling of optimizations here from driver.c.
12822         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
12823         debugger.
12824
12825         * mini.h (MonoCompile): Add a few new flags.
12826
12827 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
12828
12829         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
12830         so the cil_code field of created MonoInst's is properly set.
12831         (mini_select_instructions): Ditto.
12832
12833         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
12834         (MONO_INST_NEW_CALL): Ditto.
12835
12836         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
12837         in many places so the ins->cil_code field is properly initialized.
12838
12839         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
12840         place.
12841
12842 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12843
12844         * mini.c (mini_method_compile): Print a different message when compiling a 
12845         shared method.
12846         
12847         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
12848         > 1.
12849
12850 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
12851
12852         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
12853         SSE2 instructions.
12854
12855         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
12856         
12857 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
12858
12859         * mini.c (handle_stack_args): Make this return void since its return value was
12860         never used. Also set cfg->unverifiable for invalid IL instead of calling
12861         G_BREAKPOINT ().
12862
12863 2008-04-10  Mark Probst  <mark.probst@gmail.com>
12864
12865         * mini.c: Make sure "this" is live in catch clauses with type
12866         variables in shared generic code.
12867
12868 2008-04-08  Mark Probst  <mark.probst@gmail.com>
12869
12870         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
12871         generic_class_is_reference_type() to ensure the proper behaviour
12872         when sharing generic code and the type in question is a type
12873         argument.
12874
12875 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12876
12877         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
12878         race conditions when printing thread dumps. Fixes #377738.
12879
12880 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
12881         
12882         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
12883         shows up when both MonoInst arguments can cause aliasig.
12884         There is likely no way in the current JIT to trigger this problem, but
12885         it showed up in the development of generics sharing, when in a new
12886         opcode both args of an OP_GROUP can be aliases (addresses of a local).
12887         When the generics sharing code will be committed, its tests will be
12888         valid also for this bug.
12889
12890 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12891
12892         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
12893         PATCH_INFO_METHOD.
12894
12895         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
12896         NULL.
12897
12898 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
12899
12900         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
12901         use a more detailed exception message for InvalidCastException.
12902
12903         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
12904
12905         * driver.c (mono_main): Add --debug=casts option to turn on better 
12906         InvalidCastException message details.
12907
12908         * mini.c (mini_get_debug_options): New helper function to return the address of
12909         the debug_options variable.
12910
12911         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
12912         the jit_tls TLS variable.
12913
12914         * mini.c (mono_jit_tls): New TLS variable.
12915
12916         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
12917         option is used.
12918
12919 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
12920
12921         * mini.h: Removed verifer related stuff. This code was moved to verify.c
12922
12923         * mini.c: Removed verifer related stuff, code moved to verify.c.
12924
12925         * driver.c: Using code from verify.c instead of mini.c.
12926
12927 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
12928
12929         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
12930         longer valid.
12931
12932 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
12933
12934         * mini.c (check_for_method_verify): Enabling verification of
12935         corlib if mono_verify_all is set. Bugs in the verifier preventing that
12936         have been fixed.
12937
12938 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
12939
12940         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
12941         caller saved registers as well.
12942         
12943         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
12944         saved registers as well.
12945
12946 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
12947
12948         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
12949
12950         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
12951         code.
12952
12953 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
12954
12955         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
12956         to get_call_info.
12957         (get_call_info): Take a gsctx argument instead of 'cfg'.
12958
12959 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12960
12961         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
12962         mono_verify_all is set.
12963
12964         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
12965
12966         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
12967
12968 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12969
12970         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
12971         an exception.
12972
12973         * driver.c mini.c mini.h: Add a --verify-all development option to test the
12974         verifier and the code generated by the compiler.
12975
12976 2008-03-25  Mark Probst  <mark.probst@gmail.com>
12977
12978         * mini.c: Generic sharing of the non-nullable case of the box
12979         instruction.
12980
12981 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
12982
12983         * inssel.brg: Fix the build.
12984
12985         * iltests.il.in: Add a test for lconv.ovf.u8.un.
12986
12987 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
12988
12989         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
12990         Array:Address. Fixes #372410.
12991
12992         * iltests.il.in: New tests for readonly prefix.
12993
12994 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
12995
12996         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
12997         mini-trampolines.c.
12998
12999         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
13000         mini-exceptions.c.
13001
13002         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
13003         
13004         * mini.c (mono_decompose_op_imm): New helper function.
13005
13006         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
13007         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
13008         return value.
13009
13010         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
13011         mono_arch_output_basic_block. Fix warnings.
13012
13013         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
13014         for now.
13015
13016 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
13017
13018         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
13019         since the extra frame is now detected automatically inside the loop.
13020
13021         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
13022         opts which are now in mono_peephole_ins ().
13023         
13024         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
13025
13026         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
13027         frames and skip duplicate managed-to-native frames. Fixes #367665.
13028
13029         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
13030         opts which are now in mono_peephole_ins ().
13031         (mono_arch_peephole_pass_2): Ditto.
13032
13033         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
13034
13035         * mini-codegen.c (mono_peephole_ins): New helper function containing the
13036         arch independent peephole optimizations.
13037
13038         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
13039         opts which are now in mono_peephole_ins ().
13040
13041         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
13042         
13043         * mini-s390.c (mono_arch_output_basic_block): Fix build.
13044
13045         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
13046         pattern.
13047
13048         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
13049         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
13050         opcode. 
13051
13052 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
13053
13054         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
13055         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
13056         return value.
13057
13058         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
13059         mono_arch_output_basic_block. Fix warnings.
13060
13061 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
13062
13063         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
13064         conv.ovf.u.un.
13065
13066 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
13067
13068         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
13069         conv.ovf.u.un.
13070
13071         * iltests.il: Add new tests.
13072
13073 2008-03-20  Kornel Pal  <kornelpal@gmail.com>
13074
13075         * mini.c: Removed Windows version macros.
13076
13077 2008-03-20  Mark Probst  <mark.probst@gmail.com>
13078
13079         * generic-sharing.c: Put reflection types in the extensible part
13080         of the runtime generic context.
13081
13082         * mini.c: Generic sharing of the GetTypeHandle special case of the
13083         ldtoken instruction.
13084
13085 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
13086
13087         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
13088
13089         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
13090         
13091         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
13092         consistency with the other version on the linear IR branch.
13093
13094         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
13095
13096         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
13097
13098         * iltests.il.in: Add new tests.
13099
13100 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
13101
13102         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
13103
13104         * iltests.il.in: Add new tests.
13105
13106 2008-03-19  Mark Probst  <mark.probst@gmail.com>
13107
13108         * mini.c: Two variables with the same name were declared in
13109         nesting contexts and one wasn't initialized.  Fixed.
13110
13111 2008-03-19  Mark Probst  <mark.probst@gmail.com>
13112
13113         * mini.c: Generic sharing of the initobj instruction.
13114
13115 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
13116
13117         * mini.c: make the test to optimize ldtoken from typeof() more
13118         precise.
13119
13120 2008-03-18  Mark Probst  <mark.probst@gmail.com>
13121
13122         * mini.c: Generic sharing of the initobj instruction for reference
13123         types.
13124
13125 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
13126
13127         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
13128         the mono_breakpoint_clean_code() code to perform bound checks.
13129
13130 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
13131
13132         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
13133         mono_arch_patch_callsite() to include the start of the managed method
13134         to be able to perform bound checks.
13135
13136 2008-03-17  Mark Probst  <mark.probst@gmail.com>
13137
13138         * mini.c: Generic sharing for the isinst instruction.
13139
13140 2008-03-17  Mark Probst  <mark.probst@gmail.com>
13141
13142         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
13143         inssel-long32-mips.brg: Added opcodes for doing indirect calls
13144         with the runtime generic context argument.
13145
13146         * mini.c: Share calls to several types of unsharable methods by
13147         putting the address of the method code in the runtime generic
13148         context and doing an indirect call.
13149
13150         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
13151         to switches.
13152
13153 2008-03-16  Mark Probst  <mark.probst@gmail.com>
13154
13155         * generic-sharing.c: Change due to a change in the runtime genric
13156         context API.
13157
13158 2008-03-15  Martin Baulig  <martin@ximian.com>
13159
13160         * tramp-x86.c
13161         (mono_arch_nullify_class_init_trampoline): Add call to
13162         mono_breakpoint_clean_code() to make things work when running
13163         inside the debugger.
13164
13165         * tramp-amd64.c
13166         (mono_arch_nullify_class_init_trampoline): Add call to
13167         mono_breakpoint_clean_code() to make things work when running
13168         inside the debugger.
13169
13170 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
13171
13172         * inssel-long.brg (reg): Fix 64 bit build.
13173
13174 2008-03-14  Mark Probst  <mark.probst@gmail.com>
13175
13176         * mini.c, mini.h: Share static generic code by passing it an
13177         implicit argument pointing to the runtime generic context.
13178
13179         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
13180         inssel-long32-mips.brg: New opcodes for calling shared static,
13181         which need to be passed the runtime generic context.
13182
13183         * mini-amd64.c, mini-x86.c: Save the runtime generic context
13184         argument on the stack in the prologue if needed.  New function for
13185         finding the runtime generic context argument from the registers
13186         saved by the trampoline.
13187
13188         * mini-amd64.h, mini-x86.h: Specify which register to use for the
13189         runtime generic context argument.
13190
13191         * tramp-amd64.c: Also restore the register used for the runtime
13192         generic context argument.
13193
13194         * mini-trampoline.c: Resolve shared static calls by consulting the
13195         runtime generic context via the new argument.
13196
13197         * generic-sharing.c: Add an argument to sharability-checking
13198         functions that specifies whether type variables should be treated
13199         as sharable type arguments.
13200
13201         * inssel-x86.brg: Removed a superfluous, buggy rule.
13202
13203         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
13204         to switches.
13205
13206 2008-03-14  Martin Baulig  <martin@ximian.com>
13207
13208         * debug-debugger.c (main_thread_handler): Call
13209         mono_runtime_run_main() without sending any notifications.
13210
13211         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
13212
13213 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
13214
13215         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
13216
13217 2008-03-14  Mark Probst  <mark.probst@gmail.com>
13218
13219         * tramp-x86.c: Fixed register restore offsets in the trampoline
13220         code for ECX and EDX.
13221
13222 2008-03-12  Geoff Norton  <gnorton@novell.com>
13223
13224         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
13225         different ucontext_t implementations.
13226         * exceptions-arm.c: Use the above defines to get exceptions working on 
13227         iPhone (based on a patch by Luke Howard lukeh@padl.com)
13228         * mini-arm.c: Implement iPhone icache support (based on a patch by
13229         Luke Howard lukeh@padl.com)
13230
13231 2008-03-12  Mark Probst  <mark.probst@gmail.com>
13232
13233         * mini.c: Enable generic sharing of calls to non-static
13234         non-interface non-generic non-value-type methods.
13235
13236         * mini-trampolines.c: Resolve calls from shared generic code.
13237
13238 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
13239
13240         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
13241
13242         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
13243
13244 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
13245
13246         * mini.c: some fixes for the AOT compiler.
13247
13248 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13249
13250         * cpu-amd64.md: Add clob:1 to some float opcodes.
13251
13252 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
13253
13254         * mini.h: Added MiniVerifierMode enumeration.
13255
13256         * mini.c: Added mini_verifier_set_mode to control
13257         the usage of the new verifier.
13258
13259         * mini.c (mono_method): Integrated the new verifier.
13260
13261         * driver.c: Extended --security option with validil and
13262         verifiable options to activate the new verifier.
13263
13264 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13265
13266         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
13267         optimization to ctors taking 0 or 2 arguments too.
13268
13269         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
13270         a bit.
13271
13272         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
13273
13274         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
13275
13276 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13277
13278         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
13279         non-aot case as well.
13280
13281         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
13282
13283         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
13284         changes.
13285
13286         * aot-compiler.c (encode_patch): Ditto.
13287
13288         * mini.h (G_MININT32): Fix the definition of this.
13289
13290 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
13291
13292         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
13293
13294         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
13295
13296 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13297
13298         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
13299         methods returning vtypes in registers.
13300         (mono_arch_allocate_vars): Ditto.
13301
13302         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
13303
13304         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
13305
13306         * generics.cs: Add a test from the linear IR branch.
13307
13308         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
13309
13310         * mini.c (inline_method): Cache failed inline attempts.
13311
13312 2008-03-04  Mark Probst  <mark.probst@gmail.com>
13313
13314         * mini.c: For shared methods of generic classes put the location
13315         of "this" into the MonoGenericJitInfo.
13316
13317         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
13318         register out of a MonoContext by register number.  Add the generic
13319         sharing context as an argument to mono_arch_find_this_argument().
13320
13321         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
13322         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
13323         for new arch function.
13324
13325         * mini-exception.c: Handle open exception clauses in shared
13326         generic code.
13327
13328         * mini-trampolines.c: Supply additional argument to
13329         mono_arch_find_this_argument().
13330
13331 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13332
13333         * Makefile.am (regtests): Run the bench.exe tests last.
13334
13335 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
13336
13337         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
13338         a bit.
13339
13340 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
13341
13342         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
13343         with MS.
13344
13345         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
13346         
13347         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
13348
13349         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
13350         whose class has no cctor.
13351
13352         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
13353
13354 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
13355
13356         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
13357         unverified.
13358
13359 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
13360
13361         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
13362         to be in sync with the code on the linear IR branch.
13363
13364         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
13365
13366         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
13367
13368 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13369
13370         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
13371
13372         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
13373
13374         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
13375
13376         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
13377
13378         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
13379         
13380         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
13381         body.
13382
13383 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
13384
13385         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
13386         OP_LOADR4_MEMBASE emission.
13387
13388         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
13389         (mono_spillvar_offset_float): Ditto.
13390
13391         * mini-mips.c (mono_arch_emit_prolog): Ditto.
13392
13393         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
13394         emission.
13395
13396         * basic-long.cs: Add regression tests for them.
13397
13398         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
13399         use.
13400         (mono_arch_allocate_vars): Fix representation of single-precision float
13401         argument.
13402         (mono_arch_output_basic_block): Ditto.
13403
13404         * inssel-mips.brg: Ditto, remove duplicate items.
13405
13406         * mini-mips.c (emit_load_volatile_arguments): New function to handle
13407         arguments of tail calls as on other platforms.
13408         (mono_arch_output_basic_block): Handle tail calls.
13409
13410         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
13411         register.
13412
13413         * objects.cs (test_5_pass_static_struct): Add test for it.
13414
13415         Contributed under MIT/X11 license.
13416
13417 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
13418
13419         * Makefile.am: Use gmcs for compiling the regression tests.
13420
13421         * *.2.cs *.2.il: Rename to *.cs and *.il.
13422
13423 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
13424
13425         * regalloc.h: Make the vassign array smaller.
13426
13427         * mini.c (mini_method_compile): Remove an unused field in cfg.
13428
13429         * mini-codegen.c: Add a bunch of micro optimizations.
13430
13431 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
13432
13433         * regalloc.h: Remove some unused fields.
13434
13435 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
13436
13437         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
13438
13439         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
13440
13441 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13442
13443         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
13444
13445         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
13446         trampoline: Fetch an entry from the runtime generic context.  If
13447         it's NULL, jump to the actual trampoline to fill the runtime
13448         generic context.  Otherwise, return it.
13449
13450         * mini.c: Call the lazy fetch trampoline to get entries out of the
13451         runtime generic context.
13452
13453         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
13454         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
13455         tramp-sparc.c: Stubs for the lazy fetch trampoline.
13456
13457 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13458
13459         * mini.c: Fetch data out of the extensible part of the runtime
13460         generic context instead of calling a helper function.
13461
13462         * generic-sharing.c: Some functions moved into
13463         metadata/generic-sharing.c.  Helper function for fetching other
13464         types now checks and asserts against extensible rgctx (just for
13465         debugging purposes - the helper function isn't called anymore
13466         unless for debugging).
13467
13468 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
13469
13470         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
13471         for tail calls up to the point that the tests in iltests.exe run. Also add a
13472         dummy CKFINITE implementation.
13473         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
13474         needed for trampoline LMF frames.
13475
13476         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
13477         trampoline LMF frames.
13478
13479 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
13480
13481         * mini.c (inline_method): clean any pending loader error when inlining fail.
13482         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
13483
13484 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
13485
13486         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
13487
13488         * aot-runtime.c (decode_patch_info): Ditto.
13489
13490         * mini.c (mono_resolve_patch_target): Ditto.
13491         
13492         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
13493         icall wrappers.
13494
13495         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
13496         
13497         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
13498         if it references an icall address.
13499
13500 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13501
13502         * cpu-s390x.md: Remove some more unused opcodes.
13503         
13504         * cpu-s390x.md: Remove some unused opcodes.
13505
13506         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
13507         mono_op_imm_to_op ().
13508
13509         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
13510         instead of a switch statement.
13511         
13512         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
13513         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
13514
13515         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
13516         
13517         * mini-codegen.c: Remove unused mono_regstate2_... functions.
13518
13519         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
13520         -1.
13521
13522 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13523
13524         * driver.c (mono_main): Improve error reporting when an assembly cannot be
13525         opened. Fixes #362607.
13526
13527         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
13528
13529         * iltests.il.in: Add a test for static methods in interfaces.
13530
13531 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
13532
13533         * genmdesc.c (build_table): Fix a crash on older glib versions.
13534
13535         * cpu-sparc.md: Remove some unused opcodes.
13536         
13537         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
13538         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
13539
13540         * cpu-amd64.md: Remove some unused opcodes.
13541
13542         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
13543         like the other opcodes.
13544
13545 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
13546
13547         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
13548
13549         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
13550
13551         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
13552         variables 'cfg' instead of 'm' for consistency.
13553
13554         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
13555
13556         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
13557         argument holding the vtype return address, to avoid the ambigious use of
13558         cfg->ret for this purpose.
13559
13560         * mini.c (NEW_RETLOADA): Use vret_addr if set.
13561
13562         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
13563         
13564         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
13565         new mono_print_ins () function which only takes one argument.
13566
13567 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
13568
13569         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
13570         macro arguments.
13571
13572 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
13573
13574         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
13575
13576         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
13577
13578         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
13579         opcodes and other small changes.
13580
13581         * mini-ops.h: Add some new opcodes from the linear IR branch.
13582
13583         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
13584
13585         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
13586         opcodes, use the REG_MEMBASE opcodes instead.
13587         
13588         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
13589         opcodes, use the REG_MEMBASE opcodes instead.
13590         
13591         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
13592         linear IR branch.
13593
13594         * mini.c (mono_op_imm_to_op): New helper function.
13595
13596         * mini-ops.h: Add some opcodes from linear IR branch.
13597
13598 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
13599
13600         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
13601         <tsv@solvo.ru>.
13602
13603 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
13604
13605         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
13606         OP_ICONV_TO_R4/R8.
13607
13608         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
13609
13610 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13611
13612         * aot-compiler.c (emit_method_code): Add an assert.
13613
13614         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
13615         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
13616         methods.
13617
13618 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
13619
13620         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
13621         some load/store opcodes so they are consistent. 
13622         (mono_arch_emit_prolog): Simplify some code.
13623
13624         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
13625
13626         * objects.cs: Add tests for large argument offsets on ARM.
13627
13628         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
13629         stack offsets. Fixes #359651.
13630
13631         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
13632
13633         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
13634
13635         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
13636
13637         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
13638
13639         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
13640
13641         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
13642         rid of CEE_CONV_R_UN.
13643
13644         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
13645
13646 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
13647
13648         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
13649
13650         * mini.c (mono_normalize_opcodes): Add some more opcodes.
13651
13652         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
13653
13654         * cpu-amd64.md: Remove some unused opcodes.
13655
13656         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
13657
13658         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
13659
13660         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
13661         arch specific functions for its parts. Call the peephole pass after local
13662         regalloc so the prolog can compute a more accurate max_offset.
13663         
13664         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
13665         the corresponding OP_I/OP_L opcodes.
13666
13667         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
13668
13669         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
13670
13671 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13672
13673         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
13674         as they are handled in mini.c.
13675
13676         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
13677         
13678         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
13679         case since it is handled in mini.c.
13680
13681         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
13682
13683         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
13684
13685         * *.c: Use the new opcodes in the IR and back end code.
13686
13687         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
13688
13689         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
13690
13691 2008-02-06  Mark Probst  <mark.probst@gmail.com>
13692
13693         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
13694         an assert because it has a race condition.
13695
13696 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13697
13698         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
13699
13700         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
13701
13702         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
13703
13704         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
13705         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
13706
13707 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13708
13709         * cpu-amd64.md (move): Correct the maximum size of move.
13710
13711 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13712
13713         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
13714         the generic class init trampoline to return quickly if the class
13715         is already inited.
13716
13717 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
13718
13719         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
13720         issues where an 32 bit callsite cannot be patched by a 64 bit address.
13721
13722 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13723
13724         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
13725         branch.
13726
13727 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
13728
13729         * objects.cs: Add some soft-float tests.
13730
13731         * mini.c: Fix a couple more soft-float issues.
13732
13733         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
13734
13735         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
13736         avoid a REX prefix.
13737
13738 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13739
13740         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
13741         exception happens while compiling a virtual method.
13742
13743 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13744
13745         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
13746         
13747         * mini-sparc.c: Fix build.
13748
13749         * mini-sparc.c (get_call_info): Add support for generic sharing.
13750
13751         * mini-exceptions.c: Add a FIXME.
13752
13753 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13754
13755         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
13756         altstack handling code.
13757
13758         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
13759         
13760         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
13761
13762         * mini-s390.c: Add support for generic sharing.
13763
13764         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
13765         Fix CAS on s390.
13766         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
13767
13768         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
13769
13770         * mini-s390x.c: Add support for generic sharing.
13771         
13772         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
13773         Fix CAS on ia64.
13774         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
13775
13776         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
13777         can be used since it takes a 16 bit signed immediate.
13778
13779         * inssel-s390x.brg: Fix OP_SETRET.
13780
13781         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
13782
13783         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
13784
13785         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
13786
13787         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
13788
13789         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
13790         in one place.
13791
13792         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
13793         stuff.
13794
13795         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
13796         of the unused mono_arch_patch_delegate_trampoline stuff.
13797
13798 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
13799
13800         * basic-long.cs: Move the fp related tests to basic-float.cs.
13801
13802         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
13803
13804         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
13805
13806         * basic-calls.cs: Add a test for proper float argument passing.
13807
13808         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
13809         if the context corresponds to an exception received through a signal.
13810
13811         * exceptions.cs: Add a test for nullref handling at the start of a try
13812         clause.
13813
13814         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
13815
13816         * jit-icalls.c (mono_break): New JIT icall.
13817
13818         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
13819
13820         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
13821
13822 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
13823
13824         * cpu-*.md: Get rid of unused opcodes.
13825
13826         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
13827
13828         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
13829         by all platforms.
13830
13831         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
13832         define.
13833
13834         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
13835         the arch independent trampoline code in mini-trampolines.c.
13836
13837         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
13838
13839         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
13840
13841         * mini-s390.h: Remove an unused define.
13842         
13843         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
13844         the arch independent trampoline code in mini-trampolines.c.
13845
13846         * mini-arm.c (mono_arch_emit_prolog): Fix build.
13847
13848 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
13849
13850         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
13851
13852         * mini-s390.c (mono_arch_emit_prolog): Fix build.
13853
13854         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
13855
13856         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
13857
13858         * cpu-amd64.md: Use smaller sizes for int opcodes.
13859
13860         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
13861
13862         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
13863         objects.cs.
13864
13865         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
13866         debugging.
13867
13868         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
13869         instead of though a pointer to save an indirection when accessing elements of
13870         the array.
13871
13872         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
13873         some typos.
13874         (NOT_IMPLEMENTED): New helper macro.
13875         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
13876         of a bb.
13877
13878         * *.c: Use the new helper macro.
13879
13880 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
13881
13882         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
13883
13884 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13885
13886         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
13887         stack slots.
13888
13889 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
13890
13891         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
13892         profiling is enabled.
13893         
13894         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
13895         the end.
13896         (mono_arch_emit_prolog): Add more first bblock optimizations.
13897
13898         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
13899         in order if possible.
13900         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
13901         bblock, since the arguments are still in their original registers.
13902
13903         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
13904
13905 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13906
13907         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
13908         as well.
13909
13910         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
13911         offset 0.
13912
13913         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
13914
13915         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
13916         process async exceptions received while in unmanaged code.
13917
13918         * mini.c (mini_init): Install a callback with the runtime which will be called
13919         when a thread receives an async exception while in unmanaged code.
13920
13921         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
13922
13923         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
13924
13925 2008-01-16  Wade Berrier  <wberrier@novell.com>
13926
13927         * cpu-g4.md:
13928         * cpu-arm.md:
13929         * cpu-s390x.md:
13930         fix build
13931
13932 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13933
13934         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
13935         compilation with sun cc.
13936
13937         * cpu-*.md: Fix the build.
13938
13939         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
13940
13941         * mini-amd64.h: Add some comments to the MonoLMF structure.
13942
13943         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
13944         
13945         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
13946         in the LMF structure if possible. This saves two instructions in the
13947         managed->native wrappers.
13948
13949         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
13950
13951 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13952
13953         * generic-sharing.c: New type argument lookup code which uses the
13954         runtime generic context template.
13955
13956 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13957
13958         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
13959
13960         * mini-arm.c (add_general): Fix arm eabi parameter passing.
13961         (mono_arch_output_basic_block): Fix localloc implementation.
13962
13963         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
13964
13965         * mini-ia64.c (peephole_pass): Fix ia64 build.
13966
13967         * mini-amd64.c (peephole_pass): Fix a warning.
13968         
13969         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
13970         at a constant offset from sp/fp.
13971
13972         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
13973         instead of obtaining it from *lmf in the managed method case.
13974
13975 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13976
13977         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
13978
13979 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
13980
13981         * mini.h (MonoInstList): New type.
13982         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
13983         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
13984         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
13985         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
13986         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
13987         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
13988         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
13989         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
13990         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
13991         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
13992         MONO_INST_LIST_FOR_EACH_ENTRY,
13993         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
13994         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
13995         mono_inst_list_first, mono_inst_list_last,
13996         mono_inst_list_next, mono_inst_list_prev): New instruction
13997         list handling interfaces.
13998         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
13999         list head 'ins_list'.
14000         (MonoInst): Replace next pointer with list head 'node'.
14001         (MonoCallInst): Make 'out_args' a MonoInstList.
14002         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
14003         (MonoCompile): Delete reverse_inst_list and
14004         reverse_inst_list_len.
14005         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
14006         mono_arch_lowering_pass, mono_arch_local_regalloc,
14007         mono_arch_output_basic_block, mono_arch_emit_prolog):
14008         Convert to new instruction lists.
14009         (insert_after_ins): Delete.
14010         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
14011         instruction lists.
14012         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
14013         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
14014         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
14015         mono_emulate_opcode, mono_emit_load_got_addr,
14016         inline_method, mono_method_to_ir, mono_print_bb_code,
14017         print_dfn, decompose_pass, nullify_basic_block,
14018         replace_out_block_in_code, remove_block_if_useless,
14019         merge_basic_blocks, move_basic_block_to_end,
14020         try_unsigned_compare, optimize_branches, mono_print_code,
14021         mini_select_instructions, remove_critical_edges): Likewise.
14022         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
14023         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
14024         mono_arch_output_basic_block, mono_arch_emit_prolog):
14025         Likewise.
14026         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
14027         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
14028         mono_arch_output_basic_block): Likewise.
14029         (inst_list_prepend, insert_after_ins): Delete.
14030         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
14031         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
14032         instruction lists.
14033         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
14034         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
14035         mono_arch_emit_prolog): Likewise.
14036         * cfold.c (mono_constant_fold): Likewise.
14037         * liveness.c (visit_bb, mono_analyze_liveness,
14038         optimize_initlocals): Likewise.
14039         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
14040         * graph.c (mono_draw_code_cfg): Likewise.
14041         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
14042         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
14043         mono_ssa_cprop): Likewise.
14044         * abcremoval (get_relations_from_previous_bb, process_block):
14045         Likewise.
14046         * local-propagation (mono_cprop_invalidate_values,
14047         mono_local_cprop_bb): Likewise.
14048         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
14049         peephole_pass, mono_arch_output_basic_block,
14050         mono_arch_emit_prolog): Likewise.
14051         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
14052         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
14053         mono_arch_emit_prolog): Likewise.
14054         (insert_after_ins): Delete.
14055         * aliasing.c (print_code_with_aliasing_information,
14056         mono_build_aliasing_information, mono_aliasing_deadce):
14057         Convert to new instruction lists.
14058         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
14059         peephole_pass, NEW_INS, mono_arch_lowering_pass,
14060         mono_arch_local_regalloc, mono_arch_output_basic_block):
14061         Likewise.
14062         (insert_after_ins): Delete.
14063         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
14064         peephole_pass, mono_arch_output_basic_block): Convert to
14065         new instruction lists.
14066         * mini-codegen (InstList, inst_list_prepend,
14067         insert_after_ins): Delete.
14068         (insert_before_ins, get_register_force_spilling,
14069         get_register_spilling, free_up_ireg, free_up_reg,
14070         create_copy_ins, create_spilled_store, alloc_int_reg,
14071         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
14072         to new instruction lists.
14073         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
14074         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
14075         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
14076         (insert_after_ins): Delete.
14077         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
14078         mono_arch_local_regalloc, mono_arch_output_basic_block,
14079         mono_arch_call_opcode): Convert to new instruction lists.
14080         (insert_after_ins): Delete.
14081         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
14082         peephole_pass, mono_arch_output_basic_block,
14083         mono_arch_emit_prolog): Convert to new instruction lists.
14084
14085 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
14086
14087         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
14088
14089         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
14090         Fixes #353182.
14091
14092         * Makefile.am (version.h): Make this work with non-bash shells.
14093
14094 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
14095
14096         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
14097
14098 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
14099
14100         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
14101         the InitializeArray optimization.
14102
14103 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
14104
14105         * mini.c driver.c: Don't include os/gc_wrapper.h.
14106
14107 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
14108
14109         * mini.c (print_jit_stats): Print GC statistics if available.
14110
14111 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
14112
14113         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
14114
14115 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
14116
14117         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
14118
14119 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
14120
14121         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
14122         
14123         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
14124
14125         * driver.c (mono_main): Ditto.
14126
14127 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
14128
14129         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
14130
14131         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
14132         in the vtable can't be encoded.
14133         (compile_method): Ditto.
14134
14135 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
14136
14137         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
14138         defined.
14139
14140         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
14141         lmf->rbp.
14142
14143         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
14144         the top LMF entry belongs to the current method.
14145
14146         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
14147
14148 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
14149
14150         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
14151         
14152         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
14153
14154         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
14155
14156         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
14157
14158         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
14159
14160         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
14161         implementation.
14162
14163         * basic-float.cs: Add an ulong->double cast test.
14164
14165 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
14166
14167         * mini.c (mono_method_to_ir): Fix a warning.
14168
14169 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
14170
14171         * mini-ops.h: Add OP_SWITCH.
14172
14173         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
14174         CEE_SWITCH in back-end code, use OP_SWITCH instead.
14175
14176 2007-12-11  Geoff Norton  <gnorton@novell.com>
14177
14178         * mini-s390x.c: Minor change to the MAX() define to allow
14179         it to compile with other gcc versions.
14180
14181 2007-12-11  Geoff Norton  <gnorton@novell.com>
14182
14183         * cpu-s390x.md:
14184         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
14185
14186 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14187
14188         exceptions-arm.c (mono_arch_get_restore_context): Restore
14189         the frame pointer.
14190
14191         exceptions-arm.c (throw_exception): Save the frame pointer.
14192         This is a partial fix for #323747. Only the client side is
14193         fixed.
14194
14195 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14196
14197         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
14198         was using an unrelated variable to log the class which
14199         needed the cctor to be called. This was crashing on arm.
14200
14201 2007-12-09  Robert Jordan  <robertj@gmx.net>
14202
14203         * mini-x86.c (mono_arch_emit_epilog):
14204         Consider all kinds of 64-bit types. Fixes #323114.
14205
14206 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
14207
14208         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
14209
14210 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
14211
14212         * mini-amd64.c (peephole_pass): Add a missing instruction check.
14213
14214 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14215
14216         * mini.c: run type ctor before allocating an object, not only
14217         when running it's constructor method (fixes at least part of bug #342507).
14218
14219 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
14220         
14221         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
14222         
14223         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
14224         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
14225         function.
14226
14227         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
14228         mono_generic_class_init_trampoline () the same as it is done with the other
14229         trampolines.
14230
14231         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
14232         aot-runtime.c aot-compiler.c: Implement AOT support.    
14233
14234 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14235
14236         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
14237         build for archs which don't have the vtable trampoline defined
14238         yet.
14239
14240 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
14241
14242         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
14243
14244         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
14245
14246         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
14247
14248         * tramp-<ARCH>.c: Use the new helper function.
14249
14250 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14251
14252         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
14253         trampoline call, which takes a vtable argument.
14254
14255         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
14256         OP_TRAMPCALL_VTABLEs like other calls.
14257
14258         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
14259         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
14260         call.  Implemented a support function which fetches the vtable
14261         from a register set.
14262
14263         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
14264         Implemented a generic class init trampoline, using the
14265         OP_TRAMPCALL_VTABLE opcode.
14266
14267         * mini.c: Implemented static field access when sharing generic
14268         code.  This implies initing the class using the new
14269         OP_TRAMPCALL_VTABLE call.
14270
14271 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14272
14273         * mini.c: Don't compile methods with sharing enabled if their
14274         classes are disabled for sharing.
14275
14276 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14277
14278         * inssel.brg: Add a missing sign extension to the GETCHR and array access
14279         opcodes. Fixes #346563.
14280
14281         * objects.cs: Add a new test.
14282
14283         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
14284
14285         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
14286         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
14287
14288 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14289
14290         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
14291
14292 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14293
14294         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
14295         code stream.
14296
14297 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
14298
14299         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
14300
14301         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
14302         optimization in the AOT case.
14303         
14304 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14305
14306         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
14307         
14308         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
14309
14310         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
14311
14312         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
14313
14314         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
14315         is created by the inlined delegate ctor.
14316
14317         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
14318
14319         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
14320
14321 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
14322
14323         * cpu-x86.md: Fix the length of ckfinite.
14324
14325 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
14326
14327         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
14328         
14329         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
14330         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
14331
14332         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
14333
14334         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
14335         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
14336
14337 2007-11-28  Martin Baulig  <martin@ximian.com>
14338
14339         * mini-x86.c
14340         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
14341         after creating the trampoline.
14342
14343 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
14344
14345         * aot-runtime.c (load_aot_module): Check runtime version if needed.
14346
14347         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
14348         the same version.
14349
14350         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
14351         instead of the calling method to help AOT.
14352
14353         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
14354
14355 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
14356
14357         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
14358         is defined.
14359
14360 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14361
14362         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
14363         
14364         * aot-compiler.c (compile_method): Correct check for generic method definitions.
14365         (encode_method_ref): No need to handle generic method definitions specially.
14366
14367         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
14368
14369         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
14370         decode_klass_info.
14371
14372         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
14373         encode_klass_info.
14374         (compile_method): Enable generic sharing.
14375
14376 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
14377
14378         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
14379         (mini_method_compile): Add preliminary support for AOTing shared generic code.
14380
14381         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
14382         generic code.
14383
14384         * mini-trampolines.c: Fix a warning.
14385
14386         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
14387         NEW_PCONST.
14388         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
14389         (generic_class_is_reference_type): Remove unused function.
14390
14391         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
14392         in the generic vtable trampoline case.
14393
14394         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
14395         
14396         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
14397         return an AOT method based on a vtable slot.
14398
14399         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
14400
14401         * mini.c (mini_get_vtable_trampoline): Export this.
14402
14403 2007-11-22  Martin Baulig  <martin@ximian.com>
14404
14405         * debug-debugger.h
14406         (MonoDebuggerInfo): Move `debugger_version' up.
14407
14408 2007-11-22  Martin Baulig  <martin@ximian.com>
14409
14410         * mini-amd64.c
14411         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
14412
14413         * mini-trampolines.c
14414         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
14415         after compiling the method.
14416
14417 2007-11-20  Martin Baulig  <martin@ximian.com>
14418
14419         * debug-mini.c
14420         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
14421         (mono_debugger_remove_breakpoint): Likewise.
14422         (mono_debugger_check_breakpoints): Likewise.
14423
14424         * debug-debugger.c: Implement the new breakpoint interface here.
14425
14426 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
14427
14428         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
14429         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
14430
14431         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
14432
14433 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14434
14435         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
14436
14437         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
14438         mini.c.
14439
14440         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
14441         mini.c.
14442
14443         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
14444         returning a vtype in a register.
14445
14446         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
14447         here from the arch specific code.
14448
14449         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
14450         mini.c.
14451
14452         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
14453         (mono_arch_emit_prolog): Increment maximum prolog size.
14454
14455         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
14456         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
14457
14458         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
14459         MonoGenericSharingContext.
14460
14461         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
14462         MonoGenericSharingContext. Allocate memory from the cfg mempool.
14463
14464 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14465
14466         * mini.c, mini.h, generic-sharing.c: Functions for producing code
14467         which extract fields out of the runtime generic context.  Full
14468         sharing of the NEWARR opcode.
14469
14470 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14471
14472         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
14473         --enable-minimal=ssa.
14474
14475 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14476
14477         * mini-trampolines.c (mono_delegate_trampoline): Update after 
14478         mono_marshal_get_delegate_invoke () signature change.
14479
14480 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14481
14482         * mini.c: Removed the shared context in favor of the generic
14483         sharing context.  Allocate the MonoJitInfo structure with room for
14484         the generic sharing context if it's needed.
14485
14486         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
14487         domain-internals.h now.
14488
14489         * mini-x86.c: Pass the generic sharing context to get_call_info ().
14490
14491         * generic-sharing.c: Several changes for working without a shared
14492         context and instead operating on open types instead.
14493
14494 2007-11-12  David S. Miller  <davem@davemloft.net>
14495
14496        * inssel-sparc.brg: Fix double instruction emit.
14497
14498 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14499
14500         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
14501         Get/Set/Address methods.
14502         
14503         * mini.c debug-debugger.c mini-trampolines.c: Update after 
14504         mono_marshal_get_delegate_invoke signature change.
14505
14506 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
14507
14508         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
14509         This can happens with dynamic methods. Fixes the other bug in #322722.
14510
14511 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
14512
14513         * tramp-arm.c (mono_arch_patch_callsite): Support patching
14514         BX call sequence.
14515
14516         * mini-arm.c (arm_patch): Implement patching of BX call
14517         sequence. Fixes one of the bugs in #322722.
14518
14519 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
14520
14521        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
14522        under Linux.  We only need to flush every 32-byte cache line.    
14523
14524 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14525
14526         * mini.c:
14527         move_basic_block_to_end: Add branches when needed, eventually creating
14528         a new BB.
14529         optimize_branches: added a parameter that tells if it's ok to create
14530         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
14531         and avoid calling move_basic_block_to_end when it's not ok.
14532         Fixes bug 318677.
14533
14534 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14535
14536         * mini.c: Abort inlining call to InitializeArray if something
14537         looks wrong.  Let the icall handle it, which now has proper safety
14538         checks.
14539
14540 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
14541
14542         * mini.c (mono_spill_call): add support for soft-float.
14543
14544         * mini.c (mono_method_to_ir): add support for soft-float
14545         to inlined functions that return float.
14546
14547         * mini.c (mono_method_to_ir): add support for soft-float
14548         to cee_stsfld opcode on float fields.
14549
14550 2007-11-05  Geoff Norton  <gnorton@novell.com>
14551
14552         * mini-x86.h: Fix the structure access for X86 Leopard.
14553
14554
14555 2007-11-05  Martin Baulig  <martin@ximian.com>
14556
14557         * mini-trampolines.c
14558         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
14559         after compiling the method to notify the debugger.
14560
14561 2007-11-05  Martin Baulig  <martin@ximian.com>
14562
14563         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
14564
14565 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
14566
14567         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
14568         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
14569
14570 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
14571
14572         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
14573         native-to-managed wrappers.
14574         
14575 2007-11-01  Geoff Norton  <gnorton@novell.com>
14576
14577         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
14578         members.
14579
14580 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
14581
14582         * mini.c, mini-x86.c: when getting back from unmanaged code
14583         to managed via a marshaled delegate we also need to set the
14584         right domain.
14585
14586 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
14587
14588         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
14589         for amd64.
14590
14591 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14592
14593         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
14594         let the debugger or other external agents to tell the JIT when
14595         a sw breakpoint has been inserted in the code that the JIT needs
14596         to be able to inspect.
14597
14598 2007-10-31  Martin Baulig  <martin@ximian.com>
14599
14600         * debug-debugger.h
14601         (MonoDebuggerInfo): Remove `runtime_class_init'.
14602
14603 2007-10-30  Martin Baulig  <martin@ximian.com>
14604
14605         * debug-mini.h
14606         (mono_debugger_thread_created): Added `MonoThread *' argument.
14607         (mono_debugger_extended_notification): New public method.
14608         (mono_debugger_trampoline_compiled): New public method.
14609
14610         * debug-mini.c
14611         (MonoDebuggerThreadInfo): Added `thread' and
14612         `extended_notifications' fields.
14613
14614         * debug-debugger.c
14615         (debugger_executable_code_buffer): New static variable.
14616
14617         * debug-debugger.h
14618         (MonoDebuggerInfo): Added `executable_code_buffer',
14619         `executable_code_buffer_size', `breakpoint_info_area',
14620         `breakpoint_table' and `breakpoint_table_size'.
14621
14622 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
14623
14624         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
14625         that IP  either is an unused value or the vtable pointer. IMT 
14626         calls use vtable + offset now. Reduced by almost half the size
14627         of IMT entries.
14628
14629 2007-10-26  Jonathan Chambers <joncham@gmail.com>
14630
14631         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
14632         defines to access param registers. Replace long usage with
14633         gsize as sizeof(long) != sizeof(void*) on Win64.
14634
14635         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
14636         on Win64. Fix intrinsic, use _AddressOfReturnAddress
14637         instead of non-existant _GetAddressOfReturnAddress.
14638
14639         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
14640         param registers. Save/restore %rdi and %rsi in MonoLMF.
14641
14642         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
14643         param registers. Modify (throw_exception) signature to take 
14644         %rdi and %rsi on Win64. 
14645
14646         Code is contributed under MIT/X11 license.
14647
14648 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14649
14650         * helpers.c: unlink debugging output files.
14651
14652 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14653
14654         * mini.c: Move mono_create_ftnptr () to object.c.
14655
14656 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
14657
14658         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
14659         optional. This function can now be used to disassemble code generated
14660         outside the JIT such as trampolines and IMT thunks.
14661
14662         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
14663
14664         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
14665         vtable pointer from a ldr instruction.
14666
14667         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
14668         new IMT call sequence.
14669
14670         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
14671         call sequence for interface invocations.
14672
14673         * mini-arm.c (mono_arch_emit_imt_argument): added, required
14674         for imt support. This function is empty since IMT on ARM requires no
14675         special handling on the IR side.
14676
14677         * mini-arm.c (mono_arch_find_imt_method): added, required for
14678         imt support.
14679
14680         * mini-arm.c (mono_arch_find_this_argument): added, required
14681         for imt support.
14682
14683         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
14684         a ldr instruction to load a value stored in the code stream.
14685
14686         * mini-arm.c (mono_arch_build_imt_thunk):added, required
14687         for imt support.
14688
14689
14690 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14691
14692         * mini.c (mini_init): Install the jump trampoline callback.
14693
14694 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14695
14696         * mini-trampolines.c: handle synchronized methods with the common
14697         vtable trampoline (bug #335601).
14698
14699 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
14700
14701         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
14702
14703         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
14704         64 bit platforms.
14705
14706         * mini-ia64.h mini-ia64.c: Add support for IMT.
14707
14708         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
14709         prolog. Fixes #331958.
14710
14711 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
14712
14713         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
14714
14715 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14716
14717         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
14718         trampoline.
14719
14720 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14721
14722         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
14723         trampoline.
14724
14725 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
14726
14727         * mini-x86.c, mini-x86.h: x86 support for the common vtable
14728         trampoline.
14729
14730 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14731
14732         * mini-trampolines.c: changed the magic rampoline to understand
14733         the common vtable trampoline method: the method to invoke is
14734         determined by the vtable displacement of the call.
14735
14736 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14737
14738         * mini.c, mini.h: register the common vtable trampoline if the
14739         architecture supports it.
14740
14741 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14742
14743         * cpu-amd64.md: use the correct max length for tls_get.
14744
14745 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
14746
14747         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
14748         CEE_STELEM_ANY. Fixes #333696.
14749
14750 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
14751
14752         * exceptions-x86.c: provide more graceful handling of the case where
14753         we followed a bogus function pointer from managed code (bug #332866).
14754
14755 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14756
14757         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
14758         replaces the generic_shared flag and will carry more information
14759         in the future.
14760
14761         * generic-sharing.c: Added mini_type_stack_size() which allows
14762         allows open types if given a generic sharing context.
14763         mini_get_basic_type_from_generic() takes a
14764         MonoGenericSharingContext* instead of a MonoCompile* now.
14765
14766         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
14767         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
14768         mini-sparc.c, mini-x86.c: Trivial changes required by the two
14769         changes above.  Just passing arguments through to the right
14770         places.
14771
14772 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14773
14774         * mini-arm.c: unify the call emission to emit_code_seq().
14775
14776 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
14777
14778         * tramp-arm.c: reduced the trampoline size.
14779
14780 2007-10-10  Mark Probst  <mark.probst@gmail.com>
14781
14782         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
14783         variable handling out of arch-specific code.
14784
14785 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
14786
14787         * mini-arm.c: implemented fast delegate dispatch.
14788
14789 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
14790
14791         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
14792         that fp elimination is turned off if the space required by locals is too
14793         big. Fixes #331958.
14794
14795 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14796
14797         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
14798         ARM to the new style trampoline.
14799
14800 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
14801
14802         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
14803
14804         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
14805
14806 2007-10-09  Martin Baulig  <martin@ximian.com>
14807
14808         * debug-debugger.h
14809         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
14810         `field_info_offset_offset'.     
14811
14812 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14813
14814         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
14815         removed more internal usage of the r11 register and made it available
14816         to the register allocator.
14817
14818 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14819
14820         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
14821         when sharing generics and treat type variables as references.
14822
14823 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14824
14825         * mini-ppc.c: started removing the internal uses of register r11
14826         to eventually allow the register allocator to manage it as an
14827         additional available register.
14828
14829 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14830
14831         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
14832
14833 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
14834
14835         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
14836         specific trampolines as they are not performance critical as a jump
14837         target (maybe align as before only for AOT code?). This saves about
14838         200 KB of native code on x86 for monodevelop startup.
14839
14840 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14841
14842         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
14843         monodevelop startup.
14844
14845 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
14846
14847         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
14848
14849         * mini-sparc.h mini-sparc.c: Implement IMT support.
14850
14851         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
14852         its smaller and doesn't clobber sparc_g1.
14853
14854         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
14855
14856 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14857
14858         * mini-ppc.c: optimized the size of the IMT thunks a bit.
14859
14860 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
14861
14862         * mini-ppc.c: implemented fast delegate invocation.
14863
14864 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14865
14866         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
14867
14868 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14869
14870         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
14871         code to the new style trampoline in preparation for IMT support.
14872
14873 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14874
14875         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
14876         systems already. This also reduces the specific trampiline sizes and
14877         prepares for the use of r12 as the IMT identifier register.
14878
14879 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14880
14881         * mini-mips.h: endianess fix (simplified from a patch by
14882         Thomas Kunze <thommy@tabao.de>, bug #323737).
14883
14884 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14885
14886         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
14887         to access ucontext fields and enable netbsd support
14888         (partially from Magnus Henoch <mange@freemail.hu>).
14889
14890 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14891
14892         * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
14893         use the preprocessor from the CPP env var if it is set.
14894
14895 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14896
14897         * mini-trampolines.c: fixed an assertion and moved it earlier in the
14898         code, before interface_offset gets used.
14899
14900 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
14901
14902         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
14903         mono_class_setup_vtable () before accessing klass->vtable.
14904
14905 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
14906
14907         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
14908         hackish.
14909
14910 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
14911
14912         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
14913         IMT slots (this saves hundreds of KB of memory in programs like
14914         IronPython and Monodevelop).
14915
14916 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14917
14918         * mini.c: print the delegate counter.
14919
14920 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
14921
14922         * mini-x86.c: make it easier to enable the debugging code for IMT
14923         slots.
14924
14925 2007-09-28  Martin Baulig  <martin@ximian.com>
14926
14927         * debug-debugger.h
14928         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
14929         `mono_method_klass_offset' and `mono_method_token_offset'.
14930
14931 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14932
14933         * mini.c: First generics sharing implementation.  Can only share
14934         in very simple cases.  If sharing doesn't work it falls back to
14935         dedicated compilation.
14936
14937         * mini.h: Flag in MonoCompile to specify whether generic
14938         compilation is shared.  Flags enum for marking which generic inst
14939         of a context is used.  Prototypes for helper functions.
14940
14941         * generic-sharing.c: Helper functions for generic method sharing.
14942
14943         * optflags-def.h: Optimization flag (gshared) for enabling generic
14944         method sharing added.
14945
14946         * Makefile.am: generic-sharing.c added.
14947
14948 2007-09-19 Daniel Nauck <dna@mono-project.de>
14949
14950         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
14951
14952 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
14953         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
14954         fixes bug 325507.
14955
14956 2007-09-19  Martin Baulig  <martin@ximian.com>
14957
14958         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
14959         mono_debug_cleanup() is now part of mono_cleanup().
14960
14961 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14962
14963         * driver.c (mono_main): Fix a warning.
14964
14965 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14966
14967         * aot-compiler.c: Optimize various parts when processing large assemblies.
14968         Fixes ##325568.
14969
14970         * mini.c (mono_patch_info_hash): Improve hash function.
14971
14972 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14973
14974         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
14975         
14976         Code is contributed under MIT/X11 license.
14977
14978 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14979
14980         * mini.c (mini_init): Fix a leak.
14981
14982         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
14983
14984 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14985
14986         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
14987
14988 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14989
14990         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
14991
14992 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14993
14994         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
14995         variance tests.
14996
14997         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
14998
14999         * mini.c (handle_alloc): Enable managed allocators in AOT code.
15000
15001         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
15002
15003         * aot-runtime.c (decode_patch_info): Ditto.
15004
15005 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15006
15007         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
15008         static case. Cache delegates in architecture specific code, 
15009         based on number of parameters.
15010         
15011         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
15012         in architecture specific code, based on number of parameters.
15013         
15014         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
15015         caching happen in architecture specific code now.
15016         
15017         Code is contributed under MIT/X11 license.
15018
15019 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15020
15021         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
15022         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
15023         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
15024
15025         Code is contributed under MIT/X11 license.
15026
15027 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15028         * mini.c: (mono_thread_abort) Fixed bug #82416.
15029
15030 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15031
15032         * mini.: hook the new managed GC allocation feature into the JIT.
15033
15034 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15035
15036         * mini.c: implementation for the new runtime tls opcode.
15037
15038 2007-09-11  Martin Baulig  <martin@ximian.com>
15039
15040         * debug-debugger.h
15041         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
15042         `mono_method_inflated_offset'.
15043
15044 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
15045
15046         * driver.c mini.h mini.c: Add a new devel command line option for injecting
15047         async exceptions into a method.
15048
15049         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
15050         purpose of testing whenever the unwinder works at every instruction.
15051
15052 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15053
15054         * mini.c: check accessibility of method used in ldftn (fixes
15055         bug #82635).
15056
15057 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
15058
15059         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
15060
15061         * inssel.brg: Fix a warning.
15062
15063 2007-09-03  Martin Baulig  <martin@ximian.com>
15064
15065         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
15066         now takes the `main_method' as argument.
15067
15068 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
15069
15070         * cpu-sparc.md (endfilter): Add missing src1:i argument.
15071
15072 2007-08-30  Jonathan Chambers <joncham@gmail.com>
15073
15074         * driver.c: include the cil-coff.h header on Windows.
15075         
15076         Code is contributed under MIT/X11 license.
15077
15078 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15079
15080         * mini.c, driver.c: don't include the cil-coff.h header.
15081
15082 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15083
15084         * mini.c: flag places that needs fixes fo soft-float support.
15085
15086 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
15087
15088         * mini.h, inssel-float.brg: fix soft-float constant loads on big
15089         endian systems (partially from Dean Jenkins, bug #81924).
15090
15091 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15092
15093         * mini.c (check_linkdemand): Remove embedded reference object in
15094         call to LinkDemandSecurityException.
15095         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
15096         with an IntPtr instead of a reference object.
15097
15098 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15099
15100         * mini.c (handle_initobj): Handle alignment properly.
15101
15102         * inssel.brg (mini_emit_memset): Ditto. 
15103
15104         * inssel.brg (mini_emit_memcpy): Ditto. 
15105
15106         * inssel-sparc.brg: Ditto.              
15107
15108         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
15109
15110 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
15111
15112         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
15113         exceptions raised in unmanaged code. Fixes part of #82594.
15114
15115 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15116
15117         * mini.c (mono_method_to_ir), declsec.c
15118         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
15119
15120 2007-08-22  Martin Baulig  <martin@ximian.com>
15121
15122         * debug-mini.h
15123         (MonoDebuggerThreadInfo): New typedef.
15124         (mono_debugger_thread_table): New global variable.
15125         (mono_debugger_thread_created): New public function.
15126         (mono_debugger_thread_cleanup): New public function.
15127
15128         * debug-debugger.h
15129         (MonoDebuggerInfo):
15130         - removed `get_current_thread' and `lookup_assembly'.
15131         - removed `data_table'.
15132         - added `thread_table'.
15133
15134         * mini.c
15135         (mono_thread_start_cb): Call mono_debugger_thread_created().
15136         (mono_thread_attach_cb): Likewise.
15137         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
15138         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
15139         initial domain.
15140
15141         * driver.c (mono_main): Move mono_debug_init() up, before calling
15142         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
15143
15144 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15145
15146         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
15147         together when passing several arguments of type double (gives a small
15148         speedup and saves a few bytes of generated code).
15149
15150 2007-08-20  Jb Evain  <jbevain@novell.com>
15151
15152         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
15153
15154 2007-08-20  Jb Evain  <jbevain@novell.com>
15155
15156         * mini.c (mono_method_to_ir): throw MethodAccessException
15157         and FieldAccessException instead of InvalidProgramException.
15158
15159 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15160
15161         * mini.c: CoreCLR security checks.
15162
15163         * mini.h: Removed MonoSecurityMode (moved to
15164         metadata/security-manager.h) and mono_security_mode global var
15165         (replaced by set/get functions in security-manager.h).
15166
15167         * driver.c: Added "core-clr-test" security mode for testing.  Used
15168         set-function for setting security mode.
15169
15170 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15171
15172         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
15173         the new jit_info_table.
15174
15175         * driver.c: Test code for the new jit_info_table (enabled by the
15176         define MONO_JIT_INFO_TABLE_TEST).
15177
15178 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
15179
15180         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
15181         detection of call <REG> instruction sequence. Fixes build on freebsd.
15182
15183 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
15184
15185         * mini-exceptions.c: Fix a warning.
15186
15187 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15188
15189         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
15190         stack overflow handling code on amd64 too.
15191
15192         * mini-exceptions.c (mono_setup_altstack): Make this use 
15193         mono_thread_get_stack_bounds ().
15194
15195         * mini-x86.h: Disable sigaltstack on solaris x86.
15196
15197 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
15198
15199         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
15200
15201 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
15202
15203         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
15204
15205 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15206
15207         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
15208
15209         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
15210
15211 2007-08-03  Neale Ferguson <neale@sinenomine.net>
15212
15213         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
15214         due to alignment.
15215
15216 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15217
15218         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
15219         to be emitted (bug #82281).
15220
15221 2007-08-01  Martin Baulig  <martin@ximian.com>
15222
15223         Merged the `debugger-dublin' branch.
15224
15225         * debug-debugger.h (MonoDebuggerInfo):
15226         Removed the `old_*' compatibility entries.
15227         Added `debugger_version' and `data_table'.
15228         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
15229         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
15230
15231         * debug-mini.c
15232         (MiniDebugMethodBreakpointInfo): Add `address_list'.
15233         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
15234         instead of a `gconstpointer'.
15235         (mono_debugger_insert_method_breakpoint): Return a
15236         `MonoDebugMethodAddressList *'.
15237
15238 2007-06-28  Martin Baulig  <martin@ximian.com>
15239
15240         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
15241
15242 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15243
15244         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
15245         __builtin_frame_address () since it is broken on older gcc versions.
15246
15247 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15248
15249         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
15250         on the stack overflow handling and made the managed stack overflows
15251         catchable in most cases using soft guard pages.
15252         * exceptions-x86.c: added code to restore the protection in the soft
15253         guard pages at the end of exception handling.
15254
15255 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15256
15257         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
15258
15259 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
15260
15261         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
15262         exception handling.
15263
15264 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
15265
15266         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
15267         signal handling support until it has been ported to the new mechanism.
15268         * mini.c: fixed stack overflow detection and use the new
15269         architecture code  to handle signals on the altstack.
15270
15271 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15272
15273         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
15274         stack overflows on the alt stack.
15275
15276 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
15277
15278         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
15279         stack overflows on the alt stack.
15280
15281 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
15282
15283         * exceptions-ppc.c: cleanup preparing for altstack support.
15284
15285 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
15286
15287         * exceptions-arm.c: cleanup preparing for altstack support.
15288
15289 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15290
15291         * mini.c (print_jit_stats): Output hazard pointer stats.
15292
15293 2007-07-26  Mark Probst  <mark.probst@gmail.com>
15294
15295         * driver.c, mini.c: Replaced security mode flags with a single
15296         enum variable.
15297
15298 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15299
15300         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
15301
15302 2007-07-25  Mark Probst  <mark.probst@gmail.com>
15303
15304         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
15305         (which doesn't do anything yet) for activating Core CLR
15306         (Silverlight) security.
15307
15308 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15309
15310         * mini-codegen.c: work around a possible gcc bug on arm.
15311
15312 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15313
15314         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
15315         message for platforms that don't support AOT compilation.
15316
15317 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
15318
15319         * mini.h, mini.c, driver.c: temporary smcs hack.
15320
15321 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
15322
15323         * mini-arm.h, mini-arm.c: arm EABI fixes.
15324
15325 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15326
15327         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
15328         case.
15329
15330         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
15331         trampolines taking a method argument.
15332
15333         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
15334
15335         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
15336         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
15337
15338         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
15339         JIT compilation throws an exception. Fixes #82050.
15340
15341 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15342
15343         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
15344         with the MONO_EXCEPTION_ defines.
15345
15346 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
15347
15348         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
15349         #82117.
15350         
15351         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
15352         the cause of an assertion.
15353
15354 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
15355
15356         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
15357         removed.
15358
15359 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15360
15361         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
15362         assert. Should fix #82103.
15363
15364 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15365
15366         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
15367         here too. Fixes #82095.
15368
15369         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
15370         addresses.
15371
15372         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
15373
15374         * mini-amd64.h: Enable IMT for amd64.
15375         
15376         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
15377
15378 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
15379
15380         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
15381
15382 2007-07-12  Mark Probst  <mark.probst@gmail.com>
15383
15384         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
15385         as soon as check_linkdemand sets an exception_type.
15386
15387 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15388
15389         * mini-x86.c: fixed offsets for IMT call sequence.
15390         * mini-x86.h: enable IMT again.
15391
15392 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15393
15394         * trace.c (mono_trace_enter_method): Decode MonoType too.
15395
15396         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
15397
15398         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
15399
15400         * mini-amd64.c: Add preliminary IMT implementation.
15401         
15402 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
15403
15404         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
15405         understand the new IMT-base interface invocation (thanks to
15406         Daniel Nauck for the report and the remote debugging session).
15407
15408 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15409
15410         * mini-x86.c: size and speed optimizations for the IMT bsearch.
15411
15412 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15413
15414         * Makefile.am (aotcheck): Make this actually use the AOTed code.
15415
15416 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
15417
15418         * mini-trampolines.c: implement AOT IMT support.
15419         * mini-x86.h: enable IMT support for wider testing.
15420
15421 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15422
15423         * inssel.brg (emit_imt_argument): Add aot support here.
15424
15425         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
15426
15427 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15428
15429         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
15430         of the IMT implementation, partially from massi, with my
15431         implementation of the bsearch sequence. Disabled by default until
15432         the AOT code is implemented.
15433
15434 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15435
15436         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
15437
15438         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
15439
15440 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15441
15442         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
15443         arch-independent IMT JIT code from Massimiliano
15444         Mantione (massi@ximian.com) with small cleanups from me.
15445
15446 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
15447
15448         * Makefile.am: fix svn invocation to get the svn revision to be
15449         independent of the local language (build fix).
15450
15451 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15452
15453         * mini.c (inline_method): Reset cfg->exception_type if the
15454         inlining is aborted.  Fixes: 82049.
15455
15456 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15457
15458         * mini.c: remove assert from exception handling code when exception_ptr
15459         is not set.
15460
15461 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15462
15463         * mini.c (mono_codegen): Add an assert.
15464
15465         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
15466         enter and leave code.
15467         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
15468
15469 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
15470
15471         * mini-ppc.c: fixed memory corruption for localloc(0)
15472         (bug #81852).
15473
15474 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15475         
15476         * mini.c: Fix warnings.
15477
15478 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15479
15480         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
15481         to emit better double->int conversions.
15482
15483 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15484
15485         * mini.c: the provided Min/Max optimizations are valid for unisgned
15486         ints.
15487
15488 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15489
15490         * 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
15491
15492 2007-06-28  Miguel de Icaza  <miguel@novell.com>
15493
15494         * mini.c (mono_running_on_valgrind): Add support for reporting the
15495         method and  its boundaries to valgrind.
15496
15497 2007-06-28  Martin Baulig  <martin@ximian.com>
15498
15499         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
15500
15501 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
15502
15503         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
15504
15505         * generic.2.cs: Add new test case.
15506
15507 2007-06-25  Martin Baulig  <martin@ximian.com>
15508
15509         Merged the `debugger-dublin' branch.
15510
15511         * debug-mini.c
15512         (mono_debugger_insert_method_breakpoint): New public method.
15513         (mono_debugger_remove_method_breakpoint): Likewise.
15514         (mono_debugger_check_breakpoints): New static method.
15515         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
15516
15517         * debug-debugger.h (MonoDebuggerInfo):
15518         Renamed (to keep backward compatibility in the vtable):
15519         `insert_breakpoint' -> `old_insert_breakpoint'.
15520         `remove_breakpoint' -> `old_remove_breakpoint'.
15521         `create_string' -> `old_create_string'.
15522         `lookup_class' -> `old_lookup_class'.
15523         `lookup_type' -> removed; changed into a dummy field.
15524         `lookup_assembly' -> `old_lookup_assembly'.
15525         Added (same functionality, but different signature):
15526         `create_string', `lookup_class', `lookup_assembly'
15527         Added new:
15528         `get_method_addr_or_bpt', `remove_method_breakpoint',
15529         `runtime_class_init'.
15530
15531         * debug-debugger.c: Merged the `debugger-dublin' branch.
15532
15533 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
15534
15535         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
15536         well.
15537         (peephole_pass): Likewise.
15538
15539 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15540
15541         * driver.c: hopefully make setaffinity work also for ancient
15542         versions of linux.
15543
15544 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
15545
15546         * driver.c : win32 build fix.
15547
15548 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15549
15550         * driver.c: check for the MONO_NO_SMP env var and bind to a single
15551         processor if it is set.
15552
15553 2007-06-21  Martin Baulig  <martin@ximian.com>
15554
15555         * debug-mini.h: New file.
15556
15557         * debug-mini.c
15558         (mono_debugger_insert_breakpoint_full): Moved here from
15559         ../metadata/mono-debug-debugger.c.
15560         (mono_debugger_remove_breakpoint): Likewise.
15561         (mono_debugger_breakpoint_callback): Likewise.
15562
15563 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15564
15565         * jit-icalls.c (mono_helper_compile_generic_method): Update to
15566         changes in MonoGenericClass.
15567
15568 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
15569
15570         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
15571
15572 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15573
15574         * jit-icalls.c (mono_helper_compile_generic_method): Update to
15575         removal of MonoGenericMethod.
15576
15577 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15578
15579         * mini-exceptions.c: hooks for the exception events profiling API.
15580
15581 2007-06-14  Randolph Chung  <tausq@debian.org>
15582
15583         * Makefile.ma: Add hppa target.
15584         * mini-arch.h: Include mini-hppa.h
15585         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
15586         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
15587         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15588
15589 2007-06-14  Randolph Chung  <tausq@debian.org>
15590
15591         * inssel.brg: Add rules for "chained" compare-branch operations so that
15592         a single compare op can affect multiple branches.  Adjust cost for
15593         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
15594         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
15595         cost for some rules so that they can more easily be overridden by
15596         per-arch rules (with fixes from lupus).
15597         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15598
15599 2007-06-13  Randolph Chung  <tausq@debian.org>
15600
15601         * mini-ops.h: Reorder branch ops so that they match the order of the
15602         corresponding CEE_* ops.  The code expects them this way.
15603         Add new ops for HPPA target.
15604         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15605
15606 2007-06-13  Randolph Chung  <tausq@debian.org>
15607
15608         * mini-exceptions.c: Handle cases where the stack grows towards
15609         larger addresses.
15610         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
15611
15612 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15613
15614         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
15615         counter.
15616         * driver.c: explain where a non-matching corlib is found.
15617
15618 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15619
15620         * mini.c (print_jit_stats): Output dynamic code allocation stats.
15621
15622 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
15623
15624         * mini-exceptions.c: Generate a method profile leave event during
15625         an exception to ensure that the profiler gets notified.
15626
15627 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
15628
15629         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
15630         branch.
15631
15632         * cpu-amd64.md: Add long_and/or/xor opcodes.
15633
15634 2007-06-06  Wade Berrier  <wberrier@novell.com>
15635
15636         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
15637         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
15638         length of instruction shr_imm (expected 8, got 10)
15639
15640 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
15641
15642         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
15643
15644 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15645
15646         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
15647         MonoInternalHashTable again (fixed bug in the internal hash table
15648         code).
15649
15650 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15651
15652         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
15653         Have to figure out what makes it crash the SWF regression.
15654
15655 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
15656
15657         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
15658
15659 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15660
15661         * mini.c: optimize out the type check when storing null in a
15662         reference array.
15663
15664 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15665
15666         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
15667         MonoInternalHashTable.
15668
15669 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15670
15671         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
15672         signed integer methods.
15673
15674 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
15675
15676         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
15677         permanently since the current approach doesn't work.
15678
15679 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
15680
15681         * inssel.brg (stmt): Only call delegate->invoke_impl if 
15682         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
15683
15684 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
15685
15686         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
15687         the sreg2==rdx case.
15688         
15689         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
15690         account if it contains a rex prefix.
15691         (peephole_pass): Handle OP_FMOVE as well.
15692
15693 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
15694
15695         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
15696         as it causes regressions.
15697
15698 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15699
15700         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
15701         static case as well.
15702
15703         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
15704
15705         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
15706         (mono_arch_get_this_arg_from_call): Ditto.
15707
15708         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
15709
15710         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
15711         invoke_impl field.
15712
15713         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
15714         (mono_arch_get_this_arg_from_call): Ditto.
15715
15716         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
15717         
15718         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
15719         try to create optimized invoke code and use that for further invocations. 
15720         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
15721
15722         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
15723
15724 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
15725
15726         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
15727         sealed classes or methods.
15728         *devirtualization.cs: tests for the new optimization
15729
15730 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
15731
15732         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
15733         by the update_volatile () function.
15734
15735 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
15736
15737         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
15738         require it.
15739
15740         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
15741
15742 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15743
15744         * mini.c: Add configure checks for header files.
15745         * mini-x86.c: Add configure checks for header files.
15746         * trace.c: Add configure checks for header files.
15747         * aot-runtime.c: Add configure checks for header files.
15748         * aot-compiler.c: Add configure checks for header files.
15749         * driver.c: Add configure checks for header files.
15750         * mini-codegen.c: Add configure checks for header files.
15751         
15752         Code is contributed under MIT/X11 license.
15753
15754 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15755
15756         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
15757         icompare_imm -128 + op_iclt. Fixes #81703.
15758
15759 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
15760
15761         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
15762
15763 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15764
15765         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
15766         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
15767         so that all isinst checks now use "interface_bitmap".
15768
15769 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
15770
15771         * cpu-amd64.md (jmp): Fix a warning.
15772
15773         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
15774
15775         * basic.cs: Add new regression test.
15776
15777         * basic.cs: Remove test which is now in basic-long.cs.
15778
15779         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
15780
15781         * basic-long.cs: Add new test.
15782         
15783 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
15784
15785         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
15786
15787 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15788
15789         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
15790
15791         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
15792         places.
15793         
15794         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
15795         throwing code a bit.
15796
15797         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
15798         the exception throwing code a bit.
15799
15800         * mini-x86.c (get_call_info): Allocate result from a mempool.
15801
15802 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
15803
15804         * aot-compiler.c (find_typespec_for_class): Fix the assert.
15805
15806         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15807
15808         * mini.h (MonoCompile): Add 'token_info_hash' field.
15809
15810         * mini.c: Save token->method associations during compilation so the AOT 
15811         compiler can use it.
15812         
15813         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
15814         which reference generic classes and methods.
15815
15816 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
15817
15818         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
15819
15820         * aot-compiler.c (compile_method): Fix a typo in a comment.
15821
15822         * aot-runtime.c (decode_cached_class_info): Skip generic types.
15823
15824         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
15825         everything generic.
15826
15827         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
15828
15829 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
15830
15831         * mini.h (MonoCompile): Add 'args' field.
15832
15833         * mini.c (mono_compile_create_vars): Store variables representing the arguments
15834         into cfg->args.
15835
15836         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
15837
15838 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
15839
15840         * mini.c (mono_compile_get_interface_var): Remove this unused function.
15841
15842         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
15843
15844         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
15845         opcodes for some opcodes.
15846
15847         * mini.h *.brg *.c: Use the new opcodes.
15848
15849 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15850
15851         * mini.h: Bumped aot revision.
15852
15853         * inssel.brg: modified code generation of type checks for interfaces
15854         to use the new "MonoClass.interface_bitmap" instead of the old
15855         "MonoClass.interface_offsets".
15856
15857 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15858
15859         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
15860
15861 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
15862
15863         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
15864         64 bit platforms.
15865
15866 2007-04-27  Neale Ferguson <neale@sinenomine.net>
15867
15868         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
15869
15870 2007-04-27  Wade Berrier  <wberrier@novell.com>
15871
15872         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
15873         mini.h) to fix build.
15874
15875 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15876
15877         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
15878         
15879         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
15880         causes the corlib unit tests to fail.
15881
15882 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15883
15884         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
15885
15886         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
15887
15888         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
15889         opcodes to the comparison relations.
15890
15891         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
15892         opcodes to their types.
15893         
15894         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
15895
15896         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
15897         it in cfg->arch.cinfo.
15898
15899         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
15900
15901         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
15902         cfg->cil_offset_to_bb.
15903
15904 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15905
15906         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
15907         created becase of initlocals.
15908
15909 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
15910
15911         * mini-alpha.c cpu-alpha.md: More alpha port work from 
15912         Sergey Tikhonov <tsv@solvo.ru>.
15913
15914 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
15915
15916         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
15917
15918 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
15919
15920         * cpu-s390.md (break): Correct the length of break instruction.
15921
15922 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
15923
15924         * mini.c: fix a couple of soft-float issues and comments.
15925
15926 2007-04-15  Miguel de Icaza  <miguel@novell.com>
15927
15928         * trace.c (is_filenamechar): - is also a filename char.
15929
15930 2007-04-15  Neale Ferguson <neale@sinenomine.net>
15931
15932         * mini-s390.c: Correct checking for enum type in return value processing.
15933
15934 2007-04-14  Raja R Harinath  <rharinath@novell.com>
15935
15936         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
15937         (version.h): Makefile is in the build directory.
15938
15939 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
15940
15941         * mini-amd64.h: fix for assertion failure on Solaris/amd64
15942
15943 2007-04-11  Martin Baulig  <martin@ximian.com>
15944
15945         * mini.c (can_access_member): Fix handling of generic classes;
15946         fixes #81259.
15947
15948 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
15949
15950         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
15951
15952 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
15953
15954         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
15955
15956 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15957
15958         * mini-codegen.c: make sure the right spill amount is
15959         used for fp or integer registers (fixes the float_sub_spill() on ppc).
15960
15961 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
15962
15963         * mini-ppc.c: fixes for the fp_branch_nan test.
15964
15965 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
15966
15967         * basic.cs: Comment out new test which still fails on ia64.
15968
15969 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15970
15971         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
15972
15973 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15974
15975         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
15976
15977 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
15978
15979         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
15980         on 64 bit machines. Fixes part of #80738.
15981
15982         * basic.cs: Add regression test.
15983
15984 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
15985
15986         * inssel.brg basic.cs: Revert previous change to fix build.
15987
15988         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
15989         platforms.
15990         
15991         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
15992
15993         * basic.cs: Add new regression test.
15994
15995 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
15996
15997         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
15998         many arguments.
15999
16000 2007-03-16  Neale Ferguson <neale@sinenomine.net>
16001
16002         * cpu-s390x.md: Correct length of break instruction.
16003
16004 2007-03-16  Neale Ferguson <neale@sinenomine.net>
16005
16006         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
16007         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
16008
16009 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
16010
16011         * *.c: Begin WIN64 port.
16012         * mini.c:  Use correct register in profiler.
16013         * mini-amd64.c: No inline assembly on Win64.
16014         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
16015         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
16016         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
16017         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
16018         mono_arch_ip_from_context for Win64.
16019         
16020         Contributed under MIT/X11 license.
16021
16022 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
16023
16024         * exceptions-amd64.c (seh_handler): Ditto.
16025
16026         * exceptions-x86.c (seh_handler): Fix a memory leak.
16027
16028 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
16029
16030         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
16031         mini-s390x.c: fixed peephole optimizations to deal
16032         correctly with 1 and 2 byte reload avoidance.
16033
16034 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16035
16036         * cpu-s390.md, cpu-s390x.md: update localloc length.
16037
16038 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16039
16040         * cpu-g4.md: added missing descriptions.
16041
16042 2007-03-14  Miguel de Icaza  <miguel@novell.com>
16043
16044         *  Makefile.am: Add support so the tail tests are not executed on
16045         PowerPC as that is a known limitation of the PowerPC port.
16046
16047 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16048
16049         * runmdesc.bat:  Move to msvc directory.
16050         
16051 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16052
16053         * runmdesc.bat:  Run executable that was produced by the current
16054         target and sent via an argument.
16055         
16056 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
16057
16058         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
16059         #81102.
16060
16061         * generics.2.cs: Add regression test.
16062
16063 2007-03-09  Wade berrier  <wberrier@novell.com>
16064
16065         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
16066
16067 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
16068
16069         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
16070         AOT code depends on this.
16071
16072 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
16073
16074         * mini.c: more precise tracking of types in the eval stack
16075         (part of fix for bug #81044).
16076
16077 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
16078
16079         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
16080
16081         * aot-compiler.c (encode_patch): Remove an obsolete comment.
16082
16083 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16084
16085         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
16086
16087         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
16088
16089 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
16090
16091         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
16092         a pointer on 64 bit systems. Fixes #80190.
16093
16094         * iltests.il: Add new regression test.
16095
16096 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16097
16098         * mini.c: inline a constant for Environment.IsRunningOnWindows.
16099
16100 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
16101
16102         * trace.c: Remove an erroneous alignemnt check when tracing.
16103           Fixes --trace on OSX86.
16104
16105 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
16106
16107         * mini-$(arch).h: initialize SP in context for all the archs.
16108
16109 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
16110
16111         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
16112         regressions in the thread tests.
16113
16114 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
16115
16116         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
16117         - fixed implementation of LOCALLOC opcode
16118         - implemented non-un compare for floats
16119         - code cleanup
16120         - implementation of FDIV and CKFINITE opcodes
16121         - fixes for latest mono updates
16122         - additional arch opcodes
16123
16124 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16125
16126         * Makefile.am: simplify and merge rules for cross-compilation.
16127
16128 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
16129
16130         * local-propagation.c: Actually *apply* the fix for bug 80591...
16131
16132 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16133
16134         * mini-exceptions.c: backuot part of the last change
16135         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
16136
16137 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
16138         * inssel.brg: Fix bug 59286.
16139
16140
16141 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
16142
16143         * mini-exceptions.c: patch from Zoltan to correctly check for
16144         stack boundaries (using the stack register, not the frame register),
16145         fixes bugs #80724, #79717.
16146
16147 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
16148
16149         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
16150         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
16151
16152         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
16153         presence of frame pointer elimination.
16154
16155 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
16156         
16157         * mini-x86.h: NetBSD UCONTEX_REG defines.
16158
16159 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
16160
16161         * inssel-amd64.brg: Fix amd64 build.
16162
16163 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
16164
16165         * mini.h: remove extern to workaround what looks likes gcc bug 26905
16166         on amd64.
16167
16168 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
16169
16170         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
16171         ends.
16172
16173         * mini-<ARCH>.c: Use mono_is_regsize_var ().
16174
16175 2007-01-30 Mark Mason <mason@broadcom.com>
16176
16177            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
16178            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
16179            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
16180            beginning support for CEE_JMP [not quite working yet]
16181            * tramp-mips.c: LMF handling now works
16182         
16183 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
16184
16185         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
16186
16187         * mini.h (NULLIFY_INS): New macro.
16188
16189 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
16190
16191         * mini.c: statistical profiler fix for windows, patch
16192         from Tor Lillqvist (tml@novell.com).
16193
16194 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
16195         * local-propagation.c: Fix bug 80591.
16196
16197 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
16198
16199         * Makefile.am: put back the --export-dynamic option as with
16200         the previous gmodule flags (thanks to Robert Jordan).
16201
16202 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
16203
16204         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
16205
16206         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
16207         simplify and speed up the local register allocator. Also rename some fields
16208         like iassign->vassign.
16209         
16210         * regalloc.c: Remove some functions which are no longer used since their
16211         inlined version is in mini-codegen.c.
16212         
16213         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
16214
16215         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
16216
16217 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
16218
16219         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
16220         narrowing. Fixes #80622.
16221
16222         * iltests.il: Add new regresssion test. 
16223
16224 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16225
16226         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
16227         debug-debugger.c, debug-debugger.h: warning fixes.
16228         * driver.c: updated copyright year and made it fit in one line.
16229
16230 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
16231
16232         * aot-runtime.c: updated to use mono-dl instead of gmodule.
16233
16234 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
16235
16236         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
16237
16238         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
16239
16240         * iltests.il: Add new test for bug #80507.
16241
16242 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16243
16244         * mini-arm.h: use soft-float also on vfp for now.
16245
16246 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16247
16248         * mini.c: fix some more soft-float issues.
16249
16250 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16251
16252         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
16253
16254 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
16255         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
16256         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
16257         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
16258
16259 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
16260
16261         * mini-arm.c: typo fix.
16262
16263 2007-01-23  Neale Ferguson <neale@sinenomine.net>
16264
16265         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
16266
16267 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
16268
16269         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
16270         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
16271
16272         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
16273
16274         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
16275
16276         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
16277         
16278         * inssel.brg: Fix a warning.
16279
16280         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
16281
16282         * abcremoval.c ssa.c ssapre.c: Update after this change.
16283         
16284         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
16285
16286         * dominators.c (df_set): Use mono_bitset_union_fast.    
16287
16288 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
16289
16290         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
16291         mini-codegen.c: reduce relocations and memory usage for the cpu
16292         description.
16293
16294 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
16295
16296         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
16297
16298         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
16299         to reduce their size.
16300
16301 2007-01-19 Mark Mason <mason@broadcom.com>
16302
16303         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
16304         * mini-mips.c: more configuration macros, support long conditional branches, additional
16305         asserts, fix epilog instrumentation.
16306         * mini-mips.h: use standard stack walk
16307         * cpu-mips.md: increase size of div, rem and conditional branches
16308         
16309 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
16310
16311         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
16312         to cpu spec data.
16313
16314 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
16315
16316         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
16317         (compile_method): Ditto.
16318
16319         * aot-runtime.c (decode_klass_info): Ditto.
16320
16321         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
16322         needed by the code generated by inssel.brg. Also fix a warning.
16323
16324 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
16325
16326         * mini.c: deal with enums that become genericinsts by
16327         being nested in a generic class (bug #79956).
16328
16329 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
16330
16331         * mini.c: match the generic definition to check for
16332         private access with generic types (bug #78431).
16333
16334 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
16335
16336         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
16337         to make life easier for people cross-compiling that insist on not
16338         using scratchbox.
16339
16340 2007-01-17 Mark Mason <mason@broadcom.com>
16341
16342         * inssel-long.brg: patch to deal with mips missing flags
16343         * inssel-long32-mips.brg: implement overflow checks
16344         * insset-mips.brg: implement overflow checks
16345         * mini-mips.h: implement conditional exception handling
16346         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
16347           Remove unused code, minor cleanups.
16348         * exceptions-mips.c: minor cleanups
16349         * mini-ops.h: add mips conditional exception ops
16350         * cpu-mips.md: add mips conditional exception ops
16351
16352         
16353 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
16354
16355         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
16356         to deal with mips missing of flags.
16357
16358 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
16359
16360         * exceptions-ppc.c: execute fault handlers.
16361
16362 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
16363
16364         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
16365
16366 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16367
16368         * mini.c: handle also floating point values in initialize_array.
16369
16370 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16371
16372         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
16373         array initialization and make it conditional on the intrins option.
16374
16375 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16376
16377         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
16378         relocations and put the patch info names close to the enum definition.
16379
16380 2007-01-15 Mark Mason <mason@broadcom.com>
16381
16382         * basic.cs, exceptions.cs: break up large tests to increase debugability.
16383
16384 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
16385
16386         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
16387
16388 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16389
16390         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
16391
16392 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16393
16394         * Makefile.am: distribute the mips sources.
16395
16396 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
16397
16398         * mini-codegen.h: handle bug #80489 here, by excluding ecx
16399         directly.
16400
16401 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
16402
16403         * cpu-x86.md: back out for now as this triggers other regressions.
16404
16405 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16406
16407         * cpu-x86.md: force src1 and dest regpair for long shift instructions
16408         to eax:edx, so ecx can't get allocated to them (bug #80489).
16409
16410 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
16411
16412         * mini.c, mini-exceptions.c: enabled running fault handlers
16413         (bug #80469).
16414
16415 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16416
16417         * driver.c: If nothing fail, do not use the string "failed",
16418         because it makes it very annoying to view test result logs on the
16419         web. 
16420
16421 2006-12-30  Miguel de Icaza  <miguel@novell.com>
16422
16423         * debug-debugger.c (mono_debugger_main): Rename "main" to
16424         "main_method" to prevent a warning.
16425
16426         Remove a warning for unused field.
16427
16428 2006-12-28  Martin Baulig  <martin@ximian.com>
16429
16430         * debug-debugger.c
16431         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
16432
16433 2006-12-22  Martin Baulig  <martin@ximian.com>
16434
16435         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
16436         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
16437         seperate `.mdb_debug_info' section, so we can access it from the
16438         debugger even if the binary is stripped.
16439
16440         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
16441         from the `.mdb_debug_info' here to prevent the linker from
16442         removing that section.
16443
16444         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
16445         mdb-debug-info64.s.
16446
16447 2006-12-19  Robert Jordan  <robertj@gmx.net>
16448
16449         * mini-x86: enable the code to return small structures in
16450         registers for FreeBSD as well. Fixes bug #80278.
16451         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
16452
16453 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16454
16455         * mini-x86.c: align the stack when calling the profiler
16456         function instrumenting the prolog (on OSX).
16457
16458 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16459
16460         * mini.c: emit a break opcode where Debugger.Break () is called.
16461
16462 2006-12-13  Miguel de Icaza  <miguel@novell.com>
16463
16464         * mini.c (mono_method_to_ir): Provide useful information on this
16465         assert, to prevent others from debugging like I did.
16466
16467 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16468
16469         * mini.c: enable code which was incorrectly commented
16470         (bug #80235).
16471
16472 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
16473
16474         * mini-x86.c: enable on OSX, too, the code to return small
16475         structures in registers.
16476
16477 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
16478
16479         * mini-x86.c: remove the use of the dynamic code manager here, too.
16480
16481 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16482
16483         * mini.h, debug-debugger.c, tramp-*.c: fixed 
16484         mono_debugger_create_notification_function() to use
16485         mono_global_codeman_reserve () instead of a dynamic code manager.
16486
16487 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16488
16489         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
16490         ves_array_element_address() jit icall and use a generated
16491         managed method instead (which is about 4 times faster for a rank 3
16492         array access).
16493
16494 2006-11-29  Mark Mason  <mason@broadcom.com>
16495
16496         * basic-calls.cs: additional tests for passing
16497         structures as function arguments.
16498
16499 2006-11-29  Mark Mason  <mason@broadcom.com>
16500
16501         * mini-mips.h: disable custom exception handling
16502         * mini-mips.c: throw/rethrow should use jalr to call
16503         exception stubs.  Fixed bug with passing structures
16504         by value. More support for tracing floating point
16505         functions.
16506
16507 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16508
16509         * mini.c: fixed typo in the soft-float ldind.r4 handling
16510         (bug #80086).
16511
16512 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16513
16514         * mini.c, mini.h, driver.c: added --runtime command line
16515         option to select a different runtime than the autodetected one.
16516         * jit.h: added API for embedders to initialize with a specific
16517         runtime version.
16518
16519 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
16520
16521         * mini.c: handle also boxing of r4 values (bug #80024).
16522
16523 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16524
16525         * mini-ppc.c: force indirect calls until we reserve
16526         enough address space for all the generated code.
16527
16528 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
16529
16530         * exceptions-arm.c: workaround bugs in the libc definition
16531         of struct ucontext.
16532
16533 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16534
16535         * inssel.brg: fixes from me and Mark Mason.
16536
16537 2006-11-23  Dick Porter  <dick@ximian.com>
16538
16539         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
16540         semaphore display now we've fixed the initial value
16541
16542 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16543
16544         * inssel.brg: partially revert the last change to fix the build.
16545
16546 2006-11-21  Mark Mason  <mason@broadcom.com>
16547
16548         * inssel.brg: Add and use compare-and-branch macros to support
16549         architectures that do not have condition code registers (ie. MIPS).
16550         * *-mips.{c,brg,md}: Fix copyright statements
16551
16552 2006-11-20  Mark Mason  <mason@broadcom.com>
16553
16554         * Makefile.am: remove mini-codegen.c from list of MIPS sources
16555         * mini.c: Allow GET_CONTEXT to be specified by the arch port
16556         * mini.h: Added declaration for mono_print_ins()
16557         * mini-codegen.c: added ins_spec initializer for MIPS
16558         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
16559         vreg to be virtual and hreg to be non-virtual.
16560         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
16561         is not yet working/implemented correctly.
16562         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
16563         non-static, fixup calls to print_ins() from other parts in the file.
16564
16565 2006-11-20  Mark Mason  <mason@broadcom.com>
16566
16567         * basic-calls.cs: added tests for passing structures as arguments
16568         to calls.
16569
16570 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16571
16572         * inssel-long32.brg: optimize signed division by power of two.
16573
16574 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16575
16576         * mini-arm.c: added support for interworking with thumb code
16577         (mono must be still be built using the ARM instruction encoding).
16578
16579 2006-11-19  Miguel de Icaza  <miguel@novell.com>
16580
16581         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
16582         verifier has different rules for it.   Fixes a few verifier issues
16583         in the test suite.
16584
16585         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
16586         at the end, so people know what happened.
16587
16588 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16589
16590         * brach-opts.c: in optimize_exception_target() make sure we
16591         are in a catch clause (fixes bug #79871).
16592
16593 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16594
16595         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
16596         more soft-float support fixes.
16597
16598 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
16599
16600         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
16601         that are passed half on the stack and half in registers.
16602
16603 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16604
16605         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
16606         more mips integration work from Mark E Mason 
16607         <mark.e.mason@broadcom.com>.
16608
16609 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16610
16611         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
16612         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
16613         tramp-mips.c: added sources for the mips port, not
16614         integrated in the build yet. Contributed by
16615         Mark E Mason <mark.e.mason@broadcom.com>.
16616
16617 2006-11-14  Neale Ferguson <neale@sinenomine.net>
16618
16619         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
16620
16621 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16622
16623         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
16624         put the soft-float rules in its own file since it seems to
16625         break s390 compilation.
16626
16627 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16628
16629         * mini-arm.c: fixed wrnings.
16630
16631 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
16632
16633         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
16634         inssel-arm.brg: ARM support for soft-float.
16635
16636 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
16637
16638         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
16639         loads and stores of 32 bit fp values.
16640
16641 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
16642
16643         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
16644
16645         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
16646         works. Fixes #79852 and #79463.
16647
16648 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16649
16650         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
16651         more soft-float support WIP and fixes.
16652
16653 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
16654
16655         * mini-arm.c: some VFP updates.
16656
16657 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16658
16659         * mini-exceptions.c: 0 is a valid local var offset in some
16660         architectures, don't assert (bug #78508).
16661
16662 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
16663
16664         * exceptions-arm.c: fixed off by one error in stack walk code.
16665
16666 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16667
16668         * mini.h, mini.c: more precise tracking of type load exceptions.
16669
16670 2006-11-03  Robert Jordan  <robertj@gmx.net>
16671
16672         * Makefile.am: [WIN32] Add monow.exe target.
16673         * driver.c: [WIN32] Don't detach the console when debugging.
16674         Fixes bug #79797.
16675         
16676 2006-10-30  Miguel de Icaza  <miguel@novell.com>
16677
16678         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
16679
16680 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
16681
16682         * aot-compiler.c (emit_method_info): Add a case missed earlier.
16683
16684         * driver.c (mini_regression): Fix --regression with AOT.
16685
16686         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
16687
16688 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
16689
16690         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
16691
16692         * mini-sparc.h: Don't use sigaction on sparc/linux.
16693
16694         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
16695
16696         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
16697
16698         * mini-exceptions.c: Add proper include files for getpid ().
16699
16700 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
16701
16702         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
16703         address instead of a MonoJitInfo* to avoid decoding the exception info for the
16704         method.
16705
16706         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
16707         name cache to reduce its size.
16708
16709         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
16710
16711 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16712
16713         * mini-x86.c: Save/restore the current LMF structure more efficiently using
16714         the mono_lmf TLS variable.
16715
16716         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
16717         trampoline lmf frames.  
16718
16719         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
16720
16721 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
16722
16723         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
16724         the mono_lmf TLS variable.
16725
16726         * mini-exceptions.c: Access the LMF structure through accessors.
16727
16728         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
16729         variable instead of in jit_tls->lmf.
16730
16731         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
16732         
16733         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
16734         trampoline lmf frames.
16735
16736         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
16737
16738 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
16739
16740        * mini.c trace.c mini-x86.c: Revert these too.
16741         
16742        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
16743        signature change.
16744
16745 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
16746
16747         * genmdesc.c: removed now dead code.
16748
16749 2006-10-09  Robert Jordan <robertj@gmx.net>
16750
16751         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
16752
16753 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
16754
16755         * mini.h: do not leave gaps in the opcode values.
16756
16757 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
16758
16759         * jit-icalls.h: flag functions as internal here, too.
16760
16761 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
16762
16763         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
16764         functions with the internal attribute.
16765
16766 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
16767
16768         * aot-compiler.c: fclose the file descriptor in the profile read loop.
16769
16770 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16771
16772         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
16773         for soft-float.
16774
16775 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16776
16777         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
16778         tail calls as on other platforms.
16779
16780         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
16781
16782         * iltests.il: Add a few tailcall tests.
16783
16784 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16785
16786         * driver.c: fix loop for old compilers (bug #79521).
16787
16788 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16789
16790         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
16791
16792         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
16793
16794         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
16795         metadata without any code.
16796
16797         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
16798         more precise debugging information using gdb.
16799
16800 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16801
16802         * inssel-ia64.brg: Make the helper methods static.
16803
16804 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
16805
16806         * inssel-x86.brg: make the helper methods static.
16807
16808 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
16809
16810         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
16811
16812 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
16813
16814         * mini.c: updates for monoburg changes.
16815         * inssel.brg: make a few helper functions static as they should.
16816
16817 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16818
16819         * Makefile.am: Move mini-codegen.c to common_sources.
16820
16821 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16822
16823         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
16824         instructions.
16825         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
16826         mini-ppc.h: port to use the common local register allocator.
16827
16828 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16829
16830         * mini.h: Remove the comment too then.
16831
16832 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
16833
16834         * mini.h: put back backend.data which is to be used shortly and
16835         doesn't increase the size of MonoInst. If any 64 bit arch aligned
16836         pointers on 4 byte boundaries it'd have much bigger issues running
16837         and you can ifdef it out anyway.
16838
16839 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16840
16841         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
16842         MonoInst size by 4 bytes on 64 bit machines.
16843
16844 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16845
16846         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
16847         replacement with more meaningful field names. Arch maintainers, please
16848         check the assigned names are good enough for your arch.
16849
16850 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16851
16852         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
16853         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
16854
16855 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16856
16857         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
16858         relocations and memory requirements, put the optimization flags
16859         definitions in their own file.
16860
16861 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
16862
16863         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
16864
16865         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
16866
16867 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
16868
16869         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
16870
16871 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
16872
16873         * inssel.brg: use the correct function to get the size of an item
16874         in an array, given an element class.
16875         * aot-compiler.c: do not access class->class_size directly.
16876
16877 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16878
16879         * mini.h, debug-mini.c: added a debugging function to print
16880         info about local variables and arguments in a jitted method.
16881
16882 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
16883
16884         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
16885
16886         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
16887
16888 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
16889
16890         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
16891         inner and outer loops when passing vtypes.
16892
16893 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
16894
16895         * mini-ppc.c: take into account the cpu errata for cache flushing
16896         which caused some random errors (bug #79381).
16897
16898 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
16899
16900         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
16901         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
16902
16903 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16904
16905         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
16906         loaded.
16907
16908         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
16909         freebsd ports tree.
16910
16911         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
16912         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
16913
16914         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
16915         displacement.
16916
16917 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
16918
16919         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
16920
16921 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
16922
16923         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
16924         macro does not have to be changed during debugging.
16925
16926         * 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>.
16927
16928         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
16929
16930         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
16931         
16932         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
16933         MONO_ARCH_NO_EMULATE_MUL is defined.
16934
16935         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
16936
16937         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
16938
16939         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
16940
16941         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
16942         
16943 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16944
16945         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
16946         stuff to mini-exceptions.c where it is used.
16947
16948         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
16949         setup code, the real one is in mini-exceptions.c.
16950
16951         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
16952         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
16953         some changes from the freebsd ports tree.
16954
16955         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
16956         constants.
16957         
16958         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
16959
16960 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
16961
16962         * mini.c: on Linux, check for /proc to be mounted
16963         (bug# 79351, novell bug#201204).
16964
16965 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
16966
16967         * mini.c: handle cases where pthread_attr_getstack() behaves
16968         incorrectly (bug #78096).
16969
16970 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
16971
16972         * mini-arm.c: support larger stack frames (bug #79272).
16973
16974 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16975
16976         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
16977
16978         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
16979         tokens.
16980
16981         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
16982         mono_class_from_name () to find a class from its name.
16983
16984         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
16985
16986 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
16987
16988         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
16989
16990 2006-09-05  Kornel Pal  <kornelpal@gmail.com>
16991
16992         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
16993
16994 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16995
16996         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
16997         callinfo->trampoline.
16998
16999         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
17000         fixes #79271.
17001         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
17002         future.
17003
17004 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17005
17006         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
17007
17008 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
17009
17010         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
17011         stats.method_trampolines, it is already done by the generic trampoline code.
17012
17013         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
17014         
17015 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17016
17017         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
17018
17019         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
17020
17021         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
17022
17023         * mini.c (print_jit_stats): Print mscorlib mempool size too.
17024         
17025         * mini.c (print_jit_stats): Print new stats.
17026
17027         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
17028
17029 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17030
17031         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
17032         Address on two dimensional arrays. Fixes #78729.
17033
17034         * mini.h (MonoCompile): Add a 'skip_visibility' field.
17035
17036         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
17037         a method.
17038
17039         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
17040
17041         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
17042         #79130.
17043         
17044         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
17045         a race condition.
17046         (mini_get_ldelema_ins): Ditto.
17047
17048 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
17049
17050         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
17051         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
17052         Fixes #79213.
17053
17054 2006-08-29 Neale Ferguson <neale@sinenomine.net>
17055
17056         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
17057         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
17058
17059         * exceptions-s390x.c: Cosmetic change.
17060
17061         * tramp-s390.c: Fix warning.
17062
17063         * cpu-s390.md: Correct length of mul_imm.
17064
17065 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17066
17067         * aot-compiler.c: added binary writer with ELF backend
17068         implementation (only on Linux/x86 for now).
17069
17070 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
17071
17072         * Makefile.am: Don't run net 2.0 AOT tests.
17073
17074         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
17075         (mono_compile_assembly): Skip net 2.0 assemblies as well.
17076
17077         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
17078
17079 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17080
17081         * aot-compiler.c: simplified and refactored the asm-writing code
17082         to allow different backends.
17083
17084 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
17085
17086         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
17087
17088         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
17089         little. Share patches of type TYPE_FROM_HANDLE as well.
17090
17091         * mini.c (mono_patch_info_equal): New helper function.
17092         (mono_patch_info_hash): Ditto.
17093
17094         * aot-compiler.c (emit_method_code): Fix s390 build.
17095
17096         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
17097         is not handled because it is stored as a flag and not as a type ctor. Fixes
17098         #79016.
17099
17100 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17101
17102         * aot-compiler.c: Fix computation of GOT slot statistics.
17103         
17104         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
17105         Also remove support for not PIC AOT.
17106
17107         * mini.h: Bump AOT file format version.
17108
17109         * objects.cs: Add a test for #78990.
17110
17111         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
17112         (peter.dettman@iinet.net.au). Fixes #79087.
17113
17114         * basic-long.cs: Add a test for the above.
17115
17116 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
17117
17118         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
17119         
17120         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
17121         code somewhat.
17122
17123 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
17124
17125         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
17126         exceptions.
17127
17128 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17129
17130         * mini.c: Don't verify COM proxy invoke calls
17131         
17132
17133 2006-08-10  Dick Porter  <dick@ximian.com>
17134
17135         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
17136         which process is holding semaphores locked.
17137
17138 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
17139
17140         * mini-ia64.c mini-amd64.c: Fix #79027.
17141
17142         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
17143
17144         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
17145
17146         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
17147         implicit arguments in a vararg call. Fixes #79027.
17148
17149 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
17150
17151         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
17152         (mono_get_array_new_va_signature): Ditto.
17153
17154 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
17155
17156         * aot-runtime.c: Call init_plt lazily.
17157
17158         * inssel-long.brg: Fix unsigned long->int conversion.
17159
17160         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
17161
17162         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
17163         that most data is now in the .rss/.data section.
17164
17165 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
17166
17167         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
17168
17169         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
17170
17171         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
17172
17173         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
17174
17175         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
17176         virtual call. Fixes #79010.
17177
17178         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
17179         and use the result as the this argument in the real call.
17180
17181         * generics.2.cs: Add a new test for #79010.
17182         
17183 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
17184
17185         * mini-x86.c: Fix a warning.
17186
17187         * aot-compiler.c: Add a bunch of statistics.
17188
17189         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
17190
17191 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
17192
17193         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
17194
17195 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17196
17197         * 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>.
17198
17199 2006-07-13  Miguel de Icaza  <miguel@novell.com>
17200
17201         * mini.c (mono_method_to_ir): Obtain the original method in the
17202         CIL stream and use this to perform validation.
17203
17204         Fixed: #78816
17205
17206 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
17207
17208         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
17209         (mono_arch_call_opcode): Ditto.
17210
17211         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
17212         #78826.
17213
17214         * mini.c (mono_patch_info_dup_mp): New helper function.
17215         
17216         * aot-compiler.c (compile_method): Fix some of the memory allocated during
17217         compilation. Fixes #78827.
17218
17219 2006-07-18  Kornel Pal  <kornelpal@gmail.com>
17220
17221         * declsec.c: Use original security informations for
17222           MONO_WRAPPER_MANAGED_TO_MANAGED.
17223
17224 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
17225
17226         * mini.c: Allow Com Interop methods/classes and
17227         don't verify COM wrapper calls
17228         
17229
17230 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
17231
17232         * inssel-long32.brg: Fix long->i4 checked conversion.
17233
17234         * exceptions.cs: Add a test for the above.
17235
17236 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
17237
17238         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
17239
17240         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
17241         leaks.
17242
17243         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
17244         #78775.
17245
17246 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
17247
17248         * mini.c: Fix solaris/x86 exception handling.
17249
17250         * Makefile.am: Get rid of $(ICU_LIBS).
17251
17252 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
17253
17254         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
17255         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
17256         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
17257
17258         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
17259
17260         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
17261         this function causes a SIGSEGV.
17262
17263 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
17264
17265         * mini.c: Remove unused solaris/x86 includes.
17266
17267 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
17268
17269         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
17270
17271 2006-06-20  Jb Evain  <jbevain@gmail.com>
17272
17273         * cpu-g4.md: fix max length of start_handler instruction.
17274
17275 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
17276         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
17277
17278 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
17279         * ssa.c: Fixed bug 78653 for SSA based deadce.
17280         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
17281         MonoInst.flags, used in SSA based deadce.
17282         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
17283         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
17284
17285 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17286
17287         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
17288         it can end up using non executable memory on ppc64 systems
17289         running ppc32 userspace (fix from Johannes Berg).
17290
17291 2006-06-14  Dick Porter  <dick@ximian.com>
17292
17293         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
17294         4.1.1
17295
17296 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
17297         * mini.c: Made so that inline is locally disabled if it would
17298         trigger a .cctor, because too many apps depend on this behavior
17299         (which seems to be also the one of the MS CLR).
17300
17301 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
17302
17303         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
17304         No idea why this worked before.
17305
17306         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
17307         which branch to outer exception clauses since they could skip the
17308         inner finally clauses. Fixes #78633.
17309
17310         * exceptions.cs: Add a test for the above.
17311
17312         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
17313         Fixes #78629.
17314
17315         * iltests.il: Add a test for the above.
17316
17317 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
17318
17319         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
17320         after the end of a try bblock, to prevent asserts in mini_method_compile ().
17321
17322         * iltests.il: Add a test for the above.
17323
17324 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
17325
17326         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
17327         
17328         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
17329         methods as instrinsics.
17330
17331 2006-06-09  Wade Berrier <wberrier@novell.com>
17332
17333         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
17334         (simple-cee-ops.h ssapre-mini-ops.h)
17335
17336 2006-06-09  Neale Ferguson <neale@sinenomine.net>
17337
17338         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
17339         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
17340         instruction).
17341         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
17342         * cpu-s390x.md: Fix max. length values for a couple of instructions.
17343
17344 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17345
17346         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
17347
17348 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
17349
17350         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
17351         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
17352         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
17353         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
17354         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
17355         of opcodes, so that bug 78549 should not happen again.
17356         * ssapre.c: Updated to use the renamed files.
17357
17358 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
17359
17360         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
17361         in OP_ATOMIC_EXCHANGE_I4.
17362
17363 2006-06-07  Wade Berrier <wberrier@novell.com>
17364
17365         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
17366         in mono_debugger_create_notification_function)
17367
17368 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
17369
17370         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
17371         
17372         * mini.c (type_from_stack_type): Disable some changes which do not
17373         seem to work.
17374
17375         * driver.c: Reenable opts.
17376
17377         * mini.h (MonoStackSlot): New structure to keep track of the verification state
17378         of the evaluation stack.
17379         
17380         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
17381         evaluation stack trace at entry to the bblock.
17382
17383         * mini.c (merge_stacks): New function to perform verification of stack merges.
17384         Turned off by default.
17385
17386         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
17387         STACK_MP.
17388         
17389 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
17390
17391         * local-propagation.c: Fixed bug 78549.
17392
17393 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
17394
17395         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
17396
17397 2006-06-02  Miguel de Icaza  <miguel@novell.com>
17398
17399         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
17400         tramp-arm.c, tramp-ia64.c
17401         (mono_debugger_create_notification_function): Update signature to
17402         new signature and use new protocol for creating the notification
17403         function.  
17404
17405         Should fix the build.
17406
17407 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
17408
17409         * exceptions-ppc.c (mono_jit_walk_stack)
17410         (ves_icall_get_frame_info): Fix the build
17411
17412 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
17413
17414         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
17415
17416 2006-05-31  Raja R Harinath  <rharinath@novell.com>
17417
17418         * il2tests.2.il: New file for generics CIL tests.  Add test for
17419         #78019.
17420         * Makefile.am: Update.
17421
17422         Fix #78019
17423         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
17424         to nullable types.
17425
17426 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
17427
17428         * aliasing.c: Fixed bug 78311.
17429
17430 2006-05-29  Martin Baulig  <martin@ximian.com>
17431
17432         * mini-exceptions.c (mono_find_jit_info): When computing the
17433         native offset, check whether we're actually inside the method's
17434         code; call mono_debug_print_stack_frame() to format the frame.
17435         (ves_icall_System_Exception_get_trace): Call
17436         mono_debug_print_stack_frame() to format the stack frame.
17437         (ves_icall_get_trace): Update to the new debugging API.
17438         (mono_jit_walk_stack_from_ctx): Likewise.
17439         (ves_icall_get_frame_info): Likewise.
17440
17441         * mini.c (get_method_from_ip): Use the new debugging API.
17442         (mono_print_method_from_ip): Likewise.
17443
17444         * exceptions-ppc.c
17445         (mono_jit_walk_stack): Use the new debugging API.
17446         (ves_icall_get_frame_info): Likewise.   
17447
17448 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17449
17450         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
17451
17452 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
17453
17454         * mini.c: Added "limitator" to inline for debugging.
17455
17456 2006-05-24  Martin Baulig  <martin@ximian.com>
17457
17458         * debug-debugger.c (mono_debugger_init): Create a private,
17459         malloc()-based code manager for the notification function and
17460         intentionally leak it on exit.  This fixes the crash-on-exit race
17461         condition.
17462
17463         * tramp-amd64.c
17464         (mono_debugger_create_notification_function): Added
17465         `MonoCodeManager *' argument.
17466
17467         * tramp-x86.c
17468         (mono_debugger_create_notification_function): Added
17469         `MonoCodeManager *' argument.
17470
17471 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
17472
17473         * aliasing.c: Fixed 64 bit issue.
17474         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
17475         default since all known bugs are fixed (one more time!).
17476
17477 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17478
17479         * mini.c: write barrier support.
17480
17481 2006-05-23  Martin Baulig  <martin@ximian.com>
17482
17483         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
17484         check at the top of the file.
17485
17486 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17487
17488         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
17489         reverting changes without reason and without changelog entries.
17490
17491 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17492
17493         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
17494         to a few opcodes. Fixes #78439.
17495
17496         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
17497         consistency with other archs.
17498
17499         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
17500
17501 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17502
17503         * debug-debugger.c: fix the build.
17504
17505 2006-05-17  Martin Baulig  <martin@ximian.com>
17506
17507         * debug-debugger.c
17508         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
17509         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
17510         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
17511         (debugger_attach): Call GC_mono_debugger_add_all_threads().
17512
17513 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17514
17515         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
17516
17517 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17518
17519         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
17520         MONO_TYPE_GENERICINST.
17521         
17522         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
17523         MONO_TYPE_GENERICINST.
17524
17525 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17526
17527         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
17528         #78325.
17529
17530 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
17531
17532         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
17533         mempool.
17534         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
17535
17536 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17537
17538         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
17539         mono_trace_cleanup ().
17540
17541         * iltests.il: Fix problem with the newly added test.
17542
17543         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
17544         due to register constraints, free up the previous hreg. Fixes #78314.
17545
17546         * iltests.il: Add new test for #78314.  
17547
17548         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
17549         Interlocked.Add. Fixes #78312.
17550
17551         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
17552         
17553 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17554
17555         * inssel.brg (mini_emit_virtual_call): Fix a warning.
17556
17557 2006-05-05  Martin Baulig  <martin@ximian.com>
17558
17559         * debug-mini.c (mono_debug_open_block): New method.
17560
17561         * mini-amd64.c
17562         (mono_arch_output_basic_block): Call mono_debug_open_block() at
17563         the beginning of each basic block.
17564
17565         * mini-x86.c
17566         (mono_arch_output_basic_block): Call mono_debug_open_block() at
17567         the beginning of each basic block.
17568
17569 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
17570
17571         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
17572         default until I understand why they break the build on amd64.
17573
17574 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17575
17576         * mini.c (mini_cleanup): Call mono_cleanup ().
17577
17578         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
17579         errors.
17580
17581 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
17582
17583         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
17584         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
17585         default since all known bugs are fixed, and I cannot reproduce bug
17586         77944... I'm asking Matt Hargett to test again after this commit.
17587
17588 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
17589
17590         * mini-codegen.c: Fixed typo that thrashed inline.
17591
17592 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
17593
17594         * dominators.c (compute_dominators): Avoid using a worklist since
17595         it is not correct in some cases. Instead, iterate over all bblocks as
17596         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
17597
17598 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17599
17600         * mini.c (mono_jit_compile_method_inner): Use
17601         mono_prepare_exception_from_error that resets the value
17602         internally.
17603
17604 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17605
17606         * mini.c: Move the mini_loader_error_to_exception to metadata. 
17607         
17608 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
17609
17610         * aliasing.c: Fixed bug 78210.
17611
17612 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
17613
17614         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
17615         default until all their problems (or the ones they trigger) are fixed.
17616
17617 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
17618
17619         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
17620         
17621         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
17622         as loaded only after resolving patches since that could invoke the same method.
17623
17624         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
17625
17626         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
17627         functions.
17628
17629         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
17630         AOT loader.
17631
17632         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
17633         stack.
17634
17635         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
17636         made from AOT code through the PLT table.
17637
17638         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
17639         holding the plt offset when a call is made to the aot plt trampoline.
17640         
17641 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
17642
17643         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
17644         amd64 AOT support.
17645
17646         * Makefile.am (common_sources): Fix build breakage.
17647
17648         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
17649         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
17650         intra-assembly calls if possible.
17651         
17652         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
17653
17654         * mini-trampolines.c: Handle PLT entries.
17655
17656         * mini.c: Avoid creating a GOT var for calls.
17657
17658         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
17659         from mscorlib code.
17660
17661         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
17662         from mscorlib code.
17663
17664         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
17665         AOT code.       
17666
17667         * mini.h: Bump AOT file format version.
17668         
17669         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
17670         covers more cases.
17671
17672 2006-04-25  Martin Baulig  <martin@ximian.com>
17673
17674         * driver.c: Disable copyprop, consprop and inline when running
17675         inside the debugger.
17676
17677 2006-04-25  Martin Baulig  <martin@ximian.com>
17678
17679         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
17680         with `get_current_thread' and added `detach'.
17681         (MonoDebuggerMetadataInfo): Added `thread_size',
17682         `thread_tid_offset', `thread_stack_ptr_offset' and
17683         `thread_end_stack_offset'.
17684
17685 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
17686
17687         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
17688         aot-runtime.c.
17689
17690         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
17691         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
17692
17693         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
17694
17695         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
17696
17697         * aot.c: Add support for ADJUSTED_IID.  
17698
17699 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17700
17701         * aot.c (emit_method_order): Don't align method_order_end.
17702
17703         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
17704         the interface ID changes.
17705
17706 2006-04-21  Dick Porter  <dick@ximian.com>
17707
17708         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
17709         cleaning up a thread.  Fixes the new part of bug 77470.
17710
17711 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
17712
17713         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
17714         to managed wrapper.
17715                      
17716 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17717
17718         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
17719         
17720         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
17721         SIGSEGV. Fixes #78072.
17722
17723         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
17724         unregister our SIGABRT handler.
17725
17726 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
17727
17728         * mini.c: Disabled inline where it can alter the call stack in a
17729         way visible from managed code.
17730         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
17731         default.
17732
17733 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
17734
17735         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
17736         on other platforms. Fixes #78089.
17737
17738 2006-04-13  Martin Baulig  <martin@ximian.com>
17739
17740         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
17741         determine whether we're inside the debugger.
17742
17743         * debug-debugger.h
17744         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
17745
17746 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17747
17748         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
17749         handler clauses. Fixes #78024.
17750
17751         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
17752         in the CALL_MEMBASE opcodes. Fixes #78088.
17753         (mono_arch_get_vcall_slot_addr): Ditto.
17754
17755 2006-04-10  Martin Baulig  <martin@ximian.com>
17756
17757         * debug-debugger.c: The thread handling code has now been moved
17758         into ../metadata/threads.c.
17759
17760 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17761
17762         * driver.c (mono_main): Fix --with-gc=none build.
17763
17764         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
17765         (mono_spillvar_offset_float): Ditto.
17766         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
17767         hreg, not when its !global, since on ia64, there is a third category: stacked
17768         registers.      
17769
17770 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
17771
17772         * mini.c: set MonoInst->klass for load field address and a few other
17773         places.
17774
17775 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17776
17777         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
17778
17779 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17780
17781         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
17782         the branch opt changes.
17783
17784 2006-04-06  Dick Porter  <dick@ximian.com>
17785
17786         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
17787         
17788         * wapihandles.c (mini_wapi_seminfo): 
17789         * driver.c (mono_main): Add semaphore info option
17790
17791 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17792
17793         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
17794         branch optimization changes. Fixes #78009.
17795
17796 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17797
17798         * mini.c: ignore accessibility of methods in managed->native wrappers.
17799
17800 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17801
17802         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
17803         
17804         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
17805
17806 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17807
17808         * mini.c: Modify the branch optimizations to preserve the invariant that
17809         the entries inside the in_bb and out_bb arrays are unique.
17810         (mono_unlink_bblock): Avoid creation of new arrays.
17811
17812 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
17813
17814         * mini.c (mono_unlink_bblock): Fix regression caused by previous
17815         change (#77992).
17816
17817 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
17818
17819         * mini.c (optimize_branches): Remove the "optimizations" in
17820         the cbranch1/cbranch2 -> branch cases which were causing several
17821         problems in the past. Fixes #77986.
17822
17823 2006-03-31  Chris Toshok  <toshok@ximian.com>
17824
17825         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
17826         default optimizations :(
17827
17828 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17829
17830         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
17831         branch.
17832
17833 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
17834
17835         * local-propagation.c: Added comments to structs and removed
17836         "Mono" prefixes from local tree mover types.
17837
17838 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
17839
17840         * Makefile.am (arch_sources): Define this for each architecture so 
17841         libmono_la_SOURCES is defined in one place.
17842
17843 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17844
17845         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
17846         from handles/.
17847
17848 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
17849
17850         * driver.c: print the GC name supplied by configure.
17851
17852 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
17853
17854         * local-propagation.c: Added tree mover, and moved here all the
17855         local propagation code from mini.c
17856         * mini.c: Added support for treeprop, and moved all the local
17857         propagation code to local-propagation.c
17858         * mini.h: Added support for treeprop
17859         * driver.c: Added support for treeprop, enabled consprop, copyprop,
17860         treeprop, inline and deadce by default
17861         * Makefile.am: Added local-propagation.c
17862
17863 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
17864
17865         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
17866
17867 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
17868
17869         * debug-debugger.c: make it compile without the Boehm GC.
17870
17871 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17872
17873         * mini.c: fixed issue with mismatch when an icall is registered
17874         with multiple names but same address.
17875
17876 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17877
17878         * declsec.c, mini-exceptions.c: use write barrier to set reference
17879         fields of managed objects.
17880
17881 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
17882
17883         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
17884         (can_access_internals): Fix a warning.
17885
17886         * mini.c (print_method_from_ip): Rename this to 
17887         mono_print_method_from_ip so it gets exported.
17888
17889         * trace.c: Deal with strings inside StringBuilder's containing garbage
17890         and fix memory leaks. Fixes #77848.
17891
17892 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
17893
17894         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
17895         fixes #77787.
17896
17897 2006-03-16 Neale Ferguson <neale@sinenomine.net>
17898         
17899         * mini-s390.c: Remove OP_X86_TEST_NULL.
17900
17901 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
17902
17903         * mini.c: use the correct GetHashCode() for the moving collector.
17904
17905 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
17906
17907         * liveness.c: Regalloc spill cost tuning.
17908
17909 2006-03-15 Neale Ferguson <neale@sinenomine.net>
17910         
17911         * mini-s390x.h: Correct S390_LONG macro.
17912
17913         * mini-s390x.c: Cleanup unused code.
17914
17915 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17916
17917         * jit-icalls.h: New file.
17918
17919         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
17920         icalls and include that instead of including jit-icalls.c.
17921
17922         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
17923         OP_X86 opcodes.
17924
17925 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
17926
17927         * mini.c: when checking for member accessibility, also check for
17928         friend assemblies and for explicit interface implementations.
17929
17930 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17931
17932         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
17933
17934         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
17935
17936         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
17937         common cases are done first.    
17938
17939         * mini-ops.h: Only define platform specific opcodes on the given platform.
17940
17941         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
17942         branch.
17943         
17944 2006-03-14  Martin Baulig  <martin@ximian.com>
17945
17946         Revert Paolo's change from r57348:
17947
17948         * mini.h: don't use gboolean for bitfields.
17949         * mini.c: verifier changes for fields and methods accessibility.
17950
17951 2006-03-13  Neale Ferguson <neale@sinenomine.net>
17952
17953         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
17954
17955         * mini-s390x.c: Fix conv_r_un.
17956
17957         * cpu-s390, cpu-s390x.md: Fix lengths.
17958
17959 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17960
17961         * mini.c: nested types have access to all the nesting
17962         levels, not just the enclosing types.
17963
17964 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17965
17966         * mini.c: added a few more verification checks.
17967
17968 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
17969
17970         * liveness.c: Merge optimizations from the linear-il branch.
17971
17972 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17973
17974         * mini-ia64.c (emit_call): Add a comment.
17975
17976         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
17977
17978         * tramp-ia64.c: Fix some warnings.
17979
17980 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17981
17982         * mini.h: don't use gboolean for bitfields.
17983         * mini.c: verifier changes for fields and methods accessibility.
17984
17985 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17986
17987         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
17988         lazy icall wrapper changes.
17989
17990         * dominators.c: Replace all the dominator algorithms with faster
17991         ones from the linear-il branch.
17992
17993         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
17994         the mempool.
17995
17996         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
17997         common cases are done first.
17998
17999         * mini-amd64.c: Fix some warnings.
18000
18001         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
18002         from the mempool.
18003
18004         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
18005         added code.
18006
18007         * mini.h: Add a missing prototype.
18008
18009 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
18010
18011         * mini.c: Compile icall wrappers lazily.
18012
18013         * mini-codegen.c: Use printf instead of g_print since its much faster.
18014
18015         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
18016         function.
18017
18018         * mini.c (optimize_branches): Cache the negative result from 
18019         remove_block_if_useless ().
18020
18021         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
18022         Also fix some bblock linking issues.
18023
18024         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
18025         assembly files.
18026
18027         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
18028
18029         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
18030         accessed fields first, for better cache behavior.
18031         
18032 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
18033
18034         * mini.c: speedup IList<T> array accesses.
18035
18036 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
18037
18038         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
18039         inline_costs counter. Fixes #77190.
18040
18041 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
18042
18043         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
18044         trace messages. Fixes #77706.
18045
18046 2006-03-04  Martin Baulig  <martin@ximian.com>
18047
18048         * tramp-amd64.c, tramp-x86.c
18049         (mono_debugger_create_notification_function): Use
18050         mono_global_codeman_reserve() to allocate a buffer at runtime and
18051         return it.
18052
18053         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
18054
18055         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
18056         notification function at runtime and then call `initialize' in the
18057         `MONO_DEBUGGER__debugger_info' vtable.
18058
18059 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
18060
18061         * iltests.il: Fix a visibility problem.
18062
18063 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
18064
18065         * driver.c, mini.c: add hooks for the counters API.
18066
18067 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
18068
18069         * driver.c: show disabled options.
18070
18071 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
18072
18073         * linear-scan.c: always use cost-driven selection.
18074
18075 2006-02-28  Raja R Harinath  <rharinath@novell.com>
18076
18077         * jit-icalls.c (helper_compile_generic_method): Revert change from
18078         2006-02-24.
18079
18080 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
18081
18082         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
18083
18084 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
18085
18086         * inssel.brg: style fixes, mostly to force the updated monoburg
18087         to run for people using svn.
18088
18089 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
18090
18091         * mini.c: match monoburg changes.
18092
18093 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
18094
18095         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
18096         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
18097         declaration in the header file.
18098
18099 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18100
18101         * helpers.c: reduce relocations and mem usage.
18102
18103 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18104
18105         * mini.h, mini-codegen.c: disable logging features if
18106         requested by configure.
18107
18108 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
18109
18110         * mini.c: tiny verifier changes.
18111
18112 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18113
18114         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
18115         cpu-pentium.md: stack alignment changes for osx/x86,
18116         partially from Geoff Norton <gnorton@customerdna.com>.
18117
18118 2006-02-24  Raja R Harinath  <harinath@gmail.com>
18119
18120         * jit-icalls.c (helper_compile_generic_method): Update to changes
18121         in metadata/class.c.
18122
18123 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
18124         
18125         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
18126         
18127         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
18128         interface calls with large offsets.
18129
18130 2006-02-23  Raja R Harinath  <rharinath@novell.com>
18131
18132         * jit-icalls.c (helper_compile_generic_method): Document the
18133         special-case we depend on so that we can inflate the method twice
18134         with the same context with no bad side-effects.
18135
18136 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
18137
18138         * mini-x86.c, mini-amd64.c: fix for case when xen support
18139         is disabled.
18140
18141 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
18142
18143         * mini-x86.c, mini-amd64.c: generate code to access tls items
18144         in a faster way for Xen systems.
18145
18146 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
18147
18148         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
18149         updates and compilation fixes for the OSX/x86 port, mostly from
18150         Geoff Norton <gnorton@customerdna.com>.
18151
18152 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
18153
18154         * inssel.brg: faster interface call implementation
18155         to sync with the interface_offsets MonoVTable changes.
18156
18157 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
18158
18159         * mini.c: more verification checks.
18160
18161 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
18162
18163         * mini.c: added a few more verification checks.
18164
18165 2006-02-17      Neale Ferguson <neale@sinenomine.net>
18166
18167         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
18168         facility on the processor and use it if available.
18169
18170 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18171
18172         * driver.c, aot.c, mini.c: throw exception if the IL code is
18173         invalid or unverifiable.
18174
18175 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18176
18177         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
18178         m.StructField.
18179
18180 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
18181
18182         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
18183
18184 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
18185
18186         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
18187         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
18188         handling of instantiated generic valuetypes.
18189
18190 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18191
18192         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
18193         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
18194         instead.
18195
18196         * generics.2.cs: Revert the nullable reftypes tests.
18197
18198 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
18199
18200         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
18201         using __builtin_frame_address (1) as it doesn't work in the presence
18202         of optimizations. Hopefully fixes #77273.
18203
18204         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
18205         -> generics.cs change as it doesn't work with some automake versions.
18206
18207 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18208
18209         * mini.c: handle systems that sue a different way to
18210         retrieve the stack address of the current thread.
18211
18212 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18213
18214         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
18215         it specially in the makefile.
18216
18217         * generics.2.cs: Add tests for nullable reference types.
18218
18219 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
18220
18221         * mini.c: always handle the case when mono_jit_init()
18222         is called in a thread different from the main thread,
18223         confusing libgc (bug #77309).
18224
18225 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
18226
18227         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
18228
18229 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18230
18231         * mini.c: change optimize_branches () to use a single loop
18232         and introduce a new optimization to simplify some range checks.
18233
18234 2006-02-03  Martin Baulig  <martin@ximian.com>
18235
18236         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
18237         and merged with debugger_thread_manager_add_thread().
18238         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
18239         inform the debugger about the main thread.
18240
18241 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
18242
18243         * basic.cs: Add test for div.un/rem.un constant folding.
18244
18245 2006-02-03  Neale Ferguson <neale@sinenomine.net>
18246
18247         * cpu-s390x.md: correct int_xor_imm length
18248
18249 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
18250
18251         * generics.2.cs: New test for #77442.
18252
18253         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
18254         #77442.
18255
18256 2006-02-02  Martin Baulig  <martin@ximian.com>
18257
18258         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
18259         <mono/metadata/mono-debug-debugger.h>   
18260
18261         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
18262
18263 2006-02-02  Martin Baulig  <martin@ximian.com>
18264
18265         * debug-debugger.h: New header file for debug-debugger.c.
18266
18267         * debug-debugger.c: Big API cleanup; don't run the managed Main()
18268         function is a separate thread anymore; add support for attaching.
18269
18270 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18271
18272         * tramp-x86.c: Fix a warning.
18273
18274 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18275
18276         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
18277         on very large methods.
18278
18279         * aot.c (load_patch_info): Fix a warning.
18280
18281 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18282
18283         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
18284         mini-ops.h: alu membase optimizations.
18285
18286 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
18287
18288         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
18289         to speedup StringBuilder.
18290
18291 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
18292
18293         * dominators.c (mono_compute_natural_loops): Fix detection of
18294         loop body start blocks.
18295
18296         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
18297
18298 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18299
18300         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
18301         #75145.
18302
18303 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
18304
18305         * aliasing.c: Fixed aliasing issue on 64 bit archs.
18306
18307 2006-01-25  Martin Baulig  <martin@ximian.com>
18308
18309         * debug-debugger.c: Moved the `MonoDebuggerManager' and
18310         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
18311         started to cleanup this file a little bit.
18312
18313 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
18314
18315         * mini.c: optimize a codepath frequently happening in generics code.
18316
18317 2006-01-23  Martin Baulig  <martin@ximian.com>
18318
18319         * Makefile.am: Only compile debug-debugger.c on supported platforms.
18320
18321         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
18322         functions directly.
18323
18324         * driver.c: debug-debugger.c is only available if
18325         `MONO_DEBUGGER_SUPPORTED' is defined.   
18326
18327 2006-01-23  Martin Baulig  <martin@ximian.com>
18328
18329         * debug-debugger.c: Only enable this on platforms where the Mono
18330         Debugger is working (x86 and x86_64).
18331
18332 2006-01-21  Martin Baulig  <martin@ximian.com>
18333
18334         The Mono Debugger is now using the normal `mono' instead of the
18335         `mono-debugger-mini-wrapper' when executing managed code.
18336
18337         * debug-debugger.c: New file; previously known as
18338         debugger/wrapper/wrapper.c.
18339
18340         * debug-mini.c (mono_init_debugger): Removed.
18341
18342         * driver.c (mono_main): Added new `--inside-mdb' command line
18343         argument which is used when running inside the debugger.
18344
18345 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
18346
18347         * liveness.c (mono_analyze_liveness): Remove some unused data
18348         structures.
18349
18350 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18351
18352         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
18353
18354 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
18355
18356         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
18357         depends on implementation details of monobitset.
18358
18359         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
18360         Fixes #77271.
18361
18362 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
18363
18364         * liveness.c: Update after monobitset changes.
18365
18366 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
18367
18368         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
18369
18370 2006-01-11 Neale Ferguson <neale@sinenomine.net>
18371
18372         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
18373
18374         * mini-s390x.c: Remove warning messages.
18375
18376 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18377
18378         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
18379
18380 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
18381
18382         * generics.2.cs: Add ldelem/stelem_any test.
18383
18384 2006-01-10 Neale Ferguson <neale@sinenomine.net>
18385
18386         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
18387
18388 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
18389
18390         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
18391         
18392 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
18393
18394         * generics.2.cs: Reenable vtype tests.
18395
18396         * inssel-x86.brg: Remove an icorrect valuetype rule.
18397
18398 2006-01-06 Neale Ferguson <neale@sinenomine.net>
18399
18400         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
18401         initial support for OP_ABS.
18402
18403 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18404
18405         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
18406
18407 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18408
18409         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
18410         conversion and implement LADD/LSUB.
18411
18412         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
18413         architectures.
18414
18415 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18416
18417         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
18418
18419         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
18420         architectures.
18421
18422 2006-01-05 Neale Ferguson <neale@sinenomine.net>
18423
18424         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
18425         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
18426         (stack walk problem).
18427
18428 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
18429
18430         * aot.c (mono_aot_load_method): Fix a warning.
18431
18432 2006-01-03  Neale Ferguson <neale@sinenomine.net>
18433
18434         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
18435
18436 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18437
18438         * iltests.il: Add test for #77148.
18439
18440         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
18441         #77148.
18442
18443 2006-01-03  Neale Ferguson <neale@sinenomine.net>
18444
18445         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
18446
18447 2006-01-03  Neale Ferguson <neale@sinenomine.net>
18448
18449         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
18450         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
18451
18452         * basic-long.cs: Add lconv-to-r4/r8 tests.
18453
18454 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18455
18456         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
18457
18458         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
18459         here as on other archs.
18460
18461 2005-12-29 Neale Ferguson <neale@sinenomine.net>
18462
18463         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
18464
18465 2005-12-29 Neale Ferguson <neale@sinenomine.net>
18466
18467         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
18468         
18469         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
18470
18471         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
18472         instrument_prolog; Add memory_barrier instruction.
18473
18474 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
18475
18476         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
18477
18478 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
18479
18480         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
18481
18482         * aliasing.c inssel.brg: Fix warnings.
18483
18484         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
18485         could skip initialization of some parts of memory.
18486
18487         * mini.c mini-ia64.c: Fix warnings.
18488
18489         * inssel-sparc.brg: Add an implementation of lneg which actually works.
18490
18491 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18492
18493         * aliasing.c (mono_build_aliasing_information): Add a workaround for
18494         a crash seen on sparc.
18495
18496         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
18497         
18498         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
18499
18500 2005-12-21 Neale Ferguson <neale@sinenomine.net>
18501
18502         * mini-ops.h: Add s390_backchain instruction
18503
18504         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
18505
18506         * cpu-s390.md: Add s390_backchain instruction
18507
18508         * mini-s390.c: Significant ABI changes
18509
18510         * mini-s390.h: Cater for zero length structures
18511
18512 2005-12-20 Neale Ferguson <neale@sinenomine.net>
18513
18514         * mini-s390.c: ABI fixes
18515
18516         * inssel-s390.brg: Remove debug statements
18517
18518         * cpu-s390.md: Fix length of ATOMIC_xx operations
18519
18520 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
18521
18522         * basic-float.cs: Add float<->long conversion tests.
18523
18524 2005-12-16 Neale Ferguson <neale@sinenomine.net>
18525
18526         * mini-s390.c: Fix LOCALLOC processing.
18527
18528         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
18529
18530 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18531
18532         * iltests.il: Add tests for some opcodes not covered by the other
18533         tests.
18534
18535 2005-12-15 Neale Ferguson <neale@sinenomine.net>
18536
18537         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
18538         register loading for Tail processing; Correct trace output.
18539
18540         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
18541
18542         * cpu-s390.md: Correct size of jmp instruction. 
18543
18544 2005-12-13 Neale Ferguson <neale@sinenomine.net>
18545
18546         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
18547
18548 2005-12-13 Neale Ferguson <neale@sinenomine.net>
18549
18550         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
18551           Bring s390 up to current level.
18552
18553 2005-12-12  Zltan Varga  <vargaz@gmail.com>
18554
18555         * generics.2.cs: Disable the newly added tests as they do not work yet.
18556         
18557         * generics.2.cs: Add valuetype tests.
18558
18559 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
18560
18561         * basic-long.cs: Add i4->u8 test.
18562
18563         * objects.cs: Add tests for JIT intrinsic.
18564
18565         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
18566         optimizations lost by a mistake.
18567
18568 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18569
18570         * basic-long.cs: Remove a test moved to objects.cs.
18571
18572         * arrays.cs: Add more array tests.
18573
18574 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18575
18576         * arrays.cs: Add new tests for multi-dimensional arrays.
18577
18578 2005-12-06  Raja R Harinath  <rharinath@novell.com>
18579
18580         * Makefile.am (test_sources2): Add generics.2.cs.
18581         (EXTRA_DIST): Add test_sources2.
18582
18583 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18584
18585         Support for boxing and unboxing nullable types as well as the
18586         isinst operation on nullables, per the CLI ammendment.
18587
18588         * inssel.brg (CEE_ISINST): Special case for nullable
18589
18590         * mini.c (handle_unbox_nullable): new method
18591         (handle_box): Special case for nullable types
18592         (mono_method_to_ir): Call handle_unbox_nullable in correct
18593         places.
18594
18595         * generics.2.cs: New test suite
18596
18597         * Makefile.am: Support for regression tests with generics.
18598
18599 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
18600
18601         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
18602         allocated to registers. Fixes #76800.
18603
18604 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
18605
18606         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
18607
18608 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
18609
18610         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
18611         of platforms.
18612
18613 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
18614
18615         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
18616         objects.cs.
18617
18618         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
18619         
18620         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
18621 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
18622
18623         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
18624         single precision before storing to a single precision location.
18625
18626 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18627
18628         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
18629
18630 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
18631
18632         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
18633         correct files.
18634
18635         * basic.cs: Remove test_0_byte_compares test which was moved to
18636         objects.cs a long time ago.
18637
18638 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
18639
18640         * aliasing.c: Fixed aliasing issue on 64 bit archs.
18641
18642 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
18643
18644         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
18645         handlers are called.
18646
18647         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
18648         throwing code.
18649
18650          * mini-ia64.c: Add support for the throw->branch exception 
18651         optimization.   
18652
18653         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
18654
18655 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
18656
18657         * mini.c: Enabled "fastpath" deadce :-)
18658         
18659 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
18660
18661         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
18662         alias analysis pass to support it.
18663         * mini.h: Likewise.
18664         * ssa.c: Likewise.
18665         * liveness.c: Likewise (liveness computation can use aliasing
18666         information to be more accurate).
18667         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
18668         moreover made so that "--compile-all" uses the given optimization
18669         flags and not the default ones.
18670         * aliasing.c: Alias analysis (new file).
18671         * aliasing.h: Likewise.
18672         * Makefile.am: added "aliasing.c" and "aliasing.h".
18673         
18674 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18675
18676         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
18677         OP_L opcodes.
18678
18679 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
18680
18681         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
18682         fp >= end_of_stack exit condition, as it is not needed, and it might
18683         become true for fp eliminated frames.
18684
18685 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18686
18687         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
18688         coded offsets.
18689
18690 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
18691
18692         * mini-arm.c: fixed alignment of doubles/longs to match
18693         the C ABI (bug #76635).
18694
18695 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
18696
18697         * aot.c: fix compilation with --enable-minimal=aot.
18698
18699 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
18700
18701         * mini-arm.c: fixed compatibility with the new
18702         floating point emulator package for compares.
18703
18704 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
18705
18706         * mini.c : reverted sig->pinvoke changes (r51396-51397).
18707
18708 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
18709
18710         * mini-exceptions.c (print_stack_frame): Output to stderr.
18711         (mono_handle_native_sigsegv): Ditto.
18712
18713 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18714
18715         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
18716         OP_LCONV_TO_OVF_I implementation.
18717
18718         * mini-amd64.c: Add support for the throw->branch exception 
18719         optimization.
18720
18721         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
18722         when the catch clause catches a more general exception, i.e. Object.
18723
18724 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
18725
18726         * cpu-ia64.md: Remove unused opcodes.
18727
18728         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
18729         specific defines for architectures defining USE_SIGACTION.
18730
18731         * mini-ia64.c: Fix some warnings.
18732
18733         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
18734         version seemed to skip a frame.
18735
18736 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18737
18738         * mini.c: Clean up the usage of sig->pinvoke flag. Now
18739         only calls which are made to native code use this flag.
18740
18741 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18742
18743         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
18744         varargs methods as well.
18745         
18746         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
18747         which have save_lmf set. Reorganize methods prologs a bit.
18748
18749         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
18750         debugger to the proper place.
18751
18752 2005-10-29  Martin Baulig  <martin@ximian.com>
18753
18754         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
18755         when running inside the debugger until the debugger has support
18756         for it.
18757
18758 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18759
18760         * mini.h: Fix a warning.
18761
18762 2005-10-24  Miguel de Icaza  <miguel@novell.com>
18763
18764         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
18765         we expose publicly, this returns the string.
18766
18767 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
18768
18769         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
18770         with fp elimination.
18771
18772 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18773
18774         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
18775         native stacktrace using the glibc 'backtrace' function if available.
18776
18777 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
18778
18779         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
18780
18781         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
18782         handle SIGSEGVs received while in native code.
18783
18784         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
18785         code, call mono_handle_native_sigsegv which will abort the runtime
18786         after printing some diagnostics, instead of converting it into a
18787         confusing NullReferenceException.
18788
18789 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18790
18791         * cpu-pentium.md: Remove unused opcodes.
18792
18793 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
18794
18795         * mini-amd64.h (MonoLMF): Add rsp field.
18796
18797         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
18798         the lmf too.
18799
18800 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
18801
18802         * mini-codegen.c (get_register_spilling): Fix some warnings.
18803
18804 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
18805
18806         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
18807         elimination during exception handling. Enable fp elimination by
18808         default.
18809
18810         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
18811         elimination.
18812
18813 2005-10-16  Martin Baulig  <martin@ximian.com>
18814
18815         * mini-exceptions.c
18816         (mono_debugger_run_finally): New public method for the debugger.
18817
18818 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18819
18820         * debug-mini.c (mono_debug_init_method): Fix warning.
18821
18822         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
18823         the 'exname' parameter const to fix some warnings.
18824
18825 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
18826
18827         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
18828         introduced by the previous patch.
18829
18830 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
18831
18832         * basic-float.cs: Add test for precision of float arithmetic.
18833
18834         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
18835         when loading/storing single values from/to memory.
18836
18837         * mini.c (mono_jit_compile_method_with_opt): Create the function
18838         pointers in the correct domain.
18839
18840 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18841
18842         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
18843         introduced by previous patch.
18844         
18845         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
18846         when out_filter_idx is NULL.
18847
18848         * mini-exceptions.c: Don't run filter clauses twice during exception
18849         handling. Fixes #75755.
18850
18851 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18852
18853         * aot.c: Add support for ldflda wrappers.
18854
18855         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
18856         #75902.
18857
18858 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
18859
18860         * mini.c, mini.h: do not consider exception handlers blocks when
18861         setting up interface variables.
18862
18863 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
18864
18865         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
18866
18867 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
18868
18869         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
18870         causes a regression.
18871
18872         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
18873
18874 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
18875
18876         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
18877         of the OP_P definitions.
18878
18879         * TODO: Add a proposal for dealing with the CEE/OP mess.
18880
18881         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
18882         optimizations from the x86 port.
18883
18884         * cpu-amd64.md: Ditto.
18885
18886         * basic.cs basic-long.cs: Add tests.
18887
18888 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
18889
18890         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
18891         Patrik Torstensson's implementation of my exception-handling
18892         optimization idea, when the exception object is not used
18893         (bug #62150).
18894
18895 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
18896
18897         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
18898         of the mul_imm optimizations from the old jit.
18899
18900 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
18901
18902         * mini.c, liveness.c: patch by Patrik Torstensson and
18903         Zoltan Varga to improve performance in methods with
18904         exception clauses.
18905
18906 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18907
18908         * driver.c: Remove 'Globalization' entry from --version.
18909
18910 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
18911
18912         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
18913         there is a profiler interested in JIT events.
18914
18915         * aot.c: Load profile files produced by the AOT profiling module, and
18916         reorder methods based on the profiling info. Add a 'method_order' table
18917         to the AOT file to make mono_aot_find_jit_info work with the reordered
18918         methods.
18919
18920         * mini.h: Bump AOT file version info.
18921
18922 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
18923
18924         * mini-arm.h: work around what looks like a gcc bug when optimizations
18925         are enabled.
18926
18927 2005-09-28  Raja R Harinath  <rharinath@novell.com>
18928
18929         * Makefile.am (AM_CFLAGS): Don't use += to append inside
18930         conditionals.  Use ...
18931         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
18932
18933 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
18934
18935         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
18936         to determine the amount of memory to copy when passing valuetypes.
18937
18938         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
18939         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
18940
18941 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
18942
18943         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
18944         information about aot.
18945
18946 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18947
18948         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18949         macros. This will allow a deadlock debugger to easily be plugged
18950         in.
18951
18952 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
18953
18954         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
18955
18956 2005-09-27  Raja R Harinath  <rharinath@novell.com>
18957
18958         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
18959         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
18960         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
18961         ($(arch_built)) [CROSS_COMPILING]: Error out.
18962
18963 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18964
18965         * aot.c: Add support for the no_special_static flag for classes.
18966
18967 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18968
18969         * Reapply reverted patches.
18970
18971         * *: Revert r50174 as well.
18972
18973         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
18974
18975 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18976
18977         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
18978
18979 2005-09-23  Miguel de Icaza  <miguel@novell.com>
18980
18981         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
18982         part of the SIG_HANDLER_SIGNATURE.  
18983
18984 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18985
18986         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
18987         statistics.
18988
18989         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
18990         introduced by previous patch.
18991
18992 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
18993
18994         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
18995         saved registers too.
18996
18997         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
18998         upon the information returned by get_call_info ().
18999         
19000         * mini-x86.c (add_float): Fix stack size calculation.
19001         (mono_arch_call_opcode): Rewrite this so it works based up the
19002         information returned by get_call_info ().
19003         (mono_arch_get_this_vret_args): Ditto.
19004
19005 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
19006
19007         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
19008         in cinfo to determine the registers which need to be used.
19009
19010 2005-09-20  Miguel de Icaza  <miguel@novell.com>
19011
19012         * driver.c (mono_main): Add --server and --desktop flags. 
19013
19014 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
19015
19016         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
19017         registers as global registers.
19018
19019         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
19020         longer needed with the new register allocator.
19021
19022         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
19023
19024         * cpu-ia64.md: Remove unused opcodes.
19025         
19026         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
19027         
19028 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
19029
19030         * cpu-amd64.md: Remove unused opcodes.
19031
19032         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
19033         needed with the new register allocator.
19034
19035         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
19036         reg-reg moves.
19037
19038 2005-09-16  Raja R Harinath  <rharinath@novell.com>
19039
19040         * Makefile.am (check-local): Don't invoke semdel-wrapper.
19041
19042 2005-09-16  Martin Baulig  <martin@ximian.com>
19043
19044         * exceptions-amd64.c
19045         (throw_exception): Don't call mono_debugger_throw_exception() if
19046         we're a rethrow - see the FIXME in the code.
19047
19048 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
19049
19050         * mini.c (mono_init_exceptions): This only works on some architectures.
19051         
19052 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
19053
19054         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
19055         on ia64.
19056
19057         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
19058
19059         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
19060         now in mini-exceptions.c.
19061
19062 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
19063
19064         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
19065         now in mini-exceptions.c.
19066
19067 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
19068
19069         * exceptions-x86.c: Applied patch from Patrik Torstensson 
19070         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
19071
19072         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
19073         code into mini-exceptions.c. Add some assertions to it.
19074
19075 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19076
19077         * aot.c (emit_section_change): Applied patch from "The Software Team" 
19078         (<software@solmersa.com>). Fix as errors on windows.
19079
19080 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
19081
19082         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
19083         method info into the LMF.
19084
19085 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19086         
19087         * mini-ia64.c: Add proper unwind info for method epilogs.
19088
19089         * exceptions-ia64.c: Add some code to help debugging.
19090         
19091         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
19092
19093         * mini-exceptions.c: Fix warning.
19094
19095 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
19096
19097         * mini.c: Really fix build.
19098
19099         * mini-x86.c mini-amd64.c: Fix build.
19100
19101 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19102
19103         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
19104
19105         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
19106         some Interlocked methods as intrinsics.
19107
19108         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
19109         for Thread methods as well.
19110
19111         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
19112
19113         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
19114
19115         * mini-ia64.c mini-x86.c mini-amd64.c 
19116         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
19117         OP_MEMORY_BARRIER.
19118         
19119         * mini.c (mono_init_exceptions): Fix build breakage.
19120
19121 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
19122
19123         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
19124         of instructions. Use the new ia64_unw_op macros for emitting unwind
19125         info.
19126
19127         * mini.c (mono_init_exceptions): Initialize exception handling
19128         related trampolines at startup.
19129
19130 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
19131
19132         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
19133
19134 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19135
19136         * mini.c: Handle type loading errors gracefully during compilation and
19137         throw the appropriate exception.
19138
19139 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
19140
19141         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
19142         for the mono binary.
19143
19144 2005-09-09  Martin Baulig  <martin@ximian.com>
19145
19146         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
19147         the release.
19148
19149 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
19150
19151         * mini-arm.h: use emulation for conv.r.un for the release.
19152
19153 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
19154
19155         * mini-arm.c, objects.cs: more fixes and tests for them.
19156
19157 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
19158
19159         * mini-arm.c: align structures to at least 4 bytes to be able
19160         to keep our current optimized memcpy.
19161
19162 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
19163
19164         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
19165
19166 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19167
19168         * mini.c: ignore SIGPIPE.
19169
19170 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
19171
19172         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
19173
19174         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
19175
19176 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
19177
19178         * mini.h: Add prototype for mono_allocate_stack_slots_full.
19179
19180 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
19181
19182         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
19183         exception handling support.
19184         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
19185         patch by Brian Koropoff <briank@marakicorp.com>).
19186
19187 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
19188
19189         * mini.c: revert another 'optimization' which breaks when
19190         items on the eval stack need to be saved at a basic block end
19191         (bug #75940).
19192
19193 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
19194
19195         * jit-icalls.c: for arrays, ensure we always provide
19196         lower bounds.
19197
19198 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
19199
19200         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
19201         
19202         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
19203
19204 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19205
19206         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
19207         arguments in their original register.
19208
19209 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
19210
19211         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
19212         memset/memcpy.
19213
19214         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
19215         when ssapre is enabled.
19216
19217         * inssel-long.brg: Fix bug in previous patch.
19218
19219         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
19220         multiplication by a constant.
19221
19222 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
19223
19224         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
19225         icc.
19226
19227         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
19228         saving registers.
19229
19230 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
19231
19232         * inssel-arm.brg: apply changes tested by Brian Koropoff
19233         <briank@marakicorp.com>.
19234
19235 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19236
19237         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
19238         
19239 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
19240
19241         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
19242         to the same register if dreg is just a base register.
19243         (print_ins): Improve printing of membase opcodes.
19244
19245         * inssel-x86.brg: Add optimized ldind(reg) rules.
19246
19247         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
19248
19249 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
19250
19251         * mini.c: when running under valgrind, set the stack bottom for
19252         the GC at the actual approximate stack for the app (fixes running
19253         mono with valgrind).
19254
19255 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
19256
19257         * mini.c: do no break at the first valuetype to init found
19258         (fixes bug #75791).
19259
19260 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
19261
19262         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
19263
19264 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
19265
19266         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
19267
19268 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
19269
19270         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
19271
19272 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19273
19274         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
19275
19276         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
19277         code.
19278
19279         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
19280         code.
19281
19282         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
19283         methods.
19284
19285 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
19286
19287         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
19288
19289 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19290
19291         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
19292         in the tail recursion optimization.
19293
19294         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
19295         debug info into the assembly file.
19296
19297         * iltests.il: Add test for filter regions.
19298
19299         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
19300         initial stack of filter regions. Fixes #75755.
19301
19302 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
19303
19304         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
19305         stack requirements.
19306
19307 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19308
19309         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
19310         the check for an already compiled method on non-ia64 platforms.
19311         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
19312         proper domain.
19313
19314         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
19315
19316         * inssel-x86.brg: Add some optimized call rules.
19317
19318 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19319
19320         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
19321         method here.
19322
19323         * mini.h mini-trampolines.c: Pass the trampoline argument to 
19324         mono_arch_patch_delegate_trampoline.
19325
19326         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
19327
19328         * mini-trampolines.c: Fix build.
19329
19330         * mini-amd64.h: Add delegate trampolines.
19331
19332         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
19333
19334         * inssel-amd64.brg: Add optimized call rules.
19335         
19336         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
19337
19338         * inssel-ia64.brg: Add optimized ldind(reg) rules.
19339
19340 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19341
19342         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
19343         change.
19344
19345         * mini-ia64.c: Remove LMF fixmes.
19346
19347         * mini-ia64.h: Remove most fields from LMF.
19348
19349         * inssel-ia64.brg (stmt): Fix unaligned access errors.
19350
19351         * mini-trampolines.c: Add support for IA64 function descriptors.
19352
19353         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
19354         for IA64 function descriptors.
19355
19356 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
19357
19358         * tramp-arm.c: patch the vtable for virtual calls. Added
19359         support code to register/unregister the LMF.
19360         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
19361         more LMF work.
19362
19363 2005-08-19  Dick Porter  <dick@ximian.com>
19364
19365         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
19366         bit value if needed.
19367
19368 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19369
19370         * mini.c (mini_get_method): Move handling of wrapper data here.
19371
19372         * mini.c (mono_method_to_ir): Add support for dynamic methods.
19373
19374         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
19375         virtual.
19376
19377         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
19378         bblock->code does not remain empty.
19379
19380 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
19381
19382         * arrays.cs: Add regression test for #75832.
19383
19384         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
19385         rules. Fixes #75832.
19386
19387         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
19388         instruction scheduling.
19389
19390 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
19391
19392         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
19393
19394 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19395
19396         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
19397
19398         * mini-codegen.c: Fix VC build.
19399
19400         * cpu-pentium.md: Increase length of atomic_exhange_i4.
19401
19402 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19403
19404         * mini.h: fix signature for mono_register_opcode_emulation.
19405
19406 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
19407
19408         * mini.c: Get rid of most of the helper_sig_... constants using
19409         mono_create_icall_signature ().
19410
19411 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19412
19413         * jit-icalls.c (helper_ldstr): New helper function.
19414
19415         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
19416
19417         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
19418         throw, load the string using a helper call instead of creating a string object.
19419
19420         * aot.c: Update after LDSTR changes.
19421
19422         * mini.h: Bump AOT file version.
19423         
19424         * aot.c: Save class size info into the AOT file. Print more statistics during
19425         compilation.
19426
19427         * mini.h: Bump AOT file version.
19428
19429         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
19430         ordering of disasm cases. Fixes #74957.
19431
19432 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
19433
19434         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
19435         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
19436         the generic code needed for the ARM port.
19437
19438 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
19439
19440         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
19441         inssel-arm.brg: more ARM features and fixes.
19442
19443 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
19444
19445         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
19446         ARM port work in progress.
19447
19448 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19449
19450         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
19451
19452         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
19453
19454         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
19455
19456         * inssel.brg (mini_emit_memset): Add support for unaligned access.
19457
19458         * *-ia64.*: Ongoing IA64 work.
19459         
19460         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
19461
19462 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19463
19464         * TODO: Remove out-of-data todo stuff.
19465
19466         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
19467         dead code.
19468
19469         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
19470
19471         * mini.h: Bump corlib version.
19472
19473 2005-07-27  Martin Baulig  <martin@ximian.com>
19474
19475         * mini-codegen.c
19476         (create_copy_ins): Added `const unsigned char *ip' argument; set
19477         `copy->cil_code' from it.
19478
19479 2005-07-27  Martin Baulig  <martin@ximian.com>
19480
19481         * mini-exceptions.c (mono_handle_exception): Don't call
19482         mono_debugger_handle_exception() for filters.
19483
19484 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
19485
19486         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
19487         as well.
19488
19489 2005-07-26  Martin Baulig  <martin@ximian.com>
19490
19491         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
19492
19493         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
19494         helper_compile_generic_method() if the method is actually virtual
19495         and non-final.
19496
19497 2005-07-26  Martin Baulig  <martin@ximian.com>
19498
19499         * mini.c
19500         (trampoline_code): Renamed to `mono_trampoline_code' and made it
19501         public; this is now accessed directly by the debugger.
19502         (mono_generic_trampoline_code): Removed.
19503
19504         * debug-mini.c
19505         (mono_debug_init_method): Also add interncalls and wrappers.
19506
19507 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
19508
19509         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
19510
19511 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19512
19513         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
19514
19515 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19516
19517         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
19518
19519 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19520
19521         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
19522         getting TLS offsets on AMD64 too.
19523
19524 2005-07-20  Kornel Pal <kornelpal@hotmail.com>
19525
19526         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
19527
19528 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
19529
19530         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
19531         inssel-arm.brg, mini-arm.h: ARM port work in progress.
19532
19533 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19534
19535         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
19536
19537         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
19538         to mini.c.
19539
19540         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
19541         mono_sparc_is_virtual_call ().
19542         
19543         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
19544
19545         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
19546         trampoline parameters.
19547
19548         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
19549         
19550         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
19551         to mono_arch_get_vcall_slot_addr.
19552
19553         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
19554         trampoline code.
19555
19556         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
19557
19558 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
19559
19560         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
19561
19562 2005-07-19  Martin Baulig  <martin@ximian.com>
19563
19564         * exceptions-amd64.c (throw_exception): Call
19565         mono_debugger_throw_exception() here like we're doing it on i386.
19566
19567 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
19568
19569         * mini-ia64.c: Add optimized TLS access support.
19570
19571 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
19572
19573         * mini-exceptions.c: Ongoing IA64 work.
19574
19575         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
19576
19577         * mini.c: Use the default optimization set when embedding. Fixes
19578         #75194.
19579
19580 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
19581
19582         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
19583         of trampolines to a separate file.
19584
19585         * mini-trampolines.c: New file.
19586
19587         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
19588         separate file.
19589         
19590         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
19591         amd64/ia64 code.
19592
19593         * mini-codegen.c: Fix cygwin build.
19594
19595 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
19596
19597         * mini.c: Add some minor changes needed by the IA64 port.
19598
19599         * *-ia64.*: Ongoing IA64 work.
19600
19601 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
19602
19603         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
19604         trampolines into arch-independent and arch-dependent parts.
19605
19606         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
19607
19608 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
19609
19610         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
19611
19612         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
19613         the xp-regalloc-branch for amd64.
19614
19615         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
19616         xp-regalloc-branch for x86.
19617
19618 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19619
19620         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
19621
19622 2005-07-06  Martin Baulig  <martin@ximian.com>
19623
19624         * mini.c
19625         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
19626         (mono_jit_runtime_invoke): Likewise.
19627
19628 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19629
19630         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
19631         on x86 too.
19632         
19633         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
19634         without loading their metadata. Reorganize the file format so exception handling+
19635         debug info is kept separate from normal method info. Create MonoJitInfo 
19636         structures for methods lazily.
19637
19638         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
19639         loading metadata.
19640         (x86_class_init_trampoline): Patch AOT class init trampolines too.
19641
19642         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
19643
19644         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
19645         in AOT code.
19646
19647         * mini.h: Bump AOT file version.
19648
19649 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
19650
19651         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
19652
19653 2005-07-01  Raja R Harinath  <rharinath@novell.com>
19654
19655         * Makefile.am (check-local): Call semdel-wrapper.
19656
19657 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
19658
19659         * mini-x86.c: Revert the last change as it seems to break the build..
19660
19661 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19662
19663         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
19664         
19665         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
19666
19667 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
19668
19669         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
19670         outside of the macro, so strange stuff doesn't happen with gcc4
19671         (NEW_AOTCONST_TOKEN): Likewise.
19672
19673 2005-06-28  Martin Baulig  <martin@ximian.com>
19674
19675         * mini.c (mini_class_is_system_array): New static method; use this
19676         instead of `klass->parent == mono_defaults.array_class' everywhere
19677         since this also works for the new generic array class.
19678
19679 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19680
19681         * inssel.brg: Remove warnings.
19682
19683 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
19684
19685         * mini-ia64.c: Ongoing IA64 work.
19686
19687         * basic-float.cs: Add float->i1 conversion test.
19688
19689         * iltests.il: Add conv.u4 test.
19690
19691 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
19692
19693         * inssel-long.brg: Fix bug caused by last change.
19694
19695 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
19696
19697         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
19698         BSDs.  Allows the x86 JIT to work on OSX86
19699
19700 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
19701
19702         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
19703         u4->i8 conversion.
19704
19705         * mini-ia64.c: Ongoing IA64 work.
19706
19707 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19708
19709         * mini-ia64.c: Ongoing IA64 work.
19710
19711         * driver.c: Clean up jit_code_hash as well when using --regression.
19712
19713         * inssel-long.brg: Fix long->i4/u4 conversion rules.
19714
19715         * basic-long.cs: Add tests for long->u4 conversion.
19716
19717 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
19718
19719         * mini.c: Take mono_get_domainvar out of macros. This makes sure
19720         that we do not depend on undefined C behavior: the order stuff
19721         gets evaluated within an expression. Fixes mono when compiled on
19722         GCC 4.
19723
19724 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
19725
19726         * *-ia64.*: Ongoing IA64 work.
19727
19728         * aot.c: Lower memory usage while loading AOT methods.
19729
19730         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
19731
19732         * mini.h: Bump AOT file format version.
19733
19734 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19735
19736         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
19737
19738 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
19739
19740         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
19741         not on callee assembly). Fixed some comments.
19742
19743 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
19744
19745         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
19746         it gets proper disassembly.
19747         (emit_method_info): Remove some dead code.
19748
19749         * mini.c (mini_method_compile): Allways allocate the GOT var in
19750         mono_method_to_ir for emulating opcodes.
19751
19752 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
19753
19754         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
19755         before freeing the code memory. Fixes #74990.
19756
19757         * objects.cs: Add regression test for #74992.
19758
19759         * liveness.c: Extend live ranges of arguments to the beginning of the
19760         method. Fixes #74992.
19761
19762         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
19763         so it points into the faulting instruction.
19764
19765 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
19766
19767         * jit-icalls.c (mono_imul_ovf): Add exception handling.
19768
19769         * *-ia64.*: Ongoing IA64 work.
19770
19771         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
19772
19773 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
19774
19775         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
19776
19777         * *-ia64.*: Ongoing IA64 work.
19778
19779 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
19780
19781         * basic-long.cs: Add tests for add/sub.ovf.
19782
19783         * basic.cs: Add tests for sub.ovf.
19784
19785         * *-ia64.*: Ongoing IA64 work.
19786
19787 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
19788
19789         * *-ia64.*: Ongoing IA64 work.
19790
19791         * basic.cs: Add conv.ovf.i4.un test.
19792
19793 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
19794
19795         * mini.c: (remove_block_if_useless) Fixed bug 75061.
19796         
19797 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19798
19799         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
19800
19801 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19802
19803         * *-ia64.*: Ongoing IA64 work.
19804
19805 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19806
19807         * trace.[ch]:
19808         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
19809
19810 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
19811
19812         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
19813
19814 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
19815
19816         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
19817
19818         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
19819         of a call is callable by a near call.
19820
19821 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
19822
19823         * mini-ia64.c: Ongoing IA64 work.
19824
19825 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
19826
19827         * genmdesc.c: Make the generated array non-static.
19828
19829         * inssel-long.brg: Fix LSHR_IMM rule.
19830
19831         * *-ia64.*: Ongoing IA64 work.
19832
19833         * *-ia64.*: Ongoing IA64 work.
19834
19835 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
19836
19837         * *-ia64.*: Ongoing IA64 work.
19838
19839         * *-ia64.*: Ongoing IA64 work.
19840         
19841         * mini-ia64.c: Ongoing IA64 work.
19842
19843         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
19844
19845 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
19846
19847         * objects.cs basic-calls.cs: Move some tests to objects.cs.
19848         
19849         * objects.cs basic-long.cs: Move some tests to objects.cs.
19850
19851 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
19852
19853         * *-ia64.*: Ongoing IA64 work.
19854
19855         * iltests.il: Add a new test.
19856
19857         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
19858         newobj. Fixes #75042.
19859
19860 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
19861
19862         * *-ia64.*: Ongoing IA64 work.
19863         
19864         * *-ia64.*: Ongoing IA64 work.
19865         
19866         * *-ia64.*: Ongoing IA64 work.
19867
19868         * basic.cs objects.cs: Move tests accessing static variables as well.
19869
19870         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
19871
19872 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
19873
19874         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
19875
19876         * driver.c: Always print failed tests.
19877
19878         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
19879         frame pointer.
19880
19881         * *ia64*: Ongoing IA64 work.
19882
19883 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
19884
19885         * basic.cs: Add tests for add.ovf. Fix warnings.
19886
19887 2005-05-18  Miguel de Icaza  <miguel@novell.com>
19888
19889         * driver.c (mono_main): Avoid crash if no argument is passed to
19890         --break;  Do not use g_error, but f_printf.   And fix all other
19891         ocurrences of the same crash.
19892
19893 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
19894
19895         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
19896         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
19897         Fixes #74742.
19898
19899 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
19900
19901         * *-ia64.*: Add beginnings of IA64 backend.
19902
19903         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
19904
19905 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
19906
19907         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
19908         Fixes #74925.
19909
19910         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
19911
19912         * mini-amd64.c: Fix a warning.
19913
19914 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
19915
19916         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
19917         in float_neg. Fixes #74897.
19918
19919         * mini-amd64.c (emit_call): Fix another near call bug.
19920
19921 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
19922
19923         * declsec.c: Keep the appdomain information in the structure. Added a 
19924         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
19925         value gets overwritten).
19926         * declsec.h: Set the default MonoArray for the the stack to 6. Added
19927         an MonoAppDomain member to MonoSecurityFrame.
19928         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
19929         used in the stack walk. Now use a MonoArray which grow (double) when
19930         it gets full.
19931
19932 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
19933
19934         * mini.c: Re-enabled runtime cleanup, since running threads should
19935         now properly stop when exiting.
19936
19937 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
19938
19939         * mini-codegen.c: New file contaning the arch-independent local
19940         register allocator. Not used by any architectures yet.
19941
19942         * mini.h linear-scan.c: Merge some changes from the 
19943         mini-xp-local-regalloc branch.
19944
19945 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
19946
19947         * mini-amd64.c (emit_call): Fix calls to native functions when the
19948         runtime is compiled as a shared library. Fixes #74756.
19949
19950         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
19951         on a literal field. Fixes #74751.
19952
19953 2005-04-25  Raja R Harinath  <rharinath@novell.com>
19954
19955         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
19956
19957 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
19958
19959         * objects.cs: Add missing null casting test.
19960
19961 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
19962
19963         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
19964         in wrapper methods. Also rename 'address' variable to 'offset'.
19965
19966 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
19967
19968         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
19969         warnings.
19970         
19971         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
19972
19973         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
19974         work on windows.
19975
19976 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
19977
19978         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
19979
19980 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
19981
19982         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
19983         just the last bytes.
19984
19985 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
19986
19987         * aot.c (mono_compile_assembly): Fix warning.
19988
19989         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
19990         by the _MSC_VER stuff.
19991
19992 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
19993
19994         * inssel-long.brg: Fix #74588.
19995
19996         * cpu-amd64.md: Fix #74591.
19997
19998         * iltests.il: Add new regression tests.
19999
20000 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20001
20002         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
20003         valuetype.
20004
20005 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
20006
20007         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
20008
20009         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
20010         from Bill Middleton <flashdict@gmail.com>.
20011
20012 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20013
20014         * arrays.cs: Add new regression test. Fix warnings.
20015
20016 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
20017
20018         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
20019         and leakage in CKFINITE.
20020
20021         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
20022         this to a null op since it is called on amd64 too.
20023
20024         * exceptions-amd64.c (get_throw_trampoline): Align stack.
20025
20026         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
20027         body since this is not used on amd64.
20028         
20029         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
20030
20031         * mini-amd64.c: Remove obsolete fixmes.
20032
20033         * mini.c (print_method_from_ip): Fix debugging support.
20034
20035 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20036
20037         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
20038         so that expressions that don't give much gain are not reduced.
20039         * ssapre.h: Likewise.
20040
20041 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20042
20043         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
20044
20045         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
20046
20047         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
20048
20049 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
20050
20051         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
20052
20053         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
20054
20055 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
20056
20057         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
20058         stack touching.
20059
20060         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
20061
20062         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
20063
20064         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
20065
20066         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
20067         MONO_ARCH_USE_SIGACTION. Fixes #74252.
20068
20069         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
20070
20071         * mini-x86.c: Fix up stack overflow handling.   
20072
20073         * exceptions.cs: Add new regression test.
20074
20075 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
20076
20077         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
20078         mono_jit_thread_attach.
20079
20080         * mini.c (mono_method_to_ir): Verify called method is not abstract.
20081
20082 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20083
20084         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
20085         avoid calling constructors using callvirt.
20086
20087         * inssel.brg: Fix #74073.
20088
20089 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20090
20091         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
20092         compilation with non-GCC compilers.
20093         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
20094         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
20095
20096 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20097
20098         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
20099         klass->interface_offsets (will likely fix bug#74073).
20100
20101 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20102
20103         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
20104
20105 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
20106
20107         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
20108         to amd64_div_reg_size ().
20109         
20110         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
20111
20112 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20113
20114         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
20115
20116 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20117
20118         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
20119
20120 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20121
20122         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
20123         
20124         * mini.c (mono_precompile_assembly): Load and precompile referenced
20125         assemblies as well. Fixes #74015.
20126
20127 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20128
20129         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
20130
20131 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20132
20133         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
20134         a lot of checks and (anyway) permissions cannot work until corlib is 
20135         loaded.
20136
20137 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
20138
20139         * mini-ppc.c: fixed ABI issue on sysv/ppc.
20140
20141 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20142
20143         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
20144         calls (fixes bug#72824).
20145
20146 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20147
20148         * mini.c: fix tail recursion elimination (see test in bug#73936).
20149
20150 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
20151
20152         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
20153         some fp functions in sse2 mode.
20154
20155 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
20156
20157         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
20158
20159 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
20160
20161         * mini.h mini.c: Add mono_get_jit_tls_key ().
20162
20163         * mini-x86.c: Enable fast TLS support on windows.
20164
20165 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20166
20167         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
20168         * mini.c: Check for p/invoke method when generating code. If a
20169         p/invoke method, or it's class, isn't decorated with [Suppress
20170         UnmanagedCodeSecurity] then generate code to call System.Security.
20171         UnmanagedDemand (only if the security manager is active).
20172
20173 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20174
20175         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
20176         last change as it seems to cause strange crashes.
20177         
20178 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20179
20180         * *.c: handle unsafe function pointers where needed.
20181
20182 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20183
20184         * mini.c (mono_jit_free_method): Remove the fixme too.
20185
20186 2005-03-15  Miguel de Icaza  <miguel@novell.com>
20187
20188         * mini.c: As discussed, make the code actually free the delegate
20189         thunk now, to enable the debugging of delegate problems, use
20190         MONO_DEBUG=1 when running Mono. 
20191
20192         This takes also care of parts of the leaks as seen by Joe.
20193
20194 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
20195
20196         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
20197         thread_tls_offset calculation.
20198
20199 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
20200
20201         * declsec.c: Reworked linkdemand checks for icall. The previous code
20202         was using the declaration code (untrusted) and didn't work as expected
20203         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
20204         specific case.
20205
20206 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20207
20208         * iltests.il: Add new localloc test.
20209
20210         * mini-amd64.c: Handle large stack allocations the same way as on
20211         windows if stack overflow handling is working.
20212         
20213         * mini-amd64.c: Allocate the signal stack using mmap.
20214
20215         * mini.c (sigsegv_signal_handler): Fix reading of context.
20216
20217         * mini-exceptions.c: Fix up stack overflow handling.
20218
20219         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
20220
20221         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
20222
20223         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
20224
20225         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
20226
20227         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
20228         tramp_init functions as they are no longer needed.
20229
20230 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
20231
20232         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
20233         
20234         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
20235
20236         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
20237         
20238         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
20239         support that now.
20240
20241         * mini-ops.h: Add OP_LMUL_IMM.
20242
20243         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
20244         long mul/div opcodes as intrinsic.
20245
20246         * mini-amd64.c (emit_call): Handle the case when the callee might be
20247         an AOT method.
20248
20249 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20250
20251         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
20252         extra safe.
20253         
20254         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
20255
20256         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
20257
20258 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
20259
20260         * mini.c (mono_codegen): Don't leak here, to help people running
20261         monogrind.
20262
20263 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20264
20265         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
20266         conversions in sse2 mode.
20267
20268         * basic-float.cs: Add regression test.
20269         
20270         * mini-amd64.c: Reenable sse2.
20271
20272 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
20273
20274         * mini-amd64.c: Disable sse2 until some regressions are fixed.
20275
20276 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
20277
20278         * driver.c: Copyright text should include 2005.
20279         
20280 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
20281
20282         * cpu-amd64.md (load_membase): Fix more max lengths.
20283
20284 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
20285
20286         * cpu-amd64.md (load_membase): Fix max length.
20287
20288         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
20289
20290         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
20291
20292         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
20293         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
20294
20295         * basic-float.cs: Add rounding regression test.
20296
20297         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
20298
20299 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
20300
20301         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
20302         structures in registers for pinvoke wrappers.
20303
20304 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20305
20306         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
20307
20308 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20309
20310         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
20311         wrapper to mono_jit_thread_attach.
20312
20313         * mini.c (mini_jit_thread_attach): New jit icall.
20314
20315         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
20316         native->managed wrappers.
20317
20318         * exceptions.cs: Add new regression test.
20319
20320         * mini.c (optimize_branches): Check regions in the cbranch to throw
20321         block case as well. Fixes #73242.
20322
20323 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20324
20325         * mini.c: thread safety fixes.
20326
20327 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
20328
20329         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
20330         patching stuff, since delegates use jump trampolines so there is
20331         no caller.
20332
20333         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
20334         jump trampolines.
20335         
20336         * tramp-amd64.c: Fix build.
20337
20338         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
20339         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
20340
20341         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
20342         Rename this to mono_arch....
20343         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
20344
20345         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
20346
20347         * mini-amd64.c (emit_call): If both the caller and the callee is
20348         guaranteed to have 32 bit addresses, emit a normal call.
20349
20350         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
20351
20352         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
20353         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
20354         method_ptr inside delegates.
20355
20356 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
20357
20358         * mini.c (mono_jit_free_method): Free the method info even if the native code is
20359         invalidated. Fixes #73001.
20360
20361         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
20362
20363         * mini-x86.c: Only use stdcall for pinvokes on windows.
20364
20365 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
20366
20367         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
20368         * mini-x86.c: remove unreliable __thread var offset detection,
20369         use the correct accessors and enable by default.
20370
20371 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20372
20373         * mini.c (mono_jit_free_method): Fix memory leak.
20374
20375 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
20376
20377         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
20378
20379 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
20380
20381         * cpu-amd64.md: Fix lengths of atomic opcodes.
20382
20383 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20384
20385         * driver.c: try to not imply using ICU is any good.
20386
20387 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
20388
20389         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
20390         functions as inline ops.
20391
20392         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
20393         some Interlocked functions as inline ops.
20394
20395         * mini.c (move_basic_block_to_end): Fix bug in last patch.
20396
20397         * mini.h (MonoBasicBlock): Reorganize fields a bit.
20398
20399         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
20400
20401         * mini.c: Add support for OP_NOT_TAKEN.
20402
20403         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
20404         structures in registers for pinvoke wrappers.
20405
20406         * mini-amd64.c: Fix warnings.
20407
20408 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
20409
20410         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
20411
20412         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
20413
20414         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
20415         address instead of loading the address from it.
20416
20417         * mini-x86.c: Add support for returning small structs in registers
20418         on Win32. Fixes part of #70864.
20419         
20420 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
20421
20422         * trace.c (get_token): Improve error checking.
20423
20424 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20425
20426         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
20427
20428 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
20429  
20430         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
20431         it can be reused for MonoClass.
20432         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
20433         _LINKDEMAND.
20434
20435 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
20436
20437         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
20438         instead of a MonoReflectionMethod. The method information wasn't used
20439         when displaying SecurityException details (but will be now).
20440
20441 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
20442
20443         * Makefile.am : windows build fix.
20444
20445 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20446
20447         * iltests.il: Add new regression test.
20448
20449         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
20450         #72522.
20451
20452 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
20453  
20454         * mini.c: Moved linkdemand check into helper function check_linkdemand
20455         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
20456         LDFTN, LDVIRTFTN).
20457
20458 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
20459
20460         * declsec.c: Added statistics counter for different kinds of 
20461         LinkDemands.
20462         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
20463         (and commented) declaration.
20464         * mini.c: Added statistics counter for security Demand code 
20465         generation. Added display of security statistics.
20466
20467 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
20468
20469         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
20470         Fix compilation errors under gcc-2.95.
20471
20472 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
20473
20474         * mini.c, driver.c: Use the new jit trampoline hashtable
20475
20476 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20477
20478         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
20479
20480 2005-02-11  Martin Baulig  <martin@ximian.com>
20481
20482         * debug-mini.c (mono_debug_close_method): Free the line number array.
20483
20484 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
20485
20486         * aot.c: Break up large methods into smaller ones. Share GOT slots for
20487         icalls.
20488
20489         * mini.h: Bump AOT file format version. 
20490
20491 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
20492
20493         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
20494         APTC and P/Invoke.
20495         * declsec.h: Added macros to get/set lazyly initialized security 
20496         informations about assemblies. Added new enum for different type of
20497         possible LinkDemand violation. Added function to check LinkDemands.
20498         * mini.h: Added a field to MonoCompile to hold any security violation
20499         detected when JITting a method (so it can be thrown later).
20500         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
20501         and CEE_CALLVIRT. Added code to throw exception at the end of
20502         mini_method_compile (note: the exception is unhandled right now).
20503
20504 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
20505
20506         * mini.c, jit-icalls.c: use the managed implementation of
20507         memset for initobj and memset, to avoid managed <-> unmanaged
20508         transitions.
20509
20510 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
20511
20512         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
20513         optimization if it would need a GOT var.
20514
20515         * basic.cs: Add tests for constant propagation and switch statements.
20516
20517         * ssa.c: Fix out-of-range constant propagation and switch statements.
20518
20519 2005-02-09    <vargaz@freemail.hu>
20520
20521         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
20522
20523 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
20524
20525         * cpu-amd64.md (load_membase): Fix max length of load_membase.
20526
20527 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
20528
20529         * mini.c: update to new signature of mono_class_get_allocation_ftn().
20530
20531 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
20532
20533         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
20534         arithmetic operations.
20535
20536 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
20537
20538         * mini-ppc.c: add a workaround for broken user code that
20539         DllImports vararg functions with non-vararg signatures.
20540
20541 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20542
20543         * mini.c (mono_jit_compile_method_inner): Add detection and a 
20544         meaningfull error message for assemblies written in Managed C++.
20545
20546         * tramp-amd64.c mini-amd64.h: Add support for 
20547         create_trampoline_from_token ().
20548
20549         * aot.c mini-x86.c abcremoval.c: Applied patch from
20550         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20551
20552 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20553
20554         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
20555         which takes a MonoImage/token as parameter instead of a MonoMethod.
20556
20557         * aot.c: Use the new trampoline for initializing vtables.
20558
20559         * aot.c: Add support for ldfld/stfld_remote wrappers.
20560
20561         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
20562         rules for compare <MEM>, IMM.
20563
20564         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
20565
20566         * aot.c: Handle inherited finalizers correctly.
20567
20568 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20569
20570         * inssel.brg (stmt): Add a missing _setup_... ().
20571
20572         * aot.c: Save some parts of the class state to the AOT file and use it
20573         to recompute that state when a class is initialized.
20574
20575         * mini.c: Install AOT hooks into the runtime.
20576
20577         * mini.h: Bump AOT file format version.
20578         
20579         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
20580         Fixes #72148.
20581
20582         * iltests.il: Add new test.
20583
20584 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20585
20586         * mini.c: fix typo.
20587
20588 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
20589
20590         * mini.c: setup the statistical profiler in the thread attach
20591         callback to cope with the new single thread code.
20592
20593 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20594
20595         * mini-ppc.c: ensure we have enough room for the profiler
20596         calls (fixed bug#72084).
20597
20598 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
20599
20600         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
20601         it.
20602
20603 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20604
20605         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
20606
20607 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20608
20609         * ssapre.c: Fixed an issue with down safety (this allows IronPython
20610         to succesfully execute parrotbench).
20611         * ssapre.h: Likewise.
20612
20613 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
20614
20615         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
20616         variable for stores to method arguments (fixes a SSAPRE issue).
20617
20618 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20619
20620         * mini.c: handle value types in dup, fixes gen-112.cs.
20621
20622 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
20623
20624         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
20625         sequence for calls in dynamic methods to avoid thunks.
20626
20627 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20628
20629         * mini.c: correctly remove dynamic methods from the hashtable.
20630
20631 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20632
20633         * driver.c: Disabled SSAPRE until fix the bug that appears
20634         in IronPython's parrotbench.
20635
20636 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
20637
20638         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
20639
20640         * mini.c (mono_method_to_ir): Revert the previous change.
20641         
20642         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
20643         when AOT compiling.
20644
20645         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
20646         mono_jit_info_table_find () etc. when running under valgrind.
20647
20648         * inssel.brg: Fix warnings.
20649
20650         * mini-exceptions.c: Fix warnings.
20651
20652 2005-01-31  Martin Baulig  <martin@ximian.com>
20653
20654         * driver.c (compile_all_methods_thread_main): Don't try to compile
20655         generic methods or anything which has type parameters.
20656
20657 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
20658
20659         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
20660
20661         * TestDriver.cs: Add --verbose flags.
20662
20663         * graph.c ssa.c: Fix 64 bit warnings.
20664         
20665         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
20666         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
20667         Fix 64 bit warnings.
20668
20669         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
20670         variable not spotted by gcc.
20671         
20672         * mini-amd64.c inssel-amd64.brg: Applied patch from  
20673         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
20674         X86_COMPARE_MEMBASE opcodes.
20675
20676         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
20677
20678 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
20679
20680         * *: MonoMethod->signature might be NULL now. You *MUST* use
20681         mono_method_signature.
20682
20683 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20684
20685         * driver.c (compile_all_methods_thread_main): Compile the methods
20686         without invoking cctors.
20687
20688 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20689
20690         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
20691         * basic-calls.cs: test for the above.
20692
20693 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20694
20695         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
20696         MonoJitInfo changes.
20697
20698 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
20699
20700         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
20701         eagerly if it contains dynamic methods.
20702         
20703         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
20704
20705         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
20706         trace, it is now computed by an icall from trace_ips.
20707         
20708         * mini-exceptions.c: Fix a warning.
20709
20710 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20711
20712         * mini-exceptions.c: don't bother getting stack trace info if
20713         it's not going to be used.
20714
20715 2005-01-27  Raja R Harinath  <rharinath@novell.com>
20716
20717         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
20718         ssapre-mini-ops.h.
20719
20720 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
20721
20722         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
20723
20724         * aot.c: Avoid calling mono_method_get_header () if not needed.
20725
20726         * mini.h: Bump AOT file format version.
20727         
20728         * mini.c (mono_emit_native_call): Allocate a GOT var here.
20729
20730         * mini.c (mono_print_tree): Print more info for calls.
20731
20732 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
20733
20734         * declsec.h: Remove warning by adding missing include for marshal.h
20735
20736 2005-01-26  Martin Baulig  <martin@ximian.com>
20737
20738         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
20739         `ip' twice.
20740
20741 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
20742
20743         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
20744         flags.
20745
20746         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
20747
20748         * aot.c (mono_compile_assembly): Fix a warning.
20749
20750 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
20751
20752         * declsec.c: Look for security attributes on the original MonoMethod 
20753         (and not the wrapped one). This fix permissions on icalls.
20754
20755 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
20756
20757         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
20758
20759         * mini.c (mono_allocate_stack_slots): Add a fixme.
20760
20761         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
20762
20763 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20764
20765         * inssel.brg: optimize casts of sealed types (more
20766         optimizations waiting for fixes in remoting).
20767
20768 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
20769
20770         * inssel.brg (stmt): Add another dummy rule.
20771
20772         * driver.c: Fix warnings.
20773
20774         * driver.c (mono_main): If running under valgrind, instruct glib to use
20775         the system allocation functions so valgrind can track the memory
20776         allocated by the g_... functions.
20777
20778         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
20779
20780         * mini-ops.h: Add OP_DUMMY_STORE opcode.
20781
20782         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
20783
20784         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
20785         variables in try regions.
20786
20787         * mini.c (mini_method_compile): Don't disable optimizations on large
20788         methods when AOT compiling.
20789
20790         * mini.c (mono_allocate_stack_slots): New arch independent method to 
20791         allocate stack slots. Not yet used.
20792
20793 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
20794
20795         * debug-mini.c (mono_debug_close_method): Plug some leaks.
20796
20797 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
20798
20799         * mini-ppc.c: make the branch info relative as the code
20800         buffer can be reallocated.
20801
20802 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
20803
20804         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
20805         * driver.c: Removed the AOT/security restriction. Now initialize the
20806         security manager (in metadata) if --security is used.
20807         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
20808         rather than the pointer to declarative security, when AOT is used.
20809
20810 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
20811
20812         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
20813         basic blocks, reduced intrinsic exception throwing code size.
20814
20815 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
20816
20817         * driver.c (mini_usage): Reorder the usage screen.
20818
20819 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
20820
20821         * mini.c (mono_resolve_patch_target): Fix warning.
20822
20823 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
20824
20825         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
20826         previous patch.
20827
20828         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
20829
20830         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
20831         breaks the amd64 build.
20832
20833         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
20834         register allocation. Fixes #71454.
20835
20836         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
20837
20838         * arrays.cs: Add new regression test.   
20839
20840 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20841
20842         * ssapre.c: Turned usage of snprintf to GString.
20843         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
20844         (I left it on by mistake in my previous commit).
20845
20846 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
20847
20848         * mini.c, cfold.c, basic-calls.cs: preserve side effects
20849         on cond branch optimization (fixes bug# 71515).
20850
20851 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20852
20853         * abcremoval.c: Fixed bug 71062.
20854         * abcremoval.h: Likewise.
20855
20856 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
20857
20858         * mini.c: Added a new functionality to optimize_branches, the removal
20859         of useless basic blocks, and fixed some problem in the removal of
20860         critical edges; some utility functions added for both purposes.
20861         * ssapre.c: Added complex expression support, and fixed bug 70637.
20862         * ssapre.h: Likewise.
20863         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
20864         enabled in SSAPRE.
20865         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
20866         * driver.c: Re-enabled SSAPRE.
20867
20868 2005-01-19  Martin Baulig  <martin@ximian.com>
20869
20870         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
20871         the result of mono_get_method_constrained().
20872
20873 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
20874
20875         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
20876         manager.
20877
20878 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
20879
20880         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
20881         be detected.  Fixes #59296.
20882
20883 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
20884
20885         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
20886         which can happen. Fixes #71361.
20887
20888 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
20889
20890         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
20891         manager.
20892
20893 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
20894
20895         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
20896         appdomain-unload.exe to fail.
20897         
20898         * mini.c: Fix some memory leaks.
20899
20900 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
20901
20902         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
20903         Fixed bug and sped up some codepaths.
20904
20905 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
20906
20907         * mini.c: Fix some memory leaks.
20908
20909         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
20910         conversion.
20911
20912         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
20913
20914         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
20915         #71320.
20916
20917         * iltests.il: Add regression test for #71320.
20918
20919 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
20920
20921         * mini.c (mono_codegen): Fix installation of profiler hooks.
20922
20923         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
20924
20925 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20926
20927         * mini.h, mini.c, cfold.c: optimize access to enum
20928         readonly fields, too. Eval conditional branches if possible
20929         to perform unreachable code removal in more cases.
20930
20931 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
20932
20933         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
20934
20935         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
20936         code manager.
20937
20938         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
20939         WinXP DEP. Fixes #71244.
20940
20941 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
20942
20943         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
20944
20945 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
20946
20947         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
20948
20949 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
20950
20951         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
20952         changes.
20953
20954         * mini.h: Bump AOT version.
20955
20956         * mini.h (MonoCompile): Change exvar to a hash table.
20957
20958         * mini.c: Allocate a separate exvar for each handler block.
20959
20960         * mini.c: Get rid of the computation of filter_lengths, its not needed.
20961
20962         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
20963         ex var with the pending exception and only throw if the two are equal.
20964         Fixes #68552.
20965         
20966         * exceptions.cs: Add tests for rethrow and nested catch clauses.
20967
20968         * mini-x86.c: Fix warnings.
20969
20970         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
20971         used by all the ports now.
20972
20973         * aot.c: Add write-symbols and save-temps options.
20974
20975 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
20976
20977         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
20978
20979 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
20980
20981         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
20982         operations.
20983
20984         * tramp-s390.c: Check vtable slot belongs to the domain.
20985
20986         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
20987         as per other platforms.
20988
20989         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
20990
20991 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
20992
20993         * driver.c: we don't run the Main() code in a subthread anymore.
20994
20995 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
20996
20997         * mini.c: added experimental rtc support in the statistical
20998         profiler: if the user has the permission, more accurate statistics
20999         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
21000         The MONO_RTC value must be restricted to what the linux rtc allows:
21001         power of two from 64 to 8192 Hz.
21002
21003 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
21004
21005         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
21006
21007 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
21008
21009         * mini-ppc.c: better icache flush for smp.
21010
21011 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21012
21013         * mini-amd64.c (emit_move_return_value): Fix memory leak.
21014
21015         * mini-x86.c (get_call_info): Add the get_call_info () code from the
21016         amd64 port, not yet used.
21017
21018 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21019
21020         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
21021         a struct type.
21022
21023 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21024
21025         * driver.c: Added --security option to activate the security manager.
21026         Right now this will allow code generation for declarative demands and
21027         is disabled when AOT is specified.
21028         * mini.c: Add code generation for declarative security demands.
21029         * mini.h: Add mono_use_security_manager as an extern gboolean.
21030
21031 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21032
21033         * aot.c (mono_compile_assembly): Speed up compilation a bit by
21034         emitting more dense assembly code.
21035
21036         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
21037         exception throwing stuff.
21038
21039 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21040
21041         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
21042         dead code.
21043
21044         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
21045         left in by mistake.
21046
21047         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
21048         fixed.
21049
21050         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
21051
21052         * tramp-*.c: Only patch vtable slots if the object is in the current
21053         domain. Fixes appdomain-unload.exe.
21054
21055         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
21056         
21057         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
21058         x86 branch.
21059
21060 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21061
21062         * mini.c (reverse_branch_op): New helper function.
21063
21064         * mini.c (optimize_branches): Run the new optimization only on 
21065         platforms which support it. Also reverse all kinds of branches.
21066
21067         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
21068
21069         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
21070         a throw statement.
21071
21072         * mini.c (optimize_branches): Reverse not-equals branches if the false
21073         bblock is a throw. This happens a lot of time with argument checking in
21074         corlib.
21075
21076         * mini.c (mono_codegen): Add support for placing basic blocks after
21077         the function epilogue.
21078
21079         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
21080         function epilogue.
21081         
21082 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
21083
21084         * mini.c (setup_stat_profiler): Only set this up if the platform
21085         supports ITIMER_PROF.
21086
21087 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21088
21089         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
21090         previous patch.
21091
21092         * inssel.brg: Fix a warning.
21093
21094 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21095
21096         * mini.c: added support for statistical profiler 
21097         (run with: --profile=default:stat).
21098
21099 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
21100
21101         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
21102
21103         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
21104
21105         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
21106         related to global registers from the amd64 port.
21107
21108 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
21109
21110         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
21111
21112         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
21113         with global registers.
21114         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
21115
21116         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
21117
21118 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
21119
21120         * debug-mini.c (encode_value): Fix off-by-one.
21121
21122         * aot.c (encode_value): Likewise.
21123
21124         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
21125
21126 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
21127
21128         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
21129         AOT.
21130
21131         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
21132         
21133         * aot.c (emit_method_info): Increase size of temp buffer.
21134
21135         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
21136         the AOT case.
21137
21138 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
21139
21140         * aot.c (emit_method_info): Fix build.
21141         
21142         * aot.c: Further rework of the AOT file format to reduce the size of
21143         the method info data.
21144
21145         * mini.h: Bump AOT file format version.
21146
21147 2004-12-27  Martin Baulig  <martin@ximian.com>
21148
21149         * mini.c (mini_get_method): New static method; call
21150         mono_get_method_full() and mono_get_inflated_method().
21151         (mono_method_to_ir): Use mini_get_method() instead of
21152         mono_get_method_full(). 
21153
21154 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
21155
21156         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
21157
21158 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
21159
21160         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
21161
21162         * inssel-amd64.brg: Add some optimization rules.
21163
21164 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
21165
21166         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
21167         standard not GC'd stuff is fine.
21168
21169 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
21170
21171         * aot.c: Rework the AOT file format to get rid of most of the global
21172         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
21173
21174         * mini.h: Bump AOT file format version.
21175         
21176 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
21177
21178         * mini.h: Bump AOT file format version.
21179
21180         * aot.c (mono_aot_is_got_entry): New function to determine if an 
21181         address is inside a GOT.
21182
21183         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
21184
21185         * cpu-pentium.md: Increase the maximum size of some instructions which
21186         might involve a got access.
21187         
21188         * mini.c (get_method_from_ip): Another debug helper function.
21189
21190         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
21191         when got var accesses are created during the decompose phase.
21192
21193         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
21194
21195         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
21196         argument mini_compile_method and to MonoCompile, and use this to
21197         determine whenever a given method is compiled for AOT. This allows the
21198         other methods compiled during AOT compilation to be free of AOT stuff,
21199         so the backends does not need to add special support for them by
21200         creating a fake GOT etc.
21201
21202         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
21203         longer needed.
21204
21205 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
21206
21207         * mini.c (mono_method_to_ir): It turns out that some of the
21208         x-appdomain wrappers are lax with types, so just ignore this for
21209         all wrappers.
21210
21211         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
21212         at the vtable->klass. If it is non-shared code we can just use the
21213         vtable.
21214
21215 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
21216
21217         * mini-ppc.c: access MonoDomain from tls, too.
21218
21219 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
21220
21221         * declsec.c: Removed unused variable (and related warning ;-)
21222
21223 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
21224
21225         * iltests.il: New test for LDELEMA on an array of ref types.
21226
21227         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
21228         all ldelema's on reftypes.
21229         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
21230         it was the wrong place to put it.
21231
21232         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
21233         register to pop to make this cleaner, at the request of Paolo.
21234
21235 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
21236
21237         * mini-ops.h (OP_GETHASHCODE): New op.
21238
21239         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
21240
21241         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
21242         operation.
21243
21244         For a microbenchmark, this reduces the cost of Hashtable.get_Item
21245         by 25%.
21246         
21247         * mini-x86.c (mono_arch_output_basic_block): Rather than
21248
21249         add ebp, 4
21250
21251         Emit
21252
21253         pop edx
21254
21255         The first is 3 bytes while the second is 1. This saves 36 kb on
21256         mscorlib, quite a big saving. When bootstraping mcs, I was able to
21257         see a small boost because of icache locality.
21258
21259         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
21260
21261 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
21262
21263         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
21264         started code sharing with the generic code.
21265
21266 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
21267
21268         * mini-ppc.c, cpu-g4.md: added code for direct access to
21269         tls data slots.
21270
21271 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
21272
21273         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
21274          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
21275         to OP_TLS_GET.
21276
21277 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
21278
21279         * declsec.c|h: Added functions to cache the declarative stack modifiers
21280         in MonoJitInfo and to create a security frame from a MonoJitInfo 
21281         structure.
21282         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
21283         created. Register internal calls for System.Security.SecurityFrame::
21284         _GetSecurityFrame and _GetSecurityStack.
21285         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
21286         the definitions for the new stack walk/callback mechanism.
21287         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
21288         first security frame for LinkDemands and InheritanceDemands) and
21289         GetSecurityStack for Demands. Both use the new mono_walk_stack code
21290         from lupus.
21291         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
21292         walk initialization (lupus).
21293
21294 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
21295
21296         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
21297         idiom.
21298         (handle_loaded_temps): Do not create a temporary variable for
21299         things that we know are temps. They will never be modified.
21300         (mono_spill_call): Set MONO_INST_IS_TEMP
21301         (mono_emulate_opcode): ditto
21302         (emit_tree): ditto
21303         (mono_method_to_ir.CEE_DUP): ditto
21304
21305 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
21306
21307         * mini.c (type_to_eval_stack_type): Make this handle the void type
21308         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
21309         (emit_tree): use ip_in_bb to special case some common idioms
21310         Update all callers to pass in the IP.
21311         (mono_method_to_ir): Make CEE_CALL* do the above as well.
21312
21313         This gives us a nice 2% speedup in mcs bootstrap.
21314
21315         * mini-x86.c (peephole_pass): Peephole pass to make
21316         mov  [foo], eax
21317         push [foo]
21318
21319         into
21320
21321         mov [foo], eax
21322         push eax
21323
21324         * mini.c (ip_in_bb): new method.
21325         (mono_method_to_ir): use this method rather than doing the hash
21326         lookup ourselves.
21327
21328         * linear-scan.c (mono_linear_scan): When expiring actives, you
21329         don't need to keep around variables that expire on this
21330         instruction. This makes it so that:
21331              a = b + 1
21332         will turn into:
21333              store (ebx add (ebx, 1))
21334         which will become
21335              add ebx, 1
21336
21337 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
21338
21339         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
21340         combination to avoid doing two copies. Fix up problems with previous
21341         patch.
21342
21343         * mini.c: Fix 64 bit warnings.
21344
21345         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
21346
21347 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
21348
21349         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
21350         changes from the x86 code.
21351
21352         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
21353
21354 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
21355
21356         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
21357         throwing code to reduce its size, unify the AOT and non-aot code and 
21358         get rid of relocations in the AOT case.
21359
21360         * mini-x86.h mini.c exceptions-x86.c 
21361         (mono_arch_get_throw_corlib_exception): New arch specific function to 
21362         raise corlib exceptions which doesn't require relocations in the 
21363         caller.
21364
21365         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
21366
21367 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
21368
21369         * mini.c (mono_emit_method_call): Only allocate the got var when it is
21370         needed.
21371
21372         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
21373         in the AOT case.
21374
21375 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
21376
21377         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
21378         with add function when used from Inc/dec atomic 
21379         functions. Re-enabled optimization on x86.
21380         * mini-ops.h: renamed atomic_add functions to
21381         allow _add to match the Interlocked::Add and
21382         _add_next to match Interlocked::Inc/Dec.
21383
21384 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
21385
21386         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
21387         linking of BBs to the end BB, and enabled SSAPRE also with
21388         consprop and copyprop (which was prevented by that bug).
21389
21390 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
21391
21392         * mini-x86.c: disabling the Interlocked optimizing code. 
21393
21394 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
21395
21396         * aot.c (load_aot_module): Move reading of got_addr after the AOT
21397         file version check.
21398         
21399 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
21400
21401         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
21402         interlocked optimization due lack of support on x86, rewrote 
21403         exchange to take into account that base may be in eax.
21404         
21405         xsp works again; activated Interlocked optimizing code.
21406         
21407 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
21408
21409         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
21410
21411 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
21412
21413         * mini-ops.h: Add new opcodes.
21414
21415         * mini.h: Add new patch types. Add got_var to MonoCompile.
21416
21417         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
21418         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
21419         make it work with all kinds of patchable code.
21420
21421         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
21422         address of the GOT, and referencing entries in the GOT.
21423
21424         * mini.c: Add code to load the GOT address if needed by an opcode.
21425
21426         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
21427         independent AOT code on the x86 using an elf-style Global Offset Table.
21428
21429 2004-12-14  Raja R Harinath  <rharinath@novell.com>
21430
21431         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
21432
21433 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21434
21435         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
21436         when running xsp.
21437
21438 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
21439
21440         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
21441         of Interlocked:Increment/Decrement/Add as inline ops.
21442         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
21443
21444 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
21445
21446         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
21447         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
21448
21449 2004-12-12  Duncan Mak  <duncan@ximian.com>
21450
21451         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
21452         again. `patch_info->table_size' is no longer valid after Zoltan's
21453         commit #37636.
21454
21455 2004-12-12  Martin Baulig  <martin@ximian.com>
21456
21457         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
21458         if we are the "real" method, ie. not an inlined method inside it.
21459
21460 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
21461
21462         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
21463         before we look in the special fields table. This fixes
21464         ../tests/thread-static-init.cs.
21465
21466 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21467
21468         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
21469         for Array get_Rank and get_Length. Fixes bug #70465.
21470
21471 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
21472
21473         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
21474         separate structure to reduce the size of MonoJumpInfo.
21475
21476 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
21477
21478         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
21479
21480 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
21481
21482         * mini.c (mini_get_inst_for_method): Changed to allow ports
21483         to return a MonoInst instead of opcode 
21484         (renamed mini_get_opcode_for_method to better reflect the new functionality)
21485         
21486         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
21487         Allow ports to return a created MonoInst instead of op-code, will enable
21488         new optimizations.
21489         (renamed mini_get_opcode_for_method to better reflected the functionality)
21490
21491 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
21492
21493         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
21494
21495 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21496
21497         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
21498         Fixes #69985.
21499
21500 2004-12-08  Martin Baulig  <martin@ximian.com>
21501
21502         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
21503         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
21504
21505 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21506
21507         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
21508         correctly.
21509
21510         * exceptions.cs: Disable some tests which depend on properties of x86 fp
21511         arithmetic.
21512
21513 2004-12-08  Raja R Harinath  <rharinath@novell.com>
21514
21515         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
21516
21517 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
21518
21519         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
21520         bug introduced by the previous patch.
21521
21522 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
21523
21524         * mini-ppc.c, objectc.cs: handle large structs passed by value
21525         (fixes bug #69972).
21526
21527 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21528
21529         * mini-ppc.c: OP_ARGLIST implementation from
21530         Geoff Norton  <gnorton@customerdna.com>.
21531
21532 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
21533
21534         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
21535         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
21536
21537 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
21538
21539         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
21540
21541 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21542
21543         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
21544         support.
21545
21546 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
21547
21548         * mini-sparc.c: Zero out localled-ed memory.
21549
21550         * iltests.il: Add tests for zeroing out localloc-ed memory.
21551
21552 2004-12-04  Martin Baulig  <martin@ximian.com>
21553
21554         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
21555         mono_method_get_signature_full().       
21556
21557 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
21558
21559         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
21560         and some utility functions (always for SSAPRE), integrated SSAPRE.
21561         * mini.h: Likewise.
21562         * driver.c: Added ssapre option.
21563         * ssa.c: Small fix on OP_ARG handling.
21564         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
21565         * Makefile.am: Likewise.
21566
21567 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21568
21569         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
21570         now in the xp code.
21571
21572         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
21573         icall.
21574
21575 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21576
21577         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
21578         
21579         * cpu-s390.md : Increase instruction length of oparglist.
21580
21581         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
21582
21583 2004-11-30  Martin Baulig  <martin@ximian.com>
21584
21585         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
21586         virtual generic methods.  We call a special helper_compile_generic_method()
21587         icall to retrieve the method from the vtable, inflate and compile
21588         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
21589
21590         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
21591
21592 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
21593
21594         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
21595
21596 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
21597
21598         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
21599         Fixes #69929.
21600
21601 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
21602
21603         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
21604         platforms with PIC aot.
21605
21606 2004-11-28  Martin Baulig  <martin@ximian.com>
21607
21608         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
21609         Fixes gen-112.cs.
21610
21611 2004-11-28  Martin Baulig  <martin@ximian.com>
21612
21613         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
21614         the result of mono_type_get_underlying_type() to check whether
21615         we're byref.
21616
21617 2004-11-26  Martin Baulig  <martin@ximian.com>
21618
21619         * mini.c
21620         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
21621         in the g_assert().
21622
21623 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
21624
21625         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
21626         the same way as the other arguments so they won't get clobbered.
21627
21628         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
21629         calls through R11 since it is clobbered by the trampoline code.
21630
21631 2004-11-26  Raja R Harinath  <rharinath@novell.com>
21632
21633         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
21634         pick up in-tree mscorlib.dll.
21635
21636 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
21637
21638         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
21639
21640         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
21641         runtime data/code are now stored in a table similar to the GOT in ELF. 
21642         This allows the code itself to be position independent.
21643
21644         * aot.c: Fix loading of referenced assemblies after the lazy assembly
21645         loading changes.
21646
21647         * aot.c: Attach ELF type (object/function) directives to all global
21648         symbols.
21649
21650         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
21651
21652         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
21653
21654         * mini-amd64.h: Turn on PIC AOT code.
21655
21656         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
21657         returning the offset within an OP_AOTCONST instruction where the GOT
21658         offset needs to be added.
21659
21660         * mini.h: Bump AOT file format version.
21661
21662 2004-11-25  Martin Baulig  <martin@ximian.com>
21663
21664         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
21665         uninflated generic methods.
21666
21667 2004-11-25  Martin Baulig  <martin@ximian.com>
21668
21669         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
21670
21671 2004-11-24  Martin Baulig  <martin@ximian.com>
21672
21673         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
21674         original klass (this only applies for generic instances).
21675
21676 2004-11-24  Martin Baulig  <martin@ximian.com>
21677
21678         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
21679         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
21680         that array).
21681
21682 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
21683
21684         * mini.c (mono_method_to_ir): Disable inlining for methods containing
21685         localloc. Fixes #69678.
21686
21687         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
21688         
21689 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
21690
21691         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
21692         used SSE registers on pinvoke calls. Fixes #69774.
21693
21694 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
21695
21696         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
21697         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
21698
21699 2004-11-23  Raja R Harinath  <rharinath@novell.com>
21700
21701         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
21702         Refer directly to the mcs/ tree.
21703
21704 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21705
21706         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
21707         Check if a trampoline for a synchronized method is required. 
21708
21709 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
21710
21711         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
21712         with localloc if needed. Throe arithmetric exception in
21713         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
21714         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
21715
21716 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
21717
21718         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
21719         types before switching on type.  Fixes #69622.
21720
21721 2004-11-19  Raja R Harinath  <rharinath@novell.com>
21722
21723         * Makefile.am (check-local): New.  Integrate into 'make check'.
21724         (MCS,RUNTIME): Define using in-tree mono and mcs.
21725         (ILASM): New.
21726         (%.exe): Use $(ILASM).
21727
21728 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
21729
21730         * mini-ppc.c: adjust initial prolog size (bug #69691).
21731
21732 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
21733
21734         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
21735         #69664.
21736
21737 2004-11-17  Raja R Harinath  <rharinath@novell.com>
21738
21739         * Makefile.am (clean-local): Rename from 'clean'.
21740
21741 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21742
21743         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
21744         to mono_arch_is_int_overflow. 
21745         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
21746         SIGFPE events.
21747
21748 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
21749
21750         * declsec.c|h: New files to support declarative security attributes.
21751         Added function to check if a method has (applicable) security.
21752         * mini.c|h: Add check for declarative security attributes in
21753         mono_method_check_inlining.
21754         * Makefile.am: Added declsec.c and declsec.h to the build.
21755
21756 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21757
21758         * mini.c, mini.h: update to keep dynamic code info per-domain.
21759
21760 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
21761
21762         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
21763         (mini_init): Get rid of it from here too.
21764
21765 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21766
21767         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
21768         implemented OP_RETHROW (patch by Geoff Norton
21769         <gnorton@customerdna.com>).
21770
21771 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
21772
21773         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
21774         between appdomains.  Fixes appdomain-unload on PPC.
21775
21776 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
21777
21778         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21779         mini-exceptions.c: handle the new wrapper types.
21780         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
21781         token value as a MonoClass* when compiling a wrapper.
21782         mono_jit_create_remoting_trampoline now takes an additional
21783         MonoRemotingTarget parameter.
21784         
21785 2004-11-10  Martin Baulig  <martin@localhost>
21786
21787         * mini.c (mono_method_to_ir): Use `generic_container->context'
21788         rather than creating a new one.
21789
21790 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21791
21792         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
21793
21794         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
21795
21796 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
21797
21798         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
21799         the experimental aot cache stuff.
21800
21801 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
21802
21803         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21804         mini-exceptions.c: update to exception clause structure changes.
21805
21806 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
21807
21808         * exceptions-x86.c (throw_exception): Fix warnings.
21809
21810         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
21811         for OP_RETHROW.
21812
21813 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
21814
21815         * exceptions-sparc.c (get_throw_exception): Really fix this.
21816
21817 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
21818
21819         * tramp-*.c: we no longer support icalls without wrappers, so
21820         a bit of code can be removed here
21821
21822 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
21823
21824         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
21825         patch.
21826
21827         * cpu-sparc.md: Add op_rethrow.
21828
21829         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
21830
21831         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
21832
21833         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
21834         * mini-ops.h: Add OP_RETHROW.
21835
21836         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
21837
21838         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
21839
21840 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
21841         
21842         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
21843         Makes the output much easier to read
21844
21845 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
21846
21847         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
21848         prevents another huge leak when compiling with ssa. Secondly, the
21849         performance of doing this rather than freeing the lists is much
21850         better. GList does a lock every time you allocate a list link,
21851         so that it can use a memory pool. So, it is better to just use
21852         a memory pool of our own.
21853         
21854         * ssa.c, linear-scan.c: replace g_list_remove_link with
21855         g_list_delete.  The remove one does not free the GList, so we were
21856         leaking memory. On -O=all --compile-all with corlib, this cut down
21857         3 MB of allocations.
21858
21859 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
21860
21861         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
21862
21863         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
21864
21865         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
21866         into a new function mono_create_jit_trampoline ().
21867
21868 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
21869
21870         * trace.c (get_spec): Allow tracing of classes without a namespace.
21871
21872 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
21873
21874         * mini.c: Fix pointer overwrite in mini_method_compile.
21875
21876 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
21877
21878         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
21879         The darwin ABI needs some special handling for 1 and 2 byte structs
21880         Lets use lbz/lhz instead of lwz everywhere.
21881         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
21882         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
21883         Use stb/sth for the former, and put the latter always on stack instead of in
21884         argument registers.
21885
21886 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
21887
21888         * trace.c (is_filenamechar): Add '_'.
21889
21890 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
21891
21892         * mini-s390.c: Fix prolog length to allow for large trace requirements.
21893
21894         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
21895
21896 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
21897
21898         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
21899         depends on libmonogc. Fixes #68805.
21900
21901 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
21902
21903         * mini.c (mono_jit_free_method): Provide extra information for
21904         this error.  Currently this leaks, but will be turned into a
21905         developer option in the future.
21906
21907 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
21908
21909         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
21910
21911 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
21912
21913         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
21914         boundary. Fixes reading of PATCH_INFO_R4 and R8.
21915         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
21916
21917 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
21918
21919         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
21920         trampolines for AOT code.
21921
21922 2004-10-22    <vargaz@freemail.hu>
21923
21924         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
21925         constructed types. Fixes #68136.
21926
21927 2004-10-21  Martin Baulig  <martin@ximian.com>
21928
21929         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
21930         if it returns true, unwind the stack to the call instruction.
21931
21932 2004-10-21    <vargaz@freemail.hu>
21933
21934         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
21935
21936         * mini.h: Bump AOT version number.
21937
21938         * objects.cs: Add another test for unbox trampolines.
21939
21940         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
21941         valuetype methods.
21942
21943 2004-10-20    <vargaz@freemail.hu>
21944
21945         * driver.c: Add SHARED to the set of optimizations tested.
21946
21947         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
21948
21949         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
21950         used by CEE_NEWARR.
21951
21952         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
21953
21954 2004-10-20  Martin Baulig  <martin@ximian.com>
21955
21956         * mini-exceptions.c (mono_handle_exception): Call
21957         mono_debugger_handle_exception() to tell the debugger about
21958         catch/finally clauses.
21959
21960 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
21961
21962         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
21963
21964         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
21965         #68447.
21966
21967 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
21968
21969         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
21970         methods as their native size, fixed bug #57543, #57545.
21971         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
21972         This saves a temporary register and mullw call down into 1 (minor perf
21973         increase for cases like sum = sum * 5;  This use to translate into:
21974             li r11,5
21975             mullw r28,r28,r11
21976         It now translates to
21977             mulli r28,r28,5
21978
21979 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
21980
21981         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
21982         #68388.
21983
21984 2004-10-11  Martin Baulig  <martin@ximian.com>
21985
21986         * mini.c (mono_method_to_ir): If we're a generic method, get the
21987         MonoGenericContainer from our MonoMethodNormal and create a
21988         MonoGenericContext from it.
21989
21990 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
21991
21992         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
21993
21994         * basic-long.cs: Add test for checked i8->i2 cast.
21995
21996 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21997
21998         * inssel-ppc.brg: added a couple of speedup rules.
21999
22000 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
22001
22002         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
22003         to speed up rebuilds.
22004
22005 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22006
22007         * mini-s390.c: Minor fix to OP_OR_IMM.
22008
22009 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
22010
22011         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
22012         better. Fixes appdomain-unload.exe on sparc.
22013
22014 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
22015
22016         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
22017         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
22018         see bug 67324.
22019
22020 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
22021
22022         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
22023
22024 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
22025
22026         * mini.c: Always generate a field read/write wrapper for members
22027         of the class MarshalByRefObject since the actual instance could
22028         be a CBO.
22029
22030 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22031
22032         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
22033
22034 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22035
22036         * driver.c mini.h trace.c: Move the setting of the main assembly into
22037         a separate function called mono_trace_set_assembly () and call it after
22038         actually loading the main assembly. Fixes #66872.
22039
22040 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
22041
22042         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
22043         using the code manager.
22044
22045 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
22046
22047         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
22048
22049 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22050
22051         * cpu-amd64.md: Fix bug in previous patch.
22052         
22053         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
22054         #66650.
22055
22056 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
22057
22058         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
22059         mini-exceptions.c: updates for changed stack walk interface.
22060
22061 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22062
22063         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
22064
22065 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
22066
22067         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
22068
22069 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
22070
22071         * driver.c (mini_regression_list): Do not call mono_assembly_close 
22072         since assemblies can't be unloaded.
22073         
22074 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
22075
22076         * cpu-amd64.md: Fix more instruction lengths.
22077
22078         * cpu-amd64.md: Fix lengths of some instructions.
22079
22080 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
22081
22082         * inssel.brg: Make the array ldelema check aot friendly.
22083
22084 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
22085
22086         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
22087
22088         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
22089
22090 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
22091
22092         * mini-x86.c: Fix build.
22093
22094         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
22095         mono_type_get_underlying_type () helper function to simplify code.
22096         
22097 2004-09-09  Martin Baulig  <martin@ximian.com>
22098
22099         * mini-amd64.c: Don't access `type->data.klass' directly, call
22100         mono_class_from_mono_type() instead since the type may be a
22101         generic instance.
22102
22103 2004-09-09  Martin Baulig  <martin@ximian.com>
22104
22105         * mini-amd64.c (get_call_info): Fix support for generic instances.
22106         (add_valuetype): Use mono_class_from_mono_type() to get the class
22107         since we can be a generic instance.
22108
22109 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
22110
22111         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
22112
22113 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
22114
22115         * liveness.c: reset spill costs on each scan: bug 62107
22116
22117 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
22118
22119         * exceptions-sparc.c (mono_arch_find_jit_info): remove
22120         unnecessary line that doesn't compile
22121
22122 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22123
22124         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
22125         trampolines, make them call an error function so people can fix their
22126         code.
22127
22128 2004-09-06  Martin Baulig  <martin@ximian.com>
22129
22130         * mini.c (mono_method_to_ir): When initializing locals, handle a
22131         generic instances like a valuetype if it's a valuetype and like a
22132         class if it's a class.
22133
22134 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22135
22136         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
22137         stack. Fixes #64674.
22138
22139         * exceptions.cs: Add test for unwinding of call arguments.
22140
22141 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
22142
22143         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
22144         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
22145         set the carry/borrow flag). The sparc and s390 implementations
22146         can now use optimized versions (and simplify the code). ppc bugfixes.
22147
22148 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22149
22150         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
22151
22152 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
22153
22154         * inssel-amd64.brg: Remove leftover 32 bit rule.
22155
22156         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
22157
22158 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
22159
22160         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
22161         mono_arch_find_jit_info functions into a new function. Fix a memory
22162         leak.
22163
22164         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
22165         refactored code.
22166         
22167 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
22168
22169         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
22170         as well.
22171         
22172         * exceptions.cs: Add array size tests.
22173
22174         * mini.c: Allocate a separate icall wrapper for each arity of 
22175         mono_array_new_va. Fixes #59509.
22176
22177         * exceptions.cs: Add testcase for 64578.
22178
22179         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
22180
22181         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
22182         
22183 2004-09-02  Martin Baulig  <martin@ximian.com>
22184
22185         * mini.c (mono_method_to_ir): When initializing the locals, call
22186         handle_initobj() on the generic instance itself, not its
22187         underlying type.
22188
22189 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
22190
22191         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
22192         MonoJitInfo for dynamic methods.
22193
22194         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
22195
22196         * mini.c: Add support for freeing JIT data for dynamic methods.
22197         
22198 2004-09-01  Martin Baulig  <martin@ximian.com>
22199
22200         * mini-x86.c (is_regsize_var): Added support for generic
22201         instances.
22202         (mono_arch_emit_prolog): Make this compile again, use
22203         `x86_push_imm_template (code)'.
22204
22205 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
22206
22207         * mini-x86.c: make all push_imm instructions that get
22208         patched always emit the long form
22209
22210 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
22211
22212         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
22213         in a per-domain hash.
22214
22215         * mini-amd64.c (merge_argument_class_from_type): Handle generic
22216         types.
22217
22218 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
22219
22220         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
22221         work.
22222         
22223         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
22224         work.
22225
22226         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
22227         Beginnings of SSE2 support.
22228
22229         * exceptions.cs: Add more tests for checked int<->uint casts.
22230
22231 2004-08-28  Martin Baulig  <martin@ximian.com>
22232
22233         * mini-x86.c (mono_arch_instrument_epilog): Added support for
22234         generic instances.
22235
22236         * mini.c
22237         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
22238         Handle generic instances recursively.
22239
22240 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
22241
22242         * iltests.il: test for conv.u8 on a constant
22243
22244 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
22245
22246         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
22247         LCONV_x4 (shrun_32 (membase)).
22248
22249 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
22250
22251         * inssel-x86.brg: c&p rules for push/setret of long
22252
22253 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
22254
22255         * inssel-x86.brg: c&p rules for compare (base, regvar) and
22256         compare (regvar, base)
22257
22258         * inssel-x86.brg: more burg love
22259
22260         * inssel.brg: more cleanup
22261
22262         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
22263
22264 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
22265
22266         * basic-long.cs, basic-calls.cs: new tests for optimization.
22267
22268 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
22269
22270         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
22271         patch.
22272
22273 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
22274
22275         * mini-amd64.c (read_tls_offset_from_method): Add another case.
22276         
22277 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
22278
22279         * inssel.brg (mini_emit_memcpy): use 
22280         NO_UNALIGNED_ACCESS to disable memcpy optimization
22281
22282 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
22283
22284         * mini-amd64.c: Handle generic types in various places.
22285
22286         * mini.c (mono_method_to_ir): Handle generic types in init locals.
22287
22288 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
22289
22290         * mini.c (handle_box): Fix warning.
22291
22292         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
22293
22294         * mini-amd64.h: Enable the emit_state optimization.
22295
22296         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
22297
22298         * mini-amd64.c: Add some new 64 bit peephole opts.
22299
22300         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
22301
22302         * cpu-amd64.md: sreg1 of div instructions must be %rax.
22303
22304         * mini-amd64.c: Register allocator fixes.
22305
22306         * mini.c: Add an optimization to emit_state to avoid allocation of new
22307         registers on some platforms.
22308
22309 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
22310
22311         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
22312
22313         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
22314         allocation. Fixes #63085.
22315
22316         * basic-long.cs: Add new regression test.
22317
22318         * mini-amd64.c: Register allocator improvements.
22319
22320 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
22321
22322         * mini-amd64.c (read_tls_offset_from_method): Add another code
22323         sequence.
22324
22325         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
22326         instruction sequence for nullifying class init trampolines.
22327
22328         * objects.cs: Add new regalloc test.
22329
22330         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
22331
22332 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
22333
22334         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
22335         
22336         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
22337         arguments.
22338
22339         * driver.c: Fix profiling after TLS changes.
22340         
22341         * driver.c (mono_main): Set mono_stats.enabled if needed.
22342
22343         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
22344         CEE_BOX.
22345
22346 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
22347
22348         * mini-x86.c: use a 1 op rather than a 2 op tls access
22349         instruction -> faster.
22350
22351 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
22352
22353         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
22354         x86 backend.
22355
22356 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
22357
22358         * exceptions-sparc.c (throw_exception): fix typo
22359
22360 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
22361
22362         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
22363         set tree->dreg correctly with tls. Allow any
22364         register to be used.
22365
22366         * mini-x86.c (read_tls_offset_from_method): add new code
22367         generation pattern seen with GCC.
22368
22369
22370 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
22371
22372         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
22373         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
22374         exceptions-sparc.c: fix some performance issues in exception
22375         handling and setting of the stack trace for exceptions that were
22376         already thrown.
22377
22378 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
22379
22380         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
22381         x86 backend.
22382         
22383         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
22384         registers.
22385
22386 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
22387
22388         This patch inlines tls access, when possible.
22389         
22390         * mini.h: new arch functions for TLS intrinsics.
22391         All platforms updated with a stub.
22392
22393         * mini.c: use the new intrinsics
22394
22395         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
22396         arch specific intrinsic for tls variables
22397
22398 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
22399
22400         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
22401         under windows.
22402
22403 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22404
22405         * mini.c: thread local allocation
22406
22407 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
22408
22409         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
22410
22411         * Makefile.am: Link against the static version of libmonogc.
22412         
22413         * Makefile.am: Link the static versions of the convenience libraries
22414         into the mono executable.
22415
22416         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
22417
22418 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
22419
22420         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
22421         on integer overflow.
22422
22423         * mini-amd64.c: Reorganize function call code.
22424
22425         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
22426
22427 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
22428
22429         * inssel-x86.brg: use xor eax,eax.
22430         
22431         * basic.cs: new tests
22432
22433 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
22434
22435         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
22436         in exception throwing code.
22437         
22438 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
22439
22440         * inssel-x86.brg: use xor esi,esi.
22441
22442 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
22443
22444         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
22445         can trace methods compiled during mini_init () too.
22446
22447         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
22448         CEE_CONV_U4.
22449
22450 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
22451
22452         * Makefile.am: static link on x86 (r=zoltan)
22453
22454 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
22455
22456         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
22457         code since it causes some programs to fail.
22458
22459 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
22460
22461         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
22462
22463 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
22464
22465         * mini.c: ovfops_op_map - add STACK_OBJ case for
22466         CONV_I 
22467         * basic.cs: add test_0_pin_string as test
22468         case for above.
22469
22470 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
22471
22472         * Makefile.am: build C# if srcdir != builddir
22473
22474 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
22475
22476         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
22477         fall-through blocks.
22478
22479 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22480
22481         * driver.c: enable loop by default again and include abcrem in -O=all.
22482
22483 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
22484
22485         * iltests.il: Add some localloc tests.
22486
22487         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
22488
22489         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
22490         Fixes #62574.
22491
22492         * inssel-amd64.brg: Add some optimizations.
22493
22494         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
22495         for gcc-3.4.
22496
22497         * Makefile.am: Statically link mono against libmono on AMD64.
22498         
22499         * mini-amd64.c inssel-amd64.brg: Optimizations.
22500
22501 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
22502
22503         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
22504
22505         * tramp-amd64.c: Patch calling code in trampolines.
22506
22507 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
22508
22509         * mini-amd64.c: pinvoke struct passing fixes.
22510
22511 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
22512
22513         * mini-sparc.c: redo change, make mono_arch_cpu_init call
22514         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
22515
22516 2004-08-05  Duncan Mak  <duncan@ximian.com>
22517
22518         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
22519         CEE_LDELEM_ANY.
22520
22521 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22522
22523         * mini-amd64.c (emit_move_return_value): Move return value for normal
22524         calls too.
22525
22526 2004-08-05  Martin Baulig  <martin@ximian.com>
22527
22528         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
22529         `type->type'; just modify `type' itself when dealing with enums
22530         and generic instances.
22531         (check_call_signature): Make `simple_type' a `MonoType *'.
22532
22533 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22534
22535         * mini.c: Use OP_PADD to add offsets to addresses.
22536
22537         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
22538
22539 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
22540
22541         * mini-sparc.c (mono_arch_emit_epilog): fix check
22542         for folding last op into restore instruction
22543
22544 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22545
22546         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
22547         helper methods using the code manager.
22548         
22549         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
22550
22551         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
22552
22553 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22554         
22555         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
22556           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
22557
22558         * mini-s390.c: fix tail processing
22559
22560 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
22561
22562         * mini-ppc.c: mul.ovf.un exception name fix.
22563
22564 2004-08-03  Martin Baulig  <martin@ximian.com>
22565
22566         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
22567         instances; before jumping to `handle_enum', also modify `ptype'.
22568
22569 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
22570
22571         * cpu-sparc.md: fcall maximal length too small.
22572
22573 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
22574
22575         * mini-amd64.c mini.h: Add initial support for passing/returning 
22576         structures to/from pinvoked methods.
22577
22578 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
22579
22580         * mini-ppc.c: reg allocator fix.
22581
22582 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
22583
22584         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
22585
22586         * inssel.brg: Optimize memset on 64 bit machines.
22587
22588         * mini-amd64.c: Fix some vararg cases.
22589
22590 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22591
22592         * mini-s390.c: Corrected macro in emit_float_to_int
22593
22594         * s390-abi.cs: Tests to exercise the s390 ABI
22595
22596 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22597
22598         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
22599         caller saved regs.
22600
22601         * basic.cs: Add a test for add.ovf.un.
22602
22603 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
22604
22605         * mini-sparc.c: add case for OP_IDIV_UN
22606
22607 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22608
22609         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
22610         
22611         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
22612
22613 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
22614
22615         * basic.cs: regression tests.
22616
22617         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
22618         regressions.
22619
22620 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22621
22622         * basic.cs: Add a new test.
22623
22624         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
22625         and AOT. Various fixes and optimizations.
22626
22627         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
22628
22629 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
22630
22631         * mini-ppc.c: make sure temp regs are not used for global reg
22632         allocation.
22633
22634 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
22635
22636         * cpu-sparc.md: conv_i8 fix for 64bits
22637
22638         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
22639
22640 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
22641         
22642         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
22643         add opcode for cmp BYTE PTR [eax], imm.
22644
22645         * inssel.brg: Make memcpy and memset takes bases.
22646
22647 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
22648
22649         * *-amd64.*: More AMD64 work.
22650         
22651 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
22652
22653         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
22654         add a compare-not-equal opcode.
22655         
22656 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
22657
22658         * mini.c: Use mono_init_from_assembly instead of mono_init.
22659         
22660 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
22661
22662         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
22663
22664         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
22665
22666         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
22667
22668         * inssel.brg: 64 bit fixes.
22669
22670         * mini.h (MonoCallInst): Add some AMD64 specific data.
22671
22672         * mini.h: Add some OP_P opcodes.
22673
22674 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
22675
22676         * basic.cs: tests for 61797 and 61740
22677
22678 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
22679
22680         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
22681         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
22682
22683 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
22684
22685         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
22686
22687         * *-amd64*.*: Ongoing AMD64 work.
22688
22689 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
22690
22691         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
22692
22693         * *-amd64*: Ongoing AMD64 work.
22694
22695         * mini-arch.h: Add AMD64 support.
22696
22697         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
22698
22699         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
22700
22701         * mini-ops.h: Add new opcodes.
22702
22703         * Makefile.am: Add AMD64 support.
22704
22705         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
22706         rules into the inssel-long*.brg files.
22707
22708         * *-amd64.*: Add beginnings of AMD64 backend.
22709
22710 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
22711
22712         * mini.c (print_dfn): commenting out the code that prints
22713         the cil. With -O=deadce, this makes -v -v crash.
22714         
22715         * cpu-pentium.md: make checkthis have a length of 2
22716
22717 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
22718
22719         * mini-sparc.h: fix implementations of __builtin
22720         functions for Sun compiler for V9.
22721
22722 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
22723
22724         * mini.c: use the new stelem.ref wrapper
22725         * exceptions.cs, arrays.cs: new stelem.ref tests
22726
22727 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
22728
22729         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
22730         new XSP should work with these changes).
22731
22732 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
22733         
22734         * inssel-{long32,x86,}.brg: trivial optimizations.
22735         
22736 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
22737
22738         * mini.c: load value when emitting box operation in
22739         constrained calls.
22740
22741 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
22742
22743         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
22744         is one byte shorter than cmp DWORD PTR [eax], 0.
22745
22746 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
22747
22748         * inssel-ppc.brg: arguments on the stack are always
22749         relative to the stack pointer (spotted by Neale Ferguson).
22750
22751 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22752
22753         * exceptions-x86.c: delay appending the method name to the trace until
22754         after mono_jit_info_table_find is called, as this gets the real
22755         MonoMethod.
22756
22757 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
22758
22759         * aot.c: register roots
22760
22761 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
22762
22763         * aot.c : I could just use PLATFORM_WIN32 flag.
22764
22765 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
22766
22767         * aot.c : Reverting the previous fix. This time it broke linux build.
22768
22769 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
22770
22771         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
22772
22773 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
22774
22775         * mini.c (handle_stack_args): Remove some more debugging code.
22776         
22777         * mini.c (handle_stack_args): Remove debug output left in by mistake.
22778
22779         * driver.c mini.h aot.c: Allow additional options to be specified with
22780         --aot and pass them to mono_compile_assembly.
22781
22782         * aot.c: Add experimental code to AOT compile all loaded assemblies
22783         on demand and save the code into a cache in the filesystem.
22784
22785         * aot.c: Add support for more wrapper methods.
22786         
22787         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
22788         58863.
22789
22790         * cpu-*.md: Remove removed opcodes.
22791
22792         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
22793         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
22794         related icalls to marshal.c.
22795
22796 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
22797
22798         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
22799
22800         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
22801
22802         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
22803
22804 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
22805         * liveness.c: If liveness is recomputated we need to reset the information
22806         for each variable. This way, if the liveness range has been narrowed
22807         by optimizations that happened after the last computation, we can return
22808         a smaller range.
22809         
22810         For example, if you have
22811         
22812         {
22813                 int i = 0;
22814                 
22815                 // Tons of code that does not affect i
22816                 
22817                 i = foo ();
22818                 ...
22819         }
22820         
22821         i = 0 is dead code and will be removed by SSA. However, when
22822         linear scan gets to the code, i will still appear to be live
22823         throughout the entire block. This prevents good register allocation.
22824
22825 2004-07-06  Martin Baulig  <martin@ximian.com>
22826
22827         * debug-mini.c (mono_debug_init_method): Allow
22828         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
22829         (mono_debug_add_icall_wrapper): New method.
22830
22831         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
22832
22833 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
22834
22835         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
22836         optimization.
22837
22838 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
22839
22840         * aot.c (mono_aot_load_method): Fix loading of debug info.
22841
22842 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
22843
22844         * aot.c: Add logging support.
22845
22846 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
22847
22848         * mini.h: Add prototype for mono_print_method_from_ip.
22849
22850         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
22851
22852         * inssel.brg: 64 bit fixes.
22853
22854         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
22855         inssel-long32.brg.
22856
22857         * Makefile.am: Add SPARC64 support.
22858
22859 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
22860
22861         * aot.c: Fix alignment problems on 32 bit platforms.
22862
22863 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
22864
22865         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
22866         SPARC64.
22867
22868         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
22869         problems.
22870
22871         * mini.h: Bump AOT file version. Some 64 bit fixes.
22872
22873 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
22874
22875         * inssel-sparc.brg: Add new rule to avoid register moves.
22876
22877         * inssel.brg: Add ldind_to_load_membase helper function.
22878
22879 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
22880
22881         * mini.c: OffsetToStringData intrinsic.
22882         
22883 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
22884
22885         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
22886
22887         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
22888         regression tests.
22889
22890         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
22891 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
22892
22893         * mini.c: reinstated mono_compile_get_interface_var()
22894         on x86, too, since the change breaks the Gtk# build there as well.
22895
22896 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22897
22898         * driver.c: remove loop from the default optimizations: it seems to
22899         interact badly with some of the other options (see bug #60613).
22900
22901 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
22902
22903         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
22904         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
22905
22906 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
22907
22908         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
22909         vararg-using methods.
22910
22911 2004-06-21  Martin Baulig  <martin@ximian.com>
22912
22913         * mini/mini-exceptions.c
22914         (mono_handle_exception): Added `gpointer original_ip' argument.
22915         After calling mono_unhandled_exception(), call
22916         mono_debugger_unhandled_exception() and if that returns true,
22917         restore the context and return.
22918
22919 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
22920
22921         * mini-ppc.c: prefer the use of relative branches so
22922         they won't need to be patched in aot code (patch from Patrick Beard).
22923
22924 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
22925
22926         * aot.c: patch from Patrick Beard to make the output assembly
22927         more correct for the MacOSX assembler. Small tweak to
22928         generate sane images on Linux/PPC, too.
22929
22930 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22931
22932         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
22933         case until bug #59509 is fixed (shows up in #60332).
22934
22935 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22936
22937         * mini.c: make sure the needed wrappers are compiled, too, with
22938         precomp.
22939
22940 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
22941
22942         * driver.c: remove NPTL reference in --version output.
22943
22944 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22945
22946         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
22947         generate valid assembly for the Mach-O assembler.
22948
22949 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
22950
22951         * driver.c: don't include abcrem in the all optimization specifier
22952         since it slows down jit compilation too much for now.
22953
22954 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
22955
22956         * mini.c: use BIGMUL only if both operands have the same signage.
22957         * iltests.il: Test for bug 60056. (errors related to signage in
22958         BIGMUL).
22959
22960         r=lupus.
22961
22962 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
22963
22964         * mini.c, aot.c: memory leak fixes.
22965
22966 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
22967
22968         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
22969
22970 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
22971
22972         * Makefile.am: remove the -static hack completely, it links in
22973         statically glib as well.
22974
22975 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
22976
22977         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
22978         * exceptions.cs: make it compile with new mcs/csc.
22979
22980 2004-06-03 Massimiliano Mantione <massi@ximian.com>
22981         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
22982         and added relevant test case.
22983
22984 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
22985
22986         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
22987         regressions in gtk-sharp.
22988
22989 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
22990
22991         * exceptions.cs: New regression tests.
22992
22993         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
22994
22995 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
22996
22997         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
22998
22999 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
23000
23001         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
23002
23003         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
23004
23005 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
23006
23007         * mini.c (mono_jit_runtime_invoke): Init class in this
23008         method instead of trusting mono_jit_compile_method to
23009         do the work (because wrappers can be in object class)
23010
23011 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
23012
23013         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
23014
23015         * basic-long.cs: New regression test.
23016
23017 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
23018
23019         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
23020         and div/rem checks.
23021
23022 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
23023
23024         * Makefile.am: fix miguel's change to build mono statically against
23025         libmono (track build dependencies).
23026
23027 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
23028
23029         * cfold.c: Some glib versions do not have G_MININT32.
23030
23031 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
23032
23033         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
23034         with precision of tan, atan, sin and cos, and implemented related
23035         regressions tests (fixes bug 54467, but one new problem appeared and
23036         is not fixed yet).
23037
23038 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
23039
23040         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
23041
23042         * exceptions.cs: Add test for constant folding && division by zero.
23043
23044         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
23045         since driver.c is in libmono too, so the optimization was useless.
23046
23047         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
23048         variable to driver.c so the compiler can emit more efficient code to
23049         access them.
23050
23051 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23052
23053         * Makefile.am: don't distribute generated inssel.[ch] files.
23054
23055 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
23056
23057         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
23058         into the default appdomain. Fixes #58707.
23059
23060         * jit-icalls.c: Remove the broken approximation for truncl, doing
23061         no conversion is better.
23062
23063         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
23064         Fixes #58863.
23065
23066 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
23067
23068         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
23069         of the mcrxr instruction which is not available on some processors
23070         even if it's documented to be. Implement add and sub overflow correctly
23071         (still not complete for long unsigned). Speed up icalls a bit.
23072
23073 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
23074
23075         * mini.c (mono_jit_compile_method_with_opt): Make sure that
23076         we run .cctor in the current domain instead of target_domain.
23077         
23078         Fixes bug #58558, .cctor not being called in -O=shared.
23079
23080 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23081
23082         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
23083
23084 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
23085
23086         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
23087         which can be done with an imm8, do it that way.
23088         (mono_arch_output_basic_block): ditto for a jmp
23089         (mono_arch_emit_prolog): Computate maximum offset of a label.
23090
23091 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
23092
23093         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
23094         now tries to allocate prefered physical reg's for virtual
23095         regs. This reduces the number of emited spills/loads with
23096         20-30% on our core assemblies.
23097
23098 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23099
23100         * jit-icalls.c: truncl() is not needed and trunc() is
23101         the correct thing to do anyway (bug #58287).
23102
23103 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
23104
23105         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
23106         if available.
23107
23108 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23109
23110         * driver.c: enable loop optimizations by default.
23111
23112 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
23113
23114         * mini-x86.c: fix calc of max loop size when aligning loops start.
23115
23116 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
23117
23118         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
23119         the stack.
23120
23121 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
23122
23123         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
23124         should set carry.
23125
23126         * basic-long.cs: Add tests for add/subtract of immediates with carry.
23127
23128         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
23129         
23130         * mini.c (inline_method): Allways inline some wrappers even if the cost
23131         is too large. Fixes #58785.
23132
23133         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
23134         
23135 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
23136
23137         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
23138         (crichton@gimp.org). Beginning of support for sparc/linux.
23139
23140         * mini-sparc.c: Optimize retrieval of LMF address.
23141
23142 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
23143
23144         * exceptions-ppc.c:  handle alloca in methods with clauses.
23145
23146 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
23147
23148         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
23149
23150 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
23151
23152         * mini.c: Delegate most of the abort signal work to 
23153           mono_thread_request_interruption, which also handles Stop and Suspend
23154           states.
23155
23156 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
23157
23158         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
23159         supports the save/restore lmf opcodes.
23160
23161 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
23162
23163         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
23164         by gcc-3.4 as well.
23165
23166         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
23167
23168 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
23169
23170         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
23171         methods which contain array accesses.
23172
23173         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
23174         boundaries. Fixes #58537.
23175
23176         * iltests.il: Add regression test for #58537.
23177
23178 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
23179
23180         * mini-x86.c (mono_arch_local_regalloc): Last part of
23181         fix for bug #58633 (releasing register to early).
23182
23183 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
23184
23185         * basic-long.cs: Add new regression test.
23186
23187 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
23188
23189         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
23190         register too early on the chain.
23191
23192 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
23193
23194         * mini.c (create_helper_signature): Use a helper function to reduce
23195         the code which needs to be written. Also set the calling convention of
23196         icalls on windows. Fixes #57840.
23197
23198 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
23199
23200         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
23201         exceptions-ppc.c: added helper function to get the instruction address
23202         from a signal handler context.
23203
23204 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23205
23206         * helpers.c: use g_get_tmp_dir. Invokes happyness 
23207         from gonzalo.
23208
23209 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23210
23211         * helpers.c: Add new env variable to pass args to objdump.
23212         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
23213
23214 2004-05-17  Radek Doulik  <rodo@ximian.com>
23215
23216         * Makefile.am (common_sources): added abcremoval.h so it get
23217         disted and daily mono packages on go-mono.com will build again
23218
23219 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
23220
23221         * abcremoval.c: Fixed coding style, added copyright header.
23222
23223         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
23224
23225         * mini.h: Added prototype for abc removal main function.
23226
23227         * build_relations_propagation_table.pl: Added copyright header.
23228
23229 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
23230
23231         * basic-long.cs: reg test for complex ceq_long bug.
23232
23233 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
23234
23235         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
23236         reg in long and clob case (bug #58343). Fixed/added comments.
23237
23238 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
23239
23240         * mini.c (mono_jit_runtime_invoke): Follow new convention
23241         of calling the invoke method with an function pointer.
23242
23243 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
23244
23245         * ChangeLog: Fix author of memory leak patch.
23246
23247 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
23248
23249         * Makefile.am: fix make dist as well...
23250
23251
23252 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
23253
23254         * cfold.c: Made so that conversions from pointer to int4 are no-ops
23255         on archs where pointers are 4 bytes long.
23256
23257         * Makefile.am: Added abcremoval.c source file.
23258
23259         * abcremoval.c: Added abcremoval.c.
23260
23261         * abcremoval.h: Added abcremoval.h.
23262
23263         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
23264
23265         * inssel.brg: Enabled bounds check removal.
23266
23267         * mini.c: Added support for abcrem optimization.
23268
23269         * mini.h: Added abcrem optimization label.
23270
23271         * driver.c: Added support for abcrem optimization.
23272
23273         * propagated_relations_table.def: Added propagated_relations_table.def.
23274
23275 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
23276
23277         * mini.c, cfold.c: fix style.
23278
23279 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23280
23281         * mini.c: handle issue with the low-level implementation of
23282         some long opcodes (bug #54209).
23283
23284 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
23285
23286         * basic.cs: test for my new cmov stuff.
23287
23288 2004-05-13      Patrik Torstensson
23289
23290         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
23291         opt and added peephole documentation.
23292
23293 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
23294
23295         * tramp-ppc.c: rewrote the generic trampoline code.
23296
23297 2004-05-11      Patrik Torstensson
23298
23299         * mini-x86.c: optimize long shl/shr asm code (one less branch)
23300
23301 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
23302
23303         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
23304
23305         * mini.h mini.c dominators.c: Applied patch from Derek Woo
23306         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
23307
23308         * mini.c: Add new icalls for AsAny marshalling.
23309
23310 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
23311
23312         * tramp-ppc.c, mini-ppc.c: more cleanups.
23313
23314 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23315
23316         * mini.c: no warnings.
23317
23318 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
23319
23320         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
23321
23322 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
23323
23324         * mini.c: In the thread abort signal handler, if the thread is in the
23325         process of being stoped, don't throw the Abort exception, just stop the
23326         thread.
23327
23328 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
23329
23330         * tramp-ppc.c: removed old code.
23331
23332 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
23333
23334         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
23335         do some simple speed optimizations on ppc.
23336
23337 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
23338
23339         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
23340         and large offsets in load/store.
23341
23342 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
23343
23344         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
23345         it causes regressions.
23346
23347 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
23348
23349         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
23350         support.
23351
23352 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23353
23354         * jit-icalls.c: remove warnings.
23355         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
23356         speedups for unsafe code.
23357
23358 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
23359
23360         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
23361
23362 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
23363
23364         * basic-calls.cs: Add new regression test.
23365
23366         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
23367         more portable.
23368
23369         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
23370
23371         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
23372         is no longer used.
23373
23374 2004-05-06      Patrik Torstensson
23375
23376         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
23377         long reg allocation in any reg (not only eax:edx) and implemented 
23378         long shl/shr ops in asm instead of helpers.
23379
23380 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
23381
23382         * mini-sparc.h: Fix warnings.
23383
23384         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
23385         stack.
23386
23387         * mini-exceptions.c (mono_handle_exception): Call the filter in a
23388         separate statement for clarity.
23389
23390         * mini-sparc.c: Update status.
23391
23392 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
23393
23394         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
23395         here.
23396
23397 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23398
23399         * inssel-ppc.brg: another small pre-release workaround:
23400         we don't do overflow detection for long_sub_un.
23401
23402 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23403
23404         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
23405         (also works around a weird ppc bug: 57957).
23406
23407 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
23408
23409         * tramp-ppc.c: trampoline fixes.
23410
23411 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
23412
23413         * mini-ppc.c: fixed typos.
23414
23415 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23416
23417         * mini-ppc.c, exceptions-ppc.c: more code saves registers
23418         at the top of the stack. Fixed typos. Use a frame registers
23419         for all the methods with exception clauses.
23420
23421 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
23422
23423         * exceptions-ppc.c: restore fp registers.
23424
23425 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
23426
23427         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
23428         order from the stack top (moved the stack room to save the
23429         return value for trace after the param area). Fixed corruption
23430         in restoring registers on unwind.
23431
23432 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23433
23434         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
23435
23436 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23437
23438         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
23439         and prolog/epilog for methods that use it. Allow
23440         enough param area room for varargs methods. Fix miguel's
23441         breakage in exception handling.
23442
23443 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
23444
23445         * Makefile.am: run genmdesc only on current arch.
23446
23447 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23448
23449         * exceptions-x86.c:
23450         * mini-x86.h: fix the build on windows.
23451
23452 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
23453
23454         * 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.
23455
23456         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
23457
23458         * mini-exceptions.c: New file.
23459         
23460         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
23461         Move some parts of the x86 exception handling code to an 
23462         arch-independent file so it can be shared with other ports.
23463
23464 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
23465
23466         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
23467
23468 2004-04-26  David Waite  <mass@akuma.org>
23469
23470         * driver.c: remove comma from end of enumeration declaration
23471
23472 2004-04-26  Jackson Harper  <jackson@ximian.com>
23473
23474         * driver.c: parse config file before loading first assembly. This
23475         allows the user gac to be enabled/disabled. 
23476         
23477 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
23478
23479         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
23480         simpler mechanism: we do not care what is encoded initially
23481         (branch absolute or relative), we care about the code and its
23482         target.  I kept the old code for reference for now.
23483
23484         The new code tries first to determine if the jump is anywhere in
23485         the -/+32 absolute meg range, if it succeeds, it encodes using the
23486         absolute branch;  If not, it tried to find something in the
23487         relative range, if not, it uses the handle_thunk code. 
23488
23489 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
23490
23491         * exceptions-ppc.c: use the correct ip register on macosx.
23492
23493 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
23494
23495         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
23496
23497 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
23498
23499         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
23500         Raise exception on integer divide by zero by hand since the hw
23501         doesn't support it. Handle NaNs in FP compares.
23502
23503 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23504
23505         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
23506         code reducing duplication between the platforms and enabled
23507         signal exception handling (on linux for now).
23508
23509 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
23510
23511         * exceptions-ppc.c: more macosx support.
23512
23513 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
23514
23515         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
23516
23517 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23518
23519         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
23520
23521 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
23522
23523         * iltests.il: more tests.
23524
23525 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
23526
23527         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
23528         vars as well.
23529
23530 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
23531
23532         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
23533
23534 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
23535
23536         * liveness.c: Mark variables as volatile in all basic blocks reachable
23537         from exception clauses.
23538
23539 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
23540
23541         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
23542         inlining.
23543
23544 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23545
23546         * iltests.il, basic.cs: more tests for regalloc.
23547
23548 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23549
23550         * iltests.il: Some tests for register allocation modifications
23551         I have locally.
23552
23553 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
23554
23555         * exceptions.cs: Add regression test for bug #56782.
23556
23557         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
23558         original stack trace if an exception is rethrown. Fixes #56782. Oh,
23559         the beauty of fixing the same thing in 5 different files...
23560
23561 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
23562
23563         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
23564         methods.
23565
23566 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
23567
23568         * mini.c: Add support for STRWLPARRAY marshalling convention.
23569
23570 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23571
23572         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
23573         to init the context to setup the regs pointer).
23574
23575 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
23576
23577         * exceptions-ppc.c: more exceptions work.
23578
23579 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23580
23581         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
23582         not allowed.
23583
23584 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
23585
23586         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
23587         can use the memory directly.
23588
23589         * cpu-pentium.md: Update documentation from a post from Zoltan. 
23590
23591         add x86_add_membase, x86_sub_membase, x86_mul_membase
23592
23593 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
23594
23595         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
23596         GENERAL_REGS they were also hardcoded for all PPC ports.
23597
23598         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
23599
23600         Remove hard-coded limit for floating point registers, use
23601         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
23602
23603         Notice that in MacOS X calling conventions you can fit a lot more
23604         floating point values in registers, so I should update the PInvoke
23605         test to excercise the passing of floating point values on the
23606         stack (currently broken).
23607         
23608 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
23609
23610         * tramp-ppc.c (create_trampoline_code): Added
23611         JUMP_TRAMPOLINE_SIZE. 
23612         (ppc_magic_trampoline): Follow the pattern from
23613         x86_magic_trampoline: if code is set to zero, return. 
23614         (create_trampoline_code): Always pass MonoMethod to the jump
23615         trampoline, before it was passing a null.
23616         (mono_arch_create_jump_trampoline): Implement the jump stub, could
23617         share the code with mono_arch_create_jit_trampoline. 
23618
23619         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
23620         implemented.
23621         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
23622         implemented.  
23623
23624         * cpu-g4.md: Added length for jmp instruction, the worst case
23625         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
23626         for save_lmf).
23627
23628 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
23629
23630         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
23631
23632 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
23633
23634         * mini.c: Only set bblock->real_offset when adding a new bblock, and
23635         before each IL instruction.
23636
23637         * mini.c (CEE_BOX): Fix warnings.
23638
23639 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23640
23641         * mini.c: removed a few unused vars and extra whitespace.
23642
23643 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
23644
23645         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
23646         checks.
23647         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
23648         index.
23649         (OP_GETCHR): use the above
23650         (CEE_LDELEMA): use the above.
23651
23652         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
23653         version of the generic impl.
23654         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
23655         (CEE_LDELEMA): use the above.
23656
23657 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
23658
23659         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
23660         Fixes #56317.
23661
23662         * iltests.il: Added new regression test for #56317.
23663
23664 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
23665
23666         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
23667         under NetBSD. Fixes #56450.
23668
23669         * liveness.c (update_gen_kill_set): Fix previous patch.
23670
23671 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23672
23673         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
23674
23675 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
23676
23677         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
23678         ldsfld and ldsflda.
23679
23680         * inssel-sparc.brg: Add more optimizations.
23681
23682         * mini-sparc.c: Replace multiply/divide with shifts if possible.
23683
23684 2004-04-01  Martin Baulig  <martin@ximian.com>
23685
23686         * mini.c (handle_box): New static function; moved the
23687         implementation of CEE_BOX here.
23688         (mono_method_to_ir): Added `constrained_call' variable.
23689         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
23690         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
23691         mono_method_get_constrained() to get the method.
23692
23693 2004-04-01  Martin Baulig  <martin@ximian.com>
23694
23695         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
23696         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
23697         (mono_method_to_ir): We don't need these macros anymore since
23698         mono_class_get_full() already takes care of it. 
23699
23700 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23701
23702         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
23703         use @function (as doesn't accept #function here) and check the return
23704         value of system and stop if fails.
23705
23706 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23707
23708         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
23709
23710 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
23711
23712         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
23713
23714         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
23715
23716         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
23717         #56223.
23718
23719         * basic-long.cs: Add test for negation of Int64.MinValue.
23720
23721 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
23722
23723         * mini-sparc.c: Update status.
23724
23725         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
23726
23727         * exceptions-sparc.c: Fix return value in filters.
23728
23729         * inssel-sparc.brg: Fix register allocation in some rules.
23730
23731 2004-03-28  Martin Baulig  <martin@ximian.com>
23732
23733         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
23734         if neccessary.  
23735
23736 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
23737
23738         * mini-x86.c (mono_arch_patch_code): Fix warnings.
23739         
23740         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
23741         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
23742         remove unused conv_u4 opcode.
23743
23744         * mini-x86.c: Remove valgrind workaround since it slows down things
23745         even when mono is not run under valgrind.
23746
23747 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
23748
23749         * mini-sparc.c: Update status.
23750
23751         * inssel-sparc.brg: Add some optimizations.
23752
23753         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
23754         future delay slot filling. Add support for varargs, tail calls and JMP.
23755
23756         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
23757         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
23758
23759         * inssel.brg: Fix register allocation in OP_ARGLIST.
23760
23761         * inssel.brg: Fix warnings.
23762
23763 2004-03-25  Martin Baulig  <martin@ximian.com>
23764
23765         * mini.c (inflate_generic_field): Removed.
23766         (mini_get_method): Removed, use mono_get_method_full(),
23767         (mini_get_class): Removed, use mono_class_get_full().
23768         (mono_method_to_ir): Pass our generic context to
23769         mono_field_from_token().        
23770
23771 2004-03-25  Martin Baulig  <martin@ximian.com>
23772
23773         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
23774         of a `MonoMethod *'.
23775         (mini_get_method): Take a `MonoGenericContext *' instead
23776         of a `MonoMethod *'.
23777         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
23778         a new local variable called `generic_context' which holds the
23779         current `MonoGenericContext *'; use it to lookup things.
23780
23781 2004-03-24  Martin Baulig  <martin@ximian.com>
23782
23783         * mini.c (mini_get_class): New static method; if we're inside a
23784         generic instance, inflate the class if neccessary.
23785         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
23786
23787 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
23788
23789         * iltests.il: New regression test for #55976.
23790
23791         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
23792         #55976.
23793
23794 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
23795
23796         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
23797         output.
23798
23799 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
23800
23801         * liveness.c: Consider SSA stores as well as loads when making vars
23802         volatile.
23803
23804         * exceptions.cs: New regression tests for register allocation.
23805         
23806 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
23807
23808         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
23809         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
23810           domain lock only to protect puntual access to data structures.
23811           Added access lock for sighash, jit_icall_hash_name, 
23812           jit_icall_hash_addr and domain->code_mp.
23813
23814 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
23815
23816         * driver.c: Print SIGSEGV handling method.
23817
23818         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
23819
23820         * mini.c (setup_jit_tls_data): Handle case when this is called
23821         multiple times for a thread.
23822
23823         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
23824         is different from fbxx_un. Fixes #54303. Also use constants instead of
23825         magic numbers in a lot of places.
23826
23827 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
23828
23829         * exceptions.cs: Fix cctor test when --regression is used.
23830
23831 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
23832
23833         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
23834         for Linux/ppc.
23835
23836 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
23837
23838         * inssel-ppc.brg: fixed register assignments for some rules.
23839
23840 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
23841
23842         * exceptions.cs: Add test for exceptions in static constructors.
23843
23844         * mini.c (mono_jit_compile_method_with_out): Move the calling of
23845         static constructors outside the domain lock. Fixes #55720.
23846
23847 2004-03-17  Martin Baulig  <martin@ximian.com>
23848
23849         * mini.c (get_generic_field_inst): Removed, this'll never happen.
23850         (inflate_generic_field): Take the `MonoMethod *' instead of the
23851         `MonoClass *' and added support for generic method.
23852         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
23853         have a `field->parent->gen_params', only inflate the field if it's
23854         an open constructed type.
23855
23856 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
23857
23858         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
23859         exception object instead of the preconstructed ones.
23860
23861 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23862
23863         * mini.c: reverted changed to sigsegv_signal_handler commited
23864         accidentally in the previous patch.
23865
23866 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23867
23868         * mini.c:
23869         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
23870         running --aot with an old assembly.
23871
23872 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
23873
23874         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
23875         point values.
23876
23877         * mini-sparc.c: Add support for v9 branches with prediction.
23878
23879 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
23880
23881         * mini.c (mini_init): #warning is GNUC only
23882
23883         * mini-sparc.h: implement __builtin_frame_address
23884         and __builtin_return_address for Sun C compiler
23885
23886 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
23887
23888         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
23889
23890 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
23891
23892         * basic-calls.cs: Add test for unaligned byref long argument passing.
23893
23894         * mini-ops.h: Add sparcv9 compare and branch instructions.
23895
23896         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
23897         v9 instructions if we have a v9 cpu.
23898
23899         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
23900         registers for global allocation.
23901
23902         * exceptions-sparc.c: Fixes.
23903         
23904 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
23905
23906         * liveness.c (mono_analyze_liveness): Optimized version.
23907
23908         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
23909
23910         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
23911         sparc work.
23912
23913         * basic-float.cs basic-calls.cs: New regression tests.
23914
23915 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
23916
23917         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
23918         sigaltstack implementation.
23919
23920         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
23921         
23922         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
23923         stuff if SIGSEGV_ON_ALTSTACK is not defined.
23924
23925 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
23926
23927         * mini.c: Fix warnings.
23928         
23929         * mini.c (mono_resolve_patch_target): New function which contains the
23930         arch independent part of the patching process.
23931
23932         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
23933         patching code to a separate function.
23934
23935 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
23936
23937         * mini.c (add_signal_handler): ifdef out on Windows
23938
23939 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
23940
23941         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
23942         cpu-sparc.md: Add exception handling support + other fixes.
23943
23944         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
23945         typed GC detection in --version.
23946
23947         * basic.cs exceptions.cs: New regression tests.
23948
23949         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
23950         the arch specific code can store data during a compilation.
23951
23952         * mini-ops.h: Add OP_SETFRET.
23953
23954         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
23955         function, register a separate icall for each arity, so the icalls can
23956         get a wrapper.
23957         
23958         * mini.c (mono_print_tree): Print negative offsets in a more readable
23959         form.
23960         
23961         * mini.c: Make signal handling work on sparc.
23962         
23963         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
23964
23965         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
23966
23967         * jit-icalls.c: Emulate truncl by aintl on solaris.
23968
23969         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
23970
23971 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
23972
23973         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
23974
23975 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
23976
23977         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
23978         a MarshalByRef type, inline a method that performs the check, taking into
23979         account that the object can be a proxy. Also implemented tow new opcodes:
23980         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
23981         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
23982         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
23983
23984 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23985
23986         * mini-ppc.c: if a relative branch displacement is too big
23987         but it points to and area reachable with an absolute branch, 
23988         avoid the thunks.
23989
23990 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23991
23992         * mini.c: optimize small copies in cpblk.
23993
23994 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
23995
23996         * basic-calls.cs basic-float.cs: New regression tests.
23997
23998         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
23999         negative offsets from %fp. Implement localloc. Fix local register 
24000         allocation. Fix the case when the this argument needs to be saved to
24001         the stack. Implement some missing opcodes.
24002
24003 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
24004
24005         * mini.c (mini_method_compile): Reenable global regalloc in methods
24006         with exception handlers.
24007
24008         * linear-scan.c (mono_varlist_sort): Fix warning.
24009
24010         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
24011
24012         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
24013         regalloc costs.
24014
24015         * liveness.c: Make all variables uses in exception clauses volatile, to
24016         prevent them from being allocated to registers. Fixes #42136.
24017
24018 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
24019
24020         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
24021         causes regressions.
24022
24023         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
24024         argument to mono_arch_regalloc_cost.
24025
24026         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
24027         precisely.
24028
24029 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
24030
24031         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
24032         Make the cost of allocating a variable to a register arch dependent.
24033
24034         * basic-calls.cs: Fix compilation of tests.
24035         
24036         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
24037         helper function to cut back on the number of #ifdefs needed.
24038
24039         * mini-ppc.c: Fix compilation.
24040
24041         * basic-calls.cs: New regression tests.
24042
24043         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
24044
24045         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
24046         of l0 since that is callee saved.
24047
24048         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
24049         to virtual calls.
24050
24051         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
24052         of delay instruction.
24053
24054         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
24055
24056         * mini.h (MonoCallInst): Add 'virtual' flag.
24057
24058         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
24059
24060 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
24061
24062         * *.cs: New regression tests.
24063
24064         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
24065         work.
24066
24067         * mini.c (mono_runtime_install_handlers): Fix build.
24068
24069         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
24070         'signal_stack_size' members.
24071
24072         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
24073         alternate signal stack.
24074
24075         * exceptions-x86.c: Add stack overflow handling.
24076
24077         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
24078         functions to arch independent code.
24079
24080         * mini.c (mono_print_tree): Print more detailed info for load_membase
24081         opcodes.
24082         
24083 2004-02-23  Martin Baulig  <martin@ximian.com>
24084
24085         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
24086
24087 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
24088
24089         * mini-x86.c: fixed reg allocation for div/rem.
24090
24091 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
24092
24093         * driver.c (mono_main): Report some configuratio options on --version.
24094
24095 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
24096
24097         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
24098         low in the address space. Correctly flush memory in thunks where we
24099         output native code.
24100
24101 2004-02-20  Martin Baulig  <martin@ximian.com>
24102
24103         * mini.c (mini_get_method): New static method; inflate all generic
24104         methods and methods in open generic instances.
24105         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
24106         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
24107
24108 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
24109
24110         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
24111
24112         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
24113
24114 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
24115
24116         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
24117
24118         * mini-sparc.c (flushi mono_arch_output_basic_block): make
24119         it compile using Sun's compiler.
24120
24121 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
24122
24123         * 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.
24124
24125         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
24126
24127 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
24128
24129         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
24130         code.
24131         * mini-ppc.c: handle calls outside of the allowed range with thunks
24132         allocated using the code manager.
24133         * tramp-ppc.c: use the code manager to hold generated native code.
24134         Fixed the magic trampoline to just patch vtable entries.
24135
24136 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
24137
24138         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
24139         independent file.
24140
24141 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
24142
24143         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
24144         PPC.
24145
24146         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
24147         if we have a working __thread implementation.
24148
24149         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
24150         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
24151
24152 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
24153
24154         * mini-x86.c: Fix compilation under gcc 2.
24155         
24156 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
24157
24158         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
24159         contains a call to the wrapped function.
24160
24161         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
24162         OP_<CALL>_IMM opcodes, and use them under X86.
24163         
24164         * mini.c (mono_jit_find_compiled_method): Fix warning.
24165
24166         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
24167
24168         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
24169
24170         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
24171         functionality to mini.c.
24172
24173         * mini.c (mono_create_jump_trampoline): New function to create a jump
24174         trampoline. Return a compiled method instead of a trampoline if it
24175         exists. Add a cache for jump trampolines.
24176
24177         * mini.c (mono_jit_find_compiled_method): New function to return a
24178         compiled method if it exists.
24179
24180         * mini-x86.c: Call mono_create_jump_trampoline instead of 
24181         mono_arch_create_jit_trampoline.
24182
24183         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
24184         a jump trampoline. Fixes #52092.
24185         
24186 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
24187
24188         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
24189         which is not up-to-date. Add check_corlib_version () instead.
24190
24191         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
24192         have to call it.
24193         
24194         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
24195         since newer valgrind versions do not need it.
24196
24197         * mini.c (mono_jit_compile_method_with_opt): New helper function to
24198         compile a method with a given set of optimizations.
24199
24200         * mini.c: Compile icall wrappers on-demand instead of at startup.
24201
24202         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
24203         wrapper for an icall.
24204
24205 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
24206
24207         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
24208         #54063.
24209
24210         * iltests.il: Add test for non-empty stack before switch instruction.
24211
24212 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
24213
24214         * mini.c: Add support for new stringbuilder marshalling conventions.
24215
24216         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
24217
24218 2004-02-01  Martin Baulig  <martin@ximian.com>
24219
24220         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
24221         in `ginst->mtype_argv'.
24222
24223 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
24224
24225         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
24226         facilitate grepping.
24227
24228 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
24229
24230         * mini.c: fixed buglet in initobj generic implementation for references.
24231
24232 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
24233
24234         * Makefile.am: make the version script conditional.
24235         * jit-icalls.c: handle missing truncl().
24236
24237 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
24238
24239         * exceptions.cs: Add more tests for double->int conversion.
24240
24241         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
24242         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
24243
24244 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
24245
24246         * driver.c: make --verbose --version emit an error
24247         if the loaded corlib doesn't match the runtime version.
24248
24249 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24250
24251         * mini-ppc.h: export ppc_patch().
24252         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
24253         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
24254         on par or better than on MacOSX.
24255
24256 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
24257
24258         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
24259         mono_lookup_pinvoke_call.
24260
24261         * mini-x86.c: Under windows, the default pinvoke calling convention is
24262         stdcall. Fixes #52834.
24263
24264         * mini.c (optimize_branches): Add an upper bound to the number of
24265         iterations to prevent infinite loops on strange loops. Fixes #53003.
24266
24267 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
24268
24269         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
24270         and ISINST. Fixes #52093.
24271
24272         * objects.cs (test_0_vector_array_cast): New tests.
24273         
24274 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
24275
24276         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
24277         checking in Array.Set ().
24278
24279         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
24280         #52590.
24281
24282         * object.cs (test_0_multi_array_cast): New regression test.
24283
24284 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
24285
24286         * exceptions-ppc.c: fix build on Linux/PPC.
24287
24288 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
24289
24290         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
24291         running under valgrind.
24292         (x86_magic_trampoline): Fix build bustage.
24293
24294         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
24295         negative values as well. This is needed for the encoding of the line number
24296         info, since sometimes the line numbers are not in increasing order.
24297
24298 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
24299
24300         * cpu-pentium.md (localloc): Increase the size of the localloc 
24301         instruction since it is a loop under Win32.
24302
24303         * debug-mini.c (record_line_number): Get rid of unneccesary memory
24304         allocation.
24305
24306 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
24307
24308         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
24309         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
24310         Max Horn (max@quendi.de). Fix file names in comments.
24311
24312 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
24313
24314         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
24315         avoid stack overflow.
24316         (replace_usage): Avoid uninitialized variable warnings.
24317
24318         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
24319         and taking the address of valuetype variables.
24320
24321 2004-01-03  Patrik Torstensson
24322
24323         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
24324         for other purposes than FP later on.
24325
24326 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
24327
24328         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
24329         of tail calls.
24330
24331 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
24332
24333         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
24334
24335 2003-12-30  Patrik Torstensson <p@rxc.se>
24336
24337         * mini-x86.h: Decreased number of availiable fp regs.
24338         Solves corner cases with FP spilling.
24339
24340 2003-12-23  Patrik Torstensson <p@rxc.se>
24341
24342         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
24343         for floating point stack tracking / spilling on x86. 
24344         Fixes bug #49012.
24345         
24346         * basic-float.cs: added float mul overflow test.
24347
24348 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
24349
24350         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
24351
24352 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
24353
24354         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
24355         supports for cond branches that overflow the immediate
24356         overflow offset. mcs can compile simple programs.
24357
24358 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
24359
24360         * exceptions-ppc.c: exception handling support wip:
24361         finally handlers get run on exception.
24362
24363 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
24364
24365         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
24366         profiling.
24367
24368 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
24369
24370         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
24371         initial support for stack walking and unwinding.
24372
24373 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
24374
24375         * driver.c (mono_main): Make corlib-out-of-sync message more 
24376         descriptive. Also remove verify_corlib call.
24377
24378 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
24379
24380         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
24381         not overlap with other call's arguments, too.
24382
24383 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
24384
24385         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
24386         move to arch-specific code the choice of arch-specific
24387         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
24388         * mini.c: ensure emulation calls will not interleave
24389         with other calls.
24390
24391 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
24392
24393         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
24394         the magic trampoline stack frame is dropped before executing
24395         the new method.
24396
24397 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24398
24399         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
24400         and integer to fp conversions. Added support for overflowing
24401         arguments on the stack. Reserve a couple more registers as temps.
24402         Added support for aot compilation (as output still needs to be
24403         tweaked, though).
24404
24405 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24406
24407         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
24408         Don't overwrite return register in some corner cases.
24409
24410 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
24411
24412         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
24413         static constructors when AOT compiling.
24414
24415         * driver.c (mono_main): Call mono_check_corlib_version.
24416
24417 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
24418
24419         * cpu-g4.md, basic.cs: fixed div target register.
24420
24421 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
24422
24423         * mini-ppc.c, basic.cs: shl_imm fix with test.
24424
24425 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
24426
24427         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
24428         structures by value. Misc fixes.
24429         * objects.cs: more tests.
24430
24431 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
24432
24433         * mini-ppc.c: lconv.ovf.i implemented.
24434
24435 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24436
24437         * mini.c:
24438         (mini_init): don't error out if someone already called g_thread_init.
24439
24440 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
24441
24442         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
24443         to be any type per the spec. Fix abnormal memory usage when
24444         the same object is repeatedly thrown.
24445
24446 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
24447
24448         * mini.c: check for overruns in IL code.
24449
24450 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
24451
24452         * TODO: Add/remove some todo entries.
24453
24454 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
24455
24456         * driver.c (mono_main): Call mono_verify_corlib.
24457
24458 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
24459
24460         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
24461         This has been moved to mini.c
24462         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
24463         type being casted is marshalbyref it could be a proxy, so instead of
24464         emitting the type check code, emit a call to a runtime method that will
24465         perform the check by calling CanCastTo if needed.
24466
24467 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
24468
24469         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
24470         methods with large stack frames under Win32.
24471
24472 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
24473
24474         * Makefile.am: Distribute regression tests.
24475
24476         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
24477         at the end instead of inserting each variable into the sorted list.
24478
24479         * linear-scan.c (mono_varlist_sort): New helper function.
24480         
24481 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
24482
24483         * mini.c: ensure arguments and locals are within bounds.
24484
24485 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24486
24487         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
24488         related fixes.
24489
24490 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
24491
24492         * mini.c (mono_cprop_copy_values): Fix crash.
24493
24494         * aot.c: Set verbosity back to 0.
24495         
24496 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24497
24498         * regalloc.c: complete memory leak fix by Laurent Morichetti
24499         (l_m@pacbell.net).
24500
24501 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
24502
24503         * driver.c (main_thread_handler): Revert the previous patch.
24504
24505         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
24506         under valgrind.
24507
24508         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
24509         memory from the memory pool.
24510
24511         * driver.c (main_thread_handler): Turn on all optimizations when
24512         --aot is used.
24513
24514         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
24515         an array for better performance.
24516
24517         * regalloc.c (mono_regstate_assign): Fix memory leak.
24518
24519         * debug-mini.c (mono_debug_serialize_debug_info): New function to
24520         serialize the debug info.
24521
24522         * debug-mini.c (mono_debug_add_aot_method): New function to load the
24523         debug info from the serialized representation.
24524
24525         * aot.c: Save debug info into the generated file and load it when 
24526         loading a method.
24527
24528         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
24529
24530 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
24531
24532         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
24533         More FP-related fixes.
24534
24535 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
24536
24537         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
24538         and register allocation buglet. Hello world now runs.
24539
24540 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
24541
24542         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
24543         * tramp-ppc.c: fixed class init trampoline.
24544         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
24545
24546 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
24547
24548         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
24549         mini.c: more ppc changes/fixes.
24550
24551 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
24552
24553         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
24554         Also optimize the case when the arguments are the same in the caller 
24555         and in the callee.
24556
24557         * iltests.il: Add tests for tail calls with valuetype arguments.
24558
24559 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
24560
24561         * mini-ppc.c: fixes for struct return type.
24562
24563 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
24564
24565         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
24566         mono_spillvar_offset() to arch-specific code.
24567
24568 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
24569
24570         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
24571
24572 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
24573
24574         * exceptions-x86.c: Fix stack space leaks.
24575         
24576         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
24577         registers from the lmf if the method has save_lmf set.
24578
24579 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
24580
24581         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
24582         of icall wrappers into InvokeInDomain, since these are now per-domain.
24583
24584 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
24585
24586         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
24587         make some opcode emulation and intrinsic ops enabled/disabled 
24588         according to the architecture. More fixes.
24589
24590 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
24591
24592         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
24593
24594 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
24595
24596         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
24597         arch-specific handling for 'this' and struct return type to
24598         arch-specific code.
24599
24600 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24601
24602         * aot.c: prevent divide by zero error when reporting (it happened with
24603         Accessibility.dll).
24604
24605 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
24606
24607         * mini.h (inst_switch): Remove unused macro.
24608
24609 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24610
24611         * aot.c:
24612         (load_aot_module): free 'info->methods' and 'info' properly. No more
24613         "free(): invalid pointer blah" messages when you have an old aot
24614         compiled assembly.
24615
24616 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
24617
24618         * jit-icalls.c, mini.c: Added support for context static fields.
24619
24620 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
24621
24622         * mini.c (mono_method_blittable): Methods which set LastError are not 
24623         blittable either. Fixes #51108.
24624         
24625 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
24626
24627         * mini.c: flush icache.
24628         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
24629
24630 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
24631
24632         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
24633
24634 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
24635
24636         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
24637         safe on IA32.
24638
24639         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
24640         vararg calls.
24641
24642         * inssel.brg (CEE_MKREFANY): Fix AOT case.
24643
24644 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
24645
24646         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
24647         instruction when the result is discarded.
24648
24649         * iltests.il (test_0_div_regalloc): New regression test.
24650
24651         * arrays.cs: Fix compilation error.
24652
24653 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24654
24655         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
24656         float rules to inssel-x86.brg: sane architectures with FP registers
24657         don't need to implement these rules.
24658
24659 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
24660
24661         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
24662
24663 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24664
24665         * mini.h, inssel-long32.brg: fixed endianess issues in int64
24666         implementation of 32 bit systems.
24667
24668 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
24669
24670         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
24671         (Jeroen Zwartepoorte).
24672
24673 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24674
24675         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
24676         the caller and the callee matches.
24677         
24678         * mini.c (mono_method_to_ir): Add comment.
24679
24680         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
24681         signbit is missing on some platforms.
24682
24683 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
24684
24685         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
24686
24687         * mini.c (setup_jit_tls_data): Call the new function.
24688         
24689         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
24690
24691         * mini-x86.c: Add experimental support for fast access to the lmf
24692         structure under NPTL/Linux 2.6.x.
24693
24694 2003-11-06  Martin Baulig  <martin@ximian.com>
24695
24696         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
24697         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
24698         the debugger.
24699
24700 2003-11-02  Martin Baulig  <martin@ximian.com>
24701
24702         * mini.c (inflate_generic_field): New static method.
24703         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
24704         generic instance and the field is declared in a generic type, call
24705         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
24706
24707 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
24708
24709         * mini.h mini.c (mono_method_same_domain): New function to return
24710         whenever the caller and the callee are in the same domain.
24711
24712         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
24713
24714 2003-10-30  Martin Baulig  <martin@ximian.com>
24715
24716         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
24717         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
24718         method parameters.
24719         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
24720         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
24721
24722 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
24723
24724         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
24725         propagation.
24726
24727         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
24728         object here, so it is in the correct appdomain etc.
24729
24730 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
24731
24732         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
24733         already done.
24734         (mono_method_to_ir): Avoid freeing the type created returned from
24735         mono_type_create_from_typespec, since it is put into an internal cache
24736         by the function. Fixes pointer.exe.
24737
24738         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
24739         trampolines for icalls and pinvokes as well. Fixes #33569.
24740
24741 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
24742
24743         * mini.c: Update after appdomain changes.
24744
24745         * mini.c (mono_jit_compile_method_inner): Allways compile native
24746         method wrappers in the root domain, since there can only be one
24747         instance of them, whose address is stored in method->info.
24748
24749 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
24750
24751         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
24752         environment variable. Instead detect automatically whenever running
24753         under valgrind using the magic macro RUNNING_ON_VALGRIND from
24754         valgrind.h.
24755
24756 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
24757
24758         * trace.c, trace.h: New files that implement the new trace option
24759         parsing. 
24760
24761         * driver.c: Document new --trace options.
24762
24763         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
24764         mini-x86.c: Apply:
24765
24766         -       if (mono_jit_trace_calls)
24767         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
24768
24769         * mini.h: prototypes.
24770         
24771 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
24772
24773         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
24774
24775         * mini.c inssel.brg: Implement typedefbyref opcodes.
24776
24777         * mini.c (mono_jit_compile_method): Remove unused local variable.
24778
24779         * mini.c (mono_jit_compile_method_inner): Ditto.
24780         
24781 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
24782
24783         * tramp-x86.c (x86_class_init_trampoline): Fix build.
24784         
24785         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
24786
24787 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
24788
24789         * mini.c (mono_no_aot): Remove unused global variable.
24790
24791         * mini.c: Thread safety fixes.
24792
24793 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
24794
24795         * mini.c (mono_create_class_init_trampoline): Add a lock around
24796         class_init_hash_addr.
24797
24798         * arrays.cs (test_0_newarr_emulation): Add new regression test for
24799         #30073.
24800
24801         * mini.c: Decompose the NEWARR instruction before decomposing its
24802         arguments. Fixes #30073.
24803
24804 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
24805
24806         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
24807         convention.
24808
24809 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
24810
24811         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
24812
24813         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
24814
24815         * driver.c: Add support for compiling icall wrappers to --compile.
24816
24817 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
24818
24819         * inssel.brg: The empty value in class->interface_offsets is -1, not
24820         0. Fixes #49287.
24821
24822 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
24823
24824         * objects.cs: New test for 'is' operator on an array of interfaces.
24825
24826 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
24827
24828         * tramp-ppc.c: update trampoline code to support jumps
24829         and class initialization.
24830
24831 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
24832
24833         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
24834
24835         * inssel.brg (OP_UNBOXCAST): Fix #46027.
24836
24837         * inssel.brg (OP_UNBOX): Remove unused rule.
24838
24839         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
24840         region instead of one for each method. Fixes #47813.
24841
24842 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
24843
24844         * exceptions.cs (test_0_nested_finally): New regression test for
24845         nested exception handlers.
24846
24847         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
24848
24849         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
24850
24851         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
24852         inlining.
24853
24854         * mini.c (mono_method_check_inlining): Make the inlining limit 
24855         configurable by an environment variable.
24856         
24857         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
24858
24859         * mini.h: Bump AOT file version.
24860
24861         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
24862         token, store the image along with the token, since the token might not 
24863         refer to the same image as the method containing the relocation, 
24864         because of inlining.
24865
24866 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
24867
24868         * mini.c (mono_precompile_assemblies): New function to compile
24869         all methods in all loaded assemblies.
24870
24871         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
24872
24873         * regalloc.h regalloc.c (MonoRegState): Change the type of 
24874         iassign and fassign to int*, since they can contain large negative
24875         values if the register is spilled. Also added some comments. Fixes
24876         #45817.
24877
24878         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
24879         under Win32. Fixes #42964.
24880
24881 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
24882
24883         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
24884
24885         * aot.c: Added support for AOT compiling methods which contain calls
24886         to wrappers. Currently, only remoting-invoke-with-check wrappers are
24887         handled.
24888         
24889         * driver.c (compile_all_methods): Run the compilation in a thread
24890         managed by mono. Fixes #44023.
24891
24892         * mini.c (mono_codegen): Print full method name in verbose output.
24893
24894         * mini-x86.c (mono_arch_patch_code): Fix warning.
24895         
24896         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
24897         jumps, since the method we are jumping to might be domain-specific.
24898
24899         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
24900
24901 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
24902
24903         * inssel.brg: string chars are unsigned.
24904
24905 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
24906
24907         * TODO: New todo item.
24908
24909         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
24910         which calls mono_runtime_class_init and patches the call site to
24911         avoid further calls.
24912         (mono_arch_create_class_init_trampoline): New arch specific function 
24913         to create a class init trampoline.
24914         (create_trampoline_code): Generalized so it can create
24915         class init trampolines as well.
24916
24917         * mini.c (helper_sig_class_init_trampoline): New helper variable.
24918         (mono_create_class_init_trampoline): New function to create and cache
24919         class init trampolines.
24920         (mono_find_class_init_trampoline_by_addr): New function to lookup the
24921         vtable given the address of a class init trampoline. Used by the
24922         patching process.
24923         (mono_codegen): Generate a call to a trampoline instead of
24924         mono_runtime_class_init in LDSFLD[A].
24925         (mono_codegen): Add relocations for the new trampoline.
24926         
24927         * mini.h mini-x86.c aot.c: Added a new relocation type: 
24928         MONO_PATCH_INFO_CLASS_INIT.
24929
24930         * mini.h: Bump AOT version number.
24931
24932         * aot.c: Create a copy of the loaded code instead of using the original
24933         so methods which call each other will be close in memory, improving
24934         cache behaviour.
24935         
24936         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
24937         patch since it breaks the regression tests.
24938         
24939         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
24940         for the register saving instruction sequence since the 
24941         frame_state_for function in glibc 2.3.2 don't seem to detect it.
24942
24943 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
24944
24945         * TODO: Fix todo item && remove another.
24946
24947 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
24948
24949         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
24950         previous checkin.
24951
24952         * aot.c: Moved the check for MONO_LASTAOT into the initialization
24953         function of the module.
24954
24955         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
24956         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
24957         --no-aot command line option.
24958
24959 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
24960
24961         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
24962         by Bernie Solomon (bernard@ugsolutions.com).
24963
24964         * inssel.brg: Refactor the interface offset table related code into
24965         its separate functions and add support for the AOT case.
24966
24967 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
24968
24969         * aot.c (mono_aot_get_method_inner): Fix memory leak.
24970         
24971         * aot.c: Added mono_aot_verbose variable and made all debugging
24972         output depend on the value of this variable.
24973
24974         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
24975         method_label and info_label.
24976
24977         * mini.h mini-x86.c aot.c: Added a new relocation type 
24978         MONO_PATCH_INFO_IID for klass->interface_id.
24979
24980         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
24981         the MonoJitInfo structure.
24982
24983         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
24984         a non-root appdomain in shared mode.
24985
24986 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
24987
24988         * aot.c: make aot loader less verbose. Remove free of unused variable.
24989
24990 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
24991
24992         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
24993
24994         * .cvsignore: Added *.dll.
24995
24996         * mini.c (mono_print_tree_nl): New function callable while debugging.
24997
24998         * mini.c (mono_print_code): Export this.
24999
25000         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
25001         patched code.
25002
25003 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
25004
25005         * mini.h (MonoCompile): Added 'jit_info' field.
25006
25007         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
25008         the cfg structure, since it is needed by the AOT compiler.
25009
25010         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
25011
25012         * aot.c: A major rewrite. Changes include:
25013         - save exception tables for methods which have them.
25014         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
25015         to g_module_symbol.
25016         - reworked the file format so it is now much smaller and needs
25017         fewer relocation entries.
25018         
25019 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
25020
25021         * aot.c (load_aot_module): Fix build bustage on platforms without
25022         Boehm GC.
25023
25024 2003-09-04  Martin Baulig  <martin@ximian.com>
25025
25026         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
25027
25028 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
25029
25030         * TODO: Some new optimization ideas.
25031
25032         * aot.c: Move AOT module loading logic here from mono_assembly_open.
25033
25034         * aot.c: Save the optimization flags used to compile the code into
25035         the AOT module.
25036
25037         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
25038         support emitting domain specific code.
25039         
25040         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
25041         no longer domain neutral. It can be made domain neutral by compiling 
25042         with --optimize=shared.
25043
25044         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
25045         between appdomains.
25046
25047         * driver.c mini.h mini.c: New --no-aot debugging option which disables
25048         loading of AOT code.
25049
25050         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
25051         
25052         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
25053         if there is no domain neutrality information.
25054
25055 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
25056
25057         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
25058         format version into the generated library.
25059
25060         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
25061         callee method into the caller since one of them could be shared.
25062
25063         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
25064         system exceptions from AOT code now works.
25065
25066         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
25067         method if it is domain neutral and the callee is not.
25068
25069         * graph.c (cfg_emit_one_loop_level): Fix warning.
25070
25071 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
25072
25073         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
25074         last checkin.
25075
25076 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
25077
25078         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
25079         is needed  by code which is executed before mono_runtime_init ().
25080         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
25081         
25082         * mini.c (mono_thread_abort): Fix warning.
25083         (mono_jit_compile_method): Call static constructor in the AOT case too.
25084
25085         * aot.c (mono_compile_assembly): Fix warning.
25086
25087 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25088
25089         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
25090
25091 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
25092
25093         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
25094
25095         * cpu-pentium.md: Fix the length of call opcodes so they include the
25096         ESP restoring instruction. Fixes #47968.
25097
25098 2003-08-28  Martin Baulig  <martin@ximian.com>
25099
25100         * mini-x86.c (mono_arch_call_opcode): Added support for
25101         MONO_TYPE_GENERICINST.
25102
25103         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
25104
25105 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
25106
25107         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
25108         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
25109
25110         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
25111         metadata_section.
25112
25113 2003-08-26  Martin Baulig  <martin@ximian.com>
25114
25115         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
25116         when reporting an error, set this to the actual error location.
25117         (mono_method_to_ir): Report the correct error location if
25118         get_basic_blocks() returned an error.
25119
25120 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
25121
25122         * mini.c (mono_type_blittable): OBJECT is not blittable.
25123         (mono_method_blittable): Methods which have marshalling descriptors
25124         are not blittable either. Fixes #47842.
25125
25126 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
25127
25128         * driver.c mini.c: Use an environment variable instead of a global 
25129         variable. Also fix the build.
25130
25131         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
25132         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
25133         reporting this. 
25134
25135         * driver.c mini.c: Added --with-valgrind option to turn off some
25136         code which prevents mono from running under valgrind.
25137
25138         * mini.c (mono_emit_call_args): Fixed warning.
25139
25140         * mini.c (mono_emulate_opcode): Fixed warning.
25141
25142 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25143
25144         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
25145         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
25146         regalloc.c, regalloc.h: specify available registers in arch-specific
25147         code and support floats in the regallocator (patch by Laurent Morichetti 
25148         <l_m@pacbell.net>)
25149
25150 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
25151
25152         * mini.c: mono_thread_current() can be called only after
25153         mono_runtime_init(): rearrange code to not call it early on.
25154
25155 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
25156
25157         * mini.c: allocate jump tables in the code mempools.
25158
25159 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25160
25161         * mini.c, mini.h: make sure per-thread data allocated by the jit is
25162         freed.
25163
25164 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
25165
25166         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
25167         12 to 16.  This fixes bug #47453.
25168
25169
25170 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
25171
25172         * mini-ppc.c: fixed indexed load and unsigned compares.
25173
25174 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
25175
25176         * mini.c: reenabled installation of handler for
25177           thread abort signal.
25178
25179 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25180
25181         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
25182         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
25183         until it's fixed and actually useful.
25184
25185 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25186
25187         * inssel-long32.brg: couple more opcodes implemented.
25188
25189 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
25190         
25191         * mini-sparc.c: Even more opcodes implemeted.
25192
25193 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
25194
25195         * mini-sparc.c: More opcodes implemented.
25196
25197 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
25198
25199         * mini-sparc.c: More opcodes implemented.
25200
25201 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
25202
25203         * inssel-sparc.brg: Add some needed rules.  Direct
25204         copy from PPC.
25205         * Makefile.am: Use inssel-sparc.brg
25206         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
25207         an assert happy for now.
25208
25209 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
25210
25211         * mini-sparc.c: Fixed compile errors.
25212         * exceptions-sparc.c: Same.  We now produce a mono binary 
25213         on sparc-linux.  Yea.
25214
25215 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
25216
25217         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
25218         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
25219         They compile, but do not work.
25220
25221 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25222
25223         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
25224         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
25225         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
25226         (ct@gentoo.org).
25227
25228 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25229
25230         * mini.c: more opcodes implemented and better support for generics.
25231
25232 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
25233
25234         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
25235         * mini.c, mini.h: first cut at generics support: some new instructions 
25236         added and changed the behaviour of some of the existing ones.
25237
25238 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
25239
25240         * mini.c: Removed definition of metadata_shared mutex here.
25241
25242 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
25243
25244         * mini-x86.c: make vararg calls work for instance methods.
25245
25246 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25247
25248         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
25249         returns the arguments in a separte list, now.
25250
25251 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
25252
25253         * aot.c, mini.c: updates for array type representation changes.
25254
25255 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
25256
25257         * mini.c: register function to perform jit shutdown.
25258
25259 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25260
25261         * mini.c: use a faster allocator if possible.
25262
25263 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25264
25265         * aot.c: some cleanups and portability changes.
25266
25267 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
25268
25269         * mini.c: use faster allocation for CEE_BOX if possible.
25270
25271 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
25272
25273         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
25274         Moved inlined mempcy code to its own function so that is can be
25275         reused. Added an inline memset function as well (optimized initobj).
25276         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
25277
25278 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
25279
25280         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
25281
25282 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
25283
25284         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
25285         arch code can setup the cpu for CLR execution, if needed.
25286         We use it on x86 to set the precision of FP operations.
25287
25288 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
25289
25290         * mini.c: disable some optimizations if we can guess they'll cost too
25291         much for a given method.
25292
25293 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
25294
25295         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
25296         
25297 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
25298         * mini.h mini.c mini-x86.c: Added instruction level coverage 
25299         info collection support.
25300
25301 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25302
25303         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
25304         is now implemented in the profiling API. Get rid of a couple of
25305         unnecessary global variables.
25306
25307 2003-06-15  Nick Drochak <ndrochak@gol.com>
25308
25309         * basic-long.cs: tests for negative values for bigmul, and unsigned.
25310         * cpu-g4.md: add op_bigmul and op_bigmul_un
25311         * cpu_pentium.md: add op_bigmul_un
25312         * inssel-long32.brg: add rule for unsigned bigmul
25313         * mini-ops.h: define OP_BIGMUL_UN
25314         * mini-x86.c: THE BUG: handle (un)signed properly
25315         * mini.c: choose unsigned opcode if needed.
25316         This set of patches fixes bug #44291
25317
25318 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
25319
25320         * mini.c (optimize_branches): improved to handle all kinds of
25321         conditional branches.
25322
25323 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25324
25325         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
25326         don't raise exceptions.
25327
25328 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
25329
25330         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
25331         to arch-specific files.
25332
25333 2003-06-09  Martin Baulig  <martin@ximian.com>
25334
25335         * Makefile.am (libs): Added $(LIBGC_LIBS).
25336
25337 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
25338
25339         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
25340         and OP_ATAN (fixes bug#44293).
25341
25342 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
25343
25344         * Makefile.am, mini-x86.c: rename cpu description array to
25345         pentium_desc, since some compilers define the 'pentium' preprocessor
25346         symbol.
25347
25348 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
25349
25350         * mini.c (mini_select_instructions): add explicit branch if the
25351         following block is not the false target of a conditional branch -
25352         we need this with any optimization that reorder or remove bblocks
25353
25354         * mini.c (optimize_branches): bug fixes
25355
25356 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
25357
25358         * mini.c (mono_method_to_ir): inline static readonly fields
25359
25360         * ssa.c (fold_tree): start cfold support for long (very simple
25361         cases only)
25362
25363         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
25364
25365 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
25366
25367         * inssel.brg: fixed memcpy (bug #44219).
25368
25369 2003-06-05  Dick Porter  <dick@ximian.com>
25370
25371         * driver.c: Set the glib log levels to not abort if g_message
25372         recurses.
25373
25374         g_set_prgname() has to happen before mini_init() so that the
25375         process handle gets the info.
25376         
25377 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25378
25379         * driver.c: add intrins to the default optimizations to get wider
25380         exposure.
25381
25382 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25383
25384         * mini.h: some large basic blocks will overflow a 16-bit
25385         integers for symbolic registers.
25386
25387 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
25388
25389         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
25390         (mono_arch_output_basic_block): fix bug 43499 
25391
25392 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
25393
25394         * mini.c: kill duplicated definition of mono_debug_format.
25395
25396 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
25397
25398         * mini-x86.c, arrays.cs: fixed register allocation bug.
25399
25400 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
25401
25402         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
25403
25404         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
25405
25406 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25407
25408         * mini.c:
25409         (print_method_from_ip): also print source location information if
25410         available.
25411
25412 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
25413
25414         * mini.c (mono_find_block_region): bug fix in region code
25415         (mini_method_compile): enable removing unreachable code again, but
25416         only in methods without exception clauses.
25417
25418 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
25419
25420         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
25421         Implemented arglist opcode and handling of TypedReference type.
25422         Fixed x86 call convention when a structure is returned.
25423         Minimal support for calling static vararg methods.
25424
25425 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
25426
25427         * mini.c (mini_method_compile):  always remove unreachable code,
25428         because the code in them may be inconsistent  (access to dead
25429         variables for example).
25430
25431 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25432
25433         * driver.c, debug-mini.c: warning fixes.
25434
25435 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
25436
25437         * Makefile.am, jit.h, mini.h: install header for embedding mono.
25438
25439 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
25440
25441         * mini.c: thread-static fields are registered in mono_class_vtable(),
25442         so ensure the function is called before checking for them.
25443
25444 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
25445
25446         * mini.c (optimize_branches): fix for bug 43586
25447
25448         * jit-icalls.c (mono_llmult_ovf): added an additional check for
25449         overflow (fixes Bug #43639)
25450
25451 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25452
25453         * mini.c, objects.cs: allow the use of stobj for primitive types.
25454
25455 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25456
25457         * mini.c: be less strict about argument checking until we support
25458         running the verifier.
25459
25460 2003-05-27  Nick Drochak <ndrochak@gol.com>
25461
25462         * basic-long.cs: tests for (ulong)int * (ulong)int also
25463         * mini.c: use the same trick for (ulong)int * (ulong)int
25464
25465 2003-05-27  Nick Drochak <ndrochak@gol.com>
25466
25467         * basic-long.cs: add regression test for (long)int * (long)int
25468         * cpu-pentium.md: add op_bigmul specification
25469         * inssel-long32.brg: add OP_BIGMUL rule
25470         * mini-ops.h: add OP_BIGMUL
25471         * mini-x86.c: register allocator: handle case where src1 needs to be
25472         in EAX.
25473         * mini.c: substitute special BIGMUL opcode in the tree for 
25474         (long)int * (long)int
25475
25476 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25477
25478         * jit-icalls.c: call the type ctor on field access if needed.
25479
25480 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25481
25482         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
25483         to a method (including results of ldelema, bug#43207).
25484
25485 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
25486
25487         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
25488         colors to show exception handler blocks.
25489
25490         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
25491         (fix for pinvoke7.cs).
25492
25493 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25494
25495         * mini.h, mini.c: ensure correct initialization order for types that
25496         require it. Prepare for lazy compilation of jit icall wrappers.
25497         Provide a name for opcode emulation to reduce unneeded mallocing.
25498
25499 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
25500
25501         * mini-x86.c: better register restoring code and profiling
25502         support for tail calls.
25503
25504 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25505
25506         * mini.h, driver.c: prepare for leaf methods optimization.
25507
25508 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25509
25510         * mini.c: get targets of branches before converting a method.
25511
25512 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
25513
25514         * mini.c (optimize_branches): added some experimental code (disbaled) 
25515
25516 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
25517
25518         * mini.c (optimize_branches): fix branch to branch optimization 
25519
25520         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
25521
25522         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
25523
25524         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
25525
25526         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
25527         if needed.
25528
25529 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
25530
25531         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
25532         enable use of interface variables again.
25533
25534         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
25535         I1 to registers because there is no simply way to sign extend 8bit
25536         quantities in caller saved registers on x86.
25537
25538         * inssel-float.brg: set costs of some rules to 2 so
25539         that monobure always select the arch. specific ones if supplied,
25540         regardless of the order we pass the files to monoburg.
25541
25542 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25543
25544         * mini.c, mini-x86.c: since the magic trampoline for jumps
25545         can't patch the code directly, we do it as soon as the
25546         method gets compiled.
25547
25548 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
25549
25550         * mini-x86.c, mini.h: introduce a new patching method
25551         to support CEE_JMP and tail calls.
25552         * mini.c: obey tail.call. Don't precompile methods target
25553         of CEE_JMP.
25554         * tramp-x86.c: new trampoline code to handle methods
25555         reached through a jump.
25556
25557 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
25558
25559         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
25560         bit values to registers
25561
25562 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
25563
25564         * mini.c (mono_compile_get_interface_var): share interface
25565         variables if possible.
25566
25567 2003-05-16  Martin Baulig  <martin@ximian.com>
25568
25569         * debug-mini.c (mono_init_debugger): New function to initialize
25570         the debugger.  This is not in the debugger since it needs to
25571         access some of mini's internals.
25572
25573 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
25574
25575         * mini.c (mono_method_to_ir): inlining fixes/cleanups
25576
25577 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
25578
25579         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
25580         for value type handling.
25581
25582 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
25583
25584         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
25585         (mono_method_check_inlining): enable inlining of all kinds of wrappers
25586
25587 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
25588
25589         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
25590           the constructor through a proxy.
25591
25592 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25593
25594         * jit-icalls.c, inssel.brg: fixes to array element address
25595         calculations.
25596
25597 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
25598
25599         * mini-x86.c (is_regsize_var): allocate pointer to registers
25600
25601 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25602
25603         * driver.c: fixed typo, added intrins to the set of optimizations
25604         tested with regressions.
25605
25606 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25607
25608         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
25609         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
25610         test case.
25611
25612 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
25613
25614         * inssel.brg: remove some common pop instructions without side effects
25615
25616 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
25617
25618         * inssel-x86.brg: fixed thinko in int to double conversions.
25619
25620 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25621
25622         * mini.c, jit-icalls.c: added runtime thread-static variable support.
25623
25624 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25625
25626         * inssel-long32.brg: two more missing instructions.
25627
25628 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
25629
25630         * mini.c (mono_emit_call_args): set the cil_code for all arguments
25631         if not already set.
25632
25633 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
25634
25635         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
25636         correctly.
25637
25638         * basic-float.cs: Added tests for negative zero.
25639
25640 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25641
25642         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
25643         a couple of missing operations for long casts, with test cases.
25644
25645 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25646
25647         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
25648
25649 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
25650
25651         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
25652         code size estimation.
25653
25654 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
25655
25656         * mini.c (mono_jit_create_remoting_trampoline): make it work with
25657         abstract methods (fix bug 42542)
25658
25659         * aot.c: add ability to handle array types
25660         
25661 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
25662
25663         * mini.c: Call the _specific versions of the object allocation
25664         functions if possible.
25665
25666 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
25667
25668         * driver.c: call setlocale ().
25669
25670 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
25671
25672         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
25673         windows build.
25674
25675 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
25676
25677         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
25678
25679         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
25680         wrappers (fix bug 42122)
25681
25682 2003-05-04  Martin Baulig  <martin@ximian.com>
25683
25684         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
25685
25686         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
25687         s/mini_set_defaults/mono_set_defaults/g.
25688
25689 2003-05-04  Martin Baulig  <martin@ximian.com>
25690
25691         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
25692
25693 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25694
25695         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
25696         (reported by Don Roberts).
25697
25698 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
25699
25700         * mini.c: temporarily work around two bugs for this release.
25701
25702 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25703
25704         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
25705         that contains -export-dynamic and it makes using the ld script
25706         useless.
25707         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
25708
25709 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25710
25711         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
25712         specific cpu.
25713
25714 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25715
25716         * mini.c: make sure leave calls all the needed finally blocks,
25717         even when the target jumps out of multiple exception clauses.
25718
25719 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25720
25721         * ldscript, Makefile.am: add linker script to reduce the number of
25722         exported symbols (should also fix the issues with libwine defining
25723         some of the same symbols in io-layer).
25724
25725 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
25726
25727         * driver.c (mini_main): Avoid assertion when no file name is given on 
25728         the command line.
25729
25730 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
25731
25732         * driver.c: added --version/-V command line option.
25733         Added the inline optimization in the regression tests.
25734
25735 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25736
25737         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
25738         to the type in the method signature (fixes bug#42134).
25739
25740 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
25741
25742         * mini.c: when inlining, check this is not null only when needed (bug #42135).
25743
25744 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
25745
25746         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
25747
25748 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25749
25750         * driver.c: fixed bug #42100.
25751
25752 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
25753
25754         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
25755
25756 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25757
25758         * mini.c: moved most of the code required to do inlining to its own
25759         function so it can be reused. Inline also ctors if appropriate.
25760
25761 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
25762
25763         * Makefile.am: Link with -export-dynamic so shared libs loaded by
25764         the runtime can call mono API functions.
25765
25766 2003-04-27  Martin Baulig  <martin@ximian.com>
25767
25768         * debug-mini.c (mono_debug_init_method): Added
25769         `guint32 breakpoint_id' argument; if the method has a breakpoint,
25770         send a notification to the debugger.
25771
25772         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
25773         running in the Mono Debugger, just pass the breakpoint number to
25774         mono_debug_init_method().
25775
25776         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
25777
25778 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
25779
25780         * mini.c: allow some more unsafe compares.
25781
25782 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25783
25784         * mini-x86.c, Makefile.am: make distcheck works (partially from
25785         a patch by Richard Lee <r.h.lee@attbi.com>).
25786         * regset.c, regset.h: removed, they are unused.
25787
25788 2003-04-25  Dick Porter  <dick@ximian.com>
25789
25790         * driver.c: Usage reports the name as 'mono' not 'mini'
25791         * exceptions-x86.c: Build and run on freebsd
25792
25793 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
25794
25795         * Makefile.am: install the program with the 'mono' name and
25796         the library as libmono instead of mini and libmini.
25797
25798 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
25799
25800         * driver.c: provide the APIs for the embedding interface of the old jit.
25801
25802 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
25803
25804         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
25805
25806 2003-04-23  Martin Baulig  <martin@ximian.com>
25807
25808         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
25809
25810         * driver.c: Added `--debug' command line argument to enable
25811         debugging support.
25812
25813 2003-04-23  Martin Baulig  <martin@ximian.com>
25814
25815         * debug.[ch]: Removed.  The code is now in
25816         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
25817
25818         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
25819         last six months.
25820
25821 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
25822
25823         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
25824
25825 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25826
25827         * mini.c:
25828         (mini_cleanup): moved mono_runtime_cleanup call after the call to
25829         mono_domain_finalize.
25830         (mini_method_compile): use mono_method_profile* if the the option is
25831         enabled.
25832
25833 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
25834
25835         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
25836         methods with their wrapper.
25837
25838         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
25839         methods with their wrapper.
25840
25841         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
25842         their wrapper.
25843
25844         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
25845         wrapper.
25846
25847         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
25848         methods.
25849
25850 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
25851
25852         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
25853
25854 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
25855
25856         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
25857         of the mempool. This is slightly faster and uses less memory
25858
25859 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
25860
25861         * mini.c: avoid O(n) allocation for variables.
25862
25863 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25864
25865         * mini.c: handle items on the stack after inlining methods.
25866
25867 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25868
25869         * mini.c: make the method->opcode optimization dependent
25870         on MONO_OPT_INSTRINS and do it lazily.
25871
25872 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25873
25874         * driver.c: print overall results at the end of regression run.
25875
25876 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25877
25878         * inssel.brg: don't overwrite symbolic registers.
25879
25880 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
25881
25882         * inssel-x86.brg: fix conversion from long to float.
25883
25884 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
25885
25886         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
25887
25888 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
25889
25890         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
25891
25892         * driver.c: Added --print-vtable option as in the old JIT.
25893
25894 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25895
25896         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
25897
25898 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
25899
25900         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
25901
25902 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
25903
25904         * mini.c regalloc.c regalloc.h: Fix memory leak.
25905
25906 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
25907
25908         * aot.c (mono_aot_get_method): register all used strings
25909
25910 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
25911
25912         * mini.c: always intern strings references with ldstr at compile time.
25913
25914 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25915
25916         * Makefile.am: add BUILT_SOURCES.
25917
25918 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
25919
25920         * driver.c: give a better error message when the assembly to execute
25921         doesn't have an entry point.
25922
25923 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
25924
25925         * Makefile.am: added hack for automake
25926
25927         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
25928         correct sematics.
25929
25930         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
25931
25932 22003-04-07  Martin Baulig  <martin@ximian.com>
25933
25934         * Makefile.am: Added Makefile.am.
25935
25936         * debugger-main.c: Removed, this is now in the debugger where it
25937         belongs.
25938
25939         * mini.pc.in: Call this package `mini' for the moment.
25940
25941
25942
25943
25944
25945
25946
25947
25948
25949
25950
25951
25952
25953
25954