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