2003-01-05 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mono / jit / ChangeLog
1 2003-01-04 Jackson Harper <jackson@latitudegeo.com>
2
3         * debug.c: Move must_send_finished var declaration out of #if win32 block (this fixes the build on win32)
4
5 2003-01-05  Martin Baulig  <martin@ximian.com>
6
7         * debug.c (mono_debugger_jit_exec): Custom version of mono_jit_exec();
8         this is used when we're running inside the Mono Debugger 
9         (mono_debugger_wait): Put the waiting code into a function of its own.
10
11         * mono.c (main): Call mono_debugger_jit_exec() instead of
12         mono_jit_exec() if we're running inside the Mono Debugger.
13         
14 2003-01-05  Martin Baulig  <martin@ximian.com>
15
16         * debug.h (MonoDebugFormat): Added
17         `MONO_DEBUG_FORMAT_MONO_DEBUGGER'; this allows us to check whether
18         we're running inside the Mono Debugger prior to the args parsing.
19
20 2003-01-04  Martin Baulig  <martin@ximian.com>
21
22         * debug.c (release_symbol_file_table): Only call this if we're
23         actually modifying the symbol tables.
24         (mono_debug_open): Always set the `mono_debugger_class_init_func'
25         for MONO_DEBUG_FORMAT_MONO; this stuff should also go into core dumps.
26
27 2003-01-03  Martin Baulig  <martin@ximian.com>
28
29         * debug.c: Disable the mono debugger stuff on Windows.
30
31 2003-01-03  Martin Baulig  <martin@ximian.com>
32
33         * debug.c (mono_debugger_trampoline_breakpoint_callback): New
34         function.  This is called from the breakpoint trampoline to signal
35         the debugger and wait until it has reload the symbol tables.
36
37         * trampoline.c (get_breakpoint_trampoline): Call the new
38         mono_debugger_trampoline_breakpoint_callback() in the breakpoint
39         trampoline just before the breakpoint.
40
41 2002-12-31  Martin Baulig  <martin@ximian.com>
42
43         * debug.c (MonoDebuggerSymbolFileTable): Added `global_symfile'
44         field to point to the MonoGlobalSymbolTable.
45
46 2002-12-30  Martin Baulig  <martin@ximian.com>
47
48         * debug.c (MonoDebuggerInfo): Put back `symbol_file_modified'.
49         This variable now specifies that the symbol tables have been
50         modified after the last notification has been send.  The debugger
51         uses this flag to check whether it needs to reload the symbol
52         tables or not.
53         (debugger_compile_method): Just send a notification to the
54         debugger, but don't set the modified flag.  It may or may not be
55         set when the debugger gets the notification - depending on whether
56         the JIT compilation added a new method to the symbol tables.
57
58 2002-12-30  Martin Baulig  <martin@ximian.com>
59
60         * debug.c (debugger_compile_method): This is a wrapper around
61         mono_compile_method() which always sends a notification to the
62         debugger.
63
64 2002-12-30  Martin Baulig  <martin@ximian.com>
65
66         * debug.c: Reload the symbol file table before sending the
67         notification event to the debugger.
68         (MonoDebuggerInfo): Removed `update_symbol_file_table'.
69
70 2002-12-31  Martin Baulig  <martin@ximian.com>
71
72         * debug.c: Propertly lock everything and avoid race conditions.
73         (MonoDebuggerInfo): Removed the `symbol_file_modified' again.
74
75 2002-12-31  Duncan Mak  <duncan@ximian.com>
76
77         * debug.c (initialize_debugger_support): Fix build error by
78         declaring ret at the top of the function.
79
80 2002-12-30  Martin Baulig  <martin@ximian.com>
81
82         * debug.c: When running under the mono debugger, create a special
83         debugger thread; always protect the symbol tables with a mutex.
84
85 2002-12-28  Martin Baulig  <martin@ximian.com>
86
87         * debug.c (MonoDebuggerInfo): Added `symbol_file_modified'; it's
88         incremented each time one of the symbol tables is modified.
89
90 Thu Dec 19 18:31:54 CET 2002 Paolo Molaro <lupus@ximian.com>
91
92         * jit.c: fix LDELEMA implementation here as well.
93
94 Wed Dec 18 11:42:58 CET 2002 Paolo Molaro <lupus@ximian.com>
95
96         * jit.c: handle CEE_CONV_OVF_U8_UN like CEE_CONV_OVF_I8_UN.
97
98 Wed Dec 18 11:36:04 CET 2002 Paolo Molaro <lupus@ximian.com>
99
100         * jit.c: query the thread abort signal from the runtime.
101
102 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
103
104         * jit.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
105
106 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
107
108         * jit.c (mono_analyze_stack): call the utility function 
109         mono_field_from_token to avoid code duplication.
110
111 2002-12-02  Dietmar Maurer  <dietmar@ximian.com>
112
113         * jit.c (mono_analyze_stack): added some additinal checks to verify IL code
114
115         * x86.brg (stmt): POP floating point stack correctly
116
117 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
118
119         * emit-x86.c (arch_emit_prologue): don't save caller saved
120         registers twice.
121
122         * exception.c (x86_unwind_native_frame): support exceptions inside
123         native code using gcc generated exception tables (-fexception).
124
125 2002-11-19  Dietmar Maurer  <dietmar@ximian.com>
126
127         * exception.c: include some code from Zoltan Varga, but modified
128         it slightly.
129
130 2002-11-27  Dietmar Maurer  <dietmar@ximian.com>
131
132         * exception.c: massive code cleanups. The code is still
133         architecture dependent, but it should be now possible to reuse the
134         complex parts for other architecture.
135
136 2002-11-15  Dick Porter  <dick@ximian.com>
137
138         * jit.c: Pass the attach callback to mono_runtime_init().
139
140 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
141
142         * jit.c: display the domain name in trace output.
143
144 2002-11-08  Dietmar Maurer  <dietmar@ximian.com>
145
146         * x86.brg (reg): fix bug #2721
147
148         * jit.c (mono_runtime_install_handlers): impl.
149
150 2002-10-17  Martin Baulig  <martin@gnome.org>
151
152         * debug.c (mono_debug_add_method): Make this actually work if we don't
153         have any lifetime information.
154
155 2002-10-15  Martin Baulig  <martin@gnome.org>
156
157         * jit.cs (PUSH_TREE): Always set t->cli_addr here.
158
159         * debug.c (generate_line_number): Small fix to make this actually
160         work for more complex things.
161
162 2002-10-11  Dietmar Maurer  <dietmar@ximian.com>
163
164         * x86.brg (freg): use fprem instead of fprem1
165
166 2002-10-03  Dietmar Maurer  <dietmar@ximian.com>
167
168         * jit.c (ves_array_element_address): added check for out of range index
169         (mono_analyze_stack): added fix for bug #31654
170
171 2002-10-01  Martin Baulig  <martin@gnome.org>
172
173         * debug.c: Don't create an .il file for the dynamic symbol file.
174
175 2002-10-01  Martin Baulig  <martin@gnome.org>
176
177         * debug.c (MonoDebuggerInfo): Added mono_runtime_invoke().
178
179 2002-09-27  Martin Baulig  <martin@gnome.org>
180
181         * debug.c (debug_load_method_lines): Don't use sigaction() on win32.
182
183 2002-09-27  Dick Porter  <dick@ximian.com>
184
185         * mono.c: Tell glib what the program name is, by passing it the
186         name of the managed file we're executing
187
188 2002-09-26  Martin Baulig  <martin@gnome.org>
189
190         * trampoline.c (x86_magic_trampoline): Don't insert the breakpoint
191         trampoline into the vtable, also use it for non-virtual methods,
192         remove the breakpoint when done.
193
194 2002-09-26  Martin Baulig  <martin@gnome.org>
195
196         * debug.c (debug_load_method_lines): Block SIGCHLD while running
197         monodis.
198
199 2002-09-26  Martin Baulig  <martin@gnome.org>
200
201         * debug.c: Reworked the whole debugging stuff.  We have now one
202         single `mono_debug_handle' which keeps a hashtable of
203         `AssemblyDebugInfo's (which may have different debugging formats).
204         The AssemblyDebugInfo is now created when the assembly is loaded,
205         but never when adding a class/type.
206
207         * mono.c: Initialize debugging stuff after corlib and the assembly
208         have been loaded.
209
210 2002-09-25  Martin Baulig  <martin@gnome.org>
211
212         * debug-private.h (DebugLineNumberInfo): Removed.  There's now a
213         MonoDebugLineNumberEntry type in debug-mono-symfile.h which we're
214         using instead of it.
215         (DebugMethodInfo): Removed `line_numbers'.
216
217         * debug.c: Reworked the line number generation; we're now using
218         the MonoDebugLineNumberEntry try for all debugging formats.  This
219         type also includes the line number and IL offset, this allows the
220         JIT to produce better line number info: we only emit line number
221         information for source lines which actually have code.
222
223 2002-09-25  Martin Baulig  <martin@gnome.org>
224
225         * debug.h: Removed external declaration of all functions which
226         should only be called from the Mono Debugger and also made them
227         static.  Since the debugger gets their address from the
228         `MONO_DEBUGGER__debugger_info' vtable, there's no need to export
229         these functions.
230
231 2002-09-25  Martin Baulig  <martin@gnome.org>
232
233         Improved breakpoint support, we can now dynamically insert and
234         remove breakpoints at runtime and when called from withing the
235         Mono Debugger, we're using a special breakpoint trampoline.
236
237         * debug.h (mono_method_has_breakpoint): New method to check
238         whether to insert a breakpoint for a method.
239         (mono_insert_breakpoint): New method to insert a breakpoint.
240         (mono_insert_breakpoint_full): New method to insert a breakpoint,
241         takes a MonoMethodDesc.
242         (mono_remove_breakpoint): New method to remove a breakpoint.
243
244         * debug.c (mono_debugger_insert_breakpoint): New function for the
245         debugger.  Should only be called from the debugger.
246         (mono_debugger_remove_breakpoint): Likewise.
247
248         * mono.c (main): Use mono_insert_breakpoint() to insert breakpoints.
249
250         * trampoline.c (get_breakpoint_trampoline): New static function to
251         create a special breakpoint trampoline for the debugger.
252         (x86_magic_trampoline): If we're running inside the Mono Debugger
253         and a breakpoint was requested for the method, generate a special
254         breakpoint trampoline.
255
256         * jit.c (mono_debug_methods): Removed, use mono_insert_breakpoint()
257         to insert a breakpoint.
258         (mono_debug_last_breakpoint_address): Removed.
259         (match_debug_method): Removed, use mono_method_has_breakpoint().
260
261 Wed Sep 25 12:04:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
262
263         * jit.c: reorder mono_runtime_cleanup () call since it needs the
264         engine still fully working.
265
266 2002-09-24  Martin Baulig  <martin@gnome.org>
267
268         * debug.c (mono_debug_open): When we're invoked from inside the
269         Mono Debugger, set mono_debugger_class_init_func (exported in
270         metadata/class.c) to mono_add_type().
271         (mono_add_type): Call mono_debug_symfile_add_type().
272
273 Tue Sep 24 11:34:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
274
275         * jit.c: avoid including cil-coff.h (again). Optimize typeof (type).
276         Run finalize on domain cleanup.
277         * mono.c: call setlocale ().
278         * trampoline.c: clearer error message for invalid trampoline.
279
280 2002-09-21  Martin Baulig  <martin@gnome.org>
281
282         * debug.c (MonoDebuggerSymbolFileTable): Use an actual typedef for this
283         instead of writing a byte blob.
284         (mono_debug_make_symbols): This doesn't touch the symbol tables anymore.
285         (mono_debug_add_method): Incrementally add the new method to the symbol
286         table.
287
288         * exception.c (arch_handle_exception): If we have debugging support,
289         call mono_debugger_update_symbol_file_table () as well.
290
291 2002-09-20  Martin Baulig  <martin@gnome.org>
292
293         * debug.c (mono_debug_add_method): The `MonoDebugVarInfo' now includes
294         the size of the variable.
295
296 2002-09-18  Dietmar Maurer  <dietmar@ximian.com>
297
298         * linear-scan.c (mono_analyze_liveness): we can save 30% of needed
299         iterations if we visit blocks in reverse order.
300
301 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
302
303         * jit.c (mono_analyze_stack): cleaup of the array code
304
305         * exception.c: added patch from Julio Merno to fix bug #30048
306
307         * jit.c (mono_analyze_stack): code cleanup, fix bug #29365
308
309 2002-09-09  Dietmar Maurer  <dietmar@ximian.com>
310
311         * x86.brg (LDELEMA): use x86_lea 
312
313 2002-09-06  Martin Baulig  <martin@gnome.org>
314
315         * debug.c (debug_update_il_offsets): Fixed a memory corruption bug.
316         If you were getting random crashes when using the JIT with debugging
317         turned on, this fixes it.
318
319 2002-09-06  Dietmar Maurer  <dietmar@ximian.com>
320
321         * emit-x86.c (arch_emit_epilogue): use pop instead of mov
322
323 2002-09-05  Martin Baulig  <martin@gnome.org>
324
325         * debug.c (MONO_DEBUGGER__debugger_info): New global data symbol
326         which is read by the debugger.
327
328 Wed Sep 4 14:06:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
329
330         * Makefile.am: link libmono directly into mono. Use a ld script
331         to reduce exported symbols.
332
333 2002-09-03  Martin Baulig  <martin@gnome.org>
334
335         * debug.c (free_method_info): Make this actually work.
336
337 2002-09-03  Martin Baulig  <martin@gnome.org>
338
339         * debug.h (MonoDebugFormat): Killed MONO_DEBUG_FORMAT_DWARF2_PLUS.
340         * debug-dwarf2-plus.c: Removed.
341
342         * debug-private.h (DebugMethodInfo): Removed the `method_info' field.
343         (AssemblyDebugInfo): Removed the old `symfile' field and renamed
344         `mono_symfile' to `symfile'.
345
346         * debug.c (mono_debug_open): Replaced the assembly argument with a
347         file name argument; you can now call this before loading the assembly.
348         (debug_generate_method_lines): The MonoDebugILOffsetInfo struct is gone,
349         we now use MonoSymbolFileLineNumberEntry's and a separate address array
350         instead; splitted out all MonoSymbolFileLineNumberEntry code into
351         debug_generate_il_offsets() and debug_update_il_offsets().
352         (mono_debug_add_method): Don't create the MonoDebugMethodInfo here; it's
353         created when reading the symbol file or from debug_load_method_lines().
354         (debug_load_method_lines): Create the MonoDebugMethodInfo for all methods.
355
356         * exception.c (arch_handle_exception): Call mono_debug_make_symbols() before
357         looking up an address.
358
359         * debug.c: Don't create the .il files for MONO_DEBUG_FORMAT_MONO.
360
361         * mono.c (main): Initialize debugging before loading the first assembly.
362         
363 2002-08-28  Dick Porter  <dick@ximian.com>
364
365         * mono.c: mono_set_rootdir() doesnt take any args now
366
367         * Makefile.am: Export HOST_CC for w32 builds
368
369 2002-08-28  Dietmar Maurer  <dietmar@ximian.com>
370
371         * jit.c (mono_store_tree): only allocate vars if really necessary
372
373 2002-08-27  Martin Baulig  <martin@gnome.org>
374
375         * debug.c: The mono symbol file is installed together with the assembly
376         it belongs to and it's used on a per-image basis.
377
378 Tue Aug 27 19:44:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
379
380         * mono.c: don't use the cil-coff header outside of the loader.
381
382 2002-08-27  Martin Baulig  <martin@gnome.org>
383
384         * debug.c (mono_debugger_internal_get_symbol_files): Removed, we need
385         to use global variables for this since they're stored in a core file.
386         (mono_debugger_symbol_file_table_generation): New global variable.
387         (mono_debugger_symbol_file_table): New global variable.
388         (mono_debugger_update_symbol_file_table): New global function to update
389         the symbol file table.
390
391 2002-08-27  Martin Baulig  <martin@gnome.org>
392
393         * trampoline.c (mono_generic_trampoline_code): New global variable.
394         (arch_create_jit_trampoline): Use the new global variable to store the
395         generic trampoline code instead of using a static one.  This allows the
396         debugger to access this variable to check whether a method is a trampoline.
397
398         * debug.h (mono_generic_trampoline_code): Added external declaration.
399
400 2002-08-27  Martin Baulig  <martin@gnome.org>
401
402         * debug.c (MonoDebugHandle): Moved the method hash into the
403         AssemblyDebugInfo struct since we need to use a separate hash for each
404         MonoImage.
405
406         * debug.c: Added special undocumented command line argument to create a
407         symbol file for IL files on-the-fly.  In this case, we also need to create
408         the IL files and parse them.
409         (mono_debugger_internal_get_symbol_files): Return something more reasonable.
410
411 2002-08-26  Martin Baulig  <martin@gnome.org>
412
413         * debug.c (mono_debugger_internal_free_symbol_files): New function.
414         (mono_debugger_internal_symbol_files_changed): New global variable.
415
416 2002-08-24  Martin Baulig  <martin@gnome.org>
417
418         * debug.c (mono_debugger_internal_get_symbol_files): New function.
419
420 2002-08-24  Martin Baulig  <martin@gnome.org>
421
422         * debug.c (mono_debug_write_symbols): Added support for the new
423         debugging format.
424
425         * mono.c (main): The `--debug' argument now knows about a new
426         debugging format `mono' which will be used to display source lines
427         in backtraces.
428
429         * debug.h (MonoDebugFormat): Added a new MONO_DEBUG_FORMAT_MONO
430         which will be used when displaying backtraces.  It reads a new
431         binary symbol file.
432
433 2002-08-23  Martin Baulig  <martin@gnome.org>
434
435         * jit.c (match_debug_method): Don't include runtime invoke methods
436         in the search.
437
438         * mono.c (main): Accept `Main' as argument to --break to insert a
439         breakpoint on the application's main method.
440
441 2002-08-23  Martin Baulig  <martin@gnome.org>
442
443         * debug-dwarf2.c (dwarf2_write_class_field): Don't include any static fields.
444         
445 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
446
447         * exception.c (arch_handle_exception): don't set stack_trace to
448         null (so that it contains the full trace even when we rethrow the
449         exception).
450
451 2002-08-19  Nick Drochak <ndrochak@gol.com>
452
453         * x86.brg (mono_llmult_ovf): Simplified the code greatly by refactoring
454         the algebraic form we are using.  This also eliminated a silly overflow
455         of the intermediate result that was causing troubles.
456
457 2002-08-16  Nick Drochak <ndrochak@gol.com>
458
459         * x86.brg (mono_llmult_ovf): Flip ALL the bits, dummy. Now negative numbers
460         work.
461
462 2002-08-15  Nick Drochak <ndrochak@gol.com>
463
464         * x86.brg (mono_llmult_ovf): Fix so it throws an overflow when result
465         will not fit in 64 bits.  Fixes bug #27375.
466
467 Wed Aug 14 17:31:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
468
469         * exception.c: updates for API changes in metadata/.
470
471 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
472
473         * jit.c (mono_jit_init): use  ((gpointer)-1) as end_of_stack
474         address for the main thread.
475
476 2002-08-12  Dietmar Maurer  <dietmar@ximian.com>
477
478         * jit.c (mono_analyze_stack): added support for Thread::Abort ()
479
480 2002-08-08  Dietmar Maurer  <dietmar@ximian.com>
481
482         * exception.c (arch_handle_exception): simply return and let the
483         libpthread/kernel restore the context. This should work on recent
484         versions of linuxthreads.
485
486         * jit.c (mono_runtime_install_handlers): switch back to use
487         sigaction from libpthreads. As long as this does not make problems
488         we should use this instead of syscall.
489
490 2002-08-07  Dietmar Maurer  <dietmar@ximian.com>
491
492         * jit.c: removed the createdelegate icall
493         (mono_analyze_stack): special case Array::Address()
494
495 2002-08-06  Dietmar Maurer  <dietmar@ximian.com>
496
497         * emit-x86.c (arch_emit_prologue): make the call to
498         mono_get_lmf_addr relocatable.
499         (arch_jit_compile_cfg): do not waste memory
500         (arch_jit_compile_cfg): use a mempool to store native code. This
501         improves locality of code.
502
503 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
504
505         * jit.c (mono_analyze_stack): impl. CEE_MONO_RETOBJ
506
507 2002-07-30  Sergey Chaban <serge@wildwestsoftware.com>
508
509         * x86.brg (LOCALLOC): under Windows, if allocation size is bigger
510         than one page, it's necessary to allocate memory incrementally,
511         in page-size steps, performing stack-touch every time.
512         Also added LOCALLOC(CONST_I4) implementation.
513
514 2002-07-27  Dietmar Maurer  <dietmar@ximian.com>
515
516         * jit.c (mono_get_runtime_method): code cleanup
517
518         * x86.brg: we do not need to save EAX/ECX/EDX in stmt:
519
520 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
521
522         * jit.c (mono_analyze_stack): added CEE_TAIL (but it is ignored)
523
524 Wed Jul 24 13:02:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
525
526         * jit.c, jit.h, exception.c: implemented stack walking function.
527
528 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
529
530         * x86.brg (ARG_OBJ): removed zero sized object warning 
531
532 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
533
534         * jit.c (mono_allocate_excvar): mark excvar as volatile
535
536         * emit-x86.c (enter_method): use arch_get_argument_info to get
537         stack layout.
538
539         * jit.c (mono_analyze_stack): use arch_get_argument_info to get
540         stack layout.
541         (mono_analyze_stack): removed unused code
542
543         * emit-x86.c (arch_allocate_arg): impl.
544
545 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
546
547         * emit-x86.c (arch_allocate_var): fix alignment bug
548
549         * x86.brg (X86_CALL_BEGIN): add argument padding before emitting a call
550
551         * jit.c (mono_analyze_stack): s/k/k + 1/
552
553         * x86.brg (LOCALLOC): align to MONO_FRAME_ALIGNMENT
554
555         * emit-x86.c (arch_get_argument_info): impl.
556
557 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
558
559         * exception.c (arch_handle_exception): Memory leak fix.
560
561 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
562
563         * jit.c (mono_analyze_stack): avoid recursive inlining
564
565 Fri Jul 19 18:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
566
567         * emit-x86.c: temporary workaround for gcc bug.
568         * jit.h, jit.c, mono.c: move mono_jit_image to jit.c.
569         Don't include config.h in headers.
570
571 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
572
573         * x86.brg: correctly align valuetype arguments on the stack
574
575         * jit.c (mono_analyze_stack): do not compute frame size here.
576
577         * x86.brg: use macros to avoid code duplication for CALL opcodes,
578         compute frame size in x86.brg
579
580 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
581
582         * x86.brg (ARG_OBJ): allow zero sized ARG_OBJ
583
584         * exception.c (arch_handle_exception): removed duplicated code,
585         added support for exception filters
586
587         * jit.c (mono_jit_compile_method): support exception filters
588
589 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
590
591         * jit.c (mono_analyze_stack CEE_DIV): added fix from Zoltan Varga
592         (bug #27423)
593         * jit.c: s/ISSTRUCT/MONO_TYPE_ISSTRUCT/ 
594
595         * helpers.c (mono_map_ldind_type): added suggested changes from
596         Zoltan Varga (support MONO_TYPE_U), variou 64bit fixes
597
598         * jit.c (mono_analyze_stack): remove the vtype pointer from the
599         stack (fix bug #27420)
600
601 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
602
603         * x86.brg (CALL_VOID): fix bug #27751
604         (CONV_R_UN) use reg2 instead of reg1 for the negative check /fix bug 27849.
605
606         * jit.c (mono_analyze_stack): adjust valuetype size for pinvoke calls
607
608 i2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
609
610         * x86.brg (freg): new rule freg: CALL_R8 (this, reg)
611
612 2002-07-10  Dietmar Maurer  <dietmar@ximian.com>
613
614         * emit-x86.c (arch_emit_prologue): added code to save LMF
615
616 2002-07-04  Dietmar Maurer  <dietmar@ximian.com>
617
618         * x86.brg (LOCALLOC): added fix from Zoltan Varga (for bug #27396) 
619
620 2002-07-05  Martin Baulig  <martin@gnome.org>
621
622         * debug.c (mono_debug_add_method): Fix a bug in the `begin_scope' and
623         `end_scope' calculations when linear scan register allocation is disabled.
624
625 2002-07-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
626
627         * mono.c: removed the "RESULT: X" message.
628
629 2002-07-01  Dietmar Maurer <dietmar@ximian.com>
630
631         * exception.c (arch_get_call_finally): restore caller saved
632         register used by global reg. allocation when calling finally
633         handlers (fixes bug #24943).
634
635 2002-07-01  Dick Porter  <dick@ximian.com>
636
637         * jit.c (mono_jit_exec): Removed unneeded argument to
638         mono_runtime_run_main()
639
640 2002-06-28  Martin Baulig  <martin@gnome.org>
641
642         * debug.c (debug_generate_method_lines, mono_debug_add_method): Make methods
643         start on the nop instruction to make single-stepping into an already-JITed
644         method work.
645
646 2002-06-26  Martin Baulig  <martin@gnome.org>
647
648         * debug.c (mono_debug_source_location_from_address): Added
649         `guint32 *line_number' argument.  If it's not NULL, store the line number
650         there and return the file name without the line number.
651
652         * exception.c (ves_icall_get_trace): Fill in `sf->filename' and `sf->line'.
653         (ves_icall_get_frame_info): Likewise.
654
655 2002-06-25  Dick Porter  <dick@ximian.com>
656
657         * jit.c (mono_jit_exec): Pass the assembly to mono_runtime_run_main
658
659 2002-06-22  Martin Baulig  <martin@gnome.org>
660
661         * debug.c (mono_debug_source_location_from_address): Small fix, an
662         unsigned number can never be smaller than zero, make that check
663         actually work.
664
665 2002-06-19  Dietmar Maurer  <dietmar@ximian.com>
666
667         * exception.c (ves_icall_get_trace): new method to get the stack
668         trace from a Exception.
669
670 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
671
672         * jit.c (check_inlining): do not inline functions containing 
673         calls to stack query functions
674
675         * exception.c (ves_icall_get_frame_info): impl.
676
677 Tue Jun 18 10:21:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
678
679         * invoke.c: marshal simple arrays correctly.
680
681 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
682
683         * x86.brg: added inlined versions of Math.Sin, Math.Cos, Math.Sqrt
684
685         * jit.c (mono_analyze_stack): impl. STARG
686         (mono_analyze_stack): impl. LDARGA
687
688         * exception.c (arch_handle_exception): correctly restore register
689         values when unwinding the stack (fixes bug 25698)
690
691 2002-06-09  Martin Baulig  <martin@gnome.org>
692
693         * debug.c (mono_debug_open_image): For MONO_DEBUG_FORMAT_DWARF2_PLUS,
694         the `%s-debug.s' file is in the same directory than its assembly.
695
696 Sat Jun 1 13:24:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
697
698         * message.c, emit-x86.c: kill warnings.
699
700 2002-05-31  Dietmar Maurer  <dietmar@ximian.com>
701
702         * x86.brg: buf fix in REMOTE_STIND_OBJ
703         (mono_ldvirtftn): impl.
704         (mono_ldintftn): impl.
705         (mono_ldftn): impl.
706
707 Fri May 31 13:26:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
708
709         * mono.c: added --config command line option.
710
711 Fri May 31 12:34:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
712
713         * jit.c, jit.h: collect statistics about the number of basic blocks.
714
715 2002-05-31  Martin Baulig  <martin@gnome.org>
716
717         * debug.c (mono_debug_address_from_il_offset): New public function.
718         (mono_debug_add_method): Improved local variable info: correctly handle
719         variables in registers and their start/end scopes.
720
721 2002-05-30  Martin Baulig  <martin@gnome.org>
722
723         * debug-dwarf2.c (dwarf2_write_string): Use "0x%lx" as fprintf() format,
724         not "%p" which seems to be broken on Windows/mingw32.
725
726 2002-05-30  Dietmar Maurer  <dietmar@ximian.com>
727
728         * x86.brg (reg): bug fix in LOCALLOC
729
730         * mono.c (main): new switch --nointrinsic to disable memcpy opt.
731
732         * x86.brg: added block copy/init optimizations from 
733         Serge (serge@wildwestsoftware.com)
734  
735 Thu May 30 14:13:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
736
737         * invoke.cs: lookup P/Invoke method address only when needed.
738
739 2002-05-29  Dietmar Maurer  <dietmar@ximian.com>
740
741         * x86.brg: bug fix in REMOTE_STIND_OBJ
742
743         * invoke.c (arch_create_native_wrapper): handle pointers to value types
744
745         * helpers.h: use mono_ prefix for all functions
746
747         * jit.c (mono_analyze_stack): fixed SIZEOF
748
749         * x86.brg: impl. LOCALLOC, INITBLK
750
751 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
752
753         * x86.brg: impl. CKFINITE 
754
755         * jit.c (mono_analyze_stack): impl. CEE_CALLI
756
757         * x86.brg (JMP): impl. JMP opcode
758
759 2002-05-27  Dietmar Maurer  <dietmar@ximian.com>
760
761         * jit.c (mono_cfg_new): reserve additional space to store ESP when
762         calling finally handlers.
763
764         * exception.c (arch_get_call_finally): save ESP before calling
765         finally handler.
766
767         * helpers.c (map_arg_type): move some generic helper function into
768         this file.
769
770         * mono.c (usage): new option --breakonex 
771
772         * exception.c (arch_exc_is_caught): only return FALSE if really
773         unhandled.
774
775         * jit.c (mono_thread_abort): free jit_tls
776
777 2002-05-24  Dietmar Maurer  <dietmar@ximian.com>
778
779         * x86.brg (stmt): use memmove to cope with overlapping
780         blocks. This is not required by the specs, so we can remove it
781         later if it turns out to be too slow (and use memcpy).
782
783         * jit.c (mono_analyze_stack): moved const. folding from x86.brg
784
785         * x86.brg: CPBLK impl.
786
787         * emit-x86.c (tree_emit): modified to support 3 nonterminals per
788         rule (used for CPBLK).
789
790 Thu May 23 18:43:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
791
792         * mono.c: remove generated code from hash when benchmarking/testing
793         method compilation.
794         * invoke.cs: special case string ctors.
795
796 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
797
798         * *.c: code cleanups - tried to separate architecture dependent things. 
799
800 2002-05-23  Martin Baulig  <martin@gnome.org>
801
802         * debug.c (mono_debug_open): Don't call mono_debug_add_image().
803         (mono_debug_write_symbols): Only recreate the symbol file if
804         necessary.
805
806         * debug-private.h (MonoDebugHandle): Added `dirty' flag.
807
808         * mono.c (main): Call mono_debug_add_image() here.
809
810         * jit.c (mono_thread_abort): If we have debugging support, call
811         mono_debug_make_symbols() and G_BREAKPOINT().
812
813         * exception.c (arch_handle_exception): Don't G_BREAKPOINT() if we get
814         an unhandled exception.
815
816 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
817
818         * delegate.c: move the thread pool to metadata/threadpool.c, code
819         cleanup.
820
821 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
822
823         * exception.c (arch_exc_is_catched): impl. MS like exception
824         handling (added a check for unhandled exceptions)
825
826 2002-05-22  Martin Baulig  <martin@gnome.org>
827
828         * debug-dwarf2-plus.c (mono_debug_open_assembly_dwarf2_plus): Only run
829         the assembler if necessary, ie. the assembler file is newer than the
830         symbol file or the symbol file does not exist.
831
832         * debug.c: Added "update_on_exit" argument to recreate the symbol file
833         when the JIT exists.
834
835         * debug-dwarf2.c: Produce assembler code which is free of comments and
836         extra whitespaces so that it's suitable for `as -f'.
837
838 2002-05-22  Martin Baulig  <martin@gnome.org>
839
840         * debug-dwarf2.c (dwarf2_write_section_end): Removed.  This is not needed
841         and not supported by all assemblers.
842         (dwarf2_write_2byte): Use ".word" instead of ".2byte" since ".2byte" is a
843         GNU extension.
844
845         * mono.c (--debug): Small fix in the argument parsing.
846
847 2002-05-22  Martin Baulig  <martin@gnome.org>
848
849         * debug.c: Added "dont_assemble" and "dont_precompile" argument for dwarf-plus.
850
851         * mono.c: Applied patch from Miguel:
852         (--debug): This is now a `--debug=[FORMAT]' argument where FORMAT defaults
853         to dwarf-plus.
854
855 2002-05-21  Martin Baulig  <martin@gnome.org>
856
857         * debug.c (mono_debug_source_location_from_address): Added support for the
858         dwarf2-plus format.
859
860 2002-05-21  Martin Baulig  <martin@gnome.org>
861
862         * debug.c (mono_debug_source_location_from_address): New function.
863         (mono_debug_il_offset_from_address): New function.
864
865         * exception.c (arch_handle_exception): If we have debugging support, include
866         information about the source location and IL offset in the stack trace.
867
868 2002-05-21  Dietmar Maurer  <dietmar@ximian.com>
869
870         * jit.c (mono_analyze_stack): LDARG uses 16bit argument (fix bug
871         #25058)  
872
873         * x86.brg (stmt): removed unnecessary assertion
874
875         * jit.c (check_inlining):  we cant inline throw instructions
876         (because it breaks some basic block requirements)
877
878 2002-05-21  Martin Baulig  <martin@gnome.org>
879
880         * debug-private.h (MonoDebugFlags): New enum typedef.
881
882         * debug.c (mono_debug_open): Added a few useful arguments.  See the manpage
883         for details.
884
885 2002-05-21  Martin Baulig  <martin@gnome.org>
886
887         * debug.c (mono_debug_open_file): Renamed to mono_debug_open(), now takes
888         a `MonoAssembly *' argument instead of a `char *filename' one.  Also added
889         `const char **args' argument.
890
891         * mono.c (mono_jit_assembly): Renamed to mono_jit_compile_image(), added
892         `int verbose' argument and made it public.
893         (mono_jit_compile_class): New public function,  moved the code to compile
894         all methods in a class here from main().
895         (--compile): The argument can now also be an image (in `@imagename' format).
896         Updated documentation for this command line argument.
897         (--precompile): New command line argument to precompile an image/class/method
898         before executing the main app.  This argument can be given multiple times.
899         (--break): Renamed the "--debug" command line argument to "--break".
900         (--debug): New command line argument to specify the debugging format.
901         (--stabs, --dwarf, --dwarf-plus): Removed, obsoleted by "--debug".
902         (--debug-args): New command line argument.  This is a comma-separated list of
903         additional arguments for the symbol writer.
904         (usage): Beautified the help text a bit.
905
906         * debug-dwarf2-plus.c (mono_debug_open_assembly_dwarf2_plus): Use the new
907         public mono_jit_compile_image() function rather than duplication this
908         functionality here.
909
910 2002-05-21  Martin Baulig  <martin@gnome.org>
911
912         * debug-dwarf2-plus.c: This is now working again :-)
913
914         * debug.c (mono_debug_open_file): When using MONO_DEBUG_FORMAT_DWARF2_PLUS,
915         we create two MonoDebugHandles: one for MONO_DEBUG_FORMAT_DWARF2_PLUS and
916         one for the fallback MONO_DEBUG_FORMAT_DWARF2.
917
918 2002-05-21  Martin Baulig  <martin@gnome.org>
919
920         * jit.c (mono_debug_handle): Removed this global variable.
921
922         * debug.c (mono_debug_close): Removed.
923         (mono_debug_cleanup): New global function.
924         (mono_debug_add_image): New global function.
925         (mono_debug_handle_from_class): New global function.
926         (mono_debug_write_symbols): New global function.
927         (mono_debug_add_type): Removed `MonoDebugHandle *' argument.
928         (mono_debug_add_method): Likewise.
929
930 2002-05-21  Martin Baulig  <martin@gnome.org>
931
932         Work around a hard-to-fix bug in GDB and create a single dwarf/stabs
933         file for all assemblies.  Currently, the JIT doesn't put all methods
934         from a single assembly into a continuous region of memory.  We were
935         previously creating valid DWARF 2 files for this, but unfortunately
936         GDB's symbol tables get messed up when it reads more than one such file.
937
938         * debug-private.h (AssemblyDebugInfo): Moved `f', `producer_name',
939         `next_idx', `methods', `type_hash', `source_files' and `format'
940         into the MonoDebugHandle.
941
942         * debug.c (mono_debug_get_type): This now operates on the MonoDebugHandle,
943         not on the AssemblyDebugInfo.
944         (mono_debug_open_file): Moved some stuff here from mono_debug_open_assembly().
945
946         * debug-dwarf2.c (mono_debug_write_assembly_dwarf2): Renamed into
947         mono_debug_write_dwarf2().
948         (mono_debug_open_assembly_dwarf2): Removed.
949         (mono_debug_close_assembly_dwarf2): Removed.
950
951         * debug-stabs.c (mono_debug_write_assembly_stabs): Renamed into
952         mono_debug_write_stabs().
953         (mono_debug_open_assembly_stabs): Removed.
954         (mono_debug_close_assembly_stabs).
955
956         * debug-dwarf2-plus.c: This is currently broken. :-(
957
958 2002-05-20  Martin Baulig  <martin@gnome.org>
959
960         * debug.h (mono_debug_format): New global variable.
961         (MonoDebugFormat): Added MONO_DEBUG_FORMAT_NONE.
962
963         * debug-private.h (MonoDebugHandle): Added `objfiles' field which is
964         a whitespace separated list of symbol files.
965         (AssemblyDebugInfo): Added `objfile' filed which is the name of the
966         symbol file.
967
968         * mono.c (main): Pass the assembly file name to mono_debug_open_file().
969
970         * debug.c (mono_debug_make_symbols): Link all symbol files into a big
971         `<assemblyname>.o' symbol file.
972
973 2002-05-20  Martin Baulig  <martin@gnome.org>
974
975         * debug.c (debug_load_method_lines): Check whether the assembly file
976         is newer than the IL file and recreate the IL file if necessary.
977
978 2002-05-20  Miguel de Icaza  <miguel@ximian.com>
979
980         * mono.c Updated copyright years. 
981
982 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
983
984         * mono.c (usage): Relayout command line options.
985
986 2002-05-17  Dietmar Maurer  <dietmar@ximian.com>
987
988         * x86.brg (reg): fixed array bound check
989
990         * emit-x86.c (enter_method): print method signature
991
992         * exception.c (arch_handle_exception): set trace info before we
993         call handlers.
994
995 2002-05-16  Dietmar Maurer  <dietmar@ximian.com>
996
997         * jit.c (mono_find_final_block): make it work with mcs
998
999         * x86.brg: buf fix. if exception variable is allocated to a register. 
1000
1001         * jit.c (mono_find_final_block): bug fix.
1002
1003 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
1004
1005         * delegate.c (arch_end_invoke): fix bug #24653, simplified the
1006         code using new runtime_invoke feature.
1007
1008         * jit.c (mono_analyze_flow): try blocks are followed by handler
1009         blocks, so we need to add all handler blocks as succesors.
1010         (mono_thread_start_cb): set end_of_stack
1011
1012         * exception.c (arch_handle_exception): correctly save/restore caller
1013         saved regs.
1014
1015         * emit-x86.c (arch_emit_prologue): correctly save/restore caller
1016         saved regs.
1017
1018         * jit.c (mono_cfg_new): allocate space for caller saved registers.
1019
1020 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
1021
1022         * jit.c: only use one TLS slot to store jit data
1023
1024         * exception.c (arch_handle_exception): print function signature,
1025         use thread relative end_of_stack
1026
1027 2002-05-13  Dietmar Maurer  <dietmar@ximian.com>
1028
1029         * jit.c (OPT_BOOL): new. opt. for boolean variables - we simply
1030         store them as 32 bit integers.
1031         (mono_analyze_stack): we need to generate a temporary var for
1032         SHL/SHR because the tree allocator can fail otherwise 
1033
1034         * exception.c (arch_handle_exception): EIP now points to the call
1035         instruction, not to the instruction after the call. This fixes the
1036         bug reported by Linus Upson (tests/exception8.cs)
1037
1038 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
1039
1040         * jit.c (mono_analyze_flow): always allocate the forest array
1041         (mono_stack_duplicate_used_var): impl.
1042         (mono_copy_used_var): impl.
1043
1044         * x86.brg: bug fix in SHR/SHL
1045
1046         * emit-x86.c (arch_emit_prologue): check if live_in_set != NULL
1047
1048 2002-05-11  Sergey Chaban <serge@wildwestsoftware.com>
1049
1050         * mono.c: new --fast-iconv command line option
1051         to enable fast FP-to-integer conversion code.
1052         * jit.c, jit.h: added global variable to store state
1053         for the above option. This optimization is disabled
1054         by default.
1055         * x86.brg: added code to emit fast FP-to-integer
1056         conversion sequences.
1057
1058 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
1059
1060         * emit-x86.c: simple definite assignment analysis optimization for
1061         uninitialized locals.
1062
1063 Fri May 10 15:43:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
1064
1065         * x86.brg, emit-x86.c: patch the branch targets with x86_patch().
1066
1067 2002-05-10  Dietmar Maurer  <dietmar@ximian.com>
1068
1069         * linear-scan.c (mono_update_gen_set): improvement/bug fix
1070
1071         * x86.brg: added additional rules to handle global allocated registers
1072
1073         * mono.c (usage): the option is called --nols, and it dissables
1074         linear scan.
1075
1076         * x86.brg: better LDIND_R4, LDIND_R8, STIND_R4, STIND_R8
1077
1078 2002-05-09  Dietmar Maurer  <dietmar@ximian.com>
1079
1080         * linear-scan.c: linear scan reg. allocation and data flow analysis
1081         use Paolo's great bitset implementation.
1082
1083         * jit.c (arch_allocate_var): add live range info
1084         (mono_cfg_add_successor): create list of successors for basic
1085         blocks.
1086
1087         * mono.c (main): new option --ls to enable linear scan
1088
1089         * exception.c (arch_handle_exception): print instruction pointer
1090         relative to method start address.
1091
1092         * jit.c (mono_print_ctree): print register number if locals are
1093         allocate in registers.
1094
1095         * emit-x86.c (arch_emit_prologue): initialize reg. allocated locals
1096         (arch_emit_epilogue): take care when restoring save registers,
1097         because the stack pointer may has changed.
1098
1099         * x86.brg: s/VAROFFSET/VARINFO/
1100         modified to support global register allocation
1101
1102 Mon May 6 15:38:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
1103
1104         * jit.h, jit.c, emit-x86.c: x86 cpu detection code from Sergey.
1105
1106 2002-05-03  Sergey Chaban <serge@wildwestsoftware.com>
1107
1108         * x86.brg: more coni4 optimizations
1109         MUL: generate optimized code for some consts other
1110         than powers of 2 (hardcoded impl. for 3, 5, 10 etc.);
1111         DIV_UN: multiply with reciprocal instead of dividing;
1112
1113 2002-05-03  Dietmar Maurer  <dietmar@ximian.com>
1114
1115         * x86.brg: use VAROFFSET macro
1116
1117         * emit-x86.c (tree_emit): allocate space for spilled regs in
1118         activation frame instead of pushing them to the stack.
1119
1120         * x86.brg: replace BXX with CBRANCH/COMPARE
1121         replaced CXX CSET/COMPARE
1122
1123         * emit-x86.c (arch_allocate_regs): improved register allocation
1124
1125 2002-05-02  Dietmar Maurer  <dietmar@ximian.com>
1126
1127         * delegate.c (mono_delegate_cleanup): signal semaphore in order to
1128         exit threads.
1129
1130 2002-04-30  Dick Porter  <dick@ximian.com>
1131
1132         * mono.c (main): Tell glib to not abort when g_log() etc print
1133         recursively
1134
1135 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
1136
1137         * x86.brg: opt. LDELEMA impl.
1138         (MUL) use shift when possible.
1139         (DIV) use shift when possible.
1140         impl. various opt. with coni4
1141
1142         * exception.c (arch_handle_exception): use ctx->SC_EBP in
1143         end_of_stack check as suggested by Linus Upson <linus@linus.com>
1144
1145 2002-04-29  Dietmar Maurer  <dietmar@ximian.com>
1146
1147         * x86.brg (LDLEN, UNBOX): removed unnecessary NULL check.  
1148
1149         * exception.c: included the Freebsd patch from Sandro Tolaini
1150         <sandro@focuseek.com>
1151
1152 Mon Apr 29 15:18:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
1153
1154         * mono.c, jit.c: use mono_runtime_run_main ().
1155
1156 2002-04-29  Dietmar Maurer  <dietmar@ximian.com>
1157
1158         * jit.c (mono_analyze_stack): dont call methods on Object with
1159         METHOD_ATTRIBUTE_FINAL directly because it breaks remoting.
1160
1161         * x86.brg: added more CONV_U rules
1162
1163         * jit.c (mono_analyze_stack): avoid recursive call of virtual
1164         methods: fixes Bug #23778 
1165         (mono_analyze_stack): emit right CONV_UX opcodes: fixes bug 23547
1166
1167         * exception.c (arch_handle_exception): only g_assert(cleanup) if
1168         we really need it.
1169
1170 2002-04-27      Patrik Torstensson <patrik.torstensson@intel.com>
1171
1172         * x86.brg: fixed bug in CONV_I8 (invalid stack correction)
1173
1174 2002-04-27  Martin Baulig  <martin@gnome.org>
1175
1176         * jit.h (MonoFlowGrap): Renamed `epilogue_begin' to `epilogue_end',
1177         there's already `epilog' so we don't need `epilogue_begin'.
1178
1179         * debug.c (mono_debug_add_method): Use `cfg->epilogue_end' to get the
1180         size of the method's code.
1181
1182 2002-04-25  Martin Baulig  <martin@gnome.org>
1183
1184         * debug-dwarf2.c (dwarf2_write_string_type): Reflect latest MonoString
1185         changes.
1186
1187 2002-04-25  Dietmar Maurer  <dietmar@ximian.com>
1188
1189         * x86.brg: enable stmt: STIND_I4 (addr, coni4) again,
1190         added CONV_OVF_I4 (fix bug #23808)
1191
1192 2002-04-23  Dietmar Maurer  <dietmar@ximian.com>
1193
1194         * x86.brg: code cleanup - use x86_patch ()
1195
1196         * jit.c (mono_analyze_stack): only use MB_TERM_CHECKTHIS when necessary
1197         (mono_analyze_stack): don't store constants in temp. variables for CEE_DUP
1198
1199         * x86.brg (stmt): removed stmt: STIND_I4 (addr, coni4) rule
1200         because it slows down performance.
1201
1202 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
1203
1204         * emit-x86.c: enter_method handles 8-byte aligned parameters.
1205
1206 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
1207
1208         * jit,h, jit.c, x86.brg: NEWOBJ_SPEC and NEWARR_SPEC terminals for
1209         non-shared code.
1210
1211 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
1212
1213         * jit.c (check_inlining): added statistics about inlineing
1214
1215         * mono.c (usage): new switch --noinline to disable inlining
1216
1217         * jit.c (mono_analyze_stack): added a check for (this!=NULL) if we
1218         inline methods (to keep semantics)
1219
1220         * x86.brg: added constant folding for inegers 
1221
1222         * emit-x86.c (tree_allocate_regs): handle the special case when
1223         chain rules need a register.
1224
1225 2002-04-19  Dietmar Maurer  <dietmar@ximian.com>
1226
1227         * invoke.c (arch_create_native_wrapper): do not save LMF for Strings
1228
1229         * jit.c (check_inlining): better inlining support
1230
1231 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
1232         
1233         * x86.brg: LDLEN uses max_length instead of bounds[0]
1234         * jit.c: support for new szarray format
1235
1236 2002-04-18  Dietmar Maurer  <dietmar@ximian.com>
1237
1238         * jit.c (check_inlining): added inlining support
1239
1240 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
1241
1242         * x86.brg: optimized version of castclass and isinst
1243
1244 Wed Apr 17 12:34:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1245
1246         * emit-x86.c, invoke.c: track time spent compiling.
1247
1248 Wed Apr 17 10:58:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
1249
1250         * emit-x86.c, invoke.c: call profile callbacks if needed.
1251         * jit.c, jit.h, mono.c: add --profile command line option.
1252
1253 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1254
1255         * jit.h: included mono/io-layer/io-layer.h to avoid breaking
1256         compilation under windows when upgrading mingw and w32api to 
1257         version 1.3 (thanks Dick!).
1258
1259 2002-04-15  Patrik Torstensson <patrik.torstensson@labs2.com>
1260
1261         * jit.c: changed the array icalls to use full names
1262
1263 2002-04-15  Dietmar Maurer  <dietmar@ximian.com>
1264
1265         * x86.brg: check the this pointer before calling
1266         non-virtual functions
1267
1268         * emit-x86.c (arch_emit_prologue): initialize local vars.
1269
1270         * x86.brg: removed incredible clumsy code
1271
1272 2002-04-13  Martin Baulig  <martin@gnome.org>
1273
1274         * debug-dwarf2.c (dwarf2_write_variable_location): New static func to write
1275         the location of a variable.
1276         (dwarf2_write_variable, dwarf2_write_parameter): Take a MonoDebugVarInfo
1277         instead of a stack offset and use dwarf2_write_variable_location() to write
1278         the location.
1279
1280 2002-04-13  Martin Baulig  <martin@gnome.org>
1281
1282         * debug.c, debug-stabs.c, debug-dwarf2.c: Reflect latest debug-symfile.h
1283         API changes.
1284
1285 2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1286
1287         * Makefile.am: use of the new '-s' option in monoburg.
1288
1289 2002-04-12  Martin Baulig  <martin@gnome.org>
1290
1291         * debug-dwarf2.c (dwarf2_write_variable): Emit info about the variable's
1292         lifetime.
1293
1294 2002-04-10  Sergey Chaban <serge@wildwestsoftware.com>
1295         * win32-exception: added Win32 SEH exception filter that translates
1296         CONTEXT to sigcontext;
1297
1298         * jit.c: added Win32 SEH init/reset calls, compute sigcontext address
1299         in a platfrom-dependent way;
1300
1301         * jit.h: use win32-exception instead of signal if PLATFORM_WIN32
1302         and avoid io-layer includes;
1303
1304         * delegate.c: do not include io-layer stuff if PLATFORM_WIN32
1305         is defined;
1306
1307 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
1308
1309         * delegate.c (arch_end_invoke): restore output arguments
1310
1311 Mon Apr 8 17:16:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
1312
1313         * jit.c: call mono_runtime_init ().
1314
1315 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
1316
1317         * jit.c (mono_jit_cleanup): added more statistics
1318
1319         * invoke.c (arch_create_native_wrapper): special case EndInvoke -
1320         we need to pass the MonoMethod pointer as first argument.
1321
1322         * delegate.c (mono_async_invoke): notify all listeners, not only a
1323         single one.
1324         (arch_end_invoke): we now pass a MonoMethod as first parameter and
1325         use arch_method_call_message_new() to access the stack.
1326         (arch_end_invoke): wait until we really finished processing
1327         (async_invoke_abort): notify all listeners, not only a
1328         single one.
1329
1330 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
1331
1332         * message.c (arch_return_value): impl.
1333         (arch_method_return_message_restore): consider delegate BeginInvoke
1334
1335         * jit.c: removed jit_exec_main()
1336
1337         * delegate.c (arch_begin_invoke): use the message builder to make
1338         it architecture independent - still needs more cleanup.
1339
1340 2002-04-05  Dietmar Maurer  <dietmar@ximian.com>
1341
1342         * delegate.c (mono_delegate_ctor): support for transparent proxy
1343
1344         * x86.brg (freg): bug fix in CONV_R* opcodes
1345
1346 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
1347
1348         * message.c: added documentation
1349
1350 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
1351
1352         * mono.c (main): use --trace instead of --trace-calls
1353
1354         * x86.brg: impl. REMOTE_STIND_XX
1355
1356         * message.c (mono_store_remote_field): impl.
1357
1358 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
1359
1360         * x86.brg: impl. REMOTE_FIELD (load fields of remote objects)
1361
1362         * message.c (mono_load_remote_field): impl.
1363
1364         * jit.c (mono_analyze_stack): only call marshalbyref methods
1365         through the vtable.
1366         (mono_analyze_stack): consider marshalbyref objects in LDFLD
1367
1368 Fri Mar 29 16:00:27 CET 2002 Paolo Molaro <lupus@ximian.com>
1369
1370         * x86.brg: kill pointer arithmetric.
1371
1372 2002-03-28  Martin Baulig  <martin@gnome.org>
1373
1374         * jit.c (mono_debug_insert_breakpoint): New global variable.
1375         (mono_debug_last_breakpoint_address): New global variable.
1376
1377         * emit-x86.c (arch_compile_method): If `mono_debug_insert_breakpoint' is
1378         non-zero, insert a breakpoint; if it's positive, decrement it when done.
1379         Set `mono_debug_last_breakpoint_address' to the address of the last inserted
1380         breakpoint.
1381
1382         * debug.h: Provide external declaration of `mono_debug_insert_breakpoint' and
1383         `mono_debug_last_breakpoint_address', also documented them here.
1384
1385 2002-03-28  Martin Baulig  <martin@gnome.org>
1386
1387         * debug-private.h (MonoDebugHandle): Renamed `format' to `default_format'.
1388         (AssemblyDebugInfo): Added `format'.
1389
1390         * debug.c: Use the AssemblyDebugInfo's `format' field to determine the format,
1391         this allows us choose the format on a per-assembly basis.
1392         (mono_debug_open_assembly): When using MONO_DEBUG_FORMAT_DWARF2_PLUS, fall back
1393         to MONO_DEBUG_FORMAT_DWARF2 if the symbol file does not exist, but the IL file
1394         exists.
1395         (debug_generate_method_lines): Generate correct IL offsets.
1396
1397 2002-03-28  Martin Baulig  <martin@gnome.org>
1398
1399         * jit.h (MonoFlowGraph): Added `prologue_end' and `epilogue_start' fields.
1400
1401         * emit-x86.c (arch_compile_method): Set prologue_end and epilogue_start.
1402
1403         * debug-private.h (DebugMethodInfo): Renamed `frame_start_offset' to
1404         `prologue_end_offset', added `epilogue_begin_offset' and `last_line'.
1405
1406         * debug.c (debug_generate_method_lines): Don't return if we don't have line
1407         numbers, we still need to generate the IL offsets here. Emit line numbers
1408         for `prologue_end_offset' (the first line of actual code) and 
1409         `epilogue_begin_offset' (the line of the method's closing brace).
1410         Don't crash if cfg->bblocks [i].forest is NULL.
1411         (mono_debug_add_method): Don't crash if we don't have line numbers.
1412         Initialize the newly added fields.
1413
1414         * debug-stabs.c: Record first and last line, emit filename info at the
1415         beginning of the stab file, gdb ignores the types otherwise.
1416
1417         * debug-dwarf2.c: Use the new prologue_end_offset instead of guessing it;
1418         emit line number info for the first and last line.
1419
1420 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
1421
1422         * invoke.c (arch_create_delegate_trampoline): impl.
1423
1424 Thu Mar 28 11:58:53 CET 2002 Paolo Molaro <lupus@ximian.com>
1425
1426         * Makefile.am, mono.c, jit.h, jit.c: build the libmono library
1427         with the jit runtime to easy embedding. main() is moved to mono.c, now.
1428         * jit.c: use opcode names from libmetadata.
1429         * debug.h, debug.c: constify char* argument.
1430
1431 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
1432
1433         * jit.c: catching SIGSEGV again, added proxy support
1434
1435 2002-03-21  Dietmar Maurer  <dietmar@ximian.com>
1436
1437         * delegate.c (mono_delegate_init): remove unused worker threads
1438
1439 2002-03-27  Mike Kestner <mkestner@speakeasy.net>
1440
1441         * delegate.c (arch_get_delegate_invoke): malloc a bigger area
1442
1443 Tue Mar 26 19:54:45 CET 2002 Paolo Molaro <lupus@ximian.com>
1444
1445         * jit.c: remove glib mem vtable code.
1446
1447 2002-03-26  Martin Baulig  <martin@gnome.org>
1448
1449         * debug-dwarf2.c (write_method_lines_dwarf2): Don't generate method
1450         lines if we don't have line number information.
1451         (write_method_dwarf2): Use `minfo->method_info.this_offset' instead
1452         of hardcoding 8.
1453
1454         * debug-stabs.c (write_method_stabs): Don't generate method lines if
1455         we don't have line number information. Use `minfo->method_info.this_offset'
1456         instead of hardcoding 8.
1457
1458         * debug.c (debug_generate_method_lines): Don't crash if we don't have
1459         line number information.
1460         (mono_debug_open_assembly): Don't generate line numbers for
1461         MONO_DEBUG_FORMAT_DWARF2_PLUS.
1462         (mono_debug_add_method): Don't store the 'this' offset in `param_offsets',
1463         but it in the new `this_offset' field.
1464         
1465 Mon Mar 25 13:03:35 CET 2002 Paolo Molaro <lupus@ximian.com>
1466
1467         * debug.c (debug_generate_method_lines): Use correct addresses for
1468         record_il_offset().
1469
1470 Mon Mar 25 13:03:35 CET 2002 Paolo Molaro <lupus@ximian.com>
1471
1472         * jit.c: do not set the glib mem vtable anymore.
1473         * Makefile.am: link to libmonoutils.
1474
1475 2002-03-25  Martin Baulig  <martin@gnome.org>
1476
1477         * debug.h (mono_debug_make_symbols): Documented this function.
1478
1479 2002-03-24  Martin Baulig  <martin@gnome.org>
1480
1481         * debug.c (mono_debug_add_method): Include the `this' offset in
1482         the `minfo->method_info.param_offsets' array.
1483
1484 2002-03-23  Martin Baulig  <martin@gnome.org>
1485
1486         * x86.brg (lreg: CONV_I8 (reg)): X86_XOR modifies the flags, so we need
1487         to do it before the X86_CMP.
1488         (reg: CLT (lreg, lreg)): Use correct x86_branch8() targets.
1489         (reg: CLT (lreg, lreg)): Likewise.
1490         (reg: CLT_UN (lreg, lreg)): Likewise.
1491         (reg: CLT_UN (lreg, lreg)): Likewise.
1492         (reg: CGT (lreg, lreg)): Likewise.
1493         (reg: CGT (lreg, lreg)): Likewise.
1494         (reg: CGT_UN (lreg, lreg)): Likewise.
1495         (reg: CGT_UN (lreg, lreg)): Likewise.
1496
1497 2002-03-23  Martin Baulig  <martin@gnome.org>
1498
1499         * debug-private.h (AssemblyDebugInfo): Added `_priv'.
1500
1501         * debug-dwarf2-plus.c
1502         (mono_debug_open_assembly_dwarf2_plus): Open the symbol file here.
1503         (mono_debug_close_assembly_dwarf2_plus): Close the symbol file here.
1504         (mono_debug_write_assembly_dwarf2_plus): Only call
1505         mono_debug_update_symbol_file() here.
1506
1507 Thu Mar 21 17:35:48 CET 2002 Paolo Molaro <lupus@ximian.com>
1508
1509         * jit.c: inter strings before executing a method.
1510         Do not intern command line arguments anymore.
1511
1512 2002-03-21  Martin Baulig  <martin@gnome.org>
1513
1514         * debug.h (MonoDebugFormat): Added MONO_DEBUG_FORMAT_DWARF2_PLUS.
1515
1516         * debug-dwarf2-plus.c: This debugging format reads a symbol file which has
1517         been created by MCS and fills in all machine dependent stuff.
1518
1519         * debug-private.h (DebugMethodInfo): Added `MonoDebugMethodInfo method_info',
1520         removed everything which is already in MonoDebugMethodInfo.
1521
1522         * debug.c (debug_generate_method_lines): Generate the MonoILOffsetInfo array.
1523         (mono_debug_make_symbols): Don't open the file or call as, this is done in the
1524         backend code.
1525
1526         * jit.c (main): Added "--dwarf-plus" command line option to use the new
1527         MONO_DEBUG_FORMAT_DWARF2_PLUS debugging format.
1528
1529 2002-03-21  Dietmar Maurer  <dietmar@ximian.com>
1530
1531         * jit.c (usage): new option to specify maximum number of worker threads
1532         (mono_analyze_stack): avoid cyclic dependency in CEE_LDFTN
1533
1534         * delegate.c (async_invoke_abort): added support for asynchronous exceptions
1535         (arch_get_async_invoke): notify listeners before we call the
1536         asynchronous callback
1537
1538 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
1539
1540         * delegate.c (async_invoke_thread): support for domains
1541         (async_invoke_thread): create workers only when needed
1542
1543 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
1544
1545         * delegate.c (async_invoke_thread): initial support for BeginInvoke/EndInvoke
1546
1547 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>
1548
1549         * x86.brg: impl. lreg: XOR (lreg, lreg)
1550         impl. REM (freg, freg)
1551
1552 2002-03-17  Martin Baulig  <martin@gnome.org>
1553
1554         * debug.c (mono_debug_open_assembly): Call mono_debug_get_type() on all
1555         base types.
1556
1557         * debug-dwarf2.c: Added support for strings and arrays.
1558
1559 2002-03-17  Martin Baulig  <martin@gnome.org>
1560
1561         * debug.c (mono_debug_get_type): Recursively call this for all function members
1562         of a class type.
1563         (mono_debug_add_method): Don't mangle function names, this must be done by the
1564         debugger backend if the debugging format needs mangled names.
1565
1566         * debug-dwarf2.c: Improved support for classes, added member functions.
1567
1568 2002-03-16  Martin Baulig  <martin@gnome.org>
1569
1570         * debug.c (mono_debug_get_type): Recursively call this for all members and
1571         parent classes of a class type.
1572
1573         * debug-dwarf2.c: Added basic support for classes. Set source language to C++
1574         since GDB doesn't like Java very much.
1575
1576 2002-03-16  Martin Baulig  <martin@gnome.org>
1577
1578         * debug-dwarf2.c: Added support for enums.
1579
1580 2002-03-15  Martin Baulig  <martin@gnome.org>
1581
1582         * debug.c (mono_debug_get_type): Recursively call this for all members
1583         of a struct type.
1584
1585         * debug-dwarf2.c: Added support for structs.
1586
1587 2002-03-15  Dietmar Maurer  <dietmar@ximian.com>
1588
1589         * emit-x86.c (arch_create_jit_trampoline): adapt save/restore LMF
1590         to new MonoLMF layout
1591
1592 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
1593
1594         * emit-x86.c (arch_create_native_wrapper): new code to generate
1595         wrappers for calling native functions.
1596         (arch_create_native_wrapper): free allocated strings
1597         (arch_handle_exception): made mono_jit_info_table domain dependent
1598
1599 2002-03-14  Martin Baulig  <martin@gnome.org>
1600
1601         * debug.c (MonoDebugFormat): New public enums specifying which debugging
1602         format to use.
1603         (mono_debug_open_file): Added MonoDebugFormat argument.
1604         (mono_debug_make_symbols): Don't take an argument to make it easier to call
1605         this function from GDB. It's now safe to call this function multiple times;
1606         it'll always write a complete debugging file.
1607
1608         * debug.c: Splitted this file into a general part which remains in this file
1609         and the debugging format specific parts debug-stabs.c and debug-dwarf2.c.
1610         All public functions now call a corresponding format specific function.
1611
1612         * debug.c: The following changes are private to debug.c:
1613         (AssemblyDebugInfo, MonoDebugHandle): Moved declarations to debug-private.h.
1614         (record_line_number, debug_generate_method_lines): New private functions.
1615         (mono_debug_open_ass): Renamed to mono_debug_open_assembly; this function now
1616         calls a debugging-format-specific function (mono_debug_open_assembly_stabs or
1617         mono_debug_open_assembly_dwarf2).
1618         (mono_debug_make_symbols): Calls mono_debug_write_assembly_stabs/dwarf2(). It's
1619         now safe to call this function multiple times.
1620         (mono_debug_get_type): New public function. This takes a `MonoClass *' and
1621         returns an unique index for this type. It's used to ensure that we only write
1622         each class once to the debugging file.
1623         (mono_debug_add_method, mono_debug_add_type): Store all the data in an internal
1624         data structure, but don't directly write to the debugging file. This is done
1625         later from mono_debug_write_assembly().
1626
1627         * jit.c (main): Added "--dwarf" command line argument to generate DWARF 2
1628         debugging output. Call mono_debug_close() on cleanup if necessary.
1629
1630 2002-03-14  Martin Baulig  <martin@gnome.org>
1631
1632         * debug-private.h: New private header file.
1633
1634         * debug-stabs.c: Added the stabs type generation stuff which was
1635         previously in debug.c.
1636
1637         * debug-dwarf.c: Started to implement type support. We're currently
1638         only writing this most basic types to the dwarf file, but this will
1639         change soon.
1640
1641 2002-03-13  Martin Baulig  <martin@gnome.org>
1642
1643         * debug-stabs.c, debug-dwarf2.c: New files containing my new
1644         debugging code. They're now in CVS, but not yet used anywhere.
1645
1646 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
1647
1648         * emit-x86.c (mono_delegate_ctor): use C impl. instead of x86_*
1649         macros, included new delegate code from Daniel Stodden. 
1650         
1651         
1652 Mon Mar 11 14:47:21 CET 2002 Paolo Molaro <lupus@ximian.com>
1653
1654         * jit.c: verify that corlib and runtime are in sync.
1655
1656 Mon Mar 11 11:30:56 CET 2002 Paolo Molaro <lupus@ximian.com>
1657
1658         * emit-x86.c, jit.c: use the debug-helpers facilities to
1659         describe and match a method when debugging.
1660
1661 2002-03-10  Martin Baulig  <martin@gnome.org>
1662
1663         * emit-x86.c (arch_compile_method): When emitting stabs debugging
1664         output, put a nop instruction at the start of all functions so that
1665         the adresses won't change when using --debug.
1666
1667         * debug.c (mono_debug_add_method): `tree->cli_addr' is an offset into
1668         the bytecode area, stabs needs a line number in the .il file. Use the
1669         new info->moffsets to get the line number.
1670         (AssemblyDebugInfo): Added `total_lines' and `moffsets' fields.
1671         `moffsets' is an array of `total_lines' fields (total number of lines
1672         in the .il file); for each line in the .il field, this array contains
1673         the bytecode offset if it's an "IL_xxxx" line, -1 if it's the last line
1674         of a method and 0 otherwise.
1675         (debug_load_method_lines): Read the whole .il file and initialize the
1676         info->moffsets field.
1677
1678 2002-03-09  Martin Baulig  <martin@gnome.org>
1679
1680         * x86.brg (DIV_UN): Clear EDX before performing the division and remove
1681         the unnecessary CDQ instruction.
1682
1683 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
1684
1685         * jit.c (mono_analyze_stack): only load addresses of value types
1686         on the runtime stack.
1687
1688 2002-03-07  Duncan Mak  <duncan@ximian.com>
1689
1690         * Makefile.am: A small patch fixing errors in vpath-based builds
1691         (make clean failing to rerun monoburg due to BUILT_SOURCES usage),
1692         committed for Daniel Stodden <stodden@in.tum.de>. 
1693
1694 Thu Mar 7 17:22:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1695
1696         * jit.c: Boehm-GC enable.
1697
1698 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
1699
1700         * x86.brg (SAVE_LFM): bug fix: patch the saved IP because we
1701         realloc that code sometimes!
1702
1703         * emit-x86.c (mono_compute_branches): support several types of
1704         jump infos
1705
1706 2002-03-06  Dietmar Maurer  <dietmar@ximian.com>
1707
1708         * x86.brg: impl. MUL_OVF_UN (reg, reg)
1709
1710         * jit.c (mono_find_final_block): find correct finally handler.
1711
1712         * emit-x86.c (arch_create_jit_trampoline): bug fix: preserve
1713         caller saved registers.  
1714
1715 2002-03-05  Dietmar Maurer  <dietmar@ximian.com>
1716
1717         * x86.brg: use x86_widen_reg for CONV opcodes
1718
1719 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
1720
1721         * jit.c (MAKE_SPILLED_BI_ALU): remove unnecessary assertions
1722
1723         * emit-x86.c (arch_handle_exception): big fix - dont use
1724         uninitialized next_bp
1725         (arch_compile_method): make the jit thread save
1726         (x86_magic_trampoline): moved lock/unlock to x86_magic_trampoline
1727         to avoid need of recursive mutexes
1728
1729         * x86.brg: use new mono_assert macros
1730
1731 2002-02-28  Dietmar Maurer  <dietmar@ximian.com>
1732
1733         * emit-x86.c (arch_create_jit_trampoline): save/restore LMF before
1734         calling into unmanaged code (arch_compile_method).
1735
1736         * x86.brg: impl. CONV_I4 (freg) with correct rounding
1737         (lreg): impl CALL_I8(INTF_ADDR)
1738         impl. CONV_R_UN (reg)
1739         bug fix im REM_UN
1740
1741 2002-02-27  Dietmar Maurer  <dietmar@ximian.com>
1742
1743         * emit-x86.c (arch_runtime_invoke): impl. runtime invoke for the jit.
1744
1745 2002-02-26  Dietmar Maurer  <dietmar@ximian.com>
1746
1747         * x86.brg: bug fix in CLT(lreg,lreg)
1748         (reg): bug fix in CONV_OVF_I4(lreg)
1749         (lreg): replaced x86_call_reg with x86_call_code
1750
1751         * emit-x86.c (mono_add_jump_info): impl.
1752         (mono_compute_branches): patch real jump address (instead of
1753         emitting code twice)
1754
1755 Tue Feb 26 11:56:03 CET 2002 Paolo Molaro <lupus@ximian.com>
1756
1757         * x86.brg: optimize cmp reg,0 -> test reg.
1758
1759 Sun Feb 24 13:58:34 CET 2002 Paolo Molaro <lupus@ximian.com>
1760
1761         * jit.h, jit.c, emit-x86.c: Added a few statistics counters
1762         and the --stats command line option to print them.
1763         Fixed memory leak in arch_compile_method () when a method's code is
1764         found in the cache. Fix magic trampoline to deal with static calls.
1765
1766 2002-02-21  Dietmar Maurer  <dietmar@ximian.com>
1767
1768         * x86.brg: impl. SHR_UN for lreg, added new test, bug fix for BNE_UN 
1769
1770 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
1771
1772         * emit-x86.c (arch_compile_method): add shared code to mono_root_domain
1773         (arch_create_jit_trampoline): cache trampoline code
1774
1775 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
1776
1777         * jit.c (mono_analyze_stack): optimize LDSFLD/STSFLD for domain
1778         specific code.
1779         (mono_analyze_stack): use MB_TERM_LDELEMA to perform bound check
1780
1781         * x86.brg: do not encode exception objects into the instruction
1782         stream, because they are domain dependend. Use
1783         arch_get_throw_exception_by_name() instead;
1784
1785 Mon Feb 18 15:51:40 CET 2002 Paolo Molaro <lupus@ximian.com>
1786
1787         * jit.c: intern command line arguments.
1788
1789 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
1790
1791         * jit.c (mono_analyze_stack): use the magic trampoline for all
1792         calls (since we cant store the address of compiled code in
1793         method->addr).
1794         (mono_analyze_stack): imp. LDSTR for shared code
1795
1796         * emit-x86.c (x86_magic_trampoline): handle x86_call_code().
1797         (arch_compile_method): add a cache for compiled methods to avoid
1798         recompilation. dont use method->addr to store domain dependent
1799         code address.
1800
1801 2002-02-15  Dietmar Maurer  <dietmar@ximian.com>
1802
1803         * x86.brg: impl. BLE,BGT for freg
1804
1805 Sat Feb 16 16:27:42 CET 2002 Paolo Molaro <lupus@ximian.com>
1806
1807         * emit-x86.c: handle unreachable code. Eliminate some unneeded
1808         malloc() calls.
1809         * jit.c: handle unreachable code. Move setting of mono_end_of_stack to
1810         main(). Add --compile classname and --ncompile num command line
1811         options to do performance evaluation of the jitter (and help
1812         debugging).
1813
1814 2002-02-15  Dietmar Maurer  <dietmar@ximian.com>
1815
1816         * emit-x86.c (arch_compile_method): bug fix in static delegate
1817         Invoke code.
1818
1819 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
1820
1821         * jit.c (mono_analyze_stack): do a LDIND after NEWOBJ for value types.
1822
1823 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
1824
1825         * jit.c (mono_analyze_stack): impl. CEE_SIZEOF
1826
1827 2002-02-13  Miguel de Icaza  <miguel@ximian.com>
1828
1829         * jit.c (arch_allocate_var): Only assert that the alignment is
1830         at least 32-bits aligned, not always 32-bits aligned (for I8 for example).
1831
1832 Mon Feb 11 11:20:57 CET 2002 Paolo Molaro <lupus@ximian.com>
1833
1834         * x86.brg: fix invalid cast check in unbox. Pack MBTree structure.
1835
1836 Sun Feb 10 12:54:05 CET 2002 Paolo Molaro <lupus@ximian.com>
1837
1838         * emit-x86.c: make x86_magic_trampoline() handle call instructions
1839         with an imm8 displacement. x86.brg not yet changed to take advantage
1840         of it.
1841
1842 Sun Feb 10 11:47:30 CET 2002 Paolo Molaro <lupus@ximian.com>
1843
1844         * jit.c: use opcode info from libmetadata to do flow analysis
1845         and simplify code.
1846
1847 2002-02-06  Dietmar Maurer  <dietmar@ximian.com>
1848
1849         * jit.c (MAKE_LDELEM, MAKE_STELEM): added bound checking 
1850
1851 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
1852
1853         * x86.brg: use element_class for type check
1854
1855 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
1856
1857         * jit.c (main): impl. __array_Address icall
1858
1859         * mempool.c (mono_mempool_alloc): handle large block allocation
1860
1861 2002-02-01  Dietmar Maurer  <dietmar@ximian.com>
1862
1863         * x86.brg: impl. SHL/SHR/CLT for 64 bit values
1864
1865 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
1866
1867         * x86.brg: impl. CEQ(lreg,lreg)
1868
1869         * jit.c (mono_analyze_stack): impl. LDVIRTFTN
1870         (mono_analyze_stack): handle MONO_TABLE_MEMBERREF in LDSFLD/STSFLD
1871
1872         * x86.brg: removed some dead code.
1873
1874 2002-01-18  Dietmar Maurer  <dietmar@ximian.com>
1875
1876         * jit.c (arch_allocate_var): fixed alignment bugs
1877
1878 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
1879
1880         * jit.c (mono_analyze_stack): use LDIND_REF/STIND_REF
1881
1882 2002-01-16  Dietmar Maurer  <dietmar@ximian.com>
1883
1884         * jit.c (main): install the trampoline before we start to create
1885         objects.
1886
1887         * x86.brg: impl. CLT_UN, CGT_UN
1888
1889         * emit-x86.c (leave_method): added check for null object
1890         (enter_method): consider byref arguments
1891
1892 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
1893
1894         * x86.brg: bug fix in CONV_OVF_I1_UN
1895         impl. ADD_OVF, MUL_OVF
1896         impl. ADD_OVF_UN, SUB_OVF, SUB_OVF_UN
1897         (SUB (lreg, lreg)): bug fix - use SBB instead of SUB
1898         (EMIT_COND_EXCEPTION): added signed flag
1899
1900 Fri Jan 11 20:06:22 CET 2002 Paolo Molaro <lupus@ximian.com>
1901
1902         * jit.c: implement stloc, ldloc, ldloca.
1903
1904 2002-01-11  Dietmar Maurer  <dietmar@ximian.com>
1905
1906         * jit.c (mono_analyze_stack): fixed calculation of last_instr
1907
1908         * x86.brg (LDLEN): emit null_reference exception
1909         (BLE_UN): bug fix. 
1910         (RET, RET_VOID, RET_OBJ, ...) fixed jump to epilog
1911
1912 2002-01-04  Dietmar Maurer  <dietmar@ximian.com>
1913
1914         * x86.brg: bug fix in CASTCLASS
1915
1916 2001-12-21  Dietmar Maurer  <dietmar@ximian.com>
1917
1918         * jit.c (mono_analyze_stack): spill MUL to avoid problem with
1919         register allocation.
1920
1921         * emit-x86.c (arch_compile_method): fixed static delegate bug
1922
1923 2001-12-16  Miguel de Icaza  <miguel@ximian.com>
1924
1925         * x86.brg, jit.c: Split up the nodes that we used to share on
1926         CONV_OVF.  They were sharing the nodes because they are the same
1927         on 32-bit machines, but on 64-bit machines you need different
1928         code for them.
1929
1930 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
1931
1932         * x86.brg: removed prerequisite that (tree->left->reg1 <
1933         tree->right->reg1) to make register allocation easier.
1934
1935 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
1936
1937         * emit-x86.c (arch_handle_exception): new code to handle
1938         exceptions inside unmanaged code.
1939
1940         * x86.brg: impl. SAVE_LMF, RESTORE_LMF, pass implizit valuetype
1941         address as first argument.
1942
1943 2001-12-15  Dietmar Maurer  <dietmar@ximian.com>
1944
1945         * x86.brg: pass exceptions on the stack
1946
1947         * jit.h (ISSTRUCT): new macro to check for real value types
1948         (return false for enum types). 
1949
1950 2001-12-11  Dietmar Maurer  <dietmar@ximian.com>
1951
1952         * x86.brg: use position indepentent code if possible. 
1953
1954         * x86.brg (EMIT_COND_EXCEPTION): new macro.
1955
1956         * emit-x86.c (mono_emit_cfg): impl. variable code buffer size
1957
1958 2001-12-10  Dietmar Maurer  <dietmar@ximian.com>
1959
1960         * jit.c (mono_analyze_flow): use g_malloc0 o allocate large bcinfo
1961         blocks.
1962         (mono_analyze_flow): use g_malloc0 o allocate large bblocks array.
1963
1964         * x86.brg (stmt): added opt. for STIND_R4/STIND_R8
1965
1966 2001-12-07  Dietmar Maurer  <dietmar@ximian.com>
1967
1968         * jit.c (mono_allocate_intvar): bug fix.
1969
1970         * emit-x86.c (get_unbox_trampoline): impl.
1971
1972         * jit.c (mono_analyze_stack): impl STOBJ, LEAVE
1973
1974 2001-12-06  Dietmar Maurer  <dietmar@ximian.com>
1975
1976         * x86.brg: raise exceptions.
1977
1978 2001-12-05  Dietmar Maurer  <dietmar@ximian.com>
1979
1980         * x86.brg: impl. CEQ for freg, NEWSTRUCT now allocates valuetypes on
1981         the stack. 
1982
1983 2001-12-06  Miguel de Icaza  <miguel@ximian.com>
1984
1985         * jit.c (mono_analyze_stack), x86.brg: Implement CONV.OVF.I1,
1986         CONV.OVF.I4, CONV.OVF.I1.UN, CONV.OVF.U1, CONV.OVF.U1.UN,
1987         CONV.OVF.I2.UN, CONV.OVF.I8.UN
1988
1989 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
1990
1991         * x86.brg: impl. UNBOX, NEWSTRUCT, removed VTYPE, bug fixes,
1992         removed the locaddr nonterminal, reimplemented value types
1993         
1994         * jit.c: reimplemented value type support, better support for
1995         enumeration types. 
1996
1997 2001-12-03  Miguel de Icaza  <miguel@ximian.com>
1998
1999         * x86.brg, jit.c: Implement conv.ovf.u4, conv.ovf.u2, conv.ovf.i2,
2000         conv.ovf.u8 
2001
2002 Mon Dec 3 17:16:36 CET 2001 Paolo Molaro <lupus@ximian.com>
2003
2004         * jit.c: call mono_init() after registering internal calls.
2005
2006 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
2007
2008         * emit-x86.c (tree_preallocate_regs): improved register allocation
2009
2010         * x86.brg: impl. ISINST, CASTCLASS
2011
2012 Fri Nov 30 12:02:24 CET 2001 Paolo Molaro <lupus@ximian.com>
2013
2014         * x86.brg: rearrange fields to reduce struct size.
2015         * jit.c: use signature->param_count, not signature->params_size.
2016         * debug.c: off-by-one error fix.
2017
2018 2001-11-29  Radek Doulik  <rodo@ximian.com>
2019
2020         * Makefile.am: build mono only for X86 architecture, compilation
2021         fails for ppc now because of accessing registers in sigcontext
2022         structure
2023
2024 2001-11-29  Dietmar Maurer  <dietmar@ximian.com>
2025
2026         * jit.c (mono_analyze_stack): bug fix in DUP
2027
2028 Thu Nov 29 12:32:01 CET 2001 Paolo Molaro <lupus@ximian.com>
2029
2030         * debug.c: fix type handling. Position function position at start of
2031         IL code. Output more fine-grained stepping information.
2032
2033 2001-11-28  Dietmar Maurer  <dietmar@ximian.com>
2034
2035         * x86.brg (LDIND_I1, LDIND_I2): use x86_widen_ instead of x86_mov_
2036
2037         * jit.c (mono_analyze_stack): record the cli_address for later use
2038         with gdb.
2039         (sigsegv_signal_handler): translate sigsegv into "Internal error"
2040         exception.
2041
2042 Tue Nov 27 16:32:41 CET 2001 Paolo Molaro <lupus@ximian.com>
2043
2044         * debug.c, debug.h: added support for generating stabs.
2045         Stabs can be compiled with as and the resulting object file can be
2046         loaded in a gdb session with add-symbol-file object.o.
2047         * jit.c, jit.h: add --stabs and --debug command line arguments. Keep track
2048         where locals and arguments are stored in the stack. Add support for
2049         passing command line arguments to CLR programs.
2050         * emit-x86.c: insert a breakpoint at method invocation if needed.
2051
2052 2001-11-27  Dietmar Maurer  <dietmar@ximian.com>
2053
2054         * jit.c: exception support
2055
2056         * emit-x86.c (arch_emit_epilogue): bug fix: restore the regs in
2057         the right order.
2058
2059 2001-11-26  Dick Porter  <dick@ximian.com>
2060
2061         * Makefile.am (mono_LDADD): Add io-layer library
2062
2063 2001-11-19  Dietmar Maurer  <dietmar@ximian.com>
2064
2065         * jit.c (mono_analyze_stack): impl. LDFTN
2066         (MAKE_SPILLED_BI_ALU): always spill DIV/REM results to memory to
2067         make register allocation easier on x86
2068
2069         * emit-x86.c (enter_method): more debugging output for Strings
2070         (arch_compile_method): added delegate support
2071         (arch_compile_method): align EBP to 8 byte boundary
2072
2073 Mon Nov 19 11:36:22 CET 2001 Paolo Molaro <lupus@ximian.com>
2074
2075         * jit.c: use mono_install_trampoline (), instead of exporting
2076         a function to a lower-level library.
2077
2078 2001-11-16  Dietmar Maurer  <dietmar@ximian.com>
2079
2080         * x86.brg (STRING_ARG): impl. a way to marshal strings. This
2081         will be extensible to handle all possible kinds of marshalling
2082         requirements. 
2083
2084         * jit.c (map_call_type): added MB_TERM_CALL_VOID
2085         (mono_analyze_stack): impl. LDELEMA, reimplemented CALL
2086         instructions to handle this arguments more effectively.
2087
2088 2001-11-15  Dietmar Maurer  <dietmar@ximian.com>
2089
2090         * Makefile.am (mono_SOURCES): renamed testjit to mono
2091
2092         * x86.brg: added debugging support 
2093
2094         * testjit.c: added support for value types, CFG improvements
2095
2096         * emit-x86.c (enter_method): handle value types
2097         (tree_allocate_regs): impl. a better way to handle chain rules
2098
2099 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
2100
2101         * x86.brg (INITOBJ): bug fix: initialize data before use,
2102         simplified the code.
2103
2104 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
2105
2106         * testjit.c (mono_analyze_stack): Remove compiler warning by
2107         testing against NULL.
2108
2109 2001-11-09  Dick Porter  <dick@ximian.com>
2110
2111         * Makefile.am (testjit_LDADD): Don't need THREAD_LIBS any more
2112
2113 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
2114
2115         * testjit.c (mono_analyze_stack): new BOX impl.
2116
2117         * x86.brg: implemented INITOBJ
2118
2119         * testjit.c (mono_analyze_stack): finished array support
2120         (mono_analyze_stack): reimplemented DUP instruction
2121
2122 2001-11-08  Dietmar Maurer  <dietmar@ximian.com>
2123
2124         * testjit.c (MAKE_STELEM, MAKE_LDELEM): we build a tree which
2125         represents the address of the element. This way we can emit highly
2126         optimized x86 instructions to access elements (using base+index+offset
2127         adressing mode)
2128
2129 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
2130
2131         * mempool.c: Include string.h to kill warning.
2132
2133         * testjit.c: Add typecast to kill warning.
2134
2135         * x86.brg: Include string.h to eliminate warning.
2136
2137         * emit-x86.c (tree_allocate_regs): Fix arguments to g_warning to
2138         kill warning.
2139
2140 2001-11-07  Dietmar Maurer  <dietmar@ximian.com>
2141
2142         * emit-x86.c (enter_method): print out all method arguments
2143         (x86_magic_trampoline): impl.
2144         (arch_create_simple_jit_trampoline): we use different trampolines
2145         for static methods (no need to write the address back into to
2146         vtable).
2147
2148 2001-11-06  Dietmar Maurer  <dietmar@ximian.com>
2149
2150         * emit-x86.c (arch_create_jit_trampoline): optimised trampoline to
2151         use less the 16 bytes.
2152
2153         * x86.brg: code cleanup
2154
2155 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
2156
2157         * testjit.c: bug fixes.
2158
2159         * emit-x86.c (leave_method): print result values
2160
2161 2001-11-03  Dietmar Maurer  <dietmar@ximian.com>
2162
2163         * emit-x86.c (enter_method): new debugging code
2164         (leave_method): new debbuging code, this functions are called
2165         when you use the new option --trace-calls
2166
2167 2001-11-02  Dietmar Maurer  <dietmar@ximian.com>
2168
2169         * testjit.c: impl. STELEM_XX, STELEM_XX
2170
2171         * x86.brg: impl. LDLEN, LDELEMA
2172         
2173
2174 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
2175
2176         * x86.brg: added some experimental code for CALL
2177         instructions - still not found the optimal way to do it.
2178
2179         * testjit.c (map_stind_type): add support for value types with
2180         a size of 1, 2 or 4 bytes, implemented CEE_UNBOX, CEE_LDOBJ,
2181         CEE_LDSTR, CEE_LDFLD, CEE_LDFLDA, CEE_STFLD, CEE_NEWOBJ, CEE_CEQ
2182         (ctree_create_newobj): impl.
2183         
2184
2185         * emit-x86.c (tree_allocate_regs): removed allocation code for
2186         addr nonterminal.
2187         (get_address): use a simple, but bug free search instead of the
2188         buggy binary search.
2189
2190 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
2191
2192         * testjit.c: support virtual functions
2193
2194         * x86.brg: support different addressing modes for calls
2195
2196 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
2197
2198         * testjit.c: impl. STFLD
2199
2200 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
2201
2202         * x86.brg: impl. CEQ
2203
2204 2001-10-04  Dick Porter  <dick@ximian.com>
2205
2206         * testjit.c:
2207         * emit-x86.c: include mono-endian.h not endian.h
2208
2209 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
2210
2211         * testjit.c (ctree_create_dup): really duplicate the tree.
2212         attach the arguments to the CALL node. Added a new macro to
2213         make argument order configurable (ARCH_ARGS_RIGHT_TO_LEFT).
2214
2215 2001-10-01  Dietmar Maurer  <dietmar@ximian.com>
2216
2217         * interp.brg: the burm based interpreter: added the file as example.
2218
2219 2001-09-27  Dietmar Maurer  <dietmar@ximian.com>
2220
2221         * x86.brg: cleanup
2222
2223         * testjit.c: impl. LDIND/STIND/LDLOCA, use g_malloc to alloc static
2224         data.
2225         (map_stind_type): support enum types
2226         (map_ldind_type): support enum types
2227
2228         * emit-x86.c (tree_allocate_regs): added code to support
2229         register allocation for addressing modes trees.
2230         (tree_emit): bug fix: we have to emit all mono_burg_functins. The
2231         previous impl. did not work for chain rules.
2232         (compute_branches): support for SWITCH statements
2233
2234         * x86.brg: added rules to model x86 addressing modes
2235
2236 2001-09-26  Dietmar Maurer  <dietmar@ximian.com>
2237
2238         * emit-x86.c (compute_branches): implemented SWITCH
2239
2240         * testjit.c (mono_create_forest): implemented LDIND/STIND opcodes
2241         (map_ldind_type): add enumeration types.
2242         (map_stind_type): add enumeration types.
2243
2244         * emit-x86.c (arch_compile_method): more documentation.
2245
2246         * testjit.c: moved the architecture specific things to emit-x86.c
2247         and x86.brg. Added more documentation. code cleanup.
2248
2249 2001-09-25  Dietmar Maurer  <dietmar@ximian.com>
2250
2251         * x86.brg: we now have different types of addresses: ADDR_L for local
2252         values, ADDR_A for arguments and ADDR_G for global addresses. We
2253         also use LDIND_XX token to load values from a specific address
2254         instead of LDLOC/STLOC. 
2255
2256         * testjit.c: use the new adressing scheme everywhere:
2257         LDIND _XX (ADDR_X), and STIND_XX (ADDR_X, tree)  
2258
2259 2001-09-24  Dietmar Maurer  <dietmar@ximian.com>
2260
2261         * testjit.c (main): fix bug in parameter parsing
2262
2263         * x86.brg: impl. more opcodes
2264
2265 2001-09-23  Dick Porter  <dick@ximian.com>
2266
2267         * Makefile.am (testjit_LDADD): rename PTHREAD_LIBS to THREAD_LIBS
2268
2269 2001-09-23  Dietmar Maurer  <dietmar@ximian.com>
2270
2271         * testjit.c: use the memory pool to avoid memory leaks
2272
2273 2001-09-22  Dietmar Maurer  <dietmar@ximian.com>
2274
2275         * x86.brg: increment the stack pointer after function calls
2276
2277 2001-09-21  Dick Porter  <dick@ximian.com>
2278
2279         * Makefile.am (testjit_LDADD): Added PTHREAD_LIBS to the link line
2280
2281 2001-09-21  Dietmar Maurer  <dietmar@ximian.com>
2282
2283         * x86.brg: implemented long MUL/DIV
2284         (MB_OPT_LEVEL): define optimisation level macro
2285
2286         * testjit.c (tree_allocate_regs): added a way to prevent EDX usage
2287         for operations like idiv. it is also possible to assign specific registers.
2288
2289 2001-09-20  Dietmar Maurer  <dietmar@ximian.com>
2290
2291         * x86.brg: added basic support for long
2292
2293         * testjit.c (mono_compile_method): implemented POP
2294
2295 2001-09-19  Miguel de Icaza  <miguel@ximian.com>
2296
2297         * testjit.c (usage): Added a couple of more usage options.
2298
2299 2001-09-19  Dietmar Maurer  <dietmar@ximian.com>
2300
2301         * x86.brg: added more floating point grammar 
2302
2303         * testjit.c (mono_compile_method): make local offsets negative
2304
2305         * x86.brg: added some floating point trees
2306
2307         * testjit.c (mono_compile_method): arguments on the runtime 
2308         stack are at least 4 bytes
2309
2310         * x86.brg: partly implemented 8,16 bit integers
2311
2312         * testjit.c (get_address): mark basic blocks
2313
2314 2001-09-18  Dietmar Maurer  <dietmar@ximian.com>
2315
2316         * x86.brg: added some rules to optimize code
2317
2318         * testjit.c (get_address): use a binary search to get the address
2319         (main): added an option to debug the jit (-d)
2320
2321 Tue Sep 18 13:19:16 CEST 2001 Paolo Molaro <lupus@ximian.com>
2322
2323         * testjit.c: better/faster align code. Handle ldloc.s and stloc.s.
2324
2325 2001-09-17  Miguel de Icaza  <miguel@ximian.com>
2326
2327         * testjit.c (mono_compile_method): Provide better error reporting.
2328
2329 2001-09-17  Dietmar Maurer  <dietmar@ximian.com>
2330
2331         * testjit.c (tree_get_address): impl. to fix address bug
2332         (tree_get_address): make sure that we can only jump to the first
2333         instruction of a tree.
2334
2335         * x86.brg: emit real code for calls
2336
2337         * testjit.c (create_jit_trampoline): creates a function to trigger jit
2338         compilation.
2339         (mono_compile_method): reversed argument order
2340
2341 2001-09-15  Dietmar Maurer  <dietmar@ximian.com>
2342
2343         * x86.brg (stmt): don't emit unnecessary register moves
2344
2345         * testjit.c (tree_allocate_regs): free registers earlier
2346
2347 2001-09-14  Dietmar Maurer  <dietmar@ximian.com>
2348
2349         * x86.brg: branch addresses are now resolved
2350
2351         * testjit.c (compute_branches): compute address of branches
2352
2353         * x86.brg: emit real x86 instructions
2354
2355         * testjit.c: call objdump to disassemble the output
2356
2357 2001-09-13  Dietmar Maurer  <dietmar@ximian.com>
2358
2359         * x86.brg: use the right offsets to access local variables
2360         and arguments.
2361
2362         * emit-x86.c: only save/restore callee saved registers if they are
2363         really modified.
2364
2365         * testjit.c (tree_allocate_regs): use the new MonoRegSet to
2366         allocate registers.
2367         (mono_compile_method): changed the tree for mothod calls
2368
2369         * regset.h: impl.
2370         
2371         * regset.c: impl.
2372         
2373
2374 2001-09-10  Miguel de Icaza  <miguel@ximian.com>
2375
2376         * x86.brg: Use Unix assembly syntax.
2377
2378         * emit-x86.c: support code, should be moved
2379
2380         * testjit.c: Use GPtrArrays instead of GLists, as those are very
2381         inefficient at appends.
2382
2383         * Renamed `create_new_leave' to `create_new_leaf'
2384
2385         
2386