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