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