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