2003-01-05 Martin Baulig <martin@ximian.com>
[mono.git] / mono / jit / ChangeLog
index 6f4fd2d469e8e586f07ec162819fc56c191772b4..2e7d155610e9194e1f1b8da62769d7a48b4a3165 100644 (file)
@@ -1,3 +1,186 @@
+2003-01-05  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (mono_debugger_jit_exec): Custom version of mono_jit_exec();
+       this is used when we're running inside the Mono Debugger 
+       (mono_debugger_wait): Put the waiting code into a function of its own.
+
+       * mono.c (main): Call mono_debugger_jit_exec() instead of
+       mono_jit_exec() if we're running inside the Mono Debugger.
+       
+2003-01-05  Martin Baulig  <martin@ximian.com>
+
+       * debug.h (MonoDebugFormat): Added
+       `MONO_DEBUG_FORMAT_MONO_DEBUGGER'; this allows us to check whether
+       we're running inside the Mono Debugger prior to the args parsing.
+
+2003-01-04  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (release_symbol_file_table): Only call this if we're
+       actually modifying the symbol tables.
+       (mono_debug_open): Always set the `mono_debugger_class_init_func'
+       for MONO_DEBUG_FORMAT_MONO; this stuff should also go into core dumps.
+
+2003-01-03  Martin Baulig  <martin@ximian.com>
+
+       * debug.c: Disable the mono debugger stuff on Windows.
+
+2003-01-03  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (mono_debugger_trampoline_breakpoint_callback): New
+       function.  This is called from the breakpoint trampoline to signal
+       the debugger and wait until it has reload the symbol tables.
+
+       * trampoline.c (get_breakpoint_trampoline): Call the new
+       mono_debugger_trampoline_breakpoint_callback() in the breakpoint
+       trampoline just before the breakpoint.
+
+2002-12-31  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (MonoDebuggerSymbolFileTable): Added `global_symfile'
+       field to point to the MonoGlobalSymbolTable.
+
+2002-12-30  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (MonoDebuggerInfo): Put back `symbol_file_modified'.
+       This variable now specifies that the symbol tables have been
+       modified after the last notification has been send.  The debugger
+       uses this flag to check whether it needs to reload the symbol
+       tables or not.
+       (debugger_compile_method): Just send a notification to the
+       debugger, but don't set the modified flag.  It may or may not be
+       set when the debugger gets the notification - depending on whether
+       the JIT compilation added a new method to the symbol tables.
+
+2002-12-30  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (debugger_compile_method): This is a wrapper around
+       mono_compile_method() which always sends a notification to the
+       debugger.
+
+2002-12-30  Martin Baulig  <martin@ximian.com>
+
+       * debug.c: Reload the symbol file table before sending the
+       notification event to the debugger.
+       (MonoDebuggerInfo): Removed `update_symbol_file_table'.
+
+2002-12-31  Martin Baulig  <martin@ximian.com>
+
+       * debug.c: Propertly lock everything and avoid race conditions.
+       (MonoDebuggerInfo): Removed the `symbol_file_modified' again.
+
+2002-12-31  Duncan Mak  <duncan@ximian.com>
+
+       * debug.c (initialize_debugger_support): Fix build error by
+       declaring ret at the top of the function.
+
+2002-12-30  Martin Baulig  <martin@ximian.com>
+
+       * debug.c: When running under the mono debugger, create a special
+       debugger thread; always protect the symbol tables with a mutex.
+
+2002-12-28  Martin Baulig  <martin@ximian.com>
+
+       * debug.c (MonoDebuggerInfo): Added `symbol_file_modified'; it's
+       incremented each time one of the symbol tables is modified.
+
+Thu Dec 19 18:31:54 CET 2002 Paolo Molaro <lupus@ximian.com>
+
+       * jit.c: fix LDELEMA implementation here as well.
+
+Wed Dec 18 11:42:58 CET 2002 Paolo Molaro <lupus@ximian.com>
+
+       * jit.c: handle CEE_CONV_OVF_U8_UN like CEE_CONV_OVF_I8_UN.
+
+Wed Dec 18 11:36:04 CET 2002 Paolo Molaro <lupus@ximian.com>
+
+       * jit.c: query the thread abort signal from the runtime.
+
+2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
+
+       * jit.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
+
+2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
+
+       * jit.c (mono_analyze_stack): call the utility function 
+       mono_field_from_token to avoid code duplication.
+
+2002-12-02  Dietmar Maurer  <dietmar@ximian.com>
+
+       * jit.c (mono_analyze_stack): added some additinal checks to verify IL code
+
+       * x86.brg (stmt): POP floating point stack correctly
+
+2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
+
+       * emit-x86.c (arch_emit_prologue): don't save caller saved
+       registers twice.
+
+       * exception.c (x86_unwind_native_frame): support exceptions inside
+       native code using gcc generated exception tables (-fexception).
+
+2002-11-19  Dietmar Maurer  <dietmar@ximian.com>
+
+       * exception.c: include some code from Zoltan Varga, but modified
+       it slightly.
+
+2002-11-27  Dietmar Maurer  <dietmar@ximian.com>
+
+       * exception.c: massive code cleanups. The code is still
+       architecture dependent, but it should be now possible to reuse the
+       complex parts for other architecture.
+
+2002-11-15  Dick Porter  <dick@ximian.com>
+
+       * jit.c: Pass the attach callback to mono_runtime_init().
+
+2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * jit.c: display the domain name in trace output.
+
+2002-11-08  Dietmar Maurer  <dietmar@ximian.com>
+
+       * x86.brg (reg): fix bug #2721
+
+       * jit.c (mono_runtime_install_handlers): impl.
+
+2002-10-17  Martin Baulig  <martin@gnome.org>
+
+       * debug.c (mono_debug_add_method): Make this actually work if we don't
+       have any lifetime information.
+
+2002-10-15  Martin Baulig  <martin@gnome.org>
+
+       * jit.cs (PUSH_TREE): Always set t->cli_addr here.
+
+       * debug.c (generate_line_number): Small fix to make this actually
+       work for more complex things.
+
+2002-10-11  Dietmar Maurer  <dietmar@ximian.com>
+
+       * x86.brg (freg): use fprem instead of fprem1
+
+2002-10-03  Dietmar Maurer  <dietmar@ximian.com>
+
+       * jit.c (ves_array_element_address): added check for out of range index
+       (mono_analyze_stack): added fix for bug #31654
+
+2002-10-01  Martin Baulig  <martin@gnome.org>
+
+       * debug.c: Don't create an .il file for the dynamic symbol file.
+
+2002-10-01  Martin Baulig  <martin@gnome.org>
+
+       * debug.c (MonoDebuggerInfo): Added mono_runtime_invoke().
+
+2002-09-27  Martin Baulig  <martin@gnome.org>
+
+       * debug.c (debug_load_method_lines): Don't use sigaction() on win32.
+
+2002-09-27  Dick Porter  <dick@ximian.com>
+
+       * mono.c: Tell glib what the program name is, by passing it the
+       name of the managed file we're executing
+
 2002-09-26  Martin Baulig  <martin@gnome.org>
 
        * trampoline.c (x86_magic_trampoline): Don't insert the breakpoint