2004-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mono / mini / ChangeLog
1 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
2
3         * basic-calls.cs: Add new regression test.
4
5         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
6         more portable.
7
8         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
9
10         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
11         is no longer used.
12
13 2004-05-06      Patrik Torstensson
14
15         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
16         long reg allocation in any reg (not only eax:edx) and implemented 
17         long shl/shr ops in asm instead of helpers.
18
19 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
20
21         * mini-sparc.h: Fix warnings.
22
23         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
24         stack.
25
26         * mini-exceptions.c (mono_handle_exception): Call the filter in a
27         separate statement for clarity.
28
29         * mini-sparc.c: Update status.
30
31 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
32
33         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
34         here.
35
36 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
37
38         * inssel-ppc.brg: another small pre-release workaround:
39         we don't do overflow detection for long_sub_un.
40
41 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
42
43         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
44         (also works around a weird ppc bug: 57957).
45
46 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
47
48         * tramp-ppc.c: trampoline fixes.
49
50 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
51
52         * mini-ppc.c: fixed typos.
53
54 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
55
56         * mini-ppc.c, exceptions-ppc.c: more code saves registers
57         at the top of the stack. Fixed typos. Use a frame registers
58         for all the methods with exception clauses.
59
60 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
61
62         * exceptions-ppc.c: restore fp registers.
63
64 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
65
66         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
67         order from the stack top (moved the stack room to save the
68         return value for trace after the param area). Fixed corruption
69         in restoring registers on unwind.
70
71 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
72
73         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
74
75 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
76
77         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
78         and prolog/epilog for methods that use it. Allow
79         enough param area room for varargs methods. Fix miguel's
80         breakage in exception handling.
81
82 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
83
84         * Makefile.am: run genmdesc only on current arch.
85
86 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
87
88         * exceptions-x86.c:
89         * mini-x86.h: fix the build on windows.
90
91 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
92
93         * 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.
94
95         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
96
97         * mini-exceptions.c: New file.
98         
99         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
100         Move some parts of the x86 exception handling code to an 
101         arch-independent file so it can be shared with other ports.
102
103 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
104
105         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
106
107 2004-04-26  David Waite  <mass@akuma.org>
108
109         * driver.c: remove comma from end of enumeration declaration
110
111 2004-04-26  Jackson Harper  <jackson@ximian.com>
112
113         * driver.c: parse config file before loading first assembly. This
114         allows the user gac to be enabled/disabled. 
115         
116 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
117
118         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
119         simpler mechanism: we do not care what is encoded initially
120         (branch absolute or relative), we care about the code and its
121         target.  I kept the old code for reference for now.
122
123         The new code tries first to determine if the jump is anywhere in
124         the -/+32 absolute meg range, if it succeeds, it encodes using the
125         absolute branch;  If not, it tried to find something in the
126         relative range, if not, it uses the handle_thunk code. 
127
128 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
129
130         * exceptions-ppc.c: use the correct ip register on macosx.
131
132 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
133
134         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
135
136 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
137
138         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
139         Raise exception on integer divide by zero by hand since the hw
140         doesn't support it. Handle NaNs in FP compares.
141
142 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
143
144         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
145         code reducing duplication between the platforms and enabled
146         signal exception handling (on linux for now).
147
148 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
149
150         * exceptions-ppc.c: more macosx support.
151
152 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
153
154         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
155
156 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
157
158         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
159
160 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
161
162         * iltests.il: more tests.
163
164 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
165
166         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
167         vars as well.
168
169 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
170
171         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
172
173 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
174
175         * liveness.c: Mark variables as volatile in all basic blocks reachable
176         from exception clauses.
177
178 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
179
180         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
181         inlining.
182
183 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
184
185         * iltests.il, basic.cs: more tests for regalloc.
186
187 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
188
189         * iltests.il: Some tests for register allocation modifications
190         I have locally.
191
192 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
193
194         * exceptions.cs: Add regression test for bug #56782.
195
196         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
197         original stack trace if an exception is rethrown. Fixes #56782. Oh,
198         the beauty of fixing the same thing in 5 different files...
199
200 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
201
202         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
203         methods.
204
205 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
206
207         * mini.c: Add support for STRWLPARRAY marshalling convention.
208
209 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
210
211         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
212         to init the context to setup the regs pointer).
213
214 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
215
216         * exceptions-ppc.c: more exceptions work.
217
218 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
219
220         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
221         not allowed.
222
223 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
224
225         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
226         can use the memory directly.
227
228         * cpu-pentium.md: Update documentation from a post from Zoltan. 
229
230         add x86_add_membase, x86_sub_membase, x86_mul_membase
231
232 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
233
234         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
235         GENERAL_REGS they were also hardcoded for all PPC ports.
236
237         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
238
239         Remove hard-coded limit for floating point registers, use
240         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
241
242         Notice that in MacOS X calling conventions you can fit a lot more
243         floating point values in registers, so I should update the PInvoke
244         test to excercise the passing of floating point values on the
245         stack (currently broken).
246         
247 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
248
249         * tramp-ppc.c (create_trampoline_code): Added
250         JUMP_TRAMPOLINE_SIZE. 
251         (ppc_magic_trampoline): Follow the pattern from
252         x86_magic_trampoline: if code is set to zero, return. 
253         (create_trampoline_code): Always pass MonoMethod to the jump
254         trampoline, before it was passing a null.
255         (mono_arch_create_jump_trampoline): Implement the jump stub, could
256         share the code with mono_arch_create_jit_trampoline. 
257
258         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
259         implemented.
260         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
261         implemented.  
262
263         * cpu-g4.md: Added length for jmp instruction, the worst case
264         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
265         for save_lmf).
266
267 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
268
269         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
270
271 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
272
273         * mini.c: Only set bblock->real_offset when adding a new bblock, and
274         before each IL instruction.
275
276         * mini.c (CEE_BOX): Fix warnings.
277
278 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
279
280         * mini.c: removed a few unused vars and extra whitespace.
281
282 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
283
284         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
285         checks.
286         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
287         index.
288         (OP_GETCHR): use the above
289         (CEE_LDELEMA): use the above.
290
291         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
292         version of the generic impl.
293         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
294         (CEE_LDELEMA): use the above.
295
296 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
297
298         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
299         Fixes #56317.
300
301         * iltests.il: Added new regression test for #56317.
302
303 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
304
305         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
306         under NetBSD. Fixes #56450.
307
308         * liveness.c (update_gen_kill_set): Fix previous patch.
309
310 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
311
312         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
313
314 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
315
316         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
317         ldsfld and ldsflda.
318
319         * inssel-sparc.brg: Add more optimizations.
320
321         * mini-sparc.c: Replace multiply/divide with shifts if possible.
322
323 2004-04-01  Martin Baulig  <martin@ximian.com>
324
325         * mini.c (handle_box): New static function; moved the
326         implementation of CEE_BOX here.
327         (mono_method_to_ir): Added `constrained_call' variable.
328         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
329         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
330         mono_method_get_constrained() to get the method.
331
332 2004-04-01  Martin Baulig  <martin@ximian.com>
333
334         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
335         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
336         (mono_method_to_ir): We don't need these macros anymore since
337         mono_class_get_full() already takes care of it. 
338
339 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
340
341         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
342         use @function (as doesn't accept #function here) and check the return
343         value of system and stop if fails.
344
345 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
346
347         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
348
349 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
350
351         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
352
353         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
354
355         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
356         #56223.
357
358         * basic-long.cs: Add test for negation of Int64.MinValue.
359
360 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
361
362         * mini-sparc.c: Update status.
363
364         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
365
366         * exceptions-sparc.c: Fix return value in filters.
367
368         * inssel-sparc.brg: Fix register allocation in some rules.
369
370 2004-03-28  Martin Baulig  <martin@ximian.com>
371
372         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
373         if neccessary.  
374
375 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
376
377         * mini-x86.c (mono_arch_patch_code): Fix warnings.
378         
379         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
380         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
381         remove unused conv_u4 opcode.
382
383         * mini-x86.c: Remove valgrind workaround since it slows down things
384         even when mono is not run under valgrind.
385
386 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
387
388         * mini-sparc.c: Update status.
389
390         * inssel-sparc.brg: Add some optimizations.
391
392         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
393         future delay slot filling. Add support for varargs, tail calls and JMP.
394
395         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
396         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
397
398         * inssel.brg: Fix register allocation in OP_ARGLIST.
399
400         * inssel.brg: Fix warnings.
401
402 2004-03-25  Martin Baulig  <martin@ximian.com>
403
404         * mini.c (inflate_generic_field): Removed.
405         (mini_get_method): Removed, use mono_get_method_full(),
406         (mini_get_class): Removed, use mono_class_get_full().
407         (mono_method_to_ir): Pass our generic context to
408         mono_field_from_token().        
409
410 2004-03-25  Martin Baulig  <martin@ximian.com>
411
412         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
413         of a `MonoMethod *'.
414         (mini_get_method): Take a `MonoGenericContext *' instead
415         of a `MonoMethod *'.
416         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
417         a new local variable called `generic_context' which holds the
418         current `MonoGenericContext *'; use it to lookup things.
419
420 2004-03-24  Martin Baulig  <martin@ximian.com>
421
422         * mini.c (mini_get_class): New static method; if we're inside a
423         generic instance, inflate the class if neccessary.
424         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
425
426 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
427
428         * iltests.il: New regression test for #55976.
429
430         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
431         #55976.
432
433 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
434
435         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
436         output.
437
438 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
439
440         * liveness.c: Consider SSA stores as well as loads when making vars
441         volatile.
442
443         * exceptions.cs: New regression tests for register allocation.
444         
445 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
446
447         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
448         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
449           domain lock only to protect puntual access to data structures.
450           Added access lock for sighash, jit_icall_hash_name, 
451           jit_icall_hash_addr and domain->code_mp.
452
453 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
454
455         * driver.c: Print SIGSEGV handling method.
456
457         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
458
459         * mini.c (setup_jit_tls_data): Handle case when this is called
460         multiple times for a thread.
461
462         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
463         is different from fbxx_un. Fixes #54303. Also use constants instead of
464         magic numbers in a lot of places.
465
466 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
467
468         * exceptions.cs: Fix cctor test when --regression is used.
469
470 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
471
472         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
473         for Linux/ppc.
474
475 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
476
477         * inssel-ppc.brg: fixed register assignments for some rules.
478
479 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
480
481         * exceptions.cs: Add test for exceptions in static constructors.
482
483         * mini.c (mono_jit_compile_method_with_out): Move the calling of
484         static constructors outside the domain lock. Fixes #55720.
485
486 2004-03-17  Martin Baulig  <martin@ximian.com>
487
488         * mini.c (get_generic_field_inst): Removed, this'll never happen.
489         (inflate_generic_field): Take the `MonoMethod *' instead of the
490         `MonoClass *' and added support for generic method.
491         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
492         have a `field->parent->gen_params', only inflate the field if it's
493         an open constructed type.
494
495 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
496
497         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
498         exception object instead of the preconstructed ones.
499
500 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
501
502         * mini.c: reverted changed to sigsegv_signal_handler commited
503         accidentally in the previous patch.
504
505 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
506
507         * mini.c:
508         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
509         running --aot with an old assembly.
510
511 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
512
513         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
514         point values.
515
516         * mini-sparc.c: Add support for v9 branches with prediction.
517
518 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
519
520         * mini.c (mini_init): #warning is GNUC only
521
522         * mini-sparc.h: implement __builtin_frame_address
523         and __builtin_return_address for Sun C compiler
524
525 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
526
527         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
528
529 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
530
531         * basic-calls.cs: Add test for unaligned byref long argument passing.
532
533         * mini-ops.h: Add sparcv9 compare and branch instructions.
534
535         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
536         v9 instructions if we have a v9 cpu.
537
538         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
539         registers for global allocation.
540
541         * exceptions-sparc.c: Fixes.
542         
543 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
544
545         * liveness.c (mono_analyze_liveness): Optimized version.
546
547         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
548
549         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
550         sparc work.
551
552         * basic-float.cs basic-calls.cs: New regression tests.
553
554 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
555
556         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
557         sigaltstack implementation.
558
559         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
560         
561         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
562         stuff if SIGSEGV_ON_ALTSTACK is not defined.
563
564 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
565
566         * mini.c: Fix warnings.
567         
568         * mini.c (mono_resolve_patch_target): New function which contains the
569         arch independent part of the patching process.
570
571         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
572         patching code to a separate function.
573
574 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
575
576         * mini.c (add_signal_handler): ifdef out on Windows
577
578 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
579
580         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
581         cpu-sparc.md: Add exception handling support + other fixes.
582
583         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
584         typed GC detection in --version.
585
586         * basic.cs exceptions.cs: New regression tests.
587
588         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
589         the arch specific code can store data during a compilation.
590
591         * mini-ops.h: Add OP_SETFRET.
592
593         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
594         function, register a separate icall for each arity, so the icalls can
595         get a wrapper.
596         
597         * mini.c (mono_print_tree): Print negative offsets in a more readable
598         form.
599         
600         * mini.c: Make signal handling work on sparc.
601         
602         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
603
604         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
605
606         * jit-icalls.c: Emulate truncl by aintl on solaris.
607
608         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
609
610 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
611
612         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
613
614 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
615
616         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
617         a MarshalByRef type, inline a method that performs the check, taking into
618         account that the object can be a proxy. Also implemented tow new opcodes:
619         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
620         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
621         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
622
623 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
624
625         * mini-ppc.c: if a relative branch displacement is too big
626         but it points to and area reachable with an absolute branch, 
627         avoid the thunks.
628
629 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
630
631         * mini.c: optimize small copies in cpblk.
632
633 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
634
635         * basic-calls.cs basic-float.cs: New regression tests.
636
637         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
638         negative offsets from %fp. Implement localloc. Fix local register 
639         allocation. Fix the case when the this argument needs to be saved to
640         the stack. Implement some missing opcodes.
641
642 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
643
644         * mini.c (mini_method_compile): Reenable global regalloc in methods
645         with exception handlers.
646
647         * linear-scan.c (mono_varlist_sort): Fix warning.
648
649         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
650
651         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
652         regalloc costs.
653
654         * liveness.c: Make all variables uses in exception clauses volatile, to
655         prevent them from being allocated to registers. Fixes #42136.
656
657 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
658
659         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
660         causes regressions.
661
662         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
663         argument to mono_arch_regalloc_cost.
664
665         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
666         precisely.
667
668 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
669
670         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
671         Make the cost of allocating a variable to a register arch dependent.
672
673         * basic-calls.cs: Fix compilation of tests.
674         
675         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
676         helper function to cut back on the number of #ifdefs needed.
677
678         * mini-ppc.c: Fix compilation.
679
680         * basic-calls.cs: New regression tests.
681
682         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
683
684         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
685         of l0 since that is callee saved.
686
687         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
688         to virtual calls.
689
690         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
691         of delay instruction.
692
693         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
694
695         * mini.h (MonoCallInst): Add 'virtual' flag.
696
697         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
698
699 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
700
701         * *.cs: New regression tests.
702
703         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
704         work.
705
706         * mini.c (mono_runtime_install_handlers): Fix build.
707
708         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
709         'signal_stack_size' members.
710
711         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
712         alternate signal stack.
713
714         * exceptions-x86.c: Add stack overflow handling.
715
716         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
717         functions to arch independent code.
718
719         * mini.c (mono_print_tree): Print more detailed info for load_membase
720         opcodes.
721         
722 2004-02-23  Martin Baulig  <martin@ximian.com>
723
724         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
725
726 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
727
728         * mini-x86.c: fixed reg allocation for div/rem.
729
730 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
731
732         * driver.c (mono_main): Report some configuratio options on --version.
733
734 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
735
736         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
737         low in the address space. Correctly flush memory in thunks where we
738         output native code.
739
740 2004-02-20  Martin Baulig  <martin@ximian.com>
741
742         * mini.c (mini_get_method): New static method; inflate all generic
743         methods and methods in open generic instances.
744         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
745         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
746
747 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
748
749         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
750
751         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
752
753 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
754
755         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
756
757         * mini-sparc.c (flushi mono_arch_output_basic_block): make
758         it compile using Sun's compiler.
759
760 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
761
762         * 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.
763
764         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
765
766 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
767
768         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
769         code.
770         * mini-ppc.c: handle calls outside of the allowed range with thunks
771         allocated using the code manager.
772         * tramp-ppc.c: use the code manager to hold generated native code.
773         Fixed the magic trampoline to just patch vtable entries.
774
775 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
776
777         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
778         independent file.
779
780 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
781
782         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
783         PPC.
784
785         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
786         if we have a working __thread implementation.
787
788         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
789         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
790
791 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
792
793         * mini-x86.c: Fix compilation under gcc 2.
794         
795 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
796
797         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
798         contains a call to the wrapped function.
799
800         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
801         OP_<CALL>_IMM opcodes, and use them under X86.
802         
803         * mini.c (mono_jit_find_compiled_method): Fix warning.
804
805         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
806
807         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
808
809         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
810         functionality to mini.c.
811
812         * mini.c (mono_create_jump_trampoline): New function to create a jump
813         trampoline. Return a compiled method instead of a trampoline if it
814         exists. Add a cache for jump trampolines.
815
816         * mini.c (mono_jit_find_compiled_method): New function to return a
817         compiled method if it exists.
818
819         * mini-x86.c: Call mono_create_jump_trampoline instead of 
820         mono_arch_create_jit_trampoline.
821
822         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
823         a jump trampoline. Fixes #52092.
824         
825 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
826
827         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
828         which is not up-to-date. Add check_corlib_version () instead.
829
830         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
831         have to call it.
832         
833         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
834         since newer valgrind versions do not need it.
835
836         * mini.c (mono_jit_compile_method_with_opt): New helper function to
837         compile a method with a given set of optimizations.
838
839         * mini.c: Compile icall wrappers on-demand instead of at startup.
840
841         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
842         wrapper for an icall.
843
844 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
845
846         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
847         #54063.
848
849         * iltests.il: Add test for non-empty stack before switch instruction.
850
851 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
852
853         * mini.c: Add support for new stringbuilder marshalling conventions.
854
855         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
856
857 2004-02-01  Martin Baulig  <martin@ximian.com>
858
859         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
860         in `ginst->mtype_argv'.
861
862 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
863
864         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
865         facilitate grepping.
866
867 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
868
869         * mini.c: fixed buglet in initobj generic implementation for references.
870
871 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
872
873         * Makefile.am: make the version script conditional.
874         * jit-icalls.c: handle missing truncl().
875
876 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
877
878         * exceptions.cs: Add more tests for double->int conversion.
879
880         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
881         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
882
883 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
884
885         * driver.c: make --verbose --version emit an error
886         if the loaded corlib doesn't match the runtime version.
887
888 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
889
890         * mini-ppc.h: export ppc_patch().
891         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
892         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
893         on par or better than on MacOSX.
894
895 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
896
897         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
898         mono_lookup_pinvoke_call.
899
900         * mini-x86.c: Under windows, the default pinvoke calling convention is
901         stdcall. Fixes #52834.
902
903         * mini.c (optimize_branches): Add an upper bound to the number of
904         iterations to prevent infinite loops on strange loops. Fixes #53003.
905
906 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
907
908         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
909         and ISINST. Fixes #52093.
910
911         * objects.cs (test_0_vector_array_cast): New tests.
912         
913 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
914
915         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
916         checking in Array.Set ().
917
918         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
919         #52590.
920
921         * object.cs (test_0_multi_array_cast): New regression test.
922
923 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
924
925         * exceptions-ppc.c: fix build on Linux/PPC.
926
927 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
928
929         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
930         running under valgrind.
931         (x86_magic_trampoline): Fix build bustage.
932
933         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
934         negative values as well. This is needed for the encoding of the line number
935         info, since sometimes the line numbers are not in increasing order.
936
937 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
938
939         * cpu-pentium.md (localloc): Increase the size of the localloc 
940         instruction since it is a loop under Win32.
941
942         * debug-mini.c (record_line_number): Get rid of unneccesary memory
943         allocation.
944
945 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
946
947         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
948         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
949         Max Horn (max@quendi.de). Fix file names in comments.
950
951 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
952
953         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
954         avoid stack overflow.
955         (replace_usage): Avoid uninitialized variable warnings.
956
957         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
958         and taking the address of valuetype variables.
959
960 2004-01-03  Patrik Torstensson
961
962         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
963         for other purposes than FP later on.
964
965 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
966
967         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
968         of tail calls.
969
970 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
971
972         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
973
974 2003-12-30  Patrik Torstensson <p@rxc.se>
975
976         * mini-x86.h: Decreased number of availiable fp regs.
977         Solves corner cases with FP spilling.
978
979 2003-12-23  Patrik Torstensson <p@rxc.se>
980
981         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
982         for floating point stack tracking / spilling on x86. 
983         Fixes bug #49012.
984         
985         * basic-float.cs: added float mul overflow test.
986
987 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
988
989         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
990
991 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
992
993         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
994         supports for cond branches that overflow the immediate
995         overflow offset. mcs can compile simple programs.
996
997 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
998
999         * exceptions-ppc.c: exception handling support wip:
1000         finally handlers get run on exception.
1001
1002 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
1003
1004         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
1005         profiling.
1006
1007 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
1008
1009         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
1010         initial support for stack walking and unwinding.
1011
1012 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
1013
1014         * driver.c (mono_main): Make corlib-out-of-sync message more 
1015         descriptive. Also remove verify_corlib call.
1016
1017 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
1018
1019         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
1020         not overlap with other call's arguments, too.
1021
1022 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
1023
1024         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
1025         move to arch-specific code the choice of arch-specific
1026         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
1027         * mini.c: ensure emulation calls will not interleave
1028         with other calls.
1029
1030 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
1031
1032         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
1033         the magic trampoline stack frame is dropped before executing
1034         the new method.
1035
1036 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
1037
1038         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
1039         and integer to fp conversions. Added support for overflowing
1040         arguments on the stack. Reserve a couple more registers as temps.
1041         Added support for aot compilation (as output still needs to be
1042         tweaked, though).
1043
1044 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
1045
1046         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
1047         Don't overwrite return register in some corner cases.
1048
1049 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
1050
1051         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
1052         static constructors when AOT compiling.
1053
1054         * driver.c (mono_main): Call mono_check_corlib_version.
1055
1056 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
1057
1058         * cpu-g4.md, basic.cs: fixed div target register.
1059
1060 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
1061
1062         * mini-ppc.c, basic.cs: shl_imm fix with test.
1063
1064 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
1065
1066         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
1067         structures by value. Misc fixes.
1068         * objects.cs: more tests.
1069
1070 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
1071
1072         * mini-ppc.c: lconv.ovf.i implemented.
1073
1074 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1075
1076         * mini.c:
1077         (mini_init): don't error out if someone already called g_thread_init.
1078
1079 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
1080
1081         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
1082         to be any type per the spec. Fix abnormal memory usage when
1083         the same object is repeatedly thrown.
1084
1085 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
1086
1087         * mini.c: check for overruns in IL code.
1088
1089 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
1090
1091         * TODO: Add/remove some todo entries.
1092
1093 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
1094
1095         * driver.c (mono_main): Call mono_verify_corlib.
1096
1097 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
1098
1099         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
1100         This has been moved to mini.c
1101         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
1102         type being casted is marshalbyref it could be a proxy, so instead of
1103         emitting the type check code, emit a call to a runtime method that will
1104         perform the check by calling CanCastTo if needed.
1105
1106 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
1107
1108         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
1109         methods with large stack frames under Win32.
1110
1111 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
1112
1113         * Makefile.am: Distribute regression tests.
1114
1115         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
1116         at the end instead of inserting each variable into the sorted list.
1117
1118         * linear-scan.c (mono_varlist_sort): New helper function.
1119         
1120 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
1121
1122         * mini.c: ensure arguments and locals are within bounds.
1123
1124 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
1125
1126         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
1127         related fixes.
1128
1129 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
1130
1131         * mini.c (mono_cprop_copy_values): Fix crash.
1132
1133         * aot.c: Set verbosity back to 0.
1134         
1135 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
1136
1137         * regalloc.c: complete memory leak fix by Laurent Morichetti
1138         (l_m@pacbell.net).
1139
1140 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
1141
1142         * driver.c (main_thread_handler): Revert the previous patch.
1143
1144         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
1145         under valgrind.
1146
1147         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
1148         memory from the memory pool.
1149
1150         * driver.c (main_thread_handler): Turn on all optimizations when
1151         --aot is used.
1152
1153         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
1154         an array for better performance.
1155
1156         * regalloc.c (mono_regstate_assign): Fix memory leak.
1157
1158         * debug-mini.c (mono_debug_serialize_debug_info): New function to
1159         serialize the debug info.
1160
1161         * debug-mini.c (mono_debug_add_aot_method): New function to load the
1162         debug info from the serialized representation.
1163
1164         * aot.c: Save debug info into the generated file and load it when 
1165         loading a method.
1166
1167         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
1168
1169 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
1170
1171         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
1172         More FP-related fixes.
1173
1174 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
1175
1176         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
1177         and register allocation buglet. Hello world now runs.
1178
1179 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
1180
1181         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
1182         * tramp-ppc.c: fixed class init trampoline.
1183         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
1184
1185 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
1186
1187         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
1188         mini.c: more ppc changes/fixes.
1189
1190 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
1191
1192         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
1193         Also optimize the case when the arguments are the same in the caller 
1194         and in the callee.
1195
1196         * iltests.il: Add tests for tail calls with valuetype arguments.
1197
1198 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
1199
1200         * mini-ppc.c: fixes for struct return type.
1201
1202 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
1203
1204         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
1205         mono_spillvar_offset() to arch-specific code.
1206
1207 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
1208
1209         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
1210
1211 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
1212
1213         * exceptions-x86.c: Fix stack space leaks.
1214         
1215         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
1216         registers from the lmf if the method has save_lmf set.
1217
1218 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
1219
1220         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
1221         of icall wrappers into InvokeInDomain, since these are now per-domain.
1222
1223 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
1224
1225         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
1226         make some opcode emulation and intrinsic ops enabled/disabled 
1227         according to the architecture. More fixes.
1228
1229 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
1230
1231         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
1232
1233 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
1234
1235         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
1236         arch-specific handling for 'this' and struct return type to
1237         arch-specific code.
1238
1239 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1240
1241         * aot.c: prevent divide by zero error when reporting (it happened with
1242         Accessibility.dll).
1243
1244 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
1245
1246         * mini.h (inst_switch): Remove unused macro.
1247
1248 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1249
1250         * aot.c:
1251         (load_aot_module): free 'info->methods' and 'info' properly. No more
1252         "free(): invalid pointer blah" messages when you have an old aot
1253         compiled assembly.
1254
1255 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
1256
1257         * jit-icalls.c, mini.c: Added support for context static fields.
1258
1259 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
1260
1261         * mini.c (mono_method_blittable): Methods which set LastError are not 
1262         blittable either. Fixes #51108.
1263         
1264 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
1265
1266         * mini.c: flush icache.
1267         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
1268
1269 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
1270
1271         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
1272
1273 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
1274
1275         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
1276         safe on IA32.
1277
1278         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
1279         vararg calls.
1280
1281         * inssel.brg (CEE_MKREFANY): Fix AOT case.
1282
1283 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
1284
1285         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
1286         instruction when the result is discarded.
1287
1288         * iltests.il (test_0_div_regalloc): New regression test.
1289
1290         * arrays.cs: Fix compilation error.
1291
1292 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
1293
1294         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
1295         float rules to inssel-x86.brg: sane architectures with FP registers
1296         don't need to implement these rules.
1297
1298 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
1299
1300         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
1301
1302 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
1303
1304         * mini.h, inssel-long32.brg: fixed endianess issues in int64
1305         implementation of 32 bit systems.
1306
1307 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
1308
1309         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
1310         (Jeroen Zwartepoorte).
1311
1312 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
1313
1314         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
1315         the caller and the callee matches.
1316         
1317         * mini.c (mono_method_to_ir): Add comment.
1318
1319         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
1320         signbit is missing on some platforms.
1321
1322 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
1323
1324         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
1325
1326         * mini.c (setup_jit_tls_data): Call the new function.
1327         
1328         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
1329
1330         * mini-x86.c: Add experimental support for fast access to the lmf
1331         structure under NPTL/Linux 2.6.x.
1332
1333 2003-11-06  Martin Baulig  <martin@ximian.com>
1334
1335         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
1336         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
1337         the debugger.
1338
1339 2003-11-02  Martin Baulig  <martin@ximian.com>
1340
1341         * mini.c (inflate_generic_field): New static method.
1342         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
1343         generic instance and the field is declared in a generic type, call
1344         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
1345
1346 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
1347
1348         * mini.h mini.c (mono_method_same_domain): New function to return
1349         whenever the caller and the callee are in the same domain.
1350
1351         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
1352
1353 2003-10-30  Martin Baulig  <martin@ximian.com>
1354
1355         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
1356         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
1357         method parameters.
1358         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
1359         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
1360
1361 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
1362
1363         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
1364         propagation.
1365
1366         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
1367         object here, so it is in the correct appdomain etc.
1368
1369 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
1370
1371         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
1372         already done.
1373         (mono_method_to_ir): Avoid freeing the type created returned from
1374         mono_type_create_from_typespec, since it is put into an internal cache
1375         by the function. Fixes pointer.exe.
1376
1377         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
1378         trampolines for icalls and pinvokes as well. Fixes #33569.
1379
1380 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
1381
1382         * mini.c: Update after appdomain changes.
1383
1384         * mini.c (mono_jit_compile_method_inner): Allways compile native
1385         method wrappers in the root domain, since there can only be one
1386         instance of them, whose address is stored in method->info.
1387
1388 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
1389
1390         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
1391         environment variable. Instead detect automatically whenever running
1392         under valgrind using the magic macro RUNNING_ON_VALGRIND from
1393         valgrind.h.
1394
1395 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
1396
1397         * trace.c, trace.h: New files that implement the new trace option
1398         parsing. 
1399
1400         * driver.c: Document new --trace options.
1401
1402         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
1403         mini-x86.c: Apply:
1404
1405         -       if (mono_jit_trace_calls)
1406         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
1407
1408         * mini.h: prototypes.
1409         
1410 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
1411
1412         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
1413
1414         * mini.c inssel.brg: Implement typedefbyref opcodes.
1415
1416         * mini.c (mono_jit_compile_method): Remove unused local variable.
1417
1418         * mini.c (mono_jit_compile_method_inner): Ditto.
1419         
1420 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
1421
1422         * tramp-x86.c (x86_class_init_trampoline): Fix build.
1423         
1424         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
1425
1426 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
1427
1428         * mini.c (mono_no_aot): Remove unused global variable.
1429
1430         * mini.c: Thread safety fixes.
1431
1432 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
1433
1434         * mini.c (mono_create_class_init_trampoline): Add a lock around
1435         class_init_hash_addr.
1436
1437         * arrays.cs (test_0_newarr_emulation): Add new regression test for
1438         #30073.
1439
1440         * mini.c: Decompose the NEWARR instruction before decomposing its
1441         arguments. Fixes #30073.
1442
1443 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
1444
1445         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
1446         convention.
1447
1448 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
1449
1450         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
1451
1452         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
1453
1454         * driver.c: Add support for compiling icall wrappers to --compile.
1455
1456 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
1457
1458         * inssel.brg: The empty value in class->interface_offsets is -1, not
1459         0. Fixes #49287.
1460
1461 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
1462
1463         * objects.cs: New test for 'is' operator on an array of interfaces.
1464
1465 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
1466
1467         * tramp-ppc.c: update trampoline code to support jumps
1468         and class initialization.
1469
1470 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
1471
1472         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
1473
1474         * inssel.brg (OP_UNBOXCAST): Fix #46027.
1475
1476         * inssel.brg (OP_UNBOX): Remove unused rule.
1477
1478         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
1479         region instead of one for each method. Fixes #47813.
1480
1481 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
1482
1483         * exceptions.cs (test_0_nested_finally): New regression test for
1484         nested exception handlers.
1485
1486         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
1487
1488         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
1489
1490         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
1491         inlining.
1492
1493         * mini.c (mono_method_check_inlining): Make the inlining limit 
1494         configurable by an environment variable.
1495         
1496         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
1497
1498         * mini.h: Bump AOT file version.
1499
1500         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
1501         token, store the image along with the token, since the token might not 
1502         refer to the same image as the method containing the relocation, 
1503         because of inlining.
1504
1505 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
1506
1507         * mini.c (mono_precompile_assemblies): New function to compile
1508         all methods in all loaded assemblies.
1509
1510         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
1511
1512         * regalloc.h regalloc.c (MonoRegState): Change the type of 
1513         iassign and fassign to int*, since they can contain large negative
1514         values if the register is spilled. Also added some comments. Fixes
1515         #45817.
1516
1517         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
1518         under Win32. Fixes #42964.
1519
1520 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
1521
1522         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
1523
1524         * aot.c: Added support for AOT compiling methods which contain calls
1525         to wrappers. Currently, only remoting-invoke-with-check wrappers are
1526         handled.
1527         
1528         * driver.c (compile_all_methods): Run the compilation in a thread
1529         managed by mono. Fixes #44023.
1530
1531         * mini.c (mono_codegen): Print full method name in verbose output.
1532
1533         * mini-x86.c (mono_arch_patch_code): Fix warning.
1534         
1535         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
1536         jumps, since the method we are jumping to might be domain-specific.
1537
1538         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
1539
1540 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
1541
1542         * inssel.brg: string chars are unsigned.
1543
1544 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
1545
1546         * TODO: New todo item.
1547
1548         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
1549         which calls mono_runtime_class_init and patches the call site to
1550         avoid further calls.
1551         (mono_arch_create_class_init_trampoline): New arch specific function 
1552         to create a class init trampoline.
1553         (create_trampoline_code): Generalized so it can create
1554         class init trampolines as well.
1555
1556         * mini.c (helper_sig_class_init_trampoline): New helper variable.
1557         (mono_create_class_init_trampoline): New function to create and cache
1558         class init trampolines.
1559         (mono_find_class_init_trampoline_by_addr): New function to lookup the
1560         vtable given the address of a class init trampoline. Used by the
1561         patching process.
1562         (mono_codegen): Generate a call to a trampoline instead of
1563         mono_runtime_class_init in LDSFLD[A].
1564         (mono_codegen): Add relocations for the new trampoline.
1565         
1566         * mini.h mini-x86.c aot.c: Added a new relocation type: 
1567         MONO_PATCH_INFO_CLASS_INIT.
1568
1569         * mini.h: Bump AOT version number.
1570
1571         * aot.c: Create a copy of the loaded code instead of using the original
1572         so methods which call each other will be close in memory, improving
1573         cache behaviour.
1574         
1575         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
1576         patch since it breaks the regression tests.
1577         
1578         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
1579         for the register saving instruction sequence since the 
1580         frame_state_for function in glibc 2.3.2 don't seem to detect it.
1581
1582 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
1583
1584         * TODO: Fix todo item && remove another.
1585
1586 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
1587
1588         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
1589         previous checkin.
1590
1591         * aot.c: Moved the check for MONO_LASTAOT into the initialization
1592         function of the module.
1593
1594         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
1595         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
1596         --no-aot command line option.
1597
1598 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
1599
1600         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
1601         by Bernie Solomon (bernard@ugsolutions.com).
1602
1603         * inssel.brg: Refactor the interface offset table related code into
1604         its separate functions and add support for the AOT case.
1605
1606 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
1607
1608         * aot.c (mono_aot_get_method_inner): Fix memory leak.
1609         
1610         * aot.c: Added mono_aot_verbose variable and made all debugging
1611         output depend on the value of this variable.
1612
1613         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
1614         method_label and info_label.
1615
1616         * mini.h mini-x86.c aot.c: Added a new relocation type 
1617         MONO_PATCH_INFO_IID for klass->interface_id.
1618
1619         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
1620         the MonoJitInfo structure.
1621
1622         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
1623         a non-root appdomain in shared mode.
1624
1625 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
1626
1627         * aot.c: make aot loader less verbose. Remove free of unused variable.
1628
1629 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
1630
1631         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
1632
1633         * .cvsignore: Added *.dll.
1634
1635         * mini.c (mono_print_tree_nl): New function callable while debugging.
1636
1637         * mini.c (mono_print_code): Export this.
1638
1639         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
1640         patched code.
1641
1642 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
1643
1644         * mini.h (MonoCompile): Added 'jit_info' field.
1645
1646         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
1647         the cfg structure, since it is needed by the AOT compiler.
1648
1649         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
1650
1651         * aot.c: A major rewrite. Changes include:
1652         - save exception tables for methods which have them.
1653         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
1654         to g_module_symbol.
1655         - reworked the file format so it is now much smaller and needs
1656         fewer relocation entries.
1657         
1658 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
1659
1660         * aot.c (load_aot_module): Fix build bustage on platforms without
1661         Boehm GC.
1662
1663 2003-09-04  Martin Baulig  <martin@ximian.com>
1664
1665         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
1666
1667 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
1668
1669         * TODO: Some new optimization ideas.
1670
1671         * aot.c: Move AOT module loading logic here from mono_assembly_open.
1672
1673         * aot.c: Save the optimization flags used to compile the code into
1674         the AOT module.
1675
1676         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
1677         support emitting domain specific code.
1678         
1679         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
1680         no longer domain neutral. It can be made domain neutral by compiling 
1681         with --optimize=shared.
1682
1683         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
1684         between appdomains.
1685
1686         * driver.c mini.h mini.c: New --no-aot debugging option which disables
1687         loading of AOT code.
1688
1689         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
1690         
1691         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
1692         if there is no domain neutrality information.
1693
1694 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
1695
1696         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
1697         format version into the generated library.
1698
1699         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
1700         callee method into the caller since one of them could be shared.
1701
1702         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
1703         system exceptions from AOT code now works.
1704
1705         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
1706         method if it is domain neutral and the callee is not.
1707
1708         * graph.c (cfg_emit_one_loop_level): Fix warning.
1709
1710 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
1711
1712         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
1713         last checkin.
1714
1715 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
1716
1717         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
1718         is needed  by code which is executed before mono_runtime_init ().
1719         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
1720         
1721         * mini.c (mono_thread_abort): Fix warning.
1722         (mono_jit_compile_method): Call static constructor in the AOT case too.
1723
1724         * aot.c (mono_compile_assembly): Fix warning.
1725
1726 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1727
1728         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
1729
1730 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
1731
1732         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
1733
1734         * cpu-pentium.md: Fix the length of call opcodes so they include the
1735         ESP restoring instruction. Fixes #47968.
1736
1737 2003-08-28  Martin Baulig  <martin@ximian.com>
1738
1739         * mini-x86.c (mono_arch_call_opcode): Added support for
1740         MONO_TYPE_GENERICINST.
1741
1742         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
1743
1744 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
1745
1746         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
1747         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
1748
1749         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
1750         metadata_section.
1751
1752 2003-08-26  Martin Baulig  <martin@ximian.com>
1753
1754         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
1755         when reporting an error, set this to the actual error location.
1756         (mono_method_to_ir): Report the correct error location if
1757         get_basic_blocks() returned an error.
1758
1759 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
1760
1761         * mini.c (mono_type_blittable): OBJECT is not blittable.
1762         (mono_method_blittable): Methods which have marshalling descriptors
1763         are not blittable either. Fixes #47842.
1764
1765 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
1766
1767         * driver.c mini.c: Use an environment variable instead of a global 
1768         variable. Also fix the build.
1769
1770         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
1771         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
1772         reporting this. 
1773
1774         * driver.c mini.c: Added --with-valgrind option to turn off some
1775         code which prevents mono from running under valgrind.
1776
1777         * mini.c (mono_emit_call_args): Fixed warning.
1778
1779         * mini.c (mono_emulate_opcode): Fixed warning.
1780
1781 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1782
1783         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
1784         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
1785         regalloc.c, regalloc.h: specify available registers in arch-specific
1786         code and support floats in the regallocator (patch by Laurent Morichetti 
1787         <l_m@pacbell.net>)
1788
1789 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
1790
1791         * mini.c: mono_thread_current() can be called only after
1792         mono_runtime_init(): rearrange code to not call it early on.
1793
1794 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
1795
1796         * mini.c: allocate jump tables in the code mempools.
1797
1798 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
1799
1800         * mini.c, mini.h: make sure per-thread data allocated by the jit is
1801         freed.
1802
1803 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
1804
1805         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
1806         12 to 16.  This fixes bug #47453.
1807
1808
1809 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
1810
1811         * mini-ppc.c: fixed indexed load and unsigned compares.
1812
1813 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
1814
1815         * mini.c: reenabled installation of handler for
1816           thread abort signal.
1817
1818 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1819
1820         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
1821         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
1822         until it's fixed and actually useful.
1823
1824 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
1825
1826         * inssel-long32.brg: couple more opcodes implemented.
1827
1828 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
1829         
1830         * mini-sparc.c: Even more opcodes implemeted.
1831
1832 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
1833
1834         * mini-sparc.c: More opcodes implemented.
1835
1836 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
1837
1838         * mini-sparc.c: More opcodes implemented.
1839
1840 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
1841
1842         * inssel-sparc.brg: Add some needed rules.  Direct
1843         copy from PPC.
1844         * Makefile.am: Use inssel-sparc.brg
1845         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
1846         an assert happy for now.
1847
1848 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
1849
1850         * mini-sparc.c: Fixed compile errors.
1851         * exceptions-sparc.c: Same.  We now produce a mono binary 
1852         on sparc-linux.  Yea.
1853
1854 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
1855
1856         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
1857         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
1858         They compile, but do not work.
1859
1860 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
1861
1862         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
1863         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
1864         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
1865         (ct@gentoo.org).
1866
1867 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1868
1869         * mini.c: more opcodes implemented and better support for generics.
1870
1871 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
1872
1873         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
1874         * mini.c, mini.h: first cut at generics support: some new instructions 
1875         added and changed the behaviour of some of the existing ones.
1876
1877 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
1878
1879         * mini.c: Removed definition of metadata_shared mutex here.
1880
1881 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
1882
1883         * mini-x86.c: make vararg calls work for instance methods.
1884
1885 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
1886
1887         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
1888         returns the arguments in a separte list, now.
1889
1890 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
1891
1892         * aot.c, mini.c: updates for array type representation changes.
1893
1894 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
1895
1896         * mini.c: register function to perform jit shutdown.
1897
1898 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
1899
1900         * mini.c: use a faster allocator if possible.
1901
1902 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
1903
1904         * aot.c: some cleanups and portability changes.
1905
1906 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
1907
1908         * mini.c: use faster allocation for CEE_BOX if possible.
1909
1910 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
1911
1912         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
1913         Moved inlined mempcy code to its own function so that is can be
1914         reused. Added an inline memset function as well (optimized initobj).
1915         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
1916
1917 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
1918
1919         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
1920
1921 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
1922
1923         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
1924         arch code can setup the cpu for CLR execution, if needed.
1925         We use it on x86 to set the precision of FP operations.
1926
1927 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1928
1929         * mini.c: disable some optimizations if we can guess they'll cost too
1930         much for a given method.
1931
1932 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1933
1934         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
1935         
1936 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1937         * mini.h mini.c mini-x86.c: Added instruction level coverage 
1938         info collection support.
1939
1940 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
1941
1942         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
1943         is now implemented in the profiling API. Get rid of a couple of
1944         unnecessary global variables.
1945
1946 2003-06-15  Nick Drochak <ndrochak@gol.com>
1947
1948         * basic-long.cs: tests for negative values for bigmul, and unsigned.
1949         * cpu-g4.md: add op_bigmul and op_bigmul_un
1950         * cpu_pentium.md: add op_bigmul_un
1951         * inssel-long32.brg: add rule for unsigned bigmul
1952         * mini-ops.h: define OP_BIGMUL_UN
1953         * mini-x86.c: THE BUG: handle (un)signed properly
1954         * mini.c: choose unsigned opcode if needed.
1955         This set of patches fixes bug #44291
1956
1957 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
1958
1959         * mini.c (optimize_branches): improved to handle all kinds of
1960         conditional branches.
1961
1962 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
1963
1964         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
1965         don't raise exceptions.
1966
1967 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
1968
1969         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
1970         to arch-specific files.
1971
1972 2003-06-09  Martin Baulig  <martin@ximian.com>
1973
1974         * Makefile.am (libs): Added $(LIBGC_LIBS).
1975
1976 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
1977
1978         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
1979         and OP_ATAN (fixes bug#44293).
1980
1981 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
1982
1983         * Makefile.am, mini-x86.c: rename cpu description array to
1984         pentium_desc, since some compilers define the 'pentium' preprocessor
1985         symbol.
1986
1987 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
1988
1989         * mini.c (mini_select_instructions): add explicit branch if the
1990         following block is not the false target of a conditional branch -
1991         we need this with any optimization that reorder or remove bblocks
1992
1993         * mini.c (optimize_branches): bug fixes
1994
1995 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
1996
1997         * mini.c (mono_method_to_ir): inline static readonly fields
1998
1999         * ssa.c (fold_tree): start cfold support for long (very simple
2000         cases only)
2001
2002         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
2003
2004 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
2005
2006         * inssel.brg: fixed memcpy (bug #44219).
2007
2008 2003-06-05  Dick Porter  <dick@ximian.com>
2009
2010         * driver.c: Set the glib log levels to not abort if g_message
2011         recurses.
2012
2013         g_set_prgname() has to happen before mini_init() so that the
2014         process handle gets the info.
2015         
2016 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
2017
2018         * driver.c: add intrins to the default optimizations to get wider
2019         exposure.
2020
2021 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
2022
2023         * mini.h: some large basic blocks will overflow a 16-bit
2024         integers for symbolic registers.
2025
2026 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
2027
2028         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
2029         (mono_arch_output_basic_block): fix bug 43499 
2030
2031 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
2032
2033         * mini.c: kill duplicated definition of mono_debug_format.
2034
2035 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
2036
2037         * mini-x86.c, arrays.cs: fixed register allocation bug.
2038
2039 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
2040
2041         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
2042
2043         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
2044
2045 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2046
2047         * mini.c:
2048         (print_method_from_ip): also print source location information if
2049         available.
2050
2051 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
2052
2053         * mini.c (mono_find_block_region): bug fix in region code
2054         (mini_method_compile): enable removing unreachable code again, but
2055         only in methods without exception clauses.
2056
2057 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
2058
2059         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
2060         Implemented arglist opcode and handling of TypedReference type.
2061         Fixed x86 call convention when a structure is returned.
2062         Minimal support for calling static vararg methods.
2063
2064 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
2065
2066         * mini.c (mini_method_compile):  always remove unreachable code,
2067         because the code in them may be inconsistent  (access to dead
2068         variables for example).
2069
2070 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
2071
2072         * driver.c, debug-mini.c: warning fixes.
2073
2074 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
2075
2076         * Makefile.am, jit.h, mini.h: install header for embedding mono.
2077
2078 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
2079
2080         * mini.c: thread-static fields are registered in mono_class_vtable(),
2081         so ensure the function is called before checking for them.
2082
2083 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
2084
2085         * mini.c (optimize_branches): fix for bug 43586
2086
2087         * jit-icalls.c (mono_llmult_ovf): added an additional check for
2088         overflow (fixes Bug #43639)
2089
2090 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
2091
2092         * mini.c, objects.cs: allow the use of stobj for primitive types.
2093
2094 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
2095
2096         * mini.c: be less strict about argument checking until we support
2097         running the verifier.
2098
2099 2003-05-27  Nick Drochak <ndrochak@gol.com>
2100
2101         * basic-long.cs: tests for (ulong)int * (ulong)int also
2102         * mini.c: use the same trick for (ulong)int * (ulong)int
2103
2104 2003-05-27  Nick Drochak <ndrochak@gol.com>
2105
2106         * basic-long.cs: add regression test for (long)int * (long)int
2107         * cpu-pentium.md: add op_bigmul specification
2108         * inssel-long32.brg: add OP_BIGMUL rule
2109         * mini-ops.h: add OP_BIGMUL
2110         * mini-x86.c: register allocator: handle case where src1 needs to be
2111         in EAX.
2112         * mini.c: substitute special BIGMUL opcode in the tree for 
2113         (long)int * (long)int
2114
2115 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
2116
2117         * jit-icalls.c: call the type ctor on field access if needed.
2118
2119 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
2120
2121         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
2122         to a method (including results of ldelema, bug#43207).
2123
2124 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
2125
2126         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
2127         colors to show exception handler blocks.
2128
2129         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
2130         (fix for pinvoke7.cs).
2131
2132 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
2133
2134         * mini.h, mini.c: ensure correct initialization order for types that
2135         require it. Prepare for lazy compilation of jit icall wrappers.
2136         Provide a name for opcode emulation to reduce unneeded mallocing.
2137
2138 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
2139
2140         * mini-x86.c: better register restoring code and profiling
2141         support for tail calls.
2142
2143 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
2144
2145         * mini.h, driver.c: prepare for leaf methods optimization.
2146
2147 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
2148
2149         * mini.c: get targets of branches before converting a method.
2150
2151 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
2152
2153         * mini.c (optimize_branches): added some experimental code (disbaled) 
2154
2155 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
2156
2157         * mini.c (optimize_branches): fix branch to branch optimization 
2158
2159         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
2160
2161         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
2162
2163         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
2164
2165         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
2166         if needed.
2167
2168 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
2169
2170         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
2171         enable use of interface variables again.
2172
2173         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
2174         I1 to registers because there is no simply way to sign extend 8bit
2175         quantities in caller saved registers on x86.
2176
2177         * inssel-float.brg: set costs of some rules to 2 so
2178         that monobure always select the arch. specific ones if supplied,
2179         regardless of the order we pass the files to monoburg.
2180
2181 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
2182
2183         * mini.c, mini-x86.c: since the magic trampoline for jumps
2184         can't patch the code directly, we do it as soon as the
2185         method gets compiled.
2186
2187 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
2188
2189         * mini-x86.c, mini.h: introduce a new patching method
2190         to support CEE_JMP and tail calls.
2191         * mini.c: obey tail.call. Don't precompile methods target
2192         of CEE_JMP.
2193         * tramp-x86.c: new trampoline code to handle methods
2194         reached through a jump.
2195
2196 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
2197
2198         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
2199         bit values to registers
2200
2201 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
2202
2203         * mini.c (mono_compile_get_interface_var): share interface
2204         variables if possible.
2205
2206 2003-05-16  Martin Baulig  <martin@ximian.com>
2207
2208         * debug-mini.c (mono_init_debugger): New function to initialize
2209         the debugger.  This is not in the debugger since it needs to
2210         access some of mini's internals.
2211
2212 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
2213
2214         * mini.c (mono_method_to_ir): inlining fixes/cleanups
2215
2216 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
2217
2218         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
2219         for value type handling.
2220
2221 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
2222
2223         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
2224         (mono_method_check_inlining): enable inlining of all kinds of wrappers
2225
2226 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
2227
2228         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
2229           the constructor through a proxy.
2230
2231 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
2232
2233         * jit-icalls.c, inssel.brg: fixes to array element address
2234         calculations.
2235
2236 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
2237
2238         * mini-x86.c (is_regsize_var): allocate pointer to registers
2239
2240 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
2241
2242         * driver.c: fixed typo, added intrins to the set of optimizations
2243         tested with regressions.
2244
2245 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
2246
2247         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
2248         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
2249         test case.
2250
2251 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
2252
2253         * inssel.brg: remove some common pop instructions without side effects
2254
2255 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
2256
2257         * inssel-x86.brg: fixed thinko in int to double conversions.
2258
2259 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
2260
2261         * mini.c, jit-icalls.c: added runtime thread-static variable support.
2262
2263 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
2264
2265         * inssel-long32.brg: two more missing instructions.
2266
2267 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
2268
2269         * mini.c (mono_emit_call_args): set the cil_code for all arguments
2270         if not already set.
2271
2272 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
2273
2274         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
2275         correctly.
2276
2277         * basic-float.cs: Added tests for negative zero.
2278
2279 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
2280
2281         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
2282         a couple of missing operations for long casts, with test cases.
2283
2284 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2285
2286         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
2287
2288 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
2289
2290         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
2291         code size estimation.
2292
2293 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
2294
2295         * mini.c (mono_jit_create_remoting_trampoline): make it work with
2296         abstract methods (fix bug 42542)
2297
2298         * aot.c: add ability to handle array types
2299         
2300 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
2301
2302         * mini.c: Call the _specific versions of the object allocation
2303         functions if possible.
2304
2305 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
2306
2307         * driver.c: call setlocale ().
2308
2309 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
2310
2311         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
2312         windows build.
2313
2314 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
2315
2316         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
2317
2318         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
2319         wrappers (fix bug 42122)
2320
2321 2003-05-04  Martin Baulig  <martin@ximian.com>
2322
2323         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
2324
2325         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
2326         s/mini_set_defaults/mono_set_defaults/g.
2327
2328 2003-05-04  Martin Baulig  <martin@ximian.com>
2329
2330         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
2331
2332 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
2333
2334         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
2335         (reported by Don Roberts).
2336
2337 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
2338
2339         * mini.c: temporarily work around two bugs for this release.
2340
2341 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
2342
2343         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
2344         that contains -export-dynamic and it makes using the ld script
2345         useless.
2346         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
2347
2348 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
2349
2350         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
2351         specific cpu.
2352
2353 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
2354
2355         * mini.c: make sure leave calls all the needed finally blocks,
2356         even when the target jumps out of multiple exception clauses.
2357
2358 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
2359
2360         * ldscript, Makefile.am: add linker script to reduce the number of
2361         exported symbols (should also fix the issues with libwine defining
2362         some of the same symbols in io-layer).
2363
2364 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
2365
2366         * driver.c (mini_main): Avoid assertion when no file name is given on 
2367         the command line.
2368
2369 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
2370
2371         * driver.c: added --version/-V command line option.
2372         Added the inline optimization in the regression tests.
2373
2374 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
2375
2376         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
2377         to the type in the method signature (fixes bug#42134).
2378
2379 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
2380
2381         * mini.c: when inlining, check this is not null only when needed (bug #42135).
2382
2383 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
2384
2385         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
2386
2387 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2388
2389         * driver.c: fixed bug #42100.
2390
2391 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
2392
2393         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
2394
2395 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
2396
2397         * mini.c: moved most of the code required to do inlining to its own
2398         function so it can be reused. Inline also ctors if appropriate.
2399
2400 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
2401
2402         * Makefile.am: Link with -export-dynamic so shared libs loaded by
2403         the runtime can call mono API functions.
2404
2405 2003-04-27  Martin Baulig  <martin@ximian.com>
2406
2407         * debug-mini.c (mono_debug_init_method): Added
2408         `guint32 breakpoint_id' argument; if the method has a breakpoint,
2409         send a notification to the debugger.
2410
2411         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
2412         running in the Mono Debugger, just pass the breakpoint number to
2413         mono_debug_init_method().
2414
2415         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
2416
2417 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
2418
2419         * mini.c: allow some more unsafe compares.
2420
2421 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
2422
2423         * mini-x86.c, Makefile.am: make distcheck works (partially from
2424         a patch by Richard Lee <r.h.lee@attbi.com>).
2425         * regset.c, regset.h: removed, they are unused.
2426
2427 2003-04-25  Dick Porter  <dick@ximian.com>
2428
2429         * driver.c: Usage reports the name as 'mono' not 'mini'
2430         * exceptions-x86.c: Build and run on freebsd
2431
2432 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
2433
2434         * Makefile.am: install the program with the 'mono' name and
2435         the library as libmono instead of mini and libmini.
2436
2437 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
2438
2439         * driver.c: provide the APIs for the embedding interface of the old jit.
2440
2441 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
2442
2443         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
2444
2445 2003-04-23  Martin Baulig  <martin@ximian.com>
2446
2447         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
2448
2449         * driver.c: Added `--debug' command line argument to enable
2450         debugging support.
2451
2452 2003-04-23  Martin Baulig  <martin@ximian.com>
2453
2454         * debug.[ch]: Removed.  The code is now in
2455         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
2456
2457         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
2458         last six months.
2459
2460 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
2461
2462         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
2463
2464 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2465
2466         * mini.c:
2467         (mini_cleanup): moved mono_runtime_cleanup call after the call to
2468         mono_domain_finalize.
2469         (mini_method_compile): use mono_method_profile* if the the option is
2470         enabled.
2471
2472 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
2473
2474         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
2475         methods with their wrapper.
2476
2477         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
2478         methods with their wrapper.
2479
2480         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
2481         their wrapper.
2482
2483         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
2484         wrapper.
2485
2486         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
2487         methods.
2488
2489 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
2490
2491         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
2492
2493 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
2494
2495         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
2496         of the mempool. This is slightly faster and uses less memory
2497
2498 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
2499
2500         * mini.c: avoid O(n) allocation for variables.
2501
2502 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
2503
2504         * mini.c: handle items on the stack after inlining methods.
2505
2506 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
2507
2508         * mini.c: make the method->opcode optimization dependent
2509         on MONO_OPT_INSTRINS and do it lazily.
2510
2511 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
2512
2513         * driver.c: print overall results at the end of regression run.
2514
2515 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
2516
2517         * inssel.brg: don't overwrite symbolic registers.
2518
2519 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
2520
2521         * inssel-x86.brg: fix conversion from long to float.
2522
2523 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
2524
2525         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
2526
2527 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
2528
2529         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
2530
2531         * driver.c: Added --print-vtable option as in the old JIT.
2532
2533 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
2534
2535         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
2536
2537 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
2538
2539         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
2540
2541 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
2542
2543         * mini.c regalloc.c regalloc.h: Fix memory leak.
2544
2545 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
2546
2547         * aot.c (mono_aot_get_method): register all used strings
2548
2549 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
2550
2551         * mini.c: always intern strings references with ldstr at compile time.
2552
2553 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
2554
2555         * Makefile.am: add BUILT_SOURCES.
2556
2557 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
2558
2559         * driver.c: give a better error message when the assembly to execute
2560         doesn't have an entry point.
2561
2562 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
2563
2564         * Makefile.am: added hack for automake
2565
2566         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
2567         correct sematics.
2568
2569         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
2570
2571 22003-04-07  Martin Baulig  <martin@ximian.com>
2572
2573         * Makefile.am: Added Makefile.am.
2574
2575         * debugger-main.c: Removed, this is now in the debugger where it
2576         belongs.
2577
2578         * mini.pc.in: Call this package `mini' for the moment.
2579
2580
2581