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