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