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