Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / dis / ChangeLog
index 46e58753a454818a48724a361c61d3c0768df0d7..960fb6c11d863c4bc066d874416d98fc043200e6 100644 (file)
@@ -1,3 +1,118 @@
+2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
+
+       * main.c: Output managed resources as well. Fixes #72033.
+
+2005-02-01  Raja R Harinath  <rharinath@novell.com>
+
+       * get.c (get_method_core): Use mono_method_signature (mh), not
+       mh->signature.
+
+2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
+
+       * get.c dis-cil.c dump.c: Fix 64 bit warnings.
+
+2004-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * dump.c:
+       * dis-cil.c: added isinf() for Solaris, that does not seem to have it.
+       Fixes the build on Solaris.
+
+2004-12-13  Miguel de Icaza  <miguel@ximian.com>
+
+       * dis-cil.c, dump.c: Encode special constant +Inf, -Inf and NaN
+       using hex constants instead of letting libc print the values.
+
+2004-12-11  Martin Baulig  <martin@ximian.com>
+
+       * get.c (get_typespec): Added `gboolean is_def' argument; removed
+       the special case for MONO_TYPE_VAR/MVAR and pass `is_def' down to
+       dis_stringify_type().
+       (get_escaped_name): Allow `!'.  
+
+2004-12-11  Martin Baulig  <martin@ximian.com>
+
+       * get.c (get_token): Escape typedefs.
+
+2004-12-11  Martin Baulig  <martin@ximian.com>
+
+       * get.c (get_escaped_name): Correctly escape nested classes.
+
+2004-12-11  Martin Baulig  <martin@ximian.com>
+
+       * get.c (get_class_name): Renamed to get_escaped_class_name() and
+       return an escaped class name; correctly escape nested classes.
+
+2004-12-11  Martin Baulig  <martin@ximian.com>
+
+       * get.c (dis_stringify_type): Added `gboolean is_def' argument; if
+       false, display type parameters as numbers and not as names.
+       (dis_stringify_object_with_class): Added `gboolean is_def' argument.
+       (dis_stringify_array): Likewise.
+
+2004-12-10  Martin Baulig  <martin@ximian.com>
+
+       * get.c (init_key_table): Added `type' and `strict'.
+       (get_generic_param): Also escape the type parameter names.
+       Correctly handle multiple constraints.
+
+2004-12-10  Martin Baulig  <martin@ximian.com>
+
+       * get.c (get_fieldref_signature): Escape the field type and name
+       here, too.
+
+2004-12-10  Martin Baulig  <martin@ximian.com>
+
+       Started to add generics support to monodis.
+
+       * get.c (get_typedef_or_ref): Added `MonoGenericContext *'.
+       (get_field_signature, get_field): Likewise.
+       (get_methodref_signature, get_methodspec): Likewise.
+        (get_token, get_token_type, get_typespec): Likewise.
+        (get_method, get_method_type_param): Likewise.
+       (get_method_override, dis_stringify_method_signature): Likewise.
+       (get_type, get_ret_type, get_param): Likewise.
+
+       * dis-cil.c (disasemble_cil): Added `MonoGenericContext *'.
+
+2004-12-09  Martin Baulig  <martin@ximian.com>
+
+       * get.c (get_generic_param): Take a `MonoGenericContainer *' and
+       use it to print things instead of manually parsing the metadata.
+
+       * main.c (dis_generic_param_and_constraints): Removed, use
+       get_generic_param() instead.
+       (dis_method_list): Added `MonoGenericContext *' argument.
+
+Mon Dec 6 13:31:48 CET 2004 Paolo Molaro <lupus@ximian.com>
+
+       * main.c: add a --filter=filename option to load a file
+       with a list of types, fields, methods to disassemble.
+
+2004-12-02  Miguel de Icaza  <miguel@ximian.com>
+
+       * main.c: Rename compilercontrolled to privatescope
+
+       * get.c (get_class_name): Correct implementation that correctly
+       handles nested classes.
+
+2004-11-26  Miguel de Icaza  <miguel@ximian.com>
+
+       * main.c: Better implementation of the quote keyword, list all of
+       the known keywords to ildasm here. 
+
+       * get.c (dis_stringify_object_with_class): Take an argument
+       `prefix' that controls whether the `class', `valuetype' labels are
+       used.  This is needed for the catch clause that takes the type
+       directly. 
+       (get_method_core): Rename get_method to get_method_core, and allow
+       for only part of the signature to be specified, so we can produce
+       .override signatures correctly.
+       (get_method_override): Pass false as the `fullsig' argument.
+
+       (get_typedef): no longer quote the type, we quote in the call site
+       elsewhere.   Avoids double quotes.
+       
+       * main.c (quote_keyword): Quote keywords.
 
 Tue Nov 9 17:29:28 CET 2004 Paolo Molaro <lupus@ximian.com>