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