568f1f8d17ab27f17fb223894003d22dc390f44f
[mono.git] / mono / mini / ChangeLog
1 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
2
3         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
4         flags.
5
6         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
7
8         * aot.c (mono_compile_assembly): Fix a warning.
9
10 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
11
12         * declsec.c: Look for security attributes on the original MonoMethod 
13         (and not the wrapped one). This fix permissions on icalls.
14
15 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
16
17         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
18
19         * mini.c (mono_allocate_stack_slots): Add a fixme.
20
21         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
22
23 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24
25         * inssel.brg: optimize casts of sealed types (more
26         optimizations waiting for fixes in remoting).
27
28 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
29
30         * inssel.brg (stmt): Add another dummy rule.
31
32         * driver.c: Fix warnings.
33
34         * driver.c (mono_main): If running under valgrind, instruct glib to use
35         the system allocation functions so valgrind can track the memory
36         allocated by the g_... functions.
37
38         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
39
40         * mini-ops.h: Add OP_DUMMY_STORE opcode.
41
42         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
43
44         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
45         variables in try regions.
46
47         * mini.c (mini_method_compile): Don't disable optimizations on large
48         methods when AOT compiling.
49
50         * mini.c (mono_allocate_stack_slots): New arch independent method to 
51         allocate stack slots. Not yet used.
52
53 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
54
55         * debug-mini.c (mono_debug_close_method): Plug some leaks.
56
57 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
58
59         * mini-ppc.c: make the branch info relative as the code
60         buffer can be reallocated.
61
62 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
63
64         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
65         * driver.c: Removed the AOT/security restriction. Now initialize the
66         security manager (in metadata) if --security is used.
67         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
68         rather than the pointer to declarative security, when AOT is used.
69
70 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
71
72         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
73         basic blocks, reduced intrinsic exception throwing code size.
74
75 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
76
77         * driver.c (mini_usage): Reorder the usage screen.
78
79 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
80
81         * mini.c (mono_resolve_patch_target): Fix warning.
82
83 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
84
85         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
86         previous patch.
87
88         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
89
90         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
91         breaks the amd64 build.
92
93         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
94         register allocation. Fixes #71454.
95
96         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
97
98         * arrays.cs: Add new regression test.   
99
100 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
101
102         * ssapre.c: Turned usage of snprintf to GString.
103         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
104         (I left it on by mistake in my previous commit).
105
106 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
107
108         * mini.c, cfold.c, basic-calls.cs: preserve side effects
109         on cond branch optimization (fixes bug# 71515).
110
111 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
112
113         * abcremoval.c: Fixed bug 71062.
114         * abcremoval.h: Likewise.
115
116 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
117
118         * mini.c: Added a new functionality to optimize_branches, the removal
119         of useless basic blocks, and fixed some problem in the removal of
120         critical edges; some utility functions added for both purposes.
121         * ssapre.c: Added complex expression support, and fixed bug 70637.
122         * ssapre.h: Likewise.
123         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
124         enabled in SSAPRE.
125         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
126         * driver.c: Re-enabled SSAPRE.
127
128 2005-01-19  Martin Baulig  <martin@ximian.com>
129
130         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
131         the result of mono_get_method_constrained().
132
133 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
134
135         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
136         manager.
137
138 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
139
140         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
141         be detected.  Fixes #59296.
142
143 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
144
145         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
146         which can happen. Fixes #71361.
147
148 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
149
150         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
151         manager.
152
153 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
154
155         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
156         appdomain-unload.exe to fail.
157         
158         * mini.c: Fix some memory leaks.
159
160 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
161
162         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
163         Fixed bug and sped up some codepaths.
164
165 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
166
167         * mini.c: Fix some memory leaks.
168
169         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
170         conversion.
171
172         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
173
174         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
175         #71320.
176
177         * iltests.il: Add regression test for #71320.
178
179 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
180
181         * mini.c (mono_codegen): Fix installation of profiler hooks.
182
183         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
184
185 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
186
187         * mini.h, mini.c, cfold.c: optimize access to enum
188         readonly fields, too. Eval conditional branches if possible
189         to perform unreachable code removal in more cases.
190
191 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
192
193         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
194
195         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
196         code manager.
197
198         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
199         WinXP DEP. Fixes #71244.
200
201 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
202
203         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
204
205 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
206
207         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
208
209 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
210
211         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
212         changes.
213
214         * mini.h: Bump AOT version.
215
216         * mini.h (MonoCompile): Change exvar to a hash table.
217
218         * mini.c: Allocate a separate exvar for each handler block.
219
220         * mini.c: Get rid of the computation of filter_lengths, its not needed.
221
222         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
223         ex var with the pending exception and only throw if the two are equal.
224         Fixes #68552.
225         
226         * exceptions.cs: Add tests for rethrow and nested catch clauses.
227
228         * mini-x86.c: Fix warnings.
229
230         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
231         used by all the ports now.
232
233         * aot.c: Add write-symbols and save-temps options.
234
235 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
236
237         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
238
239 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
240
241         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
242         operations.
243
244         * tramp-s390.c: Check vtable slot belongs to the domain.
245
246         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
247         as per other platforms.
248
249         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
250
251 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
252
253         * driver.c: we don't run the Main() code in a subthread anymore.
254
255 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
256
257         * mini.c: added experimental rtc support in the statistical
258         profiler: if the user has the permission, more accurate statistics
259         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
260         The MONO_RTC value must be restricted to what the linux rtc allows:
261         power of two from 64 to 8192 Hz.
262
263 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
264
265         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
266
267 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
268
269         * mini-ppc.c: better icache flush for smp.
270
271 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
272
273         * mini-amd64.c (emit_move_return_value): Fix memory leak.
274
275         * mini-x86.c (get_call_info): Add the get_call_info () code from the
276         amd64 port, not yet used.
277
278 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
279
280         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
281         a struct type.
282
283 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
284
285         * driver.c: Added --security option to activate the security manager.
286         Right now this will allow code generation for declarative demands and
287         is disabled when AOT is specified.
288         * mini.c: Add code generation for declarative security demands.
289         * mini.h: Add mono_use_security_manager as an extern gboolean.
290
291 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
292
293         * aot.c (mono_compile_assembly): Speed up compilation a bit by
294         emitting more dense assembly code.
295
296         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
297         exception throwing stuff.
298
299 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
300
301         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
302         dead code.
303
304         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
305         left in by mistake.
306
307         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
308         fixed.
309
310         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
311
312         * tramp-*.c: Only patch vtable slots if the object is in the current
313         domain. Fixes appdomain-unload.exe.
314
315         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
316         
317         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
318         x86 branch.
319
320 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
321
322         * mini.c (reverse_branch_op): New helper function.
323
324         * mini.c (optimize_branches): Run the new optimization only on 
325         platforms which support it. Also reverse all kinds of branches.
326
327         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
328
329         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
330         a throw statement.
331
332         * mini.c (optimize_branches): Reverse not-equals branches if the false
333         bblock is a throw. This happens a lot of time with argument checking in
334         corlib.
335
336         * mini.c (mono_codegen): Add support for placing basic blocks after
337         the function epilogue.
338
339         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
340         function epilogue.
341         
342 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
343
344         * mini.c (setup_stat_profiler): Only set this up if the platform
345         supports ITIMER_PROF.
346
347 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
348
349         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
350         previous patch.
351
352         * inssel.brg: Fix a warning.
353
354 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
355
356         * mini.c: added support for statistical profiler 
357         (run with: --profile=default:stat).
358
359 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
360
361         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
362
363         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
364
365         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
366         related to global registers from the amd64 port.
367
368 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
369
370         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
371
372         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
373         with global registers.
374         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
375
376         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
377
378 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
379
380         * debug-mini.c (encode_value): Fix off-by-one.
381
382         * aot.c (encode_value): Likewise.
383
384         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
385
386 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
387
388         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
389         AOT.
390
391         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
392         
393         * aot.c (emit_method_info): Increase size of temp buffer.
394
395         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
396         the AOT case.
397
398 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
399
400         * aot.c (emit_method_info): Fix build.
401         
402         * aot.c: Further rework of the AOT file format to reduce the size of
403         the method info data.
404
405         * mini.h: Bump AOT file format version.
406
407 2004-12-27  Martin Baulig  <martin@ximian.com>
408
409         * mini.c (mini_get_method): New static method; call
410         mono_get_method_full() and mono_get_inflated_method().
411         (mono_method_to_ir): Use mini_get_method() instead of
412         mono_get_method_full(). 
413
414 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
415
416         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
417
418 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
419
420         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
421
422         * inssel-amd64.brg: Add some optimization rules.
423
424 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
425
426         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
427         standard not GC'd stuff is fine.
428
429 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
430
431         * aot.c: Rework the AOT file format to get rid of most of the global
432         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
433
434         * mini.h: Bump AOT file format version.
435         
436 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
437
438         * mini.h: Bump AOT file format version.
439
440         * aot.c (mono_aot_is_got_entry): New function to determine if an 
441         address is inside a GOT.
442
443         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
444
445         * cpu-pentium.md: Increase the maximum size of some instructions which
446         might involve a got access.
447         
448         * mini.c (get_method_from_ip): Another debug helper function.
449
450         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
451         when got var accesses are created during the decompose phase.
452
453         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
454
455         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
456         argument mini_compile_method and to MonoCompile, and use this to
457         determine whenever a given method is compiled for AOT. This allows the
458         other methods compiled during AOT compilation to be free of AOT stuff,
459         so the backends does not need to add special support for them by
460         creating a fake GOT etc.
461
462         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
463         longer needed.
464
465 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
466
467         * mini.c (mono_method_to_ir): It turns out that some of the
468         x-appdomain wrappers are lax with types, so just ignore this for
469         all wrappers.
470
471         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
472         at the vtable->klass. If it is non-shared code we can just use the
473         vtable.
474
475 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
476
477         * mini-ppc.c: access MonoDomain from tls, too.
478
479 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
480
481         * declsec.c: Removed unused variable (and related warning ;-)
482
483 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
484
485         * iltests.il: New test for LDELEMA on an array of ref types.
486
487         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
488         all ldelema's on reftypes.
489         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
490         it was the wrong place to put it.
491
492         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
493         register to pop to make this cleaner, at the request of Paolo.
494
495 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
496
497         * mini-ops.h (OP_GETHASHCODE): New op.
498
499         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
500
501         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
502         operation.
503
504         For a microbenchmark, this reduces the cost of Hashtable.get_Item
505         by 25%.
506         
507         * mini-x86.c (mono_arch_output_basic_block): Rather than
508
509         add ebp, 4
510
511         Emit
512
513         pop edx
514
515         The first is 3 bytes while the second is 1. This saves 36 kb on
516         mscorlib, quite a big saving. When bootstraping mcs, I was able to
517         see a small boost because of icache locality.
518
519         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
520
521 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
522
523         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
524         started code sharing with the generic code.
525
526 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
527
528         * mini-ppc.c, cpu-g4.md: added code for direct access to
529         tls data slots.
530
531 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
532
533         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
534          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
535         to OP_TLS_GET.
536
537 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
538
539         * declsec.c|h: Added functions to cache the declarative stack modifiers
540         in MonoJitInfo and to create a security frame from a MonoJitInfo 
541         structure.
542         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
543         created. Register internal calls for System.Security.SecurityFrame::
544         _GetSecurityFrame and _GetSecurityStack.
545         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
546         the definitions for the new stack walk/callback mechanism.
547         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
548         first security frame for LinkDemands and InheritanceDemands) and
549         GetSecurityStack for Demands. Both use the new mono_walk_stack code
550         from lupus.
551         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
552         walk initialization (lupus).
553
554 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
555
556         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
557         idiom.
558         (handle_loaded_temps): Do not create a temporary variable for
559         things that we know are temps. They will never be modified.
560         (mono_spill_call): Set MONO_INST_IS_TEMP
561         (mono_emulate_opcode): ditto
562         (emit_tree): ditto
563         (mono_method_to_ir.CEE_DUP): ditto
564
565 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
566
567         * mini.c (type_to_eval_stack_type): Make this handle the void type
568         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
569         (emit_tree): use ip_in_bb to special case some common idioms
570         Update all callers to pass in the IP.
571         (mono_method_to_ir): Make CEE_CALL* do the above as well.
572
573         This gives us a nice 2% speedup in mcs bootstrap.
574
575         * mini-x86.c (peephole_pass): Peephole pass to make
576         mov  [foo], eax
577         push [foo]
578
579         into
580
581         mov [foo], eax
582         push eax
583
584         * mini.c (ip_in_bb): new method.
585         (mono_method_to_ir): use this method rather than doing the hash
586         lookup ourselves.
587
588         * linear-scan.c (mono_linear_scan): When expiring actives, you
589         don't need to keep around variables that expire on this
590         instruction. This makes it so that:
591              a = b + 1
592         will turn into:
593              store (ebx add (ebx, 1))
594         which will become
595              add ebx, 1
596
597 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
598
599         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
600         combination to avoid doing two copies. Fix up problems with previous
601         patch.
602
603         * mini.c: Fix 64 bit warnings.
604
605         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
606
607 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
608
609         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
610         changes from the x86 code.
611
612         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
613
614 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
615
616         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
617         throwing code to reduce its size, unify the AOT and non-aot code and 
618         get rid of relocations in the AOT case.
619
620         * mini-x86.h mini.c exceptions-x86.c 
621         (mono_arch_get_throw_corlib_exception): New arch specific function to 
622         raise corlib exceptions which doesn't require relocations in the 
623         caller.
624
625         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
626
627 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
628
629         * mini.c (mono_emit_method_call): Only allocate the got var when it is
630         needed.
631
632         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
633         in the AOT case.
634
635 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
636
637         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
638         with add function when used from Inc/dec atomic 
639         functions. Re-enabled optimization on x86.
640         * mini-ops.h: renamed atomic_add functions to
641         allow _add to match the Interlocked::Add and
642         _add_next to match Interlocked::Inc/Dec.
643
644 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
645
646         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
647         linking of BBs to the end BB, and enabled SSAPRE also with
648         consprop and copyprop (which was prevented by that bug).
649
650 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
651
652         * mini-x86.c: disabling the Interlocked optimizing code. 
653
654 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
655
656         * aot.c (load_aot_module): Move reading of got_addr after the AOT
657         file version check.
658         
659 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
660
661         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
662         interlocked optimization due lack of support on x86, rewrote 
663         exchange to take into account that base may be in eax.
664         
665         xsp works again; activated Interlocked optimizing code.
666         
667 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
668
669         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
670
671 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
672
673         * mini-ops.h: Add new opcodes.
674
675         * mini.h: Add new patch types. Add got_var to MonoCompile.
676
677         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
678         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
679         make it work with all kinds of patchable code.
680
681         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
682         address of the GOT, and referencing entries in the GOT.
683
684         * mini.c: Add code to load the GOT address if needed by an opcode.
685
686         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
687         independent AOT code on the x86 using an elf-style Global Offset Table.
688
689 2004-12-14  Raja R Harinath  <rharinath@novell.com>
690
691         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
692
693 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
694
695         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
696         when running xsp.
697
698 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
699
700         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
701         of Interlocked:Increment/Decrement/Add as inline ops.
702         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
703
704 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
705
706         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
707         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
708
709 2004-12-12  Duncan Mak  <duncan@ximian.com>
710
711         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
712         again. `patch_info->table_size' is no longer valid after Zoltan's
713         commit #37636.
714
715 2004-12-12  Martin Baulig  <martin@ximian.com>
716
717         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
718         if we are the "real" method, ie. not an inlined method inside it.
719
720 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
721
722         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
723         before we look in the special fields table. This fixes
724         ../tests/thread-static-init.cs.
725
726 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
727
728         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
729         for Array get_Rank and get_Length. Fixes bug #70465.
730
731 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
732
733         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
734         separate structure to reduce the size of MonoJumpInfo.
735
736 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
737
738         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
739
740 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
741
742         * mini.c (mini_get_inst_for_method): Changed to allow ports
743         to return a MonoInst instead of opcode 
744         (renamed mini_get_opcode_for_method to better reflect the new functionality)
745         
746         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
747         Allow ports to return a created MonoInst instead of op-code, will enable
748         new optimizations.
749         (renamed mini_get_opcode_for_method to better reflected the functionality)
750
751 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
752
753         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
754
755 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
756
757         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
758         Fixes #69985.
759
760 2004-12-08  Martin Baulig  <martin@ximian.com>
761
762         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
763         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
764
765 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
766
767         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
768         correctly.
769
770         * exceptions.cs: Disable some tests which depend on properties of x86 fp
771         arithmetic.
772
773 2004-12-08  Raja R Harinath  <rharinath@novell.com>
774
775         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
776
777 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
778
779         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
780         bug introduced by the previous patch.
781
782 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
783
784         * mini-ppc.c, objectc.cs: handle large structs passed by value
785         (fixes bug #69972).
786
787 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
788
789         * mini-ppc.c: OP_ARGLIST implementation from
790         Geoff Norton  <gnorton@customerdna.com>.
791
792 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
793
794         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
795         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
796
797 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
798
799         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
800
801 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
802
803         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
804         support.
805
806 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
807
808         * mini-sparc.c: Zero out localled-ed memory.
809
810         * iltests.il: Add tests for zeroing out localloc-ed memory.
811
812 2004-12-04  Martin Baulig  <martin@ximian.com>
813
814         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
815         mono_method_get_signature_full().       
816
817 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
818
819         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
820         and some utility functions (always for SSAPRE), integrated SSAPRE.
821         * mini.h: Likewise.
822         * driver.c: Added ssapre option.
823         * ssa.c: Small fix on OP_ARG handling.
824         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
825         * Makefile.am: Likewise.
826
827 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
828
829         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
830         now in the xp code.
831
832         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
833         icall.
834
835 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
836
837         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
838         
839         * cpu-s390.md : Increase instruction length of oparglist.
840
841         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
842
843 2004-11-30  Martin Baulig  <martin@ximian.com>
844
845         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
846         virtual generic methods.  We call a special helper_compile_generic_method()
847         icall to retrieve the method from the vtable, inflate and compile
848         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
849
850         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
851
852 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
853
854         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
855
856 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
857
858         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
859         Fixes #69929.
860
861 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
862
863         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
864         platforms with PIC aot.
865
866 2004-11-28  Martin Baulig  <martin@ximian.com>
867
868         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
869         Fixes gen-112.cs.
870
871 2004-11-28  Martin Baulig  <martin@ximian.com>
872
873         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
874         the result of mono_type_get_underlying_type() to check whether
875         we're byref.
876
877 2004-11-26  Martin Baulig  <martin@ximian.com>
878
879         * mini.c
880         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
881         in the g_assert().
882
883 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
884
885         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
886         the same way as the other arguments so they won't get clobbered.
887
888         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
889         calls through R11 since it is clobbered by the trampoline code.
890
891 2004-11-26  Raja R Harinath  <rharinath@novell.com>
892
893         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
894         pick up in-tree mscorlib.dll.
895
896 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
897
898         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
899
900         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
901         runtime data/code are now stored in a table similar to the GOT in ELF. 
902         This allows the code itself to be position independent.
903
904         * aot.c: Fix loading of referenced assemblies after the lazy assembly
905         loading changes.
906
907         * aot.c: Attach ELF type (object/function) directives to all global
908         symbols.
909
910         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
911
912         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
913
914         * mini-amd64.h: Turn on PIC AOT code.
915
916         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
917         returning the offset within an OP_AOTCONST instruction where the GOT
918         offset needs to be added.
919
920         * mini.h: Bump AOT file format version.
921
922 2004-11-25  Martin Baulig  <martin@ximian.com>
923
924         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
925         uninflated generic methods.
926
927 2004-11-25  Martin Baulig  <martin@ximian.com>
928
929         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
930
931 2004-11-24  Martin Baulig  <martin@ximian.com>
932
933         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
934         original klass (this only applies for generic instances).
935
936 2004-11-24  Martin Baulig  <martin@ximian.com>
937
938         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
939         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
940         that array).
941
942 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
943
944         * mini.c (mono_method_to_ir): Disable inlining for methods containing
945         localloc. Fixes #69678.
946
947         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
948         
949 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
950
951         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
952         used SSE registers on pinvoke calls. Fixes #69774.
953
954 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
955
956         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
957         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
958
959 2004-11-23  Raja R Harinath  <rharinath@novell.com>
960
961         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
962         Refer directly to the mcs/ tree.
963
964 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
965
966         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
967         Check if a trampoline for a synchronized method is required. 
968
969 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
970
971         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
972         with localloc if needed. Throe arithmetric exception in
973         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
974         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
975
976 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
977
978         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
979         types before switching on type.  Fixes #69622.
980
981 2004-11-19  Raja R Harinath  <rharinath@novell.com>
982
983         * Makefile.am (check-local): New.  Integrate into 'make check'.
984         (MCS,RUNTIME): Define using in-tree mono and mcs.
985         (ILASM): New.
986         (%.exe): Use $(ILASM).
987
988 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
989
990         * mini-ppc.c: adjust initial prolog size (bug #69691).
991
992 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
993
994         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
995         #69664.
996
997 2004-11-17  Raja R Harinath  <rharinath@novell.com>
998
999         * Makefile.am (clean-local): Rename from 'clean'.
1000
1001 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1002
1003         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
1004         to mono_arch_is_int_overflow. 
1005         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
1006         SIGFPE events.
1007
1008 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1009
1010         * declsec.c|h: New files to support declarative security attributes.
1011         Added function to check if a method has (applicable) security.
1012         * mini.c|h: Add check for declarative security attributes in
1013         mono_method_check_inlining.
1014         * Makefile.am: Added declsec.c and declsec.h to the build.
1015
1016 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
1017
1018         * mini.c, mini.h: update to keep dynamic code info per-domain.
1019
1020 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1021
1022         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
1023         (mini_init): Get rid of it from here too.
1024
1025 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
1026
1027         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
1028         implemented OP_RETHROW (patch by Geoff Norton
1029         <gnorton@customerdna.com>).
1030
1031 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
1032
1033         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
1034         between appdomains.  Fixes appdomain-unload on PPC.
1035
1036 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
1037
1038         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
1039         mini-exceptions.c: handle the new wrapper types.
1040         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
1041         token value as a MonoClass* when compiling a wrapper.
1042         mono_jit_create_remoting_trampoline now takes an additional
1043         MonoRemotingTarget parameter.
1044         
1045 2004-11-10  Martin Baulig  <martin@localhost>
1046
1047         * mini.c (mono_method_to_ir): Use `generic_container->context'
1048         rather than creating a new one.
1049
1050 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1051
1052         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
1053
1054         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
1055
1056 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1057
1058         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
1059         the experimental aot cache stuff.
1060
1061 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
1062
1063         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
1064         mini-exceptions.c: update to exception clause structure changes.
1065
1066 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1067
1068         * exceptions-x86.c (throw_exception): Fix warnings.
1069
1070         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
1071         for OP_RETHROW.
1072
1073 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1074
1075         * exceptions-sparc.c (get_throw_exception): Really fix this.
1076
1077 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1078
1079         * tramp-*.c: we no longer support icalls without wrappers, so
1080         a bit of code can be removed here
1081
1082 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
1083
1084         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
1085         patch.
1086
1087         * cpu-sparc.md: Add op_rethrow.
1088
1089         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
1090
1091         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
1092
1093         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
1094         * mini-ops.h: Add OP_RETHROW.
1095
1096         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
1097
1098         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
1099
1100 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1101         
1102         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
1103         Makes the output much easier to read
1104
1105 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
1106
1107         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
1108         prevents another huge leak when compiling with ssa. Secondly, the
1109         performance of doing this rather than freeing the lists is much
1110         better. GList does a lock every time you allocate a list link,
1111         so that it can use a memory pool. So, it is better to just use
1112         a memory pool of our own.
1113         
1114         * ssa.c, linear-scan.c: replace g_list_remove_link with
1115         g_list_delete.  The remove one does not free the GList, so we were
1116         leaking memory. On -O=all --compile-all with corlib, this cut down
1117         3 MB of allocations.
1118
1119 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1120
1121         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
1122
1123         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
1124
1125         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
1126         into a new function mono_create_jit_trampoline ().
1127
1128 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1129
1130         * trace.c (get_spec): Allow tracing of classes without a namespace.
1131
1132 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
1133
1134         * mini.c: Fix pointer overwrite in mini_method_compile.
1135
1136 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
1137
1138         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
1139         The darwin ABI needs some special handling for 1 and 2 byte structs
1140         Lets use lbz/lhz instead of lwz everywhere.
1141         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
1142         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
1143         Use stb/sth for the former, and put the latter always on stack instead of in
1144         argument registers.
1145
1146 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
1147
1148         * trace.c (is_filenamechar): Add '_'.
1149
1150 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
1151
1152         * mini-s390.c: Fix prolog length to allow for large trace requirements.
1153
1154         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
1155
1156 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
1157
1158         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
1159         depends on libmonogc. Fixes #68805.
1160
1161 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
1162
1163         * mini.c (mono_jit_free_method): Provide extra information for
1164         this error.  Currently this leaks, but will be turned into a
1165         developer option in the future.
1166
1167 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
1168
1169         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
1170
1171 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1172
1173         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
1174         boundary. Fixes reading of PATCH_INFO_R4 and R8.
1175         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
1176
1177 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
1178
1179         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
1180         trampolines for AOT code.
1181
1182 2004-10-22    <vargaz@freemail.hu>
1183
1184         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
1185         constructed types. Fixes #68136.
1186
1187 2004-10-21  Martin Baulig  <martin@ximian.com>
1188
1189         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
1190         if it returns true, unwind the stack to the call instruction.
1191
1192 2004-10-21    <vargaz@freemail.hu>
1193
1194         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
1195
1196         * mini.h: Bump AOT version number.
1197
1198         * objects.cs: Add another test for unbox trampolines.
1199
1200         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
1201         valuetype methods.
1202
1203 2004-10-20    <vargaz@freemail.hu>
1204
1205         * driver.c: Add SHARED to the set of optimizations tested.
1206
1207         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
1208
1209         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
1210         used by CEE_NEWARR.
1211
1212         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
1213
1214 2004-10-20  Martin Baulig  <martin@ximian.com>
1215
1216         * mini-exceptions.c (mono_handle_exception): Call
1217         mono_debugger_handle_exception() to tell the debugger about
1218         catch/finally clauses.
1219
1220 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1221
1222         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
1223
1224         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
1225         #68447.
1226
1227 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
1228
1229         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
1230         methods as their native size, fixed bug #57543, #57545.
1231         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
1232         This saves a temporary register and mullw call down into 1 (minor perf
1233         increase for cases like sum = sum * 5;  This use to translate into:
1234             li r11,5
1235             mullw r28,r28,r11
1236         It now translates to
1237             mulli r28,r28,5
1238
1239 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
1240
1241         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
1242         #68388.
1243
1244 2004-10-11  Martin Baulig  <martin@ximian.com>
1245
1246         * mini.c (mono_method_to_ir): If we're a generic method, get the
1247         MonoGenericContainer from our MonoMethodNormal and create a
1248         MonoGenericContext from it.
1249
1250 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1251
1252         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
1253
1254         * basic-long.cs: Add test for checked i8->i2 cast.
1255
1256 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
1257
1258         * inssel-ppc.brg: added a couple of speedup rules.
1259
1260 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1261
1262         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
1263         to speed up rebuilds.
1264
1265 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1266
1267         * mini-s390.c: Minor fix to OP_OR_IMM.
1268
1269 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1270
1271         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
1272         better. Fixes appdomain-unload.exe on sparc.
1273
1274 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1275
1276         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
1277         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
1278         see bug 67324.
1279
1280 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
1281
1282         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
1283
1284 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1285
1286         * mini.c: Always generate a field read/write wrapper for members
1287         of the class MarshalByRefObject since the actual instance could
1288         be a CBO.
1289
1290 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1291
1292         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
1293
1294 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1295
1296         * driver.c mini.h trace.c: Move the setting of the main assembly into
1297         a separate function called mono_trace_set_assembly () and call it after
1298         actually loading the main assembly. Fixes #66872.
1299
1300 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1301
1302         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
1303         using the code manager.
1304
1305 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1306
1307         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
1308
1309 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1310
1311         * cpu-amd64.md: Fix bug in previous patch.
1312         
1313         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
1314         #66650.
1315
1316 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
1317
1318         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
1319         mini-exceptions.c: updates for changed stack walk interface.
1320
1321 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1322
1323         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
1324
1325 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1326
1327         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
1328
1329 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1330
1331         * driver.c (mini_regression_list): Do not call mono_assembly_close 
1332         since assemblies can't be unloaded.
1333         
1334 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1335
1336         * cpu-amd64.md: Fix more instruction lengths.
1337
1338         * cpu-amd64.md: Fix lengths of some instructions.
1339
1340 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
1341
1342         * inssel.brg: Make the array ldelema check aot friendly.
1343
1344 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1345
1346         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
1347
1348         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
1349
1350 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1351
1352         * mini-x86.c: Fix build.
1353
1354         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
1355         mono_type_get_underlying_type () helper function to simplify code.
1356         
1357 2004-09-09  Martin Baulig  <martin@ximian.com>
1358
1359         * mini-amd64.c: Don't access `type->data.klass' directly, call
1360         mono_class_from_mono_type() instead since the type may be a
1361         generic instance.
1362
1363 2004-09-09  Martin Baulig  <martin@ximian.com>
1364
1365         * mini-amd64.c (get_call_info): Fix support for generic instances.
1366         (add_valuetype): Use mono_class_from_mono_type() to get the class
1367         since we can be a generic instance.
1368
1369 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
1370
1371         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
1372
1373 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
1374
1375         * liveness.c: reset spill costs on each scan: bug 62107
1376
1377 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
1378
1379         * exceptions-sparc.c (mono_arch_find_jit_info): remove
1380         unnecessary line that doesn't compile
1381
1382 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1383
1384         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
1385         trampolines, make them call an error function so people can fix their
1386         code.
1387
1388 2004-09-06  Martin Baulig  <martin@ximian.com>
1389
1390         * mini.c (mono_method_to_ir): When initializing locals, handle a
1391         generic instances like a valuetype if it's a valuetype and like a
1392         class if it's a class.
1393
1394 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1395
1396         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
1397         stack. Fixes #64674.
1398
1399         * exceptions.cs: Add test for unwinding of call arguments.
1400
1401 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
1402
1403         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
1404         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
1405         set the carry/borrow flag). The sparc and s390 implementations
1406         can now use optimized versions (and simplify the code). ppc bugfixes.
1407
1408 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1409
1410         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
1411
1412 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
1413
1414         * inssel-amd64.brg: Remove leftover 32 bit rule.
1415
1416         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
1417
1418 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
1419
1420         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
1421         mono_arch_find_jit_info functions into a new function. Fix a memory
1422         leak.
1423
1424         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
1425         refactored code.
1426         
1427 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1428
1429         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
1430         as well.
1431         
1432         * exceptions.cs: Add array size tests.
1433
1434         * mini.c: Allocate a separate icall wrapper for each arity of 
1435         mono_array_new_va. Fixes #59509.
1436
1437         * exceptions.cs: Add testcase for 64578.
1438
1439         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
1440
1441         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
1442         
1443 2004-09-02  Martin Baulig  <martin@ximian.com>
1444
1445         * mini.c (mono_method_to_ir): When initializing the locals, call
1446         handle_initobj() on the generic instance itself, not its
1447         underlying type.
1448
1449 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1450
1451         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
1452         MonoJitInfo for dynamic methods.
1453
1454         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
1455
1456         * mini.c: Add support for freeing JIT data for dynamic methods.
1457         
1458 2004-09-01  Martin Baulig  <martin@ximian.com>
1459
1460         * mini-x86.c (is_regsize_var): Added support for generic
1461         instances.
1462         (mono_arch_emit_prolog): Make this compile again, use
1463         `x86_push_imm_template (code)'.
1464
1465 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
1466
1467         * mini-x86.c: make all push_imm instructions that get
1468         patched always emit the long form
1469
1470 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
1471
1472         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
1473         in a per-domain hash.
1474
1475         * mini-amd64.c (merge_argument_class_from_type): Handle generic
1476         types.
1477
1478 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
1479
1480         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
1481         work.
1482         
1483         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
1484         work.
1485
1486         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
1487         Beginnings of SSE2 support.
1488
1489         * exceptions.cs: Add more tests for checked int<->uint casts.
1490
1491 2004-08-28  Martin Baulig  <martin@ximian.com>
1492
1493         * mini-x86.c (mono_arch_instrument_epilog): Added support for
1494         generic instances.
1495
1496         * mini.c
1497         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
1498         Handle generic instances recursively.
1499
1500 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
1501
1502         * iltests.il: test for conv.u8 on a constant
1503
1504 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
1505
1506         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
1507         LCONV_x4 (shrun_32 (membase)).
1508
1509 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
1510
1511         * inssel-x86.brg: c&p rules for push/setret of long
1512
1513 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
1514
1515         * inssel-x86.brg: c&p rules for compare (base, regvar) and
1516         compare (regvar, base)
1517
1518         * inssel-x86.brg: more burg love
1519
1520         * inssel.brg: more cleanup
1521
1522         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
1523
1524 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
1525
1526         * basic-long.cs, basic-calls.cs: new tests for optimization.
1527
1528 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
1529
1530         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
1531         patch.
1532
1533 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1534
1535         * mini-amd64.c (read_tls_offset_from_method): Add another case.
1536         
1537 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
1538
1539         * inssel.brg (mini_emit_memcpy): use 
1540         NO_UNALIGNED_ACCESS to disable memcpy optimization
1541
1542 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1543
1544         * mini-amd64.c: Handle generic types in various places.
1545
1546         * mini.c (mono_method_to_ir): Handle generic types in init locals.
1547
1548 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
1549
1550         * mini.c (handle_box): Fix warning.
1551
1552         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
1553
1554         * mini-amd64.h: Enable the emit_state optimization.
1555
1556         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
1557
1558         * mini-amd64.c: Add some new 64 bit peephole opts.
1559
1560         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
1561
1562         * cpu-amd64.md: sreg1 of div instructions must be %rax.
1563
1564         * mini-amd64.c: Register allocator fixes.
1565
1566         * mini.c: Add an optimization to emit_state to avoid allocation of new
1567         registers on some platforms.
1568
1569 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
1570
1571         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
1572
1573         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
1574         allocation. Fixes #63085.
1575
1576         * basic-long.cs: Add new regression test.
1577
1578         * mini-amd64.c: Register allocator improvements.
1579
1580 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
1581
1582         * mini-amd64.c (read_tls_offset_from_method): Add another code
1583         sequence.
1584
1585         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
1586         instruction sequence for nullifying class init trampolines.
1587
1588         * objects.cs: Add new regalloc test.
1589
1590         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
1591
1592 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1593
1594         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
1595         
1596         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
1597         arguments.
1598
1599         * driver.c: Fix profiling after TLS changes.
1600         
1601         * driver.c (mono_main): Set mono_stats.enabled if needed.
1602
1603         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
1604         CEE_BOX.
1605
1606 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
1607
1608         * mini-x86.c: use a 1 op rather than a 2 op tls access
1609         instruction -> faster.
1610
1611 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1612
1613         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
1614         x86 backend.
1615
1616 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
1617
1618         * exceptions-sparc.c (throw_exception): fix typo
1619
1620 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
1621
1622         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
1623         set tree->dreg correctly with tls. Allow any
1624         register to be used.
1625
1626         * mini-x86.c (read_tls_offset_from_method): add new code
1627         generation pattern seen with GCC.
1628
1629
1630 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
1631
1632         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
1633         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
1634         exceptions-sparc.c: fix some performance issues in exception
1635         handling and setting of the stack trace for exceptions that were
1636         already thrown.
1637
1638 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1639
1640         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
1641         x86 backend.
1642         
1643         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
1644         registers.
1645
1646 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1647
1648         This patch inlines tls access, when possible.
1649         
1650         * mini.h: new arch functions for TLS intrinsics.
1651         All platforms updated with a stub.
1652
1653         * mini.c: use the new intrinsics
1654
1655         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
1656         arch specific intrinsic for tls variables
1657
1658 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1659
1660         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
1661         under windows.
1662
1663 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1664
1665         * mini.c: thread local allocation
1666
1667 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
1668
1669         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
1670
1671         * Makefile.am: Link against the static version of libmonogc.
1672         
1673         * Makefile.am: Link the static versions of the convenience libraries
1674         into the mono executable.
1675
1676         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
1677
1678 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
1679
1680         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
1681         on integer overflow.
1682
1683         * mini-amd64.c: Reorganize function call code.
1684
1685         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
1686
1687 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
1688
1689         * inssel-x86.brg: use xor eax,eax.
1690         
1691         * basic.cs: new tests
1692
1693 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1694
1695         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
1696         in exception throwing code.
1697         
1698 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
1699
1700         * inssel-x86.brg: use xor esi,esi.
1701
1702 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1703
1704         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
1705         can trace methods compiled during mini_init () too.
1706
1707         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
1708         CEE_CONV_U4.
1709
1710 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
1711
1712         * Makefile.am: static link on x86 (r=zoltan)
1713
1714 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1715
1716         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
1717         code since it causes some programs to fail.
1718
1719 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
1720
1721         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
1722
1723 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
1724
1725         * mini.c: ovfops_op_map - add STACK_OBJ case for
1726         CONV_I 
1727         * basic.cs: add test_0_pin_string as test
1728         case for above.
1729
1730 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
1731
1732         * Makefile.am: build C# if srcdir != builddir
1733
1734 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1735
1736         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
1737         fall-through blocks.
1738
1739 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
1740
1741         * driver.c: enable loop by default again and include abcrem in -O=all.
1742
1743 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
1744
1745         * iltests.il: Add some localloc tests.
1746
1747         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
1748
1749         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
1750         Fixes #62574.
1751
1752         * inssel-amd64.brg: Add some optimizations.
1753
1754         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
1755         for gcc-3.4.
1756
1757         * Makefile.am: Statically link mono against libmono on AMD64.
1758         
1759         * mini-amd64.c inssel-amd64.brg: Optimizations.
1760
1761 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
1762
1763         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
1764
1765         * tramp-amd64.c: Patch calling code in trampolines.
1766
1767 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
1768
1769         * mini-amd64.c: pinvoke struct passing fixes.
1770
1771 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
1772
1773         * mini-sparc.c: redo change, make mono_arch_cpu_init call
1774         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
1775
1776 2004-08-05  Duncan Mak  <duncan@ximian.com>
1777
1778         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
1779         CEE_LDELEM_ANY.
1780
1781 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1782
1783         * mini-amd64.c (emit_move_return_value): Move return value for normal
1784         calls too.
1785
1786 2004-08-05  Martin Baulig  <martin@ximian.com>
1787
1788         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
1789         `type->type'; just modify `type' itself when dealing with enums
1790         and generic instances.
1791         (check_call_signature): Make `simple_type' a `MonoType *'.
1792
1793 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1794
1795         * mini.c: Use OP_PADD to add offsets to addresses.
1796
1797         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
1798
1799 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
1800
1801         * mini-sparc.c (mono_arch_emit_epilog): fix check
1802         for folding last op into restore instruction
1803
1804 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1805
1806         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
1807         helper methods using the code manager.
1808         
1809         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
1810
1811         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
1812
1813 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1814         
1815         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
1816           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
1817
1818         * mini-s390.c: fix tail processing
1819
1820 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
1821
1822         * mini-ppc.c: mul.ovf.un exception name fix.
1823
1824 2004-08-03  Martin Baulig  <martin@ximian.com>
1825
1826         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
1827         instances; before jumping to `handle_enum', also modify `ptype'.
1828
1829 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
1830
1831         * cpu-sparc.md: fcall maximal length too small.
1832
1833 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
1834
1835         * mini-amd64.c mini.h: Add initial support for passing/returning 
1836         structures to/from pinvoked methods.
1837
1838 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
1839
1840         * mini-ppc.c: reg allocator fix.
1841
1842 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
1843
1844         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
1845
1846         * inssel.brg: Optimize memset on 64 bit machines.
1847
1848         * mini-amd64.c: Fix some vararg cases.
1849
1850 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1851
1852         * mini-s390.c: Corrected macro in emit_float_to_int
1853
1854         * s390-abi.cs: Tests to exercise the s390 ABI
1855
1856 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1857
1858         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
1859         caller saved regs.
1860
1861         * basic.cs: Add a test for add.ovf.un.
1862
1863 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
1864
1865         * mini-sparc.c: add case for OP_IDIV_UN
1866
1867 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1868
1869         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
1870         
1871         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
1872
1873 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
1874
1875         * basic.cs: regression tests.
1876
1877         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
1878         regressions.
1879
1880 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1881
1882         * basic.cs: Add a new test.
1883
1884         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
1885         and AOT. Various fixes and optimizations.
1886
1887         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
1888
1889 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1890
1891         * mini-ppc.c: make sure temp regs are not used for global reg
1892         allocation.
1893
1894 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
1895
1896         * cpu-sparc.md: conv_i8 fix for 64bits
1897
1898         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
1899
1900 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
1901         
1902         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
1903         add opcode for cmp BYTE PTR [eax], imm.
1904
1905         * inssel.brg: Make memcpy and memset takes bases.
1906
1907 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
1908
1909         * *-amd64.*: More AMD64 work.
1910         
1911 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
1912
1913         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
1914         add a compare-not-equal opcode.
1915         
1916 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
1917
1918         * mini.c: Use mono_init_from_assembly instead of mono_init.
1919         
1920 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
1921
1922         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
1923
1924         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
1925
1926         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
1927
1928         * inssel.brg: 64 bit fixes.
1929
1930         * mini.h (MonoCallInst): Add some AMD64 specific data.
1931
1932         * mini.h: Add some OP_P opcodes.
1933
1934 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
1935
1936         * basic.cs: tests for 61797 and 61740
1937
1938 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1939
1940         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
1941         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
1942
1943 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
1944
1945         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
1946
1947         * *-amd64*.*: Ongoing AMD64 work.
1948
1949 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
1950
1951         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
1952
1953         * *-amd64*: Ongoing AMD64 work.
1954
1955         * mini-arch.h: Add AMD64 support.
1956
1957         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
1958
1959         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
1960
1961         * mini-ops.h: Add new opcodes.
1962
1963         * Makefile.am: Add AMD64 support.
1964
1965         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
1966         rules into the inssel-long*.brg files.
1967
1968         * *-amd64.*: Add beginnings of AMD64 backend.
1969
1970 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
1971
1972         * mini.c (print_dfn): commenting out the code that prints
1973         the cil. With -O=deadce, this makes -v -v crash.
1974         
1975         * cpu-pentium.md: make checkthis have a length of 2
1976
1977 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
1978
1979         * mini-sparc.h: fix implementations of __builtin
1980         functions for Sun compiler for V9.
1981
1982 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
1983
1984         * mini.c: use the new stelem.ref wrapper
1985         * exceptions.cs, arrays.cs: new stelem.ref tests
1986
1987 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1988
1989         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
1990         new XSP should work with these changes).
1991
1992 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
1993         
1994         * inssel-{long32,x86,}.brg: trivial optimizations.
1995         
1996 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
1997
1998         * mini.c: load value when emitting box operation in
1999         constrained calls.
2000
2001 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
2002
2003         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
2004         is one byte shorter than cmp DWORD PTR [eax], 0.
2005
2006 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
2007
2008         * inssel-ppc.brg: arguments on the stack are always
2009         relative to the stack pointer (spotted by Neale Ferguson).
2010
2011 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2012
2013         * exceptions-x86.c: delay appending the method name to the trace until
2014         after mono_jit_info_table_find is called, as this gets the real
2015         MonoMethod.
2016
2017 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2018
2019         * aot.c: register roots
2020
2021 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
2022
2023         * aot.c : I could just use PLATFORM_WIN32 flag.
2024
2025 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
2026
2027         * aot.c : Reverting the previous fix. This time it broke linux build.
2028
2029 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
2030
2031         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
2032
2033 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2034
2035         * mini.c (handle_stack_args): Remove some more debugging code.
2036         
2037         * mini.c (handle_stack_args): Remove debug output left in by mistake.
2038
2039         * driver.c mini.h aot.c: Allow additional options to be specified with
2040         --aot and pass them to mono_compile_assembly.
2041
2042         * aot.c: Add experimental code to AOT compile all loaded assemblies
2043         on demand and save the code into a cache in the filesystem.
2044
2045         * aot.c: Add support for more wrapper methods.
2046         
2047         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
2048         58863.
2049
2050         * cpu-*.md: Remove removed opcodes.
2051
2052         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
2053         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
2054         related icalls to marshal.c.
2055
2056 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
2057
2058         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
2059
2060         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
2061
2062         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
2063
2064 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2065         * liveness.c: If liveness is recomputated we need to reset the information
2066         for each variable. This way, if the liveness range has been narrowed
2067         by optimizations that happened after the last computation, we can return
2068         a smaller range.
2069         
2070         For example, if you have
2071         
2072         {
2073                 int i = 0;
2074                 
2075                 // Tons of code that does not affect i
2076                 
2077                 i = foo ();
2078                 ...
2079         }
2080         
2081         i = 0 is dead code and will be removed by SSA. However, when
2082         linear scan gets to the code, i will still appear to be live
2083         throughout the entire block. This prevents good register allocation.
2084
2085 2004-07-06  Martin Baulig  <martin@ximian.com>
2086
2087         * debug-mini.c (mono_debug_init_method): Allow
2088         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
2089         (mono_debug_add_icall_wrapper): New method.
2090
2091         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
2092
2093 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2094
2095         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
2096         optimization.
2097
2098 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2099
2100         * aot.c (mono_aot_load_method): Fix loading of debug info.
2101
2102 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2103
2104         * aot.c: Add logging support.
2105
2106 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
2107
2108         * mini.h: Add prototype for mono_print_method_from_ip.
2109
2110         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
2111
2112         * inssel.brg: 64 bit fixes.
2113
2114         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
2115         inssel-long32.brg.
2116
2117         * Makefile.am: Add SPARC64 support.
2118
2119 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2120
2121         * aot.c: Fix alignment problems on 32 bit platforms.
2122
2123 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
2124
2125         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
2126         SPARC64.
2127
2128         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
2129         problems.
2130
2131         * mini.h: Bump AOT file version. Some 64 bit fixes.
2132
2133 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2134
2135         * inssel-sparc.brg: Add new rule to avoid register moves.
2136
2137         * inssel.brg: Add ldind_to_load_membase helper function.
2138
2139 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2140
2141         * mini.c: OffsetToStringData intrinsic.
2142         
2143 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2144
2145         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
2146
2147         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
2148         regression tests.
2149
2150         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
2151 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
2152
2153         * mini.c: reinstated mono_compile_get_interface_var()
2154         on x86, too, since the change breaks the Gtk# build there as well.
2155
2156 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2157
2158         * driver.c: remove loop from the default optimizations: it seems to
2159         interact badly with some of the other options (see bug #60613).
2160
2161 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
2162
2163         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
2164         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
2165
2166 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
2167
2168         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
2169         vararg-using methods.
2170
2171 2004-06-21  Martin Baulig  <martin@ximian.com>
2172
2173         * mini/mini-exceptions.c
2174         (mono_handle_exception): Added `gpointer original_ip' argument.
2175         After calling mono_unhandled_exception(), call
2176         mono_debugger_unhandled_exception() and if that returns true,
2177         restore the context and return.
2178
2179 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2180
2181         * mini-ppc.c: prefer the use of relative branches so
2182         they won't need to be patched in aot code (patch from Patrick Beard).
2183
2184 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
2185
2186         * aot.c: patch from Patrick Beard to make the output assembly
2187         more correct for the MacOSX assembler. Small tweak to
2188         generate sane images on Linux/PPC, too.
2189
2190 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2191
2192         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
2193         case until bug #59509 is fixed (shows up in #60332).
2194
2195 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2196
2197         * mini.c: make sure the needed wrappers are compiled, too, with
2198         precomp.
2199
2200 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
2201
2202         * driver.c: remove NPTL reference in --version output.
2203
2204 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2205
2206         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
2207         generate valid assembly for the Mach-O assembler.
2208
2209 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
2210
2211         * driver.c: don't include abcrem in the all optimization specifier
2212         since it slows down jit compilation too much for now.
2213
2214 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
2215
2216         * mini.c: use BIGMUL only if both operands have the same signage.
2217         * iltests.il: Test for bug 60056. (errors related to signage in
2218         BIGMUL).
2219
2220         r=lupus.
2221
2222 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
2223
2224         * mini.c, aot.c: memory leak fixes.
2225
2226 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2227
2228         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
2229
2230 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
2231
2232         * Makefile.am: remove the -static hack completely, it links in
2233         statically glib as well.
2234
2235 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
2236
2237         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
2238         * exceptions.cs: make it compile with new mcs/csc.
2239
2240 2004-06-03 Massimiliano Mantione <massi@ximian.com>
2241         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
2242         and added relevant test case.
2243
2244 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
2245
2246         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
2247         regressions in gtk-sharp.
2248
2249 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
2250
2251         * exceptions.cs: New regression tests.
2252
2253         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
2254
2255 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2256
2257         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
2258
2259 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
2260
2261         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
2262
2263         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
2264
2265 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
2266
2267         * mini.c (mono_jit_runtime_invoke): Init class in this
2268         method instead of trusting mono_jit_compile_method to
2269         do the work (because wrappers can be in object class)
2270
2271 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
2272
2273         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
2274
2275         * basic-long.cs: New regression test.
2276
2277 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
2278
2279         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
2280         and div/rem checks.
2281
2282 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2283
2284         * Makefile.am: fix miguel's change to build mono statically against
2285         libmono (track build dependencies).
2286
2287 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2288
2289         * cfold.c: Some glib versions do not have G_MININT32.
2290
2291 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
2292
2293         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
2294         with precision of tan, atan, sin and cos, and implemented related
2295         regressions tests (fixes bug 54467, but one new problem appeared and
2296         is not fixed yet).
2297
2298 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2299
2300         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
2301
2302         * exceptions.cs: Add test for constant folding && division by zero.
2303
2304         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
2305         since driver.c is in libmono too, so the optimization was useless.
2306
2307         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
2308         variable to driver.c so the compiler can emit more efficient code to
2309         access them.
2310
2311 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2312
2313         * Makefile.am: don't distribute generated inssel.[ch] files.
2314
2315 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2316
2317         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
2318         into the default appdomain. Fixes #58707.
2319
2320         * jit-icalls.c: Remove the broken approximation for truncl, doing
2321         no conversion is better.
2322
2323         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
2324         Fixes #58863.
2325
2326 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
2327
2328         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
2329         of the mcrxr instruction which is not available on some processors
2330         even if it's documented to be. Implement add and sub overflow correctly
2331         (still not complete for long unsigned). Speed up icalls a bit.
2332
2333 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
2334
2335         * mini.c (mono_jit_compile_method_with_opt): Make sure that
2336         we run .cctor in the current domain instead of target_domain.
2337         
2338         Fixes bug #58558, .cctor not being called in -O=shared.
2339
2340 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2341
2342         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
2343
2344 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
2345
2346         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
2347         which can be done with an imm8, do it that way.
2348         (mono_arch_output_basic_block): ditto for a jmp
2349         (mono_arch_emit_prolog): Computate maximum offset of a label.
2350
2351 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
2352
2353         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
2354         now tries to allocate prefered physical reg's for virtual
2355         regs. This reduces the number of emited spills/loads with
2356         20-30% on our core assemblies.
2357
2358 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2359
2360         * jit-icalls.c: truncl() is not needed and trunc() is
2361         the correct thing to do anyway (bug #58287).
2362
2363 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
2364
2365         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
2366         if available.
2367
2368 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2369
2370         * driver.c: enable loop optimizations by default.
2371
2372 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
2373
2374         * mini-x86.c: fix calc of max loop size when aligning loops start.
2375
2376 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
2377
2378         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
2379         the stack.
2380
2381 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
2382
2383         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
2384         should set carry.
2385
2386         * basic-long.cs: Add tests for add/subtract of immediates with carry.
2387
2388         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
2389         
2390         * mini.c (inline_method): Allways inline some wrappers even if the cost
2391         is too large. Fixes #58785.
2392
2393         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
2394         
2395 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
2396
2397         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
2398         (crichton@gimp.org). Beginning of support for sparc/linux.
2399
2400         * mini-sparc.c: Optimize retrieval of LMF address.
2401
2402 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
2403
2404         * exceptions-ppc.c:  handle alloca in methods with clauses.
2405
2406 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
2407
2408         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
2409
2410 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
2411
2412         * mini.c: Delegate most of the abort signal work to 
2413           mono_thread_request_interruption, which also handles Stop and Suspend
2414           states.
2415
2416 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
2417
2418         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
2419         supports the save/restore lmf opcodes.
2420
2421 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
2422
2423         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
2424         by gcc-3.4 as well.
2425
2426         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
2427
2428 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
2429
2430         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
2431         methods which contain array accesses.
2432
2433         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
2434         boundaries. Fixes #58537.
2435
2436         * iltests.il: Add regression test for #58537.
2437
2438 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
2439
2440         * mini-x86.c (mono_arch_local_regalloc): Last part of
2441         fix for bug #58633 (releasing register to early).
2442
2443 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
2444
2445         * basic-long.cs: Add new regression test.
2446
2447 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
2448
2449         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
2450         register too early on the chain.
2451
2452 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
2453
2454         * mini.c (create_helper_signature): Use a helper function to reduce
2455         the code which needs to be written. Also set the calling convention of
2456         icalls on windows. Fixes #57840.
2457
2458 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
2459
2460         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
2461         exceptions-ppc.c: added helper function to get the instruction address
2462         from a signal handler context.
2463
2464 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2465
2466         * helpers.c: use g_get_tmp_dir. Invokes happyness 
2467         from gonzalo.
2468
2469 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2470
2471         * helpers.c: Add new env variable to pass args to objdump.
2472         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
2473
2474 2004-05-17  Radek Doulik  <rodo@ximian.com>
2475
2476         * Makefile.am (common_sources): added abcremoval.h so it get
2477         disted and daily mono packages on go-mono.com will build again
2478
2479 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
2480
2481         * abcremoval.c: Fixed coding style, added copyright header.
2482
2483         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
2484
2485         * mini.h: Added prototype for abc removal main function.
2486
2487         * build_relations_propagation_table.pl: Added copyright header.
2488
2489 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
2490
2491         * basic-long.cs: reg test for complex ceq_long bug.
2492
2493 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
2494
2495         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
2496         reg in long and clob case (bug #58343). Fixed/added comments.
2497
2498 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
2499
2500         * mini.c (mono_jit_runtime_invoke): Follow new convention
2501         of calling the invoke method with an function pointer.
2502
2503 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
2504
2505         * ChangeLog: Fix author of memory leak patch.
2506
2507 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
2508
2509         * Makefile.am: fix make dist as well...
2510
2511
2512 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
2513
2514         * cfold.c: Made so that conversions from pointer to int4 are no-ops
2515         on archs where pointers are 4 bytes long.
2516
2517         * Makefile.am: Added abcremoval.c source file.
2518
2519         * abcremoval.c: Added abcremoval.c.
2520
2521         * abcremoval.h: Added abcremoval.h.
2522
2523         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
2524
2525         * inssel.brg: Enabled bounds check removal.
2526
2527         * mini.c: Added support for abcrem optimization.
2528
2529         * mini.h: Added abcrem optimization label.
2530
2531         * driver.c: Added support for abcrem optimization.
2532
2533         * propagated_relations_table.def: Added propagated_relations_table.def.
2534
2535 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
2536
2537         * mini.c, cfold.c: fix style.
2538
2539 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2540
2541         * mini.c: handle issue with the low-level implementation of
2542         some long opcodes (bug #54209).
2543
2544 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
2545
2546         * basic.cs: test for my new cmov stuff.
2547
2548 2004-05-13      Patrik Torstensson
2549
2550         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
2551         opt and added peephole documentation.
2552
2553 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
2554
2555         * tramp-ppc.c: rewrote the generic trampoline code.
2556
2557 2004-05-11      Patrik Torstensson
2558
2559         * mini-x86.c: optimize long shl/shr asm code (one less branch)
2560
2561 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
2562
2563         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
2564
2565         * mini.h mini.c dominators.c: Applied patch from Derek Woo
2566         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
2567
2568         * mini.c: Add new icalls for AsAny marshalling.
2569
2570 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
2571
2572         * tramp-ppc.c, mini-ppc.c: more cleanups.
2573
2574 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2575
2576         * mini.c: no warnings.
2577
2578 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2579
2580         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
2581
2582 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2583
2584         * mini.c: In the thread abort signal handler, if the thread is in the
2585         process of being stoped, don't throw the Abort exception, just stop the
2586         thread.
2587
2588 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
2589
2590         * tramp-ppc.c: removed old code.
2591
2592 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2593
2594         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
2595         do some simple speed optimizations on ppc.
2596
2597 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
2598
2599         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
2600         and large offsets in load/store.
2601
2602 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
2603
2604         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
2605         it causes regressions.
2606
2607 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
2608
2609         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
2610         support.
2611
2612 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2613
2614         * jit-icalls.c: remove warnings.
2615         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
2616         speedups for unsafe code.
2617
2618 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
2619
2620         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
2621
2622 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
2623
2624         * basic-calls.cs: Add new regression test.
2625
2626         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
2627         more portable.
2628
2629         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
2630
2631         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
2632         is no longer used.
2633
2634 2004-05-06      Patrik Torstensson
2635
2636         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
2637         long reg allocation in any reg (not only eax:edx) and implemented 
2638         long shl/shr ops in asm instead of helpers.
2639
2640 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
2641
2642         * mini-sparc.h: Fix warnings.
2643
2644         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
2645         stack.
2646
2647         * mini-exceptions.c (mono_handle_exception): Call the filter in a
2648         separate statement for clarity.
2649
2650         * mini-sparc.c: Update status.
2651
2652 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
2653
2654         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
2655         here.
2656
2657 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2658
2659         * inssel-ppc.brg: another small pre-release workaround:
2660         we don't do overflow detection for long_sub_un.
2661
2662 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2663
2664         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
2665         (also works around a weird ppc bug: 57957).
2666
2667 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
2668
2669         * tramp-ppc.c: trampoline fixes.
2670
2671 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
2672
2673         * mini-ppc.c: fixed typos.
2674
2675 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2676
2677         * mini-ppc.c, exceptions-ppc.c: more code saves registers
2678         at the top of the stack. Fixed typos. Use a frame registers
2679         for all the methods with exception clauses.
2680
2681 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
2682
2683         * exceptions-ppc.c: restore fp registers.
2684
2685 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
2686
2687         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
2688         order from the stack top (moved the stack room to save the
2689         return value for trace after the param area). Fixed corruption
2690         in restoring registers on unwind.
2691
2692 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2693
2694         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
2695
2696 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2697
2698         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
2699         and prolog/epilog for methods that use it. Allow
2700         enough param area room for varargs methods. Fix miguel's
2701         breakage in exception handling.
2702
2703 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
2704
2705         * Makefile.am: run genmdesc only on current arch.
2706
2707 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2708
2709         * exceptions-x86.c:
2710         * mini-x86.h: fix the build on windows.
2711
2712 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
2713
2714         * 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.
2715
2716         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
2717
2718         * mini-exceptions.c: New file.
2719         
2720         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
2721         Move some parts of the x86 exception handling code to an 
2722         arch-independent file so it can be shared with other ports.
2723
2724 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
2725
2726         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
2727
2728 2004-04-26  David Waite  <mass@akuma.org>
2729
2730         * driver.c: remove comma from end of enumeration declaration
2731
2732 2004-04-26  Jackson Harper  <jackson@ximian.com>
2733
2734         * driver.c: parse config file before loading first assembly. This
2735         allows the user gac to be enabled/disabled. 
2736         
2737 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
2738
2739         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
2740         simpler mechanism: we do not care what is encoded initially
2741         (branch absolute or relative), we care about the code and its
2742         target.  I kept the old code for reference for now.
2743
2744         The new code tries first to determine if the jump is anywhere in
2745         the -/+32 absolute meg range, if it succeeds, it encodes using the
2746         absolute branch;  If not, it tried to find something in the
2747         relative range, if not, it uses the handle_thunk code. 
2748
2749 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
2750
2751         * exceptions-ppc.c: use the correct ip register on macosx.
2752
2753 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
2754
2755         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
2756
2757 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
2758
2759         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
2760         Raise exception on integer divide by zero by hand since the hw
2761         doesn't support it. Handle NaNs in FP compares.
2762
2763 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2764
2765         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
2766         code reducing duplication between the platforms and enabled
2767         signal exception handling (on linux for now).
2768
2769 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
2770
2771         * exceptions-ppc.c: more macosx support.
2772
2773 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
2774
2775         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
2776
2777 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
2778
2779         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
2780
2781 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
2782
2783         * iltests.il: more tests.
2784
2785 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2786
2787         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
2788         vars as well.
2789
2790 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2791
2792         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
2793
2794 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2795
2796         * liveness.c: Mark variables as volatile in all basic blocks reachable
2797         from exception clauses.
2798
2799 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
2800
2801         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
2802         inlining.
2803
2804 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2805
2806         * iltests.il, basic.cs: more tests for regalloc.
2807
2808 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2809
2810         * iltests.il: Some tests for register allocation modifications
2811         I have locally.
2812
2813 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
2814
2815         * exceptions.cs: Add regression test for bug #56782.
2816
2817         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
2818         original stack trace if an exception is rethrown. Fixes #56782. Oh,
2819         the beauty of fixing the same thing in 5 different files...
2820
2821 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
2822
2823         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
2824         methods.
2825
2826 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
2827
2828         * mini.c: Add support for STRWLPARRAY marshalling convention.
2829
2830 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2831
2832         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
2833         to init the context to setup the regs pointer).
2834
2835 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
2836
2837         * exceptions-ppc.c: more exceptions work.
2838
2839 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2840
2841         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
2842         not allowed.
2843
2844 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2845
2846         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
2847         can use the memory directly.
2848
2849         * cpu-pentium.md: Update documentation from a post from Zoltan. 
2850
2851         add x86_add_membase, x86_sub_membase, x86_mul_membase
2852
2853 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2854
2855         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
2856         GENERAL_REGS they were also hardcoded for all PPC ports.
2857
2858         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
2859
2860         Remove hard-coded limit for floating point registers, use
2861         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
2862
2863         Notice that in MacOS X calling conventions you can fit a lot more
2864         floating point values in registers, so I should update the PInvoke
2865         test to excercise the passing of floating point values on the
2866         stack (currently broken).
2867         
2868 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
2869
2870         * tramp-ppc.c (create_trampoline_code): Added
2871         JUMP_TRAMPOLINE_SIZE. 
2872         (ppc_magic_trampoline): Follow the pattern from
2873         x86_magic_trampoline: if code is set to zero, return. 
2874         (create_trampoline_code): Always pass MonoMethod to the jump
2875         trampoline, before it was passing a null.
2876         (mono_arch_create_jump_trampoline): Implement the jump stub, could
2877         share the code with mono_arch_create_jit_trampoline. 
2878
2879         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
2880         implemented.
2881         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
2882         implemented.  
2883
2884         * cpu-g4.md: Added length for jmp instruction, the worst case
2885         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
2886         for save_lmf).
2887
2888 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
2889
2890         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
2891
2892 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
2893
2894         * mini.c: Only set bblock->real_offset when adding a new bblock, and
2895         before each IL instruction.
2896
2897         * mini.c (CEE_BOX): Fix warnings.
2898
2899 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2900
2901         * mini.c: removed a few unused vars and extra whitespace.
2902
2903 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
2904
2905         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
2906         checks.
2907         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
2908         index.
2909         (OP_GETCHR): use the above
2910         (CEE_LDELEMA): use the above.
2911
2912         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
2913         version of the generic impl.
2914         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
2915         (CEE_LDELEMA): use the above.
2916
2917 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2918
2919         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
2920         Fixes #56317.
2921
2922         * iltests.il: Added new regression test for #56317.
2923
2924 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2925
2926         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
2927         under NetBSD. Fixes #56450.
2928
2929         * liveness.c (update_gen_kill_set): Fix previous patch.
2930
2931 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2932
2933         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
2934
2935 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2936
2937         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
2938         ldsfld and ldsflda.
2939
2940         * inssel-sparc.brg: Add more optimizations.
2941
2942         * mini-sparc.c: Replace multiply/divide with shifts if possible.
2943
2944 2004-04-01  Martin Baulig  <martin@ximian.com>
2945
2946         * mini.c (handle_box): New static function; moved the
2947         implementation of CEE_BOX here.
2948         (mono_method_to_ir): Added `constrained_call' variable.
2949         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
2950         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
2951         mono_method_get_constrained() to get the method.
2952
2953 2004-04-01  Martin Baulig  <martin@ximian.com>
2954
2955         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
2956         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
2957         (mono_method_to_ir): We don't need these macros anymore since
2958         mono_class_get_full() already takes care of it. 
2959
2960 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2961
2962         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
2963         use @function (as doesn't accept #function here) and check the return
2964         value of system and stop if fails.
2965
2966 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2967
2968         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
2969
2970 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
2971
2972         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
2973
2974         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
2975
2976         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
2977         #56223.
2978
2979         * basic-long.cs: Add test for negation of Int64.MinValue.
2980
2981 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
2982
2983         * mini-sparc.c: Update status.
2984
2985         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
2986
2987         * exceptions-sparc.c: Fix return value in filters.
2988
2989         * inssel-sparc.brg: Fix register allocation in some rules.
2990
2991 2004-03-28  Martin Baulig  <martin@ximian.com>
2992
2993         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
2994         if neccessary.  
2995
2996 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
2997
2998         * mini-x86.c (mono_arch_patch_code): Fix warnings.
2999         
3000         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
3001         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
3002         remove unused conv_u4 opcode.
3003
3004         * mini-x86.c: Remove valgrind workaround since it slows down things
3005         even when mono is not run under valgrind.
3006
3007 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
3008
3009         * mini-sparc.c: Update status.
3010
3011         * inssel-sparc.brg: Add some optimizations.
3012
3013         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
3014         future delay slot filling. Add support for varargs, tail calls and JMP.
3015
3016         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
3017         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
3018
3019         * inssel.brg: Fix register allocation in OP_ARGLIST.
3020
3021         * inssel.brg: Fix warnings.
3022
3023 2004-03-25  Martin Baulig  <martin@ximian.com>
3024
3025         * mini.c (inflate_generic_field): Removed.
3026         (mini_get_method): Removed, use mono_get_method_full(),
3027         (mini_get_class): Removed, use mono_class_get_full().
3028         (mono_method_to_ir): Pass our generic context to
3029         mono_field_from_token().        
3030
3031 2004-03-25  Martin Baulig  <martin@ximian.com>
3032
3033         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
3034         of a `MonoMethod *'.
3035         (mini_get_method): Take a `MonoGenericContext *' instead
3036         of a `MonoMethod *'.
3037         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
3038         a new local variable called `generic_context' which holds the
3039         current `MonoGenericContext *'; use it to lookup things.
3040
3041 2004-03-24  Martin Baulig  <martin@ximian.com>
3042
3043         * mini.c (mini_get_class): New static method; if we're inside a
3044         generic instance, inflate the class if neccessary.
3045         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
3046
3047 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
3048
3049         * iltests.il: New regression test for #55976.
3050
3051         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
3052         #55976.
3053
3054 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
3055
3056         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
3057         output.
3058
3059 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
3060
3061         * liveness.c: Consider SSA stores as well as loads when making vars
3062         volatile.
3063
3064         * exceptions.cs: New regression tests for register allocation.
3065         
3066 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
3067
3068         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
3069         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
3070           domain lock only to protect puntual access to data structures.
3071           Added access lock for sighash, jit_icall_hash_name, 
3072           jit_icall_hash_addr and domain->code_mp.
3073
3074 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
3075
3076         * driver.c: Print SIGSEGV handling method.
3077
3078         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
3079
3080         * mini.c (setup_jit_tls_data): Handle case when this is called
3081         multiple times for a thread.
3082
3083         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
3084         is different from fbxx_un. Fixes #54303. Also use constants instead of
3085         magic numbers in a lot of places.
3086
3087 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
3088
3089         * exceptions.cs: Fix cctor test when --regression is used.
3090
3091 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
3092
3093         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
3094         for Linux/ppc.
3095
3096 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
3097
3098         * inssel-ppc.brg: fixed register assignments for some rules.
3099
3100 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3101
3102         * exceptions.cs: Add test for exceptions in static constructors.
3103
3104         * mini.c (mono_jit_compile_method_with_out): Move the calling of
3105         static constructors outside the domain lock. Fixes #55720.
3106
3107 2004-03-17  Martin Baulig  <martin@ximian.com>
3108
3109         * mini.c (get_generic_field_inst): Removed, this'll never happen.
3110         (inflate_generic_field): Take the `MonoMethod *' instead of the
3111         `MonoClass *' and added support for generic method.
3112         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
3113         have a `field->parent->gen_params', only inflate the field if it's
3114         an open constructed type.
3115
3116 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3117
3118         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
3119         exception object instead of the preconstructed ones.
3120
3121 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3122
3123         * mini.c: reverted changed to sigsegv_signal_handler commited
3124         accidentally in the previous patch.
3125
3126 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3127
3128         * mini.c:
3129         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
3130         running --aot with an old assembly.
3131
3132 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
3133
3134         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
3135         point values.
3136
3137         * mini-sparc.c: Add support for v9 branches with prediction.
3138
3139 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
3140
3141         * mini.c (mini_init): #warning is GNUC only
3142
3143         * mini-sparc.h: implement __builtin_frame_address
3144         and __builtin_return_address for Sun C compiler
3145
3146 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
3147
3148         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
3149
3150 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
3151
3152         * basic-calls.cs: Add test for unaligned byref long argument passing.
3153
3154         * mini-ops.h: Add sparcv9 compare and branch instructions.
3155
3156         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
3157         v9 instructions if we have a v9 cpu.
3158
3159         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
3160         registers for global allocation.
3161
3162         * exceptions-sparc.c: Fixes.
3163         
3164 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
3165
3166         * liveness.c (mono_analyze_liveness): Optimized version.
3167
3168         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
3169
3170         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
3171         sparc work.
3172
3173         * basic-float.cs basic-calls.cs: New regression tests.
3174
3175 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
3176
3177         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
3178         sigaltstack implementation.
3179
3180         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
3181         
3182         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
3183         stuff if SIGSEGV_ON_ALTSTACK is not defined.
3184
3185 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
3186
3187         * mini.c: Fix warnings.
3188         
3189         * mini.c (mono_resolve_patch_target): New function which contains the
3190         arch independent part of the patching process.
3191
3192         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
3193         patching code to a separate function.
3194
3195 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
3196
3197         * mini.c (add_signal_handler): ifdef out on Windows
3198
3199 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
3200
3201         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
3202         cpu-sparc.md: Add exception handling support + other fixes.
3203
3204         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
3205         typed GC detection in --version.
3206
3207         * basic.cs exceptions.cs: New regression tests.
3208
3209         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
3210         the arch specific code can store data during a compilation.
3211
3212         * mini-ops.h: Add OP_SETFRET.
3213
3214         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
3215         function, register a separate icall for each arity, so the icalls can
3216         get a wrapper.
3217         
3218         * mini.c (mono_print_tree): Print negative offsets in a more readable
3219         form.
3220         
3221         * mini.c: Make signal handling work on sparc.
3222         
3223         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
3224
3225         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
3226
3227         * jit-icalls.c: Emulate truncl by aintl on solaris.
3228
3229         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
3230
3231 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
3232
3233         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
3234
3235 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
3236
3237         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
3238         a MarshalByRef type, inline a method that performs the check, taking into
3239         account that the object can be a proxy. Also implemented tow new opcodes:
3240         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
3241         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
3242         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
3243
3244 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
3245
3246         * mini-ppc.c: if a relative branch displacement is too big
3247         but it points to and area reachable with an absolute branch, 
3248         avoid the thunks.
3249
3250 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
3251
3252         * mini.c: optimize small copies in cpblk.
3253
3254 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
3255
3256         * basic-calls.cs basic-float.cs: New regression tests.
3257
3258         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
3259         negative offsets from %fp. Implement localloc. Fix local register 
3260         allocation. Fix the case when the this argument needs to be saved to
3261         the stack. Implement some missing opcodes.
3262
3263 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
3264
3265         * mini.c (mini_method_compile): Reenable global regalloc in methods
3266         with exception handlers.
3267
3268         * linear-scan.c (mono_varlist_sort): Fix warning.
3269
3270         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
3271
3272         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
3273         regalloc costs.
3274
3275         * liveness.c: Make all variables uses in exception clauses volatile, to
3276         prevent them from being allocated to registers. Fixes #42136.
3277
3278 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
3279
3280         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
3281         causes regressions.
3282
3283         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
3284         argument to mono_arch_regalloc_cost.
3285
3286         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
3287         precisely.
3288
3289 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
3290
3291         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
3292         Make the cost of allocating a variable to a register arch dependent.
3293
3294         * basic-calls.cs: Fix compilation of tests.
3295         
3296         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
3297         helper function to cut back on the number of #ifdefs needed.
3298
3299         * mini-ppc.c: Fix compilation.
3300
3301         * basic-calls.cs: New regression tests.
3302
3303         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
3304
3305         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
3306         of l0 since that is callee saved.
3307
3308         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
3309         to virtual calls.
3310
3311         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
3312         of delay instruction.
3313
3314         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
3315
3316         * mini.h (MonoCallInst): Add 'virtual' flag.
3317
3318         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
3319
3320 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
3321
3322         * *.cs: New regression tests.
3323
3324         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
3325         work.
3326
3327         * mini.c (mono_runtime_install_handlers): Fix build.
3328
3329         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
3330         'signal_stack_size' members.
3331
3332         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
3333         alternate signal stack.
3334
3335         * exceptions-x86.c: Add stack overflow handling.
3336
3337         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
3338         functions to arch independent code.
3339
3340         * mini.c (mono_print_tree): Print more detailed info for load_membase
3341         opcodes.
3342         
3343 2004-02-23  Martin Baulig  <martin@ximian.com>
3344
3345         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
3346
3347 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
3348
3349         * mini-x86.c: fixed reg allocation for div/rem.
3350
3351 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
3352
3353         * driver.c (mono_main): Report some configuratio options on --version.
3354
3355 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
3356
3357         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
3358         low in the address space. Correctly flush memory in thunks where we
3359         output native code.
3360
3361 2004-02-20  Martin Baulig  <martin@ximian.com>
3362
3363         * mini.c (mini_get_method): New static method; inflate all generic
3364         methods and methods in open generic instances.
3365         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
3366         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
3367
3368 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
3369
3370         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
3371
3372         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
3373
3374 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
3375
3376         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
3377
3378         * mini-sparc.c (flushi mono_arch_output_basic_block): make
3379         it compile using Sun's compiler.
3380
3381 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
3382
3383         * 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.
3384
3385         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
3386
3387 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
3388
3389         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
3390         code.
3391         * mini-ppc.c: handle calls outside of the allowed range with thunks
3392         allocated using the code manager.
3393         * tramp-ppc.c: use the code manager to hold generated native code.
3394         Fixed the magic trampoline to just patch vtable entries.
3395
3396 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
3397
3398         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
3399         independent file.
3400
3401 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
3402
3403         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
3404         PPC.
3405
3406         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
3407         if we have a working __thread implementation.
3408
3409         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
3410         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
3411
3412 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
3413
3414         * mini-x86.c: Fix compilation under gcc 2.
3415         
3416 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
3417
3418         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
3419         contains a call to the wrapped function.
3420
3421         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
3422         OP_<CALL>_IMM opcodes, and use them under X86.
3423         
3424         * mini.c (mono_jit_find_compiled_method): Fix warning.
3425
3426         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
3427
3428         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
3429
3430         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
3431         functionality to mini.c.
3432
3433         * mini.c (mono_create_jump_trampoline): New function to create a jump
3434         trampoline. Return a compiled method instead of a trampoline if it
3435         exists. Add a cache for jump trampolines.
3436
3437         * mini.c (mono_jit_find_compiled_method): New function to return a
3438         compiled method if it exists.
3439
3440         * mini-x86.c: Call mono_create_jump_trampoline instead of 
3441         mono_arch_create_jit_trampoline.
3442
3443         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
3444         a jump trampoline. Fixes #52092.
3445         
3446 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
3447
3448         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
3449         which is not up-to-date. Add check_corlib_version () instead.
3450
3451         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
3452         have to call it.
3453         
3454         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
3455         since newer valgrind versions do not need it.
3456
3457         * mini.c (mono_jit_compile_method_with_opt): New helper function to
3458         compile a method with a given set of optimizations.
3459
3460         * mini.c: Compile icall wrappers on-demand instead of at startup.
3461
3462         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
3463         wrapper for an icall.
3464
3465 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3466
3467         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
3468         #54063.
3469
3470         * iltests.il: Add test for non-empty stack before switch instruction.
3471
3472 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3473
3474         * mini.c: Add support for new stringbuilder marshalling conventions.
3475
3476         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
3477
3478 2004-02-01  Martin Baulig  <martin@ximian.com>
3479
3480         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
3481         in `ginst->mtype_argv'.
3482
3483 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
3484
3485         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
3486         facilitate grepping.
3487
3488 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
3489
3490         * mini.c: fixed buglet in initobj generic implementation for references.
3491
3492 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
3493
3494         * Makefile.am: make the version script conditional.
3495         * jit-icalls.c: handle missing truncl().
3496
3497 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
3498
3499         * exceptions.cs: Add more tests for double->int conversion.
3500
3501         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
3502         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
3503
3504 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
3505
3506         * driver.c: make --verbose --version emit an error
3507         if the loaded corlib doesn't match the runtime version.
3508
3509 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
3510
3511         * mini-ppc.h: export ppc_patch().
3512         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
3513         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
3514         on par or better than on MacOSX.
3515
3516 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3517
3518         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
3519         mono_lookup_pinvoke_call.
3520
3521         * mini-x86.c: Under windows, the default pinvoke calling convention is
3522         stdcall. Fixes #52834.
3523
3524         * mini.c (optimize_branches): Add an upper bound to the number of
3525         iterations to prevent infinite loops on strange loops. Fixes #53003.
3526
3527 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3528
3529         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
3530         and ISINST. Fixes #52093.
3531
3532         * objects.cs (test_0_vector_array_cast): New tests.
3533         
3534 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
3535
3536         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
3537         checking in Array.Set ().
3538
3539         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
3540         #52590.
3541
3542         * object.cs (test_0_multi_array_cast): New regression test.
3543
3544 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
3545
3546         * exceptions-ppc.c: fix build on Linux/PPC.
3547
3548 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
3549
3550         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
3551         running under valgrind.
3552         (x86_magic_trampoline): Fix build bustage.
3553
3554         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
3555         negative values as well. This is needed for the encoding of the line number
3556         info, since sometimes the line numbers are not in increasing order.
3557
3558 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
3559
3560         * cpu-pentium.md (localloc): Increase the size of the localloc 
3561         instruction since it is a loop under Win32.
3562
3563         * debug-mini.c (record_line_number): Get rid of unneccesary memory
3564         allocation.
3565
3566 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
3567
3568         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
3569         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
3570         Max Horn (max@quendi.de). Fix file names in comments.
3571
3572 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
3573
3574         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
3575         avoid stack overflow.
3576         (replace_usage): Avoid uninitialized variable warnings.
3577
3578         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
3579         and taking the address of valuetype variables.
3580
3581 2004-01-03  Patrik Torstensson
3582
3583         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
3584         for other purposes than FP later on.
3585
3586 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
3587
3588         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
3589         of tail calls.
3590
3591 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
3592
3593         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
3594
3595 2003-12-30  Patrik Torstensson <p@rxc.se>
3596
3597         * mini-x86.h: Decreased number of availiable fp regs.
3598         Solves corner cases with FP spilling.
3599
3600 2003-12-23  Patrik Torstensson <p@rxc.se>
3601
3602         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
3603         for floating point stack tracking / spilling on x86. 
3604         Fixes bug #49012.
3605         
3606         * basic-float.cs: added float mul overflow test.
3607
3608 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
3609
3610         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
3611
3612 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
3613
3614         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
3615         supports for cond branches that overflow the immediate
3616         overflow offset. mcs can compile simple programs.
3617
3618 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
3619
3620         * exceptions-ppc.c: exception handling support wip:
3621         finally handlers get run on exception.
3622
3623 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
3624
3625         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
3626         profiling.
3627
3628 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
3629
3630         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
3631         initial support for stack walking and unwinding.
3632
3633 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
3634
3635         * driver.c (mono_main): Make corlib-out-of-sync message more 
3636         descriptive. Also remove verify_corlib call.
3637
3638 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
3639
3640         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
3641         not overlap with other call's arguments, too.
3642
3643 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
3644
3645         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
3646         move to arch-specific code the choice of arch-specific
3647         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
3648         * mini.c: ensure emulation calls will not interleave
3649         with other calls.
3650
3651 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
3652
3653         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
3654         the magic trampoline stack frame is dropped before executing
3655         the new method.
3656
3657 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
3658
3659         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
3660         and integer to fp conversions. Added support for overflowing
3661         arguments on the stack. Reserve a couple more registers as temps.
3662         Added support for aot compilation (as output still needs to be
3663         tweaked, though).
3664
3665 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
3666
3667         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
3668         Don't overwrite return register in some corner cases.
3669
3670 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
3671
3672         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
3673         static constructors when AOT compiling.
3674
3675         * driver.c (mono_main): Call mono_check_corlib_version.
3676
3677 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
3678
3679         * cpu-g4.md, basic.cs: fixed div target register.
3680
3681 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
3682
3683         * mini-ppc.c, basic.cs: shl_imm fix with test.
3684
3685 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
3686
3687         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
3688         structures by value. Misc fixes.
3689         * objects.cs: more tests.
3690
3691 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
3692
3693         * mini-ppc.c: lconv.ovf.i implemented.
3694
3695 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3696
3697         * mini.c:
3698         (mini_init): don't error out if someone already called g_thread_init.
3699
3700 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
3701
3702         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
3703         to be any type per the spec. Fix abnormal memory usage when
3704         the same object is repeatedly thrown.
3705
3706 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
3707
3708         * mini.c: check for overruns in IL code.
3709
3710 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
3711
3712         * TODO: Add/remove some todo entries.
3713
3714 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
3715
3716         * driver.c (mono_main): Call mono_verify_corlib.
3717
3718 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
3719
3720         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
3721         This has been moved to mini.c
3722         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
3723         type being casted is marshalbyref it could be a proxy, so instead of
3724         emitting the type check code, emit a call to a runtime method that will
3725         perform the check by calling CanCastTo if needed.
3726
3727 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
3728
3729         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
3730         methods with large stack frames under Win32.
3731
3732 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
3733
3734         * Makefile.am: Distribute regression tests.
3735
3736         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
3737         at the end instead of inserting each variable into the sorted list.
3738
3739         * linear-scan.c (mono_varlist_sort): New helper function.
3740         
3741 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
3742
3743         * mini.c: ensure arguments and locals are within bounds.
3744
3745 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
3746
3747         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
3748         related fixes.
3749
3750 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3751
3752         * mini.c (mono_cprop_copy_values): Fix crash.
3753
3754         * aot.c: Set verbosity back to 0.
3755         
3756 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
3757
3758         * regalloc.c: complete memory leak fix by Laurent Morichetti
3759         (l_m@pacbell.net).
3760
3761 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3762
3763         * driver.c (main_thread_handler): Revert the previous patch.
3764
3765         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
3766         under valgrind.
3767
3768         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
3769         memory from the memory pool.
3770
3771         * driver.c (main_thread_handler): Turn on all optimizations when
3772         --aot is used.
3773
3774         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
3775         an array for better performance.
3776
3777         * regalloc.c (mono_regstate_assign): Fix memory leak.
3778
3779         * debug-mini.c (mono_debug_serialize_debug_info): New function to
3780         serialize the debug info.
3781
3782         * debug-mini.c (mono_debug_add_aot_method): New function to load the
3783         debug info from the serialized representation.
3784
3785         * aot.c: Save debug info into the generated file and load it when 
3786         loading a method.
3787
3788         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
3789
3790 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
3791
3792         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
3793         More FP-related fixes.
3794
3795 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
3796
3797         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
3798         and register allocation buglet. Hello world now runs.
3799
3800 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
3801
3802         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
3803         * tramp-ppc.c: fixed class init trampoline.
3804         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
3805
3806 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
3807
3808         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
3809         mini.c: more ppc changes/fixes.
3810
3811 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
3812
3813         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
3814         Also optimize the case when the arguments are the same in the caller 
3815         and in the callee.
3816
3817         * iltests.il: Add tests for tail calls with valuetype arguments.
3818
3819 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
3820
3821         * mini-ppc.c: fixes for struct return type.
3822
3823 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
3824
3825         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
3826         mono_spillvar_offset() to arch-specific code.
3827
3828 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
3829
3830         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
3831
3832 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
3833
3834         * exceptions-x86.c: Fix stack space leaks.
3835         
3836         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
3837         registers from the lmf if the method has save_lmf set.
3838
3839 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
3840
3841         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
3842         of icall wrappers into InvokeInDomain, since these are now per-domain.
3843
3844 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
3845
3846         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
3847         make some opcode emulation and intrinsic ops enabled/disabled 
3848         according to the architecture. More fixes.
3849
3850 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
3851
3852         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
3853
3854 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
3855
3856         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
3857         arch-specific handling for 'this' and struct return type to
3858         arch-specific code.
3859
3860 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3861
3862         * aot.c: prevent divide by zero error when reporting (it happened with
3863         Accessibility.dll).
3864
3865 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
3866
3867         * mini.h (inst_switch): Remove unused macro.
3868
3869 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3870
3871         * aot.c:
3872         (load_aot_module): free 'info->methods' and 'info' properly. No more
3873         "free(): invalid pointer blah" messages when you have an old aot
3874         compiled assembly.
3875
3876 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
3877
3878         * jit-icalls.c, mini.c: Added support for context static fields.
3879
3880 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3881
3882         * mini.c (mono_method_blittable): Methods which set LastError are not 
3883         blittable either. Fixes #51108.
3884         
3885 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
3886
3887         * mini.c: flush icache.
3888         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
3889
3890 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3891
3892         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
3893
3894 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
3895
3896         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
3897         safe on IA32.
3898
3899         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
3900         vararg calls.
3901
3902         * inssel.brg (CEE_MKREFANY): Fix AOT case.
3903
3904 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
3905
3906         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
3907         instruction when the result is discarded.
3908
3909         * iltests.il (test_0_div_regalloc): New regression test.
3910
3911         * arrays.cs: Fix compilation error.
3912
3913 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
3914
3915         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
3916         float rules to inssel-x86.brg: sane architectures with FP registers
3917         don't need to implement these rules.
3918
3919 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
3920
3921         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
3922
3923 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
3924
3925         * mini.h, inssel-long32.brg: fixed endianess issues in int64
3926         implementation of 32 bit systems.
3927
3928 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
3929
3930         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
3931         (Jeroen Zwartepoorte).
3932
3933 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3934
3935         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
3936         the caller and the callee matches.
3937         
3938         * mini.c (mono_method_to_ir): Add comment.
3939
3940         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
3941         signbit is missing on some platforms.
3942
3943 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
3944
3945         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
3946
3947         * mini.c (setup_jit_tls_data): Call the new function.
3948         
3949         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
3950
3951         * mini-x86.c: Add experimental support for fast access to the lmf
3952         structure under NPTL/Linux 2.6.x.
3953
3954 2003-11-06  Martin Baulig  <martin@ximian.com>
3955
3956         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
3957         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
3958         the debugger.
3959
3960 2003-11-02  Martin Baulig  <martin@ximian.com>
3961
3962         * mini.c (inflate_generic_field): New static method.
3963         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
3964         generic instance and the field is declared in a generic type, call
3965         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
3966
3967 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
3968
3969         * mini.h mini.c (mono_method_same_domain): New function to return
3970         whenever the caller and the callee are in the same domain.
3971
3972         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
3973
3974 2003-10-30  Martin Baulig  <martin@ximian.com>
3975
3976         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
3977         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
3978         method parameters.
3979         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
3980         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
3981
3982 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
3983
3984         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
3985         propagation.
3986
3987         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
3988         object here, so it is in the correct appdomain etc.
3989
3990 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
3991
3992         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
3993         already done.
3994         (mono_method_to_ir): Avoid freeing the type created returned from
3995         mono_type_create_from_typespec, since it is put into an internal cache
3996         by the function. Fixes pointer.exe.
3997
3998         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
3999         trampolines for icalls and pinvokes as well. Fixes #33569.
4000
4001 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
4002
4003         * mini.c: Update after appdomain changes.
4004
4005         * mini.c (mono_jit_compile_method_inner): Allways compile native
4006         method wrappers in the root domain, since there can only be one
4007         instance of them, whose address is stored in method->info.
4008
4009 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
4010
4011         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
4012         environment variable. Instead detect automatically whenever running
4013         under valgrind using the magic macro RUNNING_ON_VALGRIND from
4014         valgrind.h.
4015
4016 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
4017
4018         * trace.c, trace.h: New files that implement the new trace option
4019         parsing. 
4020
4021         * driver.c: Document new --trace options.
4022
4023         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
4024         mini-x86.c: Apply:
4025
4026         -       if (mono_jit_trace_calls)
4027         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
4028
4029         * mini.h: prototypes.
4030         
4031 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
4032
4033         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
4034
4035         * mini.c inssel.brg: Implement typedefbyref opcodes.
4036
4037         * mini.c (mono_jit_compile_method): Remove unused local variable.
4038
4039         * mini.c (mono_jit_compile_method_inner): Ditto.
4040         
4041 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
4042
4043         * tramp-x86.c (x86_class_init_trampoline): Fix build.
4044         
4045         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
4046
4047 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
4048
4049         * mini.c (mono_no_aot): Remove unused global variable.
4050
4051         * mini.c: Thread safety fixes.
4052
4053 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
4054
4055         * mini.c (mono_create_class_init_trampoline): Add a lock around
4056         class_init_hash_addr.
4057
4058         * arrays.cs (test_0_newarr_emulation): Add new regression test for
4059         #30073.
4060
4061         * mini.c: Decompose the NEWARR instruction before decomposing its
4062         arguments. Fixes #30073.
4063
4064 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
4065
4066         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
4067         convention.
4068
4069 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
4070
4071         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
4072
4073         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
4074
4075         * driver.c: Add support for compiling icall wrappers to --compile.
4076
4077 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
4078
4079         * inssel.brg: The empty value in class->interface_offsets is -1, not
4080         0. Fixes #49287.
4081
4082 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
4083
4084         * objects.cs: New test for 'is' operator on an array of interfaces.
4085
4086 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
4087
4088         * tramp-ppc.c: update trampoline code to support jumps
4089         and class initialization.
4090
4091 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
4092
4093         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
4094
4095         * inssel.brg (OP_UNBOXCAST): Fix #46027.
4096
4097         * inssel.brg (OP_UNBOX): Remove unused rule.
4098
4099         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
4100         region instead of one for each method. Fixes #47813.
4101
4102 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
4103
4104         * exceptions.cs (test_0_nested_finally): New regression test for
4105         nested exception handlers.
4106
4107         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
4108
4109         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
4110
4111         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
4112         inlining.
4113
4114         * mini.c (mono_method_check_inlining): Make the inlining limit 
4115         configurable by an environment variable.
4116         
4117         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
4118
4119         * mini.h: Bump AOT file version.
4120
4121         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
4122         token, store the image along with the token, since the token might not 
4123         refer to the same image as the method containing the relocation, 
4124         because of inlining.
4125
4126 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
4127
4128         * mini.c (mono_precompile_assemblies): New function to compile
4129         all methods in all loaded assemblies.
4130
4131         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
4132
4133         * regalloc.h regalloc.c (MonoRegState): Change the type of 
4134         iassign and fassign to int*, since they can contain large negative
4135         values if the register is spilled. Also added some comments. Fixes
4136         #45817.
4137
4138         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
4139         under Win32. Fixes #42964.
4140
4141 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
4142
4143         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
4144
4145         * aot.c: Added support for AOT compiling methods which contain calls
4146         to wrappers. Currently, only remoting-invoke-with-check wrappers are
4147         handled.
4148         
4149         * driver.c (compile_all_methods): Run the compilation in a thread
4150         managed by mono. Fixes #44023.
4151
4152         * mini.c (mono_codegen): Print full method name in verbose output.
4153
4154         * mini-x86.c (mono_arch_patch_code): Fix warning.
4155         
4156         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
4157         jumps, since the method we are jumping to might be domain-specific.
4158
4159         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
4160
4161 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4162
4163         * inssel.brg: string chars are unsigned.
4164
4165 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
4166
4167         * TODO: New todo item.
4168
4169         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
4170         which calls mono_runtime_class_init and patches the call site to
4171         avoid further calls.
4172         (mono_arch_create_class_init_trampoline): New arch specific function 
4173         to create a class init trampoline.
4174         (create_trampoline_code): Generalized so it can create
4175         class init trampolines as well.
4176
4177         * mini.c (helper_sig_class_init_trampoline): New helper variable.
4178         (mono_create_class_init_trampoline): New function to create and cache
4179         class init trampolines.
4180         (mono_find_class_init_trampoline_by_addr): New function to lookup the
4181         vtable given the address of a class init trampoline. Used by the
4182         patching process.
4183         (mono_codegen): Generate a call to a trampoline instead of
4184         mono_runtime_class_init in LDSFLD[A].
4185         (mono_codegen): Add relocations for the new trampoline.
4186         
4187         * mini.h mini-x86.c aot.c: Added a new relocation type: 
4188         MONO_PATCH_INFO_CLASS_INIT.
4189
4190         * mini.h: Bump AOT version number.
4191
4192         * aot.c: Create a copy of the loaded code instead of using the original
4193         so methods which call each other will be close in memory, improving
4194         cache behaviour.
4195         
4196         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
4197         patch since it breaks the regression tests.
4198         
4199         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
4200         for the register saving instruction sequence since the 
4201         frame_state_for function in glibc 2.3.2 don't seem to detect it.
4202
4203 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
4204
4205         * TODO: Fix todo item && remove another.
4206
4207 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
4208
4209         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
4210         previous checkin.
4211
4212         * aot.c: Moved the check for MONO_LASTAOT into the initialization
4213         function of the module.
4214
4215         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
4216         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
4217         --no-aot command line option.
4218
4219 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
4220
4221         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
4222         by Bernie Solomon (bernard@ugsolutions.com).
4223
4224         * inssel.brg: Refactor the interface offset table related code into
4225         its separate functions and add support for the AOT case.
4226
4227 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
4228
4229         * aot.c (mono_aot_get_method_inner): Fix memory leak.
4230         
4231         * aot.c: Added mono_aot_verbose variable and made all debugging
4232         output depend on the value of this variable.
4233
4234         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
4235         method_label and info_label.
4236
4237         * mini.h mini-x86.c aot.c: Added a new relocation type 
4238         MONO_PATCH_INFO_IID for klass->interface_id.
4239
4240         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
4241         the MonoJitInfo structure.
4242
4243         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
4244         a non-root appdomain in shared mode.
4245
4246 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
4247
4248         * aot.c: make aot loader less verbose. Remove free of unused variable.
4249
4250 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
4251
4252         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
4253
4254         * .cvsignore: Added *.dll.
4255
4256         * mini.c (mono_print_tree_nl): New function callable while debugging.
4257
4258         * mini.c (mono_print_code): Export this.
4259
4260         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
4261         patched code.
4262
4263 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
4264
4265         * mini.h (MonoCompile): Added 'jit_info' field.
4266
4267         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
4268         the cfg structure, since it is needed by the AOT compiler.
4269
4270         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
4271
4272         * aot.c: A major rewrite. Changes include:
4273         - save exception tables for methods which have them.
4274         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
4275         to g_module_symbol.
4276         - reworked the file format so it is now much smaller and needs
4277         fewer relocation entries.
4278         
4279 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
4280
4281         * aot.c (load_aot_module): Fix build bustage on platforms without
4282         Boehm GC.
4283
4284 2003-09-04  Martin Baulig  <martin@ximian.com>
4285
4286         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
4287
4288 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
4289
4290         * TODO: Some new optimization ideas.
4291
4292         * aot.c: Move AOT module loading logic here from mono_assembly_open.
4293
4294         * aot.c: Save the optimization flags used to compile the code into
4295         the AOT module.
4296
4297         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
4298         support emitting domain specific code.
4299         
4300         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
4301         no longer domain neutral. It can be made domain neutral by compiling 
4302         with --optimize=shared.
4303
4304         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
4305         between appdomains.
4306
4307         * driver.c mini.h mini.c: New --no-aot debugging option which disables
4308         loading of AOT code.
4309
4310         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
4311         
4312         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
4313         if there is no domain neutrality information.
4314
4315 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
4316
4317         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
4318         format version into the generated library.
4319
4320         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
4321         callee method into the caller since one of them could be shared.
4322
4323         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
4324         system exceptions from AOT code now works.
4325
4326         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
4327         method if it is domain neutral and the callee is not.
4328
4329         * graph.c (cfg_emit_one_loop_level): Fix warning.
4330
4331 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
4332
4333         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
4334         last checkin.
4335
4336 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
4337
4338         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
4339         is needed  by code which is executed before mono_runtime_init ().
4340         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
4341         
4342         * mini.c (mono_thread_abort): Fix warning.
4343         (mono_jit_compile_method): Call static constructor in the AOT case too.
4344
4345         * aot.c (mono_compile_assembly): Fix warning.
4346
4347 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4348
4349         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
4350
4351 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
4352
4353         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
4354
4355         * cpu-pentium.md: Fix the length of call opcodes so they include the
4356         ESP restoring instruction. Fixes #47968.
4357
4358 2003-08-28  Martin Baulig  <martin@ximian.com>
4359
4360         * mini-x86.c (mono_arch_call_opcode): Added support for
4361         MONO_TYPE_GENERICINST.
4362
4363         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
4364
4365 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
4366
4367         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
4368         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
4369
4370         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
4371         metadata_section.
4372
4373 2003-08-26  Martin Baulig  <martin@ximian.com>
4374
4375         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
4376         when reporting an error, set this to the actual error location.
4377         (mono_method_to_ir): Report the correct error location if
4378         get_basic_blocks() returned an error.
4379
4380 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
4381
4382         * mini.c (mono_type_blittable): OBJECT is not blittable.
4383         (mono_method_blittable): Methods which have marshalling descriptors
4384         are not blittable either. Fixes #47842.
4385
4386 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
4387
4388         * driver.c mini.c: Use an environment variable instead of a global 
4389         variable. Also fix the build.
4390
4391         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
4392         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
4393         reporting this. 
4394
4395         * driver.c mini.c: Added --with-valgrind option to turn off some
4396         code which prevents mono from running under valgrind.
4397
4398         * mini.c (mono_emit_call_args): Fixed warning.
4399
4400         * mini.c (mono_emulate_opcode): Fixed warning.
4401
4402 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4403
4404         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
4405         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
4406         regalloc.c, regalloc.h: specify available registers in arch-specific
4407         code and support floats in the regallocator (patch by Laurent Morichetti 
4408         <l_m@pacbell.net>)
4409
4410 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
4411
4412         * mini.c: mono_thread_current() can be called only after
4413         mono_runtime_init(): rearrange code to not call it early on.
4414
4415 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
4416
4417         * mini.c: allocate jump tables in the code mempools.
4418
4419 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4420
4421         * mini.c, mini.h: make sure per-thread data allocated by the jit is
4422         freed.
4423
4424 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
4425
4426         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
4427         12 to 16.  This fixes bug #47453.
4428
4429
4430 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
4431
4432         * mini-ppc.c: fixed indexed load and unsigned compares.
4433
4434 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
4435
4436         * mini.c: reenabled installation of handler for
4437           thread abort signal.
4438
4439 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4440
4441         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
4442         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
4443         until it's fixed and actually useful.
4444
4445 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
4446
4447         * inssel-long32.brg: couple more opcodes implemented.
4448
4449 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
4450         
4451         * mini-sparc.c: Even more opcodes implemeted.
4452
4453 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
4454
4455         * mini-sparc.c: More opcodes implemented.
4456
4457 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
4458
4459         * mini-sparc.c: More opcodes implemented.
4460
4461 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
4462
4463         * inssel-sparc.brg: Add some needed rules.  Direct
4464         copy from PPC.
4465         * Makefile.am: Use inssel-sparc.brg
4466         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
4467         an assert happy for now.
4468
4469 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
4470
4471         * mini-sparc.c: Fixed compile errors.
4472         * exceptions-sparc.c: Same.  We now produce a mono binary 
4473         on sparc-linux.  Yea.
4474
4475 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
4476
4477         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
4478         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
4479         They compile, but do not work.
4480
4481 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4482
4483         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
4484         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
4485         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
4486         (ct@gentoo.org).
4487
4488 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4489
4490         * mini.c: more opcodes implemented and better support for generics.
4491
4492 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
4493
4494         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
4495         * mini.c, mini.h: first cut at generics support: some new instructions 
4496         added and changed the behaviour of some of the existing ones.
4497
4498 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
4499
4500         * mini.c: Removed definition of metadata_shared mutex here.
4501
4502 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
4503
4504         * mini-x86.c: make vararg calls work for instance methods.
4505
4506 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
4507
4508         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
4509         returns the arguments in a separte list, now.
4510
4511 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
4512
4513         * aot.c, mini.c: updates for array type representation changes.
4514
4515 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
4516
4517         * mini.c: register function to perform jit shutdown.
4518
4519 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4520
4521         * mini.c: use a faster allocator if possible.
4522
4523 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
4524
4525         * aot.c: some cleanups and portability changes.
4526
4527 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
4528
4529         * mini.c: use faster allocation for CEE_BOX if possible.
4530
4531 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
4532
4533         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
4534         Moved inlined mempcy code to its own function so that is can be
4535         reused. Added an inline memset function as well (optimized initobj).
4536         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
4537
4538 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
4539
4540         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
4541
4542 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
4543
4544         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
4545         arch code can setup the cpu for CLR execution, if needed.
4546         We use it on x86 to set the precision of FP operations.
4547
4548 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
4549
4550         * mini.c: disable some optimizations if we can guess they'll cost too
4551         much for a given method.
4552
4553 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
4554
4555         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
4556         
4557 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
4558         * mini.h mini.c mini-x86.c: Added instruction level coverage 
4559         info collection support.
4560
4561 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4562
4563         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
4564         is now implemented in the profiling API. Get rid of a couple of
4565         unnecessary global variables.
4566
4567 2003-06-15  Nick Drochak <ndrochak@gol.com>
4568
4569         * basic-long.cs: tests for negative values for bigmul, and unsigned.
4570         * cpu-g4.md: add op_bigmul and op_bigmul_un
4571         * cpu_pentium.md: add op_bigmul_un
4572         * inssel-long32.brg: add rule for unsigned bigmul
4573         * mini-ops.h: define OP_BIGMUL_UN
4574         * mini-x86.c: THE BUG: handle (un)signed properly
4575         * mini.c: choose unsigned opcode if needed.
4576         This set of patches fixes bug #44291
4577
4578 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
4579
4580         * mini.c (optimize_branches): improved to handle all kinds of
4581         conditional branches.
4582
4583 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
4584
4585         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
4586         don't raise exceptions.
4587
4588 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
4589
4590         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
4591         to arch-specific files.
4592
4593 2003-06-09  Martin Baulig  <martin@ximian.com>
4594
4595         * Makefile.am (libs): Added $(LIBGC_LIBS).
4596
4597 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
4598
4599         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
4600         and OP_ATAN (fixes bug#44293).
4601
4602 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
4603
4604         * Makefile.am, mini-x86.c: rename cpu description array to
4605         pentium_desc, since some compilers define the 'pentium' preprocessor
4606         symbol.
4607
4608 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
4609
4610         * mini.c (mini_select_instructions): add explicit branch if the
4611         following block is not the false target of a conditional branch -
4612         we need this with any optimization that reorder or remove bblocks
4613
4614         * mini.c (optimize_branches): bug fixes
4615
4616 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
4617
4618         * mini.c (mono_method_to_ir): inline static readonly fields
4619
4620         * ssa.c (fold_tree): start cfold support for long (very simple
4621         cases only)
4622
4623         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
4624
4625 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
4626
4627         * inssel.brg: fixed memcpy (bug #44219).
4628
4629 2003-06-05  Dick Porter  <dick@ximian.com>
4630
4631         * driver.c: Set the glib log levels to not abort if g_message
4632         recurses.
4633
4634         g_set_prgname() has to happen before mini_init() so that the
4635         process handle gets the info.
4636         
4637 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4638
4639         * driver.c: add intrins to the default optimizations to get wider
4640         exposure.
4641
4642 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
4643
4644         * mini.h: some large basic blocks will overflow a 16-bit
4645         integers for symbolic registers.
4646
4647 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
4648
4649         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
4650         (mono_arch_output_basic_block): fix bug 43499 
4651
4652 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
4653
4654         * mini.c: kill duplicated definition of mono_debug_format.
4655
4656 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
4657
4658         * mini-x86.c, arrays.cs: fixed register allocation bug.
4659
4660 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
4661
4662         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
4663
4664         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
4665
4666 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4667
4668         * mini.c:
4669         (print_method_from_ip): also print source location information if
4670         available.
4671
4672 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
4673
4674         * mini.c (mono_find_block_region): bug fix in region code
4675         (mini_method_compile): enable removing unreachable code again, but
4676         only in methods without exception clauses.
4677
4678 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
4679
4680         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
4681         Implemented arglist opcode and handling of TypedReference type.
4682         Fixed x86 call convention when a structure is returned.
4683         Minimal support for calling static vararg methods.
4684
4685 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
4686
4687         * mini.c (mini_method_compile):  always remove unreachable code,
4688         because the code in them may be inconsistent  (access to dead
4689         variables for example).
4690
4691 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
4692
4693         * driver.c, debug-mini.c: warning fixes.
4694
4695 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
4696
4697         * Makefile.am, jit.h, mini.h: install header for embedding mono.
4698
4699 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
4700
4701         * mini.c: thread-static fields are registered in mono_class_vtable(),
4702         so ensure the function is called before checking for them.
4703
4704 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
4705
4706         * mini.c (optimize_branches): fix for bug 43586
4707
4708         * jit-icalls.c (mono_llmult_ovf): added an additional check for
4709         overflow (fixes Bug #43639)
4710
4711 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4712
4713         * mini.c, objects.cs: allow the use of stobj for primitive types.
4714
4715 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4716
4717         * mini.c: be less strict about argument checking until we support
4718         running the verifier.
4719
4720 2003-05-27  Nick Drochak <ndrochak@gol.com>
4721
4722         * basic-long.cs: tests for (ulong)int * (ulong)int also
4723         * mini.c: use the same trick for (ulong)int * (ulong)int
4724
4725 2003-05-27  Nick Drochak <ndrochak@gol.com>
4726
4727         * basic-long.cs: add regression test for (long)int * (long)int
4728         * cpu-pentium.md: add op_bigmul specification
4729         * inssel-long32.brg: add OP_BIGMUL rule
4730         * mini-ops.h: add OP_BIGMUL
4731         * mini-x86.c: register allocator: handle case where src1 needs to be
4732         in EAX.
4733         * mini.c: substitute special BIGMUL opcode in the tree for 
4734         (long)int * (long)int
4735
4736 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
4737
4738         * jit-icalls.c: call the type ctor on field access if needed.
4739
4740 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
4741
4742         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
4743         to a method (including results of ldelema, bug#43207).
4744
4745 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
4746
4747         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
4748         colors to show exception handler blocks.
4749
4750         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
4751         (fix for pinvoke7.cs).
4752
4753 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4754
4755         * mini.h, mini.c: ensure correct initialization order for types that
4756         require it. Prepare for lazy compilation of jit icall wrappers.
4757         Provide a name for opcode emulation to reduce unneeded mallocing.
4758
4759 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
4760
4761         * mini-x86.c: better register restoring code and profiling
4762         support for tail calls.
4763
4764 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
4765
4766         * mini.h, driver.c: prepare for leaf methods optimization.
4767
4768 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4769
4770         * mini.c: get targets of branches before converting a method.
4771
4772 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
4773
4774         * mini.c (optimize_branches): added some experimental code (disbaled) 
4775
4776 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
4777
4778         * mini.c (optimize_branches): fix branch to branch optimization 
4779
4780         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
4781
4782         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
4783
4784         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
4785
4786         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
4787         if needed.
4788
4789 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
4790
4791         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
4792         enable use of interface variables again.
4793
4794         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
4795         I1 to registers because there is no simply way to sign extend 8bit
4796         quantities in caller saved registers on x86.
4797
4798         * inssel-float.brg: set costs of some rules to 2 so
4799         that monobure always select the arch. specific ones if supplied,
4800         regardless of the order we pass the files to monoburg.
4801
4802 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
4803
4804         * mini.c, mini-x86.c: since the magic trampoline for jumps
4805         can't patch the code directly, we do it as soon as the
4806         method gets compiled.
4807
4808 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
4809
4810         * mini-x86.c, mini.h: introduce a new patching method
4811         to support CEE_JMP and tail calls.
4812         * mini.c: obey tail.call. Don't precompile methods target
4813         of CEE_JMP.
4814         * tramp-x86.c: new trampoline code to handle methods
4815         reached through a jump.
4816
4817 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
4818
4819         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
4820         bit values to registers
4821
4822 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
4823
4824         * mini.c (mono_compile_get_interface_var): share interface
4825         variables if possible.
4826
4827 2003-05-16  Martin Baulig  <martin@ximian.com>
4828
4829         * debug-mini.c (mono_init_debugger): New function to initialize
4830         the debugger.  This is not in the debugger since it needs to
4831         access some of mini's internals.
4832
4833 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
4834
4835         * mini.c (mono_method_to_ir): inlining fixes/cleanups
4836
4837 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
4838
4839         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
4840         for value type handling.
4841
4842 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
4843
4844         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
4845         (mono_method_check_inlining): enable inlining of all kinds of wrappers
4846
4847 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
4848
4849         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
4850           the constructor through a proxy.
4851
4852 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4853
4854         * jit-icalls.c, inssel.brg: fixes to array element address
4855         calculations.
4856
4857 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
4858
4859         * mini-x86.c (is_regsize_var): allocate pointer to registers
4860
4861 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
4862
4863         * driver.c: fixed typo, added intrins to the set of optimizations
4864         tested with regressions.
4865
4866 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
4867
4868         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
4869         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
4870         test case.
4871
4872 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
4873
4874         * inssel.brg: remove some common pop instructions without side effects
4875
4876 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
4877
4878         * inssel-x86.brg: fixed thinko in int to double conversions.
4879
4880 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
4881
4882         * mini.c, jit-icalls.c: added runtime thread-static variable support.
4883
4884 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
4885
4886         * inssel-long32.brg: two more missing instructions.
4887
4888 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
4889
4890         * mini.c (mono_emit_call_args): set the cil_code for all arguments
4891         if not already set.
4892
4893 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
4894
4895         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
4896         correctly.
4897
4898         * basic-float.cs: Added tests for negative zero.
4899
4900 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4901
4902         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
4903         a couple of missing operations for long casts, with test cases.
4904
4905 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4906
4907         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
4908
4909 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
4910
4911         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
4912         code size estimation.
4913
4914 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
4915
4916         * mini.c (mono_jit_create_remoting_trampoline): make it work with
4917         abstract methods (fix bug 42542)
4918
4919         * aot.c: add ability to handle array types
4920         
4921 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
4922
4923         * mini.c: Call the _specific versions of the object allocation
4924         functions if possible.
4925
4926 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
4927
4928         * driver.c: call setlocale ().
4929
4930 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
4931
4932         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
4933         windows build.
4934
4935 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
4936
4937         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
4938
4939         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
4940         wrappers (fix bug 42122)
4941
4942 2003-05-04  Martin Baulig  <martin@ximian.com>
4943
4944         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
4945
4946         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
4947         s/mini_set_defaults/mono_set_defaults/g.
4948
4949 2003-05-04  Martin Baulig  <martin@ximian.com>
4950
4951         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
4952
4953 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4954
4955         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
4956         (reported by Don Roberts).
4957
4958 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
4959
4960         * mini.c: temporarily work around two bugs for this release.
4961
4962 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4963
4964         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
4965         that contains -export-dynamic and it makes using the ld script
4966         useless.
4967         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
4968
4969 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4970
4971         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
4972         specific cpu.
4973
4974 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
4975
4976         * mini.c: make sure leave calls all the needed finally blocks,
4977         even when the target jumps out of multiple exception clauses.
4978
4979 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
4980
4981         * ldscript, Makefile.am: add linker script to reduce the number of
4982         exported symbols (should also fix the issues with libwine defining
4983         some of the same symbols in io-layer).
4984
4985 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
4986
4987         * driver.c (mini_main): Avoid assertion when no file name is given on 
4988         the command line.
4989
4990 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
4991
4992         * driver.c: added --version/-V command line option.
4993         Added the inline optimization in the regression tests.
4994
4995 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
4996
4997         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
4998         to the type in the method signature (fixes bug#42134).
4999
5000 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
5001
5002         * mini.c: when inlining, check this is not null only when needed (bug #42135).
5003
5004 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
5005
5006         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
5007
5008 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5009
5010         * driver.c: fixed bug #42100.
5011
5012 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
5013
5014         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
5015
5016 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
5017
5018         * mini.c: moved most of the code required to do inlining to its own
5019         function so it can be reused. Inline also ctors if appropriate.
5020
5021 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
5022
5023         * Makefile.am: Link with -export-dynamic so shared libs loaded by
5024         the runtime can call mono API functions.
5025
5026 2003-04-27  Martin Baulig  <martin@ximian.com>
5027
5028         * debug-mini.c (mono_debug_init_method): Added
5029         `guint32 breakpoint_id' argument; if the method has a breakpoint,
5030         send a notification to the debugger.
5031
5032         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
5033         running in the Mono Debugger, just pass the breakpoint number to
5034         mono_debug_init_method().
5035
5036         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
5037
5038 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
5039
5040         * mini.c: allow some more unsafe compares.
5041
5042 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
5043
5044         * mini-x86.c, Makefile.am: make distcheck works (partially from
5045         a patch by Richard Lee <r.h.lee@attbi.com>).
5046         * regset.c, regset.h: removed, they are unused.
5047
5048 2003-04-25  Dick Porter  <dick@ximian.com>
5049
5050         * driver.c: Usage reports the name as 'mono' not 'mini'
5051         * exceptions-x86.c: Build and run on freebsd
5052
5053 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
5054
5055         * Makefile.am: install the program with the 'mono' name and
5056         the library as libmono instead of mini and libmini.
5057
5058 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
5059
5060         * driver.c: provide the APIs for the embedding interface of the old jit.
5061
5062 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
5063
5064         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
5065
5066 2003-04-23  Martin Baulig  <martin@ximian.com>
5067
5068         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
5069
5070         * driver.c: Added `--debug' command line argument to enable
5071         debugging support.
5072
5073 2003-04-23  Martin Baulig  <martin@ximian.com>
5074
5075         * debug.[ch]: Removed.  The code is now in
5076         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
5077
5078         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
5079         last six months.
5080
5081 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
5082
5083         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
5084
5085 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5086
5087         * mini.c:
5088         (mini_cleanup): moved mono_runtime_cleanup call after the call to
5089         mono_domain_finalize.
5090         (mini_method_compile): use mono_method_profile* if the the option is
5091         enabled.
5092
5093 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
5094
5095         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
5096         methods with their wrapper.
5097
5098         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
5099         methods with their wrapper.
5100
5101         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
5102         their wrapper.
5103
5104         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
5105         wrapper.
5106
5107         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
5108         methods.
5109
5110 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
5111
5112         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
5113
5114 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
5115
5116         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
5117         of the mempool. This is slightly faster and uses less memory
5118
5119 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
5120
5121         * mini.c: avoid O(n) allocation for variables.
5122
5123 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
5124
5125         * mini.c: handle items on the stack after inlining methods.
5126
5127 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5128
5129         * mini.c: make the method->opcode optimization dependent
5130         on MONO_OPT_INSTRINS and do it lazily.
5131
5132 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
5133
5134         * driver.c: print overall results at the end of regression run.
5135
5136 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
5137
5138         * inssel.brg: don't overwrite symbolic registers.
5139
5140 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
5141
5142         * inssel-x86.brg: fix conversion from long to float.
5143
5144 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
5145
5146         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
5147
5148 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
5149
5150         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
5151
5152         * driver.c: Added --print-vtable option as in the old JIT.
5153
5154 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
5155
5156         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
5157
5158 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
5159
5160         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
5161
5162 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
5163
5164         * mini.c regalloc.c regalloc.h: Fix memory leak.
5165
5166 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
5167
5168         * aot.c (mono_aot_get_method): register all used strings
5169
5170 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
5171
5172         * mini.c: always intern strings references with ldstr at compile time.
5173
5174 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
5175
5176         * Makefile.am: add BUILT_SOURCES.
5177
5178 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
5179
5180         * driver.c: give a better error message when the assembly to execute
5181         doesn't have an entry point.
5182
5183 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
5184
5185         * Makefile.am: added hack for automake
5186
5187         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
5188         correct sematics.
5189
5190         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
5191
5192 22003-04-07  Martin Baulig  <martin@ximian.com>
5193
5194         * Makefile.am: Added Makefile.am.
5195
5196         * debugger-main.c: Removed, this is now in the debugger where it
5197         belongs.
5198
5199         * mini.pc.in: Call this package `mini' for the moment.
5200
5201
5202
5203
5204