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