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