2008-11-28 Mark Probst <mark.probst@gmail.com>
[mono.git] / mono / metadata / ChangeLog
index a435406219a3b843976c59a87b119500db9e1c47..4105016b773c1ba908c61d54413aa1e22c0bc2be 100644 (file)
@@ -1,3 +1,80 @@
+2008-11-28  Mark Probst  <mark.probst@gmail.com>
+
+       * class.c: Enable generic code sharing on PPC64.
+
+2008-11-27  Mark Probst  <mark.probst@gmail.com>
+
+       * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
+       from mini/mini.c.
+
+       * generic-sharing.c: Allocate the method template slists from the
+       image mempool so it doesn't leak.
+
+2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * class.c (generic_array_methods): Release the linked list.
+
+2008-11-27  Mark Probst  <mark.probst@gmail.com>
+
+       * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
+       invocation to g_utf16_to_utf8().
+
+2008-11-26  Mark Probst  <mark.probst@gmail.com>
+
+       * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
+       arguments on big endian archs.
+
+2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
+       the type name (test added in corlib).
+
+2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * pedump.c: initialize perf. counters. Fixes a segv.
+
+2008-11-25  Martin Baulig  <martin@ximian.com>
+
+       * mono-debug-debugger.c
+       (mono_debugger_runtime_invoke): Return the exception object if an
+       exception was thrown.  Visual Studio displays the exception object
+       in the locals window.
+
+2008-11-24  Mark Probst  <mark.probst@gmail.com>
+
+       * mini-trampolines.c (mono_delegate_trampoline): Don't return a
+       ftnptr.
+
+2008-11-24  Mark Probst  <mark.probst@gmail.com>
+
+       * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
+       MONO_TYPE_U are sizeof (gpointer), too.
+
+2008-11-24  Mark Probst  <mark.probst@gmail.com>
+
+       * marshal.c (mono_type_native_stack_size): Fixed size and
+       alignment for reference types.
+
+2008-11-23  Mark Probst  <mark.probst@gmail.com>
+
+       * class.c (mono_class_generic_sharing_enabled): Disable generic
+       code sharing for PPC64.
+
+2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * icall.c (mono_method_get_equivalent_method): Make sure
+       method->klass->methods is inited before looping over it.
+
+2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * object.c: when calling ExecuteAssembly in a newly created domain,
+       the configuration file and application base are already set up.
+       Bug #446353 take 2 fixed.
+
+2008-11-20  Zoltan Varga  <vargaz@gmail.com>
+
+       * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
+       Fixes #444715. Fix a warning.
 
 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>