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