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