2002-07-24 Tim Coleman <tim@timcoleman.com>
[mono.git] / mono / jit / ChangeLog
index 8747f53578117776953526ce3ef1e5d78fdcd274..e0d8f08a6c684ba3396f7d172ac5f598d7f3aa7a 100644 (file)
@@ -1,7 +1,77 @@
+2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
+
+       * jit.c (mono_analyze_stack): added CEE_TAIL (but it is ignored)
+
+Wed Jul 24 13:02:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
+
+       * jit.c, jit.h, exception.c: implemented stack walking function.
+
+2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
+
+       * x86.brg (ARG_OBJ): removed zero sized object warning 
+
+2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
+
+       * jit.c (mono_allocate_excvar): mark excvar as volatile
+
+       * emit-x86.c (enter_method): use arch_get_argument_info to get
+       stack layout.
+
+       * jit.c (mono_analyze_stack): use arch_get_argument_info to get
+       stack layout.
+       (mono_analyze_stack): removed unused code
+
+       * emit-x86.c (arch_allocate_arg): impl.
+
+2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
+
+       * emit-x86.c (arch_allocate_var): fix alignment bug
+
+       * x86.brg (X86_CALL_BEGIN): add argument padding before emitting a call
+
+       * jit.c (mono_analyze_stack): s/k/k + 1/
+
+       * x86.brg (LOCALLOC): align to MONO_FRAME_ALIGNMENT
+
+       * emit-x86.c (arch_get_argument_info): impl.
+
+2002-07-21  Miguel de Icaza  <miguel@ximian.com>
+
+       * exception.c (arch_handle_exception): Memory leak fix.
+
+2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
+
+       * jit.c (mono_analyze_stack): avoid recursive inlining
+
+Fri Jul 19 18:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
+
+       * emit-x86.c: temporary workaround for gcc bug.
+       * jit.h, jit.c, mono.c: move mono_jit_image to jit.c.
+       Don't include config.h in headers.
+
+2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
+
+       * x86.brg: correctly align valuetype arguments on the stack
+
+       * jit.c (mono_analyze_stack): do not compute frame size here.
+
+       * x86.brg: use macros to avoid code duplication for CALL opcodes,
+       compute frame size in x86.brg
+
+2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
+
+       * x86.brg (ARG_OBJ): allow zero sized ARG_OBJ
+
+       * exception.c (arch_handle_exception): removed duplicated code,
+       added support for exception filters
+
+       * jit.c (mono_jit_compile_method): support exception filters
+
 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
 
        * jit.c (mono_analyze_stack CEE_DIV): added fix from Zoltan Varga
        (bug #27423)
+       * jit.c: s/ISSTRUCT/MONO_TYPE_ISSTRUCT/ 
 
        * helpers.c (mono_map_ldind_type): added suggested changes from
        Zoltan Varga (support MONO_TYPE_U), variou 64bit fixes