2009-07-16 Marek Habersack <mhabersack@novell.com>
[mono.git] / mono / dis / ChangeLog
index 85b1672c7afe7b541d936963d0d962d400269771..f02b3d60a83f9962532262c09914150a6a78cd50 100644 (file)
@@ -1,7 +1,109 @@
-2007-11-06  Jb Evain  <jbevain@novell.com>
+2009-07-16  Marek Habersack  <mhabersack@novell.com>
 
-       * main.c: Don't crash when a referenced assembly cannot be
-       found. Fix #323943.
+       * main.c: added new --presources option which prints manifest
+       resource offsets and names.
+
+       * monodis.1: added documentation of the --presources option.
+
+2009-06-10  Jb Evain  <jbevain@novell.com>
+
+       * main.c: add support for extern types. Fixes #511672.
+
+2009-06-03  Jb Evain  <jbevain@novell.com>
+
+       * main.c (dis_code): don't try to locate invalid entry points.
+
+2009-06-03  Jb Evain  <jbevain@novell.com>
+
+       * main.c (dis_type): espace namespaces.
+
+2009-04-24  Rodrigo Kumpera  <kumpera@gmail.com>
+
+       * get.c (dis_stringify_method_signature_full): Don't assert
+       if no marshal info is found.
+
+2009-04-16  Rodrigo Kumpera  <kumpera@gmail.com>
+
+       * dump.c: Add dump_table_fieldrva.
+
+       * dump.h: Same.
+
+       * main.c: Add the option to dump the field rva table.
+
+2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
+
+       * get.c: Use new MonoGenericParamInfo accessors.
+
+2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
+
+       * get.c: Use new MonoGenericParam accessors.
+
+2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
+
+       * get.c: Use MonoGenericContainer accessor to get the contained
+       MonoGenericParam.
+
+2009-03-12  Jb Evain  <jbevain@novell.com>
+
+       * get.c (get_token): add support for METHOD_SPEC tokens.
+
+2009-01-12  Jb Evain  <jbevain@novell.com>
+
+       * main.c: update reference to METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE
+       with METHOD_ATTRIBUTE_STRICT.
+
+2008-12-30  Marek Safar  <marek.safar@gmail.com>
+
+       * main.c: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
+
+2008-12-01  Rodrigo Kumpera  <kumpera@gmail.com>
+
+       * main.c (get_uninitialized_data_type): Make crappy static analyzers happy.
+
+2008-10-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * main.c: don't crash when the method is in an assembly that can't be
+       loaded. Just prints the warnings now instead of 'segfaulting'.
+       Bug #436989 fixed.
+
+2008-10-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * main.c: when loading the image, use mono_assembly_load_from_full
+       instead of mono_assembly_load_references so that monodis mimics the
+       way the runtime loads assemblies in the real world.
+       Bug #439404 fixed.
+
+2008-06-05  Jb Evain  <jbevain@novell.com>
+
+       * get.c (get_token): properly stringify tokens that
+       are methoddefs.
+
+2008-05-26  Zoltan Varga  <vargaz@gmail.com>
+
+       * get.c: Use accessor functions for accessing method->generic_container.        
+
+2008-04-15  Zoltan Varga  <vargaz@gmail.com>
+
+       * main.c (disassemble_file): Do not use mono_assembly_open () to load an image,
+       since it does not allow loading a different mscorlib. Fixes #379866.
+
+2008-03-05  Ankit Jain  <jankit@novell.com>
+
+       * dis-cil.c (disassemble_cil): For catch clause, emit stringified class
+       with prefix.
+
+2008-02-04  Zoltan Varga  <vargaz@gmail.com>
+
+       * get.c (get_escaped_name): Escape the name if it begins with a dot. Fixes
+       #358564.
+
+2007-12-06  Jb Evain  <jbevain@novell.com>
+
+       * main.c: fix regression #346283.
+
+2007-11-20  Jb Evain  <jbevain@novell.com>
+
+       * main.c: support for uninitialized .data.
 
 2007-11-05  Jackson Harper  <jackson@ximian.com>