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