Patch from Sebastien Pouliot.
[mono.git] / mono / dis / ChangeLog
1 2006-05-26  Ankit Jain  <jankit@novell.com>
2
3         Patch from Sebastien Pouliot.
4         * declsec.h: New. 
5         * declsec.c: New. Support for new declarative security attribute
6         metadata format (2.0)
7         * dump.c (dump_table_declsec): Support the new 2.0 format.
8         * main.c (dump_declarative_security): Support the new 2.0 format.
9         * Makefile.am : Add declsec.c & declsec.h .
10
11 2006-05-15  Ankit Jain  <jankit@novell.com>
12
13         * dis-cil.c (disassemble_cil): Exception clauses can be unordered,
14         handle that.
15
16 2006-05-11  Ankit Jain  <jankit@novell.com>
17
18         * get.c (get_custom_mod): Fix printing of custom modifiers.
19         (dis_stringify_type): Likewise.
20         (get_field_signature): Likewise.
21         (get_ret_type): Likewise.
22         (get_param): Likewise.
23
24 2006-05-11  Ankit Jain  <jankit@novell.com>
25
26         * get.c (dis_stringify_method_signature): Rename to .. 
27         (dis_stringify_method_signature_full): .. this. Add 'with_marshal_info'
28         param.
29         * get.h (dis_stringify_method_signature_full): Add new function.
30         * main.c (dis_property_methods): Update to use
31         dis_stringify_method_signature_full.
32         (dis_event_methods): Likewise.
33
34 2006-05-10  Ankit Jain  <jankit@novell.com>
35
36         * get.c (init_key_table): Add keyword 'switch'.
37
38 2006-05-10  Ankit Jain  <jankit@novell.com>
39
40         * get.c (init_key_table): Add keyword 'property'.
41
42 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
43
44         * main.c (typedef_flags): Decode TYPE_ATTRIBUTE_FORWARDER.
45
46 2006-02-21  Ankit Jain  <jankit@novell.com>
47
48         * get.c (can_print_generic_param_name): Rename to ..
49         (cant_print_generic_param_name): .. this, to match function name with behavior.
50
51 2006-02-21  Ankit Jain  <jankit@novell.com>
52
53         * get.c (mono_generic_params_with_ambiguous_names): New.
54         (generic_containers): New. Hashtable of all generic containers that have
55         been checked for ambiguous params.
56         (check_ambiguous_genparams): New. Walk a MonoGenericContainer
57         and fill mono_generic_params_with_ambiguous_names table.
58         (can_print_generic_param_name): New. Check whether a MonoGenericParam has
59         ambiguous names.
60         (dis_stringify_type): Use new is_ambiguous_generic_param to determine
61         whether to print number or name for VAR/MVAR.
62
63 2006-02-18  Raja R Harinath  <harinath@gmail.com>
64
65         * get.c (get_typespec): Don't use mono_type_create_from_typespec_full().
66         Use get_type() instead.
67         (get_type): Add 'is_def' parameter.
68         (get_field_signature, get_ret_type, get_param): Update.
69         * dump.c (dump_table_property): Likewise.
70         * get.h (get_type): Update prototype.
71
72 2006-02-16  Raja R Harinath  <rharinath@novell.com>
73
74         * get.c (get_typespec): Pass MonoGenericContainer to
75         mono_type_create_from_typespec_full.
76         (get_type): Likewise.
77         * main.c (dis_code): Likewise.
78         (dis_property_signature): Likewise.
79
80 2006-02-15  Ankit Jain  <jankit@novell.com>
81
82         * get.c (get_array_shape): Use mono_metadata_decode_signed_value to get
83         lower bounds.
84
85 2006-02-09  Ankit Jain  <jankit@novell.com>
86
87         * get.c (stringify_array): New. Returns the stringified representation
88         of an array.
89         (dis_stringify_array): Use stringify_array.
90         (get_array_shape): Likewise. Also, allow lo_bounds to be signed.
91
92 2006-02-03  Sebastien Pouliot  <sebastien@ximian.com>
93
94         * get.c: Added #include <mono/utils/mono-compiler.h> so VS.NET
95         can compile monodis.
96
97 2006-01-28  Ankit Jain  <jankit@novell.com>
98
99         * get.c (get_method_core): Emit generic arity for a MemberRef.
100         (get_method_override): Emit full sig only if its a generic type.
101
102 2006-01-27  Ankit Jain  <jankit@novell.com>
103
104         * get.c (get_methodref_signature): Remove 'context' parameter.
105         Update call sites.
106         * get.h (get_methodref_signature): Update.
107         * dump.c (dump_table_memberref): Update.
108
109 2006-01-26  Raja R Harinath  <harinath@gmail.com>
110
111         * get.c (stringify_double): Simplify, and avoid 'E' too.
112
113 2006-01-26  Ankit Jain  <jankit@novell.com>
114
115         * get.c (stringify_double): Remove trailing '.' if it has 'e'.
116
117 2006-01-25  Ankit Jain  <jankit@novell.com>
118
119         * get.c (stringify_double): New. Fix printing of float/doubles to enable
120         roundtripping.
121         * get.h (stringify_double): Add new function.
122         (get_constant): Use stringify_double.
123         * dis-cil.c (disassemble_cil): Likewise.
124         
125 2006-01-25  Ankit Jain  <jankit@novell.com>
126             Raja R Harinath  <rharinath@novell.com>
127
128         * get.c (dis_stringify_type): For MVAR/VAR, print number if the generic param
129         is in the mono_generic_params_with_ambiguous_names table.
130
131 2006-01-20  Raja R Harinath  <rharinath@novell.com>
132
133         * main.c (monodis_assembly_load_hook): New.
134         (monodis_assembly_search_hook): New.
135         (main): Install them as hooks into the assembly loading core.
136
137 2006-01-19  Ankit Jain  <jankit@novell.com>
138
139         * main.c (dis_type): Dump custom attributes for a type before doing the same
140         for its type parameters.
141
142 2006-01-18  Ankit Jain  <jankit@novell.com>
143
144         * main.c (typedef_flags): Change 'special-name' to 'specialname'.
145
146 2006-01-17  Ankit Jain  <jankit@novell.com>
147
148         * get.c (get_method_override): Use '.override method' syntax if the class or
149         or the method itself is generic.
150         * main.c (dis_code): Emit '.override' only, 'method' gets handled by get_method_override.
151
152 2006-01-17  Ankit Jain  <jankit@novell.com>
153
154         * get.c (init_key_table): Add keywords 'bestfit', 'charmaperror', 'off' & 'on'.
155
156 2006-01-16  Ankit Jain  <jankit@novell.com>
157
158         * get.c (get_method_core): Handle a MemberRef with a TypeSpec parent.
159         Inflate MonoMethod after getting it from mono_get_method_full.
160
161 2006-01-15  Ankit Jain  <jankit@novell.com>
162
163         * get.c (get_method_override): Get full signature of the method.
164         * main.c (dis_code): Emit ".override method" for full signature
165         of the method.
166
167 2006-01-06  Ankit Jain  <jankit@novell.com>
168
169         * get.c (get_generic_param): Generic param attributes can be any combination
170         of .ctor, valuetype and class, emit correctly.
171
172 2006-01-03  Ankit Jain  <jankit@novell.com>
173
174         * get.c (init_key_table): Add keywords uint8, uint16, uint32 and uint64.
175
176 2005-12-24  Jb Evain  <jbevain@gmail.com>
177
178         * main.c (dis_property_signature): read the hasthis flag.
179
180 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
181
182         * get.c (get_constant): Use finite() instead of isnormal () since the
183         latter is not available on solaris.
184
185 2005-11-23  Ankit Jain  <jankit@novell.com>
186
187         * get.c (get_methodspec): Use mono_get_method_full so as to handle
188         methodspecs that refer to generic methods in other assemblies.
189
190 2005-11-23  Ankit Jain  <jankit@novell.com>
191
192         * dump.c (has_cattr_get_table): Handle GenericParam.
193         * get.c (dis_get_custom_attrs): Likewise.
194         * main.c (dump_cattrs_for_type_params): New. Dump custom attributes
195         for type parameters.
196         (dis_method_list): Call dump_cattrs_for_type_params.
197         (dis_type): Likewise.
198
199 2005-11-17  Ankit Jain  <jankit@novell.com>
200
201         * get.c (dis_stringify_type): Escape generic type parameter names.
202
203 2005-11-17  Ankit Jain  <jankit@novell.com>
204
205         * get.c (str_escape): New. Escape a given list of characters.
206           (get_escaped_name): Escape ' and \ using str_escape, and 
207         allow ` .
208
209 2005-11-10  Ankit Jain  <jankit@novell.com>
210
211         * dump.c (dump_table_method): Load generic param constraints.
212         * get.c (dis_stringify_method_signature): Likewise.
213         * main.c (dis_method_list): Likewise.
214           (dis_type): Likewise.
215
216 2005-11-10  Ankit Jain  <jankit@novell.com>
217
218         * get.c (init_key_table): Add keyword - uint.
219
220 2005-11-08  Ankit Jain  <jankit@novell.com>
221
222         * dump.c (dump_table_method): Get the type/method context required for parsing
223           method signature and dis_stringify'ing it.
224
225 2005-11-08  Ankit Jain  <jankit@novell.com>
226
227         * get.c (init_key_table): Add keywords - callconv and flags.
228
229 2005-10-28  Ankit Jain  <jankit@novell.com>
230
231         * dis_stringify_method_signature: Add detail for 'returns:' in the comment.
232
233 2005-10-28  Ankit Jain  <jankit@novell.com>
234
235         * tests: Add new directory for test cases.
236
237 2005-10-28  Ankit Jain  <jankit@novell.com>
238
239         * get.c (dis_stringify_method_signature): Use context instead of container
240           as container can be NULL.
241
242 2005-10-20  Ankit Jain  <jankit@novell.com>
243
244         * get.c (get_method_core): Use the parent context for get_methodspec
245           instead of the inflated method's context.
246           (get_methodspec): Get the context for the generic method.
247           Use parent_context for getting the method's type parameters. 
248
249 2005-10-20  Ankit Jain  <jankit@novell.com>
250
251         * main.c (dis_method_list): Oops. Check method_context for null.
252
253 2005-10-19  Ankit Jain  <jankit@novell.com>
254
255         * main.c (dis_method_list): Fix warning introduced by my last patch.
256
257 2005-10-19  Ankit Jain  <jankit@novell.com>
258
259         * main.c (dis_method_list): Use 'method_context' instead of 'container' for 
260           mono_metadata_parse_method_signature_full.
261
262 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
263
264         * get.h get.c main.c: Fix some warnings and bugs.
265
266 2005-09-20  Ankit Jain  <jankit@novell.com>
267
268         * monodis.1: Update documentation for --output.
269
270 2005-09-20  Ankit Jain  <jankit@novell.com>
271
272         * main.c (table_list): Add --mresources to the table.
273           (usage): Don't add "--mresources" explicitly for usage output.
274           (main): Remove explicit handling for --mresources.
275
276 2005-09-20  Ankit Jain  <jankit@novell.com>
277
278         * main.c (main): Dump managed resources when --output is specified.
279
280 2005-09-08  Ankit Jain  <jankit@novell.com>
281
282         * monodis.1: Document --customattr, --declsec, --forward-decls, --implmap,
283           --marshal, --methodimpl, --methodspec, --mresources, --nested, --standalonesig,
284           and --typespec.
285
286 2005-09-08  Ankit Jain  <jankit@novell.com>
287
288         * main.c (dis_nt_header): New. Dump pe_stack_reserve if different from the
289           default value (0x100000).
290           (disassemble_file): Call dis_nt_header.
291
292 2005-09-06  Ankit Jain  <jankit@novell.com>
293
294         * main.cs (dis_directive_assemblyref): Use the row id into the AssemblyRef
295           table instead of 1 for dump_cattrs.
296           Spotted by Harinath.
297
298 2005-09-05  Atsushi Enomoto  <atsushi@ximian.com>
299
300         quick build fix.
301         * get.cs : (dis_get_custom_attrs) added assembly reference support.
302         * main.cs: (dis_directive_assemblyref) use MONO_TOKEN_ASSEMBLY_REF.
303
304 2005-09-05  Ankit Jain  <jankit@novell.com>
305
306         * main.c (dis_directive_assemblyref): Dump custom attributes.
307
308 2005-08-29  Ankit Jain  <jankit@novell.com>
309
310         * get.c (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_CUSTOM.
311         
312 2005-08-27  Ankit Jain  <jankit@novell.com>
313
314         * get.c (init_key_table): Add keywords - ldelem, stelem, stloc, stobj,
315           stsfld, sub, sub.ovf, sub.ovf.un, unbox to the table.
316
317 2005-08-25  Ankit Jain  <jankit@novell.com>
318
319         * get.c (get_encoded_user_string_or_bytearray): Add len param.
320           (get_constant): Pass len param to get_encoded_user_string_or_bytearray.
321         * dis-cil.c (dissasemble_cil): Calculate len of the userstring and pass to
322           get_encoded_user_string_or_bytearray.
323         * get.h (get_encoded_user_string_or_bytearray): Add len param.
324
325 2005-08-23  Ankit Jain  <jankit@novell.com>
326
327         Fix #75186.
328         * get.c (get_ret_type): Use '&' instead of '[out]' for return type.
329
330 2005-08-23  Ankit Jain  <jankit@novell.com>
331
332         * get.c (get_encoded_user_string_or_bytearray): New. Print a string if possible
333           or else a bytearray from the US heap.
334           (get_encoded_user_string_bytearray): New. Print a bytearray from the US heap.
335           (get_constant): Use get_encoded_user_string_or_bytearray for MONO_TYPE_STRING.
336         * get.h (get_encoded_user_string_or_bytearray): Add the new function. 
337         * dis-cil.c (get_encoded_user_string): Move to get.c .
338           (disassemble_cil): Use get_encoded_user_string_or_bytearray instead of 
339           get_encoded_user_string.
340
341 2005-08-20  Ankit Jain  <jankit@novell.com>
342
343         * dis-cil.c (dissasemble_cil): Specify precision to enable
344           roundtripping of floats.
345         * get.c (get_constant): Likewise.  
346
347 2005-08-13  Jb Evain  <jbevain@gmail.com>
348
349         * get.c (get_token): handle the case when
350           the token is a member ref pointing to a method.
351
352 2005-08-12  Ankit Jain  <jankit@novell.com>
353
354         * get.c (init_key_table): Add "xor" to the table.
355
356 2005-08-12  Jb Evain  <jbevain@gmail.com>
357
358         * get.c (dis_stringify_method_signature): handle case when a method
359           has parameters but no corresponding Param row.
360           Patch forged with Ankit.
361
362 2005-08-12  Ankit Jain <jankit@novell.com>
363
364         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
365           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
366
367 2005-08-11  Ankit Jain <jankit@novell.com>
368
369         * get.c (element_type_map): Use "typedref" instead of "TypedByRef" for
370           MONO_TYPE_TYPEDBYREF.
371           (get_ret_type): Use "typedref" instead of "typedbyref".
372           (get_param): Likewise.
373           
374 Wed Aug 10 17:15:52 CEST 2005 Paolo Molaro <lupus@ximian.com>
375
376         * dump.c: dump the marshal signature blob on --marshal.
377
378 2005-08-04  Ankit Jain <jankit@novell.com>
379
380         * main.c (dis_directive_moduleref): Always escape module ref names.
381
382 2005-08-03  Ankit Jain <jankit@novell.com>
383
384         * main.c (call_conv_map): Oops. Add a sentinel entry (-1, NULL).
385
386 2005-08-03  Ankit Jain <jankit@novell.com>
387
388         * main.c (call_conv_map): Map call conv value of 0 to "".
389
390 2005-08-02  Ankit Jain <jankit@novell.com>
391
392         * main.c (dis_directive_moduleref): Escape module ref names.
393
394 2005-08-01  Ankit Jain <jankit@novell.com>
395
396         * get.c (field_flags_map): Use C comments instead of C#.
397
398 2005-08-01  Ankit Jain <jankit@novell.com>
399
400         * get.c (dis_stringify_marshal_spec): Include "marshal (..)" as part of the
401           returned string. And fix memory leak.
402           (dis_stringify_method_signature): Fix usage of dis_stringify_marshal_spec
403           accordingly.
404         * main.c (dis_field_list): Fix usage of dis_stringify_marshal_spec. Cleanup
405           output of spaces.
406
407 2005-08-01  Ankit Jain <jankit@novell.com>
408
409         * get.c (dis_stringify_marshal_spec): Make it non-static.
410         * main.c (dis_field_list): Print marshal info for fields.
411         
412 2005-07-29  Ankit Jain <jankit@novell.com>
413
414         * get.c (get_constant): Fix printing of some constant types and make it consistent.
415
416 2005-07-28  Ankit Jain <jankit@novell.com>
417
418         * get.c (dis_stringify_method_signature): Fix handling of marshal info for
419           method params. Also, handle possible gaps in the PARAM table.
420
421 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
422
423         * main.c: Fix noinline->noinlining.
424
425 2005-05-26  Sebastien Pouliot  <sebastien@ximian.com>
426
427         * monodis.vcproj: Project file for monodis.
428
429 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
430
431         * main.c: Respect MONO_PATH when loading assemblies.
432
433 2005-04-23  Ankit Jain  <ankit@corewars.org>
434
435         * get.c : Revert Atsushi's earlier patch. Its already been fixed with r43342.
436
437 2005-04-22  Atsushi Enomoto  <atsushi@ximian.com>
438
439         * get.c : arraytype[,] should not be wrapped as 'arraytype[]'.
440
441 2005-04-20  Ankit Jain  <ankit@corewars.org>
442
443         Fix #74521.
444         * get.c (get_generic_param, get_method_core, get_methoddef): Dont use
445         dis_stringify_object_with_class directly, use dis_stringify_type instead.
446
447 2005-04-20  Ankit Jain  <ankit@corewars.org>
448
449         Fix #74657.
450         * main.c (dis_field_list): Print default value if field has
451         HAS_DEFAULT flag set.
452
453 2005-04-12  Ankit Jain  <ankit@corewars.org>
454         
455         Fix #74579.
456         * main.c (dis_mresource): New. Dump embedded managed resources.
457         (main, usage): Add '--mresources' argument.
458
459 2005-04-08  Ankit Jain  <radical@corewars.org>
460
461         Fix #74374.
462         * main.c (dis_type): Add 'is_nested' and 'forward' arguments.  If
463         'is_nested', don't emit .namespace directive even if namespace is
464         set.  If 'forward', print only types.
465         (dis_types): Update to allow emitting forward declarations.
466         (disassemble_file): Emit forward declarations if requested.
467         (main, usage): Add '--forward-decls' argument.
468         * get.c (get_typedef): When printing a nested type, don't include
469         the namespace again, even if it is set.
470
471 2005-04-05  Zoltan Varga  <vargaz@freemail.hu>
472
473         * dump.c dis-cil.c: Apply patches from freebsd ports collection.
474
475 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
476
477         * get.c (get_constant): Applied patch from Ankit Jain (radical@gmail.com). Fixes #74367.
478
479 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
480
481         * dis-cil.c, dump.c: Add mono-compiler.h header to allow/ease 
482         compilation with non-GCC compilers.
483
484 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
485
486         * get.c (dis_stringify_marshal_spec): Fix this after recent runtime
487         changes.
488
489 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
490
491         * get.c: Output marshal info for parameters.
492
493 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
494
495         * main.c: Output managed resources as well. Fixes #72033.
496
497 2005-02-01  Raja R Harinath  <rharinath@novell.com>
498
499         * get.c (get_method_core): Use mono_method_signature (mh), not
500         mh->signature.
501
502 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
503
504         * get.c dis-cil.c dump.c: Fix 64 bit warnings.
505
506 2004-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
507
508         * dump.c:
509         * dis-cil.c: added isinf() for Solaris, that does not seem to have it.
510         Fixes the build on Solaris.
511
512 2004-12-13  Miguel de Icaza  <miguel@ximian.com>
513
514         * dis-cil.c, dump.c: Encode special constant +Inf, -Inf and NaN
515         using hex constants instead of letting libc print the values.
516
517 2004-12-11  Martin Baulig  <martin@ximian.com>
518
519         * get.c (get_typespec): Added `gboolean is_def' argument; removed
520         the special case for MONO_TYPE_VAR/MVAR and pass `is_def' down to
521         dis_stringify_type().
522         (get_escaped_name): Allow `!'.  
523
524 2004-12-11  Martin Baulig  <martin@ximian.com>
525
526         * get.c (get_token): Escape typedefs.
527
528 2004-12-11  Martin Baulig  <martin@ximian.com>
529
530         * get.c (get_escaped_name): Correctly escape nested classes.
531
532 2004-12-11  Martin Baulig  <martin@ximian.com>
533
534         * get.c (get_class_name): Renamed to get_escaped_class_name() and
535         return an escaped class name; correctly escape nested classes.
536
537 2004-12-11  Martin Baulig  <martin@ximian.com>
538
539         * get.c (dis_stringify_type): Added `gboolean is_def' argument; if
540         false, display type parameters as numbers and not as names.
541         (dis_stringify_object_with_class): Added `gboolean is_def' argument.
542         (dis_stringify_array): Likewise.
543
544 2004-12-10  Martin Baulig  <martin@ximian.com>
545
546         * get.c (init_key_table): Added `type' and `strict'.
547         (get_generic_param): Also escape the type parameter names.
548         Correctly handle multiple constraints.
549
550 2004-12-10  Martin Baulig  <martin@ximian.com>
551
552         * get.c (get_fieldref_signature): Escape the field type and name
553         here, too.
554
555 2004-12-10  Martin Baulig  <martin@ximian.com>
556
557         Started to add generics support to monodis.
558
559         * get.c (get_typedef_or_ref): Added `MonoGenericContext *'.
560         (get_field_signature, get_field): Likewise.
561         (get_methodref_signature, get_methodspec): Likewise.
562         (get_token, get_token_type, get_typespec): Likewise.
563         (get_method, get_method_type_param): Likewise.
564         (get_method_override, dis_stringify_method_signature): Likewise.
565         (get_type, get_ret_type, get_param): Likewise.
566
567         * dis-cil.c (disasemble_cil): Added `MonoGenericContext *'.
568
569 2004-12-09  Martin Baulig  <martin@ximian.com>
570
571         * get.c (get_generic_param): Take a `MonoGenericContainer *' and
572         use it to print things instead of manually parsing the metadata.
573
574         * main.c (dis_generic_param_and_constraints): Removed, use
575         get_generic_param() instead.
576         (dis_method_list): Added `MonoGenericContext *' argument.
577
578 Mon Dec 6 13:31:48 CET 2004 Paolo Molaro <lupus@ximian.com>
579
580         * main.c: add a --filter=filename option to load a file
581         with a list of types, fields, methods to disassemble.
582
583 2004-12-02  Miguel de Icaza  <miguel@ximian.com>
584
585         * main.c: Rename compilercontrolled to privatescope
586
587         * get.c (get_class_name): Correct implementation that correctly
588         handles nested classes.
589
590 2004-11-26  Miguel de Icaza  <miguel@ximian.com>
591
592         * main.c: Better implementation of the quote keyword, list all of
593         the known keywords to ildasm here. 
594
595         * get.c (dis_stringify_object_with_class): Take an argument
596         `prefix' that controls whether the `class', `valuetype' labels are
597         used.  This is needed for the catch clause that takes the type
598         directly. 
599         (get_method_core): Rename get_method to get_method_core, and allow
600         for only part of the signature to be specified, so we can produce
601         .override signatures correctly.
602         (get_method_override): Pass false as the `fullsig' argument.
603
604         (get_typedef): no longer quote the type, we quote in the call site
605         elsewhere.   Avoids double quotes.
606         
607         * main.c (quote_keyword): Quote keywords.
608
609 Tue Nov 9 17:29:28 CET 2004 Paolo Molaro <lupus@ximian.com>
610
611         * dis-cil.c, get.c, get.h: update to exception clause structure changes.
612
613 2004-11-08  Ben Maurer  <bmaurer@ximian.com>
614
615         * get.c, dump.c: warning free.
616
617 2004-10-21  Jackson Harper  <jackson@ximian.com>
618
619         * get.c: Escape typedef names.
620
621 2004-10-19    <vargaz@freemail.hu>
622
623         * main.c: Applied patch from Alexandre Rocha Lima e Marcondes  (alexandremarcondes@psl-pr.softwarelivre.org). Really fix 2.95 build.
624
625 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
626
627         * dump.c: Added new "internal" security actions for non-CAS demands:
628         NonCasDemand, NonCasLinkDemand and NonCasInheritance.
629         * main.c: Added new "internal" security actions for non-CAS demands:
630         noncasdemand, noncaslinkdemand and noncasinheritance.
631
632 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
633
634         * main.c: Add support for pinvoke flags BestFit and 
635         ThrowOnUnmappableChar.
636
637 2004-09-23  Miguel de Icaza  <miguel@ximian.com>
638
639         * main.c (dis_directive_assemblyref): Dump the locale and public
640         key tokens 
641
642         * get.c (dis_stringify_object_with_class): Escape assembly name. 
643
644         * main.c (dis_directive_assemblyref): Escape assembly name
645
646 2004-09-21  Martin Baulig  <martin@ximian.com>
647
648         * main.c (main): If just a single assembly was specified, use the
649         runtime version it requires.
650
651 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
652
653         * dump.c: Added new security actions added in 2.0: LinkDemandChoice,
654         InheritanceDemandChoice and DemandChoice.
655         * main.c: Added ".permissionset" to output IL. Removed "hassecurity"
656         as MS ilasm can't compile it.
657
658 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
659
660         * get.c (get_token): Add support for memberrefs.
661
662 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
663
664         * main.c: Fix build && warnings.
665
666 2004-09-05  Jambunathan K  <kjambunathan@novell.com>
667         * main.c (dump_cattrs_list): Newly carved out of dump_cattrs.
668         
669         Renamed cattrs_for_method() to more meaningful
670         dump_cattrs_for_method_params()
671         
672         (dump_cattrs_for_method_params): Fixed so that ".param[]" gets
673         dumped only when necessary. i.e., when a method parameter has
674         either a default value and/or when it has a custom attribute.
675
676 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
677
678         * get.c: Fix printing of unmanaged calling conventions.
679         (get_constant): Fix warning.
680
681 2004-08-28  Jambunathan K  <kjambunathan@novell.com>
682         * main.c: modified cattrs_for_method so that
683           emitting of ".param[] = ..." is complete.
684         
685         * get.c: Modified get_constant() so that
686           1. MONO_TYPE_CHAR now handles unicode characters
687           2. MONO_TYPE_I8 now emits int64(...)
688           3. MONO_TYPE_STRING emits a bytearray()
689
690 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
691         * get.c: Changed dis_stringify_param to emit [opt] for parameters
692           that are marked as Optional.
693
694         * dump.c: Fixed dump_table_constant so that the parent field's
695           description is correctly displayed.
696
697 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
698
699         * get.c (get_typespec): Append '*' to pointer types. Fixes #62331.
700
701 2004-08-03  Martin Baulig  <martin@ximian.com>
702
703         * dump.c (method_dor_to_token): Moved to get.c and made public.
704
705         * get.c (get_method_override): New public function.
706
707         * main.c (dis_code): Added `.override' for override methods.
708
709 2004-08-02  Martin Baulig  <martin@ximian.com>
710
711         * get.c (dis_stringify_object_with_class): Include our generic
712         arguments in the method's class name.
713
714         * main.c (dis_generic_param_and_constraints): Use the new
715         constraints syntax.
716
717 2004-08-02  Martin Baulig  <martin@ximian.com>
718
719         * dump.c (dump_stream_blob): Format this nicely.
720         (dump_table_standalonesig): New public function.
721
722         * main.c (dis_locals): If --show-tokens was requested, print the
723         standalone signature token.
724         (table_list): Added "--standalonesig".
725
726 2004-07-09  Jackson Harper  <jackson@ximian.com>
727
728         * get.c: Make "class" the default so only valuetypes get the
729         "valuetype" modifier. Otherwise object, string, int,... will get
730         it.
731         
732 2004-07-08  Jackson Harper  <jackson@ximian.com>
733
734         * main.c: Spaces after visibility types.
735         
736 2004-07-06  Jackson Harper  <jackson@ximian.com>
737
738         * get.c: Add float cast for outputing floats. Patch by Steve Brown.
739         
740 2004-06-25  Jackson Harper  <jackson@ximian.com>
741
742         * get.c: Add a few more keywords to be escaped.
743         * main.c: MS's ildasm writes '// end of class' not '// end of
744         type'. The python.net tool searches for this string.
745         
746 2004-06-24  David Waite  <mass@akuma.org>
747
748         * dump.c: change to C90-style comments from C99/C++-style
749         
750 2004-06-23  Raja R Harinath  <rharinath@novell.com>
751
752         * main.c (dis_event_signature): Decode and print event_flags.
753
754 2004-06-20  Jackson Harper  <jackson@ximian.com>
755
756         * dis-cil.c: Handle switch statements with no labels.
757         
758 2004-06-19  Jackson Harper  <jackson@ximian.com>
759
760         * dump.c/h: New function to dump the contents of the blob
761         stream. I found it useful for debugging so I will share.
762         * main.c: Add --blob switch to dump the blob stream.
763         * monodis.1: Document --blob
764         
765 2004-06-19  Jackson Harper  <jackson@ximian.com>
766
767         * get.c/h: New function to stringify function pointers.
768         
769 2004-06-19  Jackson Harper  <jackson@ximian.com>
770
771         * get.c: Fix name escaping so we dont escape everything in the
772         world anymore.
773         
774 2004-06-11  Martin Baulig  <martin@ximian.com>
775
776         * get.c (get_methodref_signature): Include "vararg " in the
777         signature of a varargs method.
778
779 2004-06-11  Martin Baulig  <martin@ximian.com>
780
781         * get.c (get_methodref_signature): If we're a varargs method,
782         print "..." for the sentinel followed by the actual types.
783
784 2004-06-08  Martin Baulig  <martin@ximian.com>
785
786         * dump.c (dump_table_memberref): Added support for MethodDef
787         parents.        
788
789 2004-05-06  Bernie Solomon  <bernard@ugsolutions.com>
790
791         * dump.c:
792         * get.c:
793         * main.c:
794         * util.c:
795         * util.h: rename map_t dis_map_t to avoid AIX symbol clash
796
797 2004-04-01  Martin Baulig  <martin@ximian.com>
798
799         * dump.c (dump_table_memberref): Added support for TypeDef's.
800
801 2004-03-29  Jackson Harper  <jackson@ximian.com>
802
803         * main.c: Handle pinvoke info where there is not an impl_map
804         entry.
805         
806 2004-03-27  Vladimir Vukicevic  <vladimir@pobox.com>
807
808        * get.c (get_constant): output bool consts as bool(true) or
809        bool(false)  (to be same as ildasm, also what mono and ms
810        ilasm expect)
811
812 2004-01-31  Martin Baulig  <martin@ximian.com>
813
814         * get.c (get_methodspec): It's a methoddef or ref token.
815
816 2004-01-26  Martin Baulig  <martin@ximian.com>
817
818         * main.cs (--show-tokens): New command line argument to show
819         type tokens in the disassembly.
820
821         * get.c (get_typedef, get_typespec, get_typeref): If
822         `show_tokens', include the token in the type name.
823         (get_type): Do some type parsing here and include the token in the
824         returned type name if requested.
825         (get_method): Include tokens if requested.
826
827 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
828
829         * main.c get.c: Add support for dumping the custom attributes of
830         modules.
831
832 2004-01-09  Jackson Harper  <jackson@ximian.com>
833
834         * monodis.1: Add --show-method-tokens switch
835         * get.c: When stringifying methods show the method token if the
836         show-method-tokens flag is set.
837         * get.h: Add show_method_tokens flag
838         * main.c: Add --show-method-tokens switch
839         
840 2004-01-09  Jackson Harper  <jackson@ximian.com>
841
842         * monodis.1: Add typespec switch
843         
844 2004-01-08  Jackson Harper  <jackson@ximian.com>
845
846         * main.c: Add switch to dump typespec table.
847         * dump.c/dump.h: Add function for dumping typespec table.
848         
849 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
850
851         * dump.c (dump_table_exported): Fix output.
852
853 2003-12-08  Jackson Harper <jackson@ximian.com>
854
855         * main.cs: escape module names.
856         
857 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
858
859         * main.c (dis_field_list): Update after changes to 
860         mono_metadata_get_constant_index ().
861
862 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
863
864         * dump.c dump.h main.c: Added support for dumping the ImplMap table
865         (--implmap).
866
867         * main.c (dis_method_list): Avoid disassembling native code.
868
869 2003-11-19  Zoltan Varga  <vargaz@freemail.hu>
870
871         * get.c (dis_stringify_modifiers): Fix display of modreq and modopt.
872
873 Thu Nov 13 16:12:09 CET 2003 Paolo Molaro <lupus@ximian.com>
874
875         * util.h, dump.c: get rid of ugly CSIZE macro.
876
877 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
878
879         * main.c: Add disassembly of module, moduleref and file tables.
880
881         * get.h get.c: Add support for modulerefs.
882
883         * dump.c: Avoid crash on empty assembly table.
884
885 2003-10-22 Jackson Harper <jackson@ximian.com>
886
887         * main.c: Use escaped names for method, and type names. Initialize
888         the name table.
889         * main.c (visibility_map): Fix typo, should be nested family not
890         family
891         * main.c (dis_data): Use uppercase hex to avoid name conflicts.
892         * get.c/get.h: New method to get an escaped name. This method will
893         take a name and escape it if it is an ilasm keyword, or uses a non
894         id char. Use escaped names for type, method, field, and parameter names.
895         * get.c (get_typespec): A typespec can be used for anything, so we
896         need to handle all types not just modified types.
897         * get.c (dis_stringify_object_with_class): Handle nested classes
898         * get.c (get_token): Add field keyword to field tokens.
899         
900 2003-10-21 Jackson Harper <jackson@ximian.com>
901
902         * get.c (get_fieldref_signature): Use MONO_MEMBERREF_SIGNATURE in
903         the member ref table.
904         
905 2003-10-21  Martin Baulig  <martin@ximian.com>
906
907         * get.c (get_typespec): Add MONO_TYPE_VAR and MONO_TYPE_MVAR.
908
909 2003-10-18 Jackson Harper <jackson@ximian.com>
910
911         * dis-cil.c (get_encoded_user_string): use g_strescape instead of
912         escaping manually.
913         * util.c (hex_dump): Use uppercase hex so there are no conflicts
914         with ilasm keywords ie cf
915         
916 2003-10-17 Jackson Harper <jackson@ximian.com>
917
918         * dis-cil.c (get_encoded_user_string): Escape user strings when
919         loading. ie ""quote"" should be "\"quote\"".
920         * dis-cil.c (dissasemble_cil): Write SEH debug info into a comment
921         block. Combine SEH blocks that have the same offset and length,
922         this prevents creating invalid SEH blocks. 
923         
924 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
925
926         * get.c (get_ret_type): Remove needless warning message.
927
928 2003-10-13 Jackson Harper <jackson@ximian.com>
929
930         * get.c: stringify nested types properly ie Outer/Inner.
931         
932 2003-10-10 Jackson Harper <jackson@ximian.com>
933
934         * dump.c: When dumping methodspecs dump the full methodspec with
935         signature, and dump the signature.
936         
937 2003-10-10 Jackson Harper <jackson@ximian.com>
938
939         * get.c/get.h: Add methods to get stringified methodspecs and
940         method type parameters. 
941         
942 2003-10-09 Jackson Harper <jackson@ximian.com>
943
944         * main.c/get.c: Remove magic numbers, use constants.
945         
946 2003-10-08 Jackson Harper <jackson@ximian.com>
947
948         * main.c (dis_genericparam): renamed to
949         dis_generic_param_and_constraints, allow a table type to be passed
950         to the method so this could be used with generic methods (It is
951         not though).
952         * get.c/get.h (get_generic_param): method to stringify generic
953         type and method parameters.
954         * get.c (dis_stringify_method_signature): Add generic parameters.
955         
956 2003-10-08 Jackson Harper <jackson@ximian.com>
957
958         * main.c (dis_type): NULL cnst_block so we dont explode on
959         interfaces.
960         * main.c (dis_genericparam): oops, fix off-by-one error.
961         
962 2003-10-08 Jackson Harper <jackson@ximian.com>
963
964         * get.c/get.h add method to get a methoddef from an index, simplify
965         get_typd_or_methdef, use new get_methoddef to get the method
966         because we have a method index not a method token.
967         
968 2003-10-07 Jackson Harper <jackson@ximian.com>
969
970         * main.c: When dis. generic parameters the TypeOrMethodDef token
971         only needs to be shifted 1 bit. Added dis of generic constraints.
972         * get.c/get.h: New method for getting a TypeOrMethodDef token
973         * dump.c: When dumping generic parameters and generic constraints
974         output readable names instead of just tokens.
975         
976 2003-10-01 Jackson Harper <jackson@latitudegeo.com>
977         
978         * main.c: Fix visibility level names, when outputing pinvoke info
979         quote the module and method names, properties have specialname,
980         and rtspecialname flags (nothing else), dis global methods and
981         fields FIXME: indentation issues.
982         * get.h: declare get_fieldref_signature
983         * get.c: Fix unsigned ints (not uint), single quote argument names
984         (this is kinda a hack, ildasm will only single quote arg names
985         that are ilasm keywords), remove fixme, we know what typedbyref
986         means, output fieldref signatures instead of their token value.
987         
988 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
989
990         * dis-cil.c: Output fault blocks, and filter blocks. If in a
991         filter block outptut 0xDC as endfilter if in a fault output as
992         endfault.
993         
994 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
995
996         * main.c (dis_event_list): Same for event methods.
997
998         * get.c (dis_stringify_method_signature): New argument specifying
999         whenever to return a fully qualified method name.
1000         * dump.c main.c: Updated to work with the new function.
1001
1002         * main.c (dis_property_methods): Print fully qualified method names 
1003         for property methods. Fixes #46221.
1004
1005 2003-07-22 Jackson Harper <jackson@latitudegeo.com>
1006
1007         * main.c: Dissasemble generic type parameters for type
1008         definitions. TODO: Sort type parameters by index, and
1009         auto-generate names for parameters that have no name.
1010         
1011 Fri Jul 18 13:12:38 CEST 2003 Paolo Molaro <lupus@ximian.com>
1012
1013         * get.c: updates for array type representation changes.
1014
1015 2003-06-16 Jackson Harper <jackson@latitudegeo.com>
1016
1017         * get.c: Fix modopt and modreq
1018                 
1019 Thu May 29 12:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
1020
1021         * dump.c, get.c: misc fixes.
1022
1023 Wed May 7 16:50:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
1024
1025         * main.c: output custom attributes for method parameters.
1026
1027 Wed May 7 16:24:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
1028
1029         * main.c: output nested types inside their nesting class.
1030
1031 2003-04-12  Zoltan Varga  <vargaz@freemail.hu>
1032
1033         * get.c (dis_stringify_modifiers): Print a space between custom modifers.
1034         * get.c (get_custom_mod): Handle multiple custom modifiers aka bug #30812.
1035         * main.c: Print klass name at the end of each method to make it easier
1036         to find a given method.
1037
1038 2003-03-31  Miguel de Icaza  <miguel@ximian.com>
1039
1040         * main.c: Sorted command line options table by name.
1041
1042         * dump.c: Add support for dumping the new generic tables. 
1043
1044         * monodis.1: Update man page.
1045         
1046 2003-03-09 Jackson Harper <jackson@latitudegeo.com>
1047
1048         * main.c: Ouput implements clause as a comma seperated list.
1049
1050 Thu Feb  6 02:43:23 PST 2003 Piers Haken <piersh@friskit.com>
1051
1052         * dump.c: more warning cleanups
1053
1054 Mon Jan 27 17:16:50 CET 2003 Paolo Molaro <lupus@ximian.com>
1055
1056         * get.c: decode also the size info in get_marshal_info()
1057         for ByValStr and ByValArray.
1058
1059 Tue Sep 24 11:48:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
1060
1061         * main.c: use mono_type_size () to get the size of
1062         a blob of data for a type (Zoltan Varga spotted the bug).
1063
1064 2002-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1065
1066         * get.c: closes bug #30814. Thanks to Zoltan Varga.
1067
1068 Mon Sep 16 18:49:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
1069
1070         * main.c, get.c, dump.c: updates for changes in libmetadata.
1071
1072 Fri Sep 13 15:39:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
1073
1074         * main.c: dump public key.
1075         * get.c, util.h, util.c: prettyfy data dumps.
1076
1077 2002-08-28  Dick Porter  <dick@ximian.com>
1078
1079         * Makefile.am: Export HOST_CC for w32 builds
1080
1081 Tue Aug 6 12:40:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
1082
1083         * main.c: use mono_image_get_entry_point ().
1084
1085 Fri Jul 26 11:41:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
1086
1087         * main.c, dump.h, dump.c: output hash value in File table.
1088         Add dumper function for DeclSecurity table.
1089
1090 Fri Jul 19 14:20:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
1091
1092         * main.c: handle null parent.
1093
1094 2002-07-02  Martin Baulig  <martin@gnome.org>
1095
1096         * get.c (dis_stringify_object_with_class): New static function to
1097         stringify an object when we already have its class.
1098         (dis_stringify_object): Get the class and call dis_stringify_object().
1099         (get_method): Call dis_stringify_object_with_class() since we already
1100         have the object's class.
1101
1102 Thu Jun 20 11:50:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
1103
1104         * main.c, dump.c, dump.h: code to dump the MethodImpl table.
1105
1106 Mon Jun 17 17:31:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1107
1108         * get.h, get.c: get_marshal_info() to get a marshal descriptor.
1109         * main.c, dump.h, dump.c: added code to dump the FieldMarshl table.
1110
1111 Tue Jun 11 14:11:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
1112
1113         * get.c: handle modulerefs.
1114         * main.c: fix --mscorlib argument handling.
1115
1116 Fri Jun 7 19:39:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
1117
1118         * get.c: handle typerefs of nested types. Don't print "."
1119         with an empty namespace.
1120
1121 Sat Jun 1 13:57:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1122
1123         * main.c: print byte values correctly.
1124
1125 2002-05-20  Martin Baulig  <martin@gnome.org>
1126
1127         * main.c: Added `--output=FILENAME' command line option.
1128
1129         * monodis.1: Documented it here.
1130
1131 Thu May 16 17:21:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
1132
1133         * main.c, dump,c, get.h, get.c: diassemble custom attributes.
1134
1135 Wed May 15 16:02:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1136
1137         * main.c: output field RVA data.
1138
1139 Fri May 10 21:00:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
1140
1141         * main.c: print field offset info if needed.
1142
1143 Wed May 1 17:07:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1144
1145         * dump.c, dump.h, main.c: dump ExportedTypes table.
1146         * get.c: fix get_module (), remove magic numbers.
1147         * monodis.1: update manpage (hi miguel!:)
1148
1149 Mon Apr 29 12:12:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
1150
1151         * dump.c, dump.h, main.c: support for dumping the manifest resource table.
1152
1153 Mon Apr 15 11:35:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
1154
1155         * dump.c, dump.h, get.c, get.h, main.c: support for dumping the
1156         module table and guid values.
1157
1158 Mon Apr 8 17:15:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
1159
1160         * main.c: removed unneeded runtime invoke support.
1161
1162 Thu Mar 28 16:52:11 CET 2002 Paolo Molaro <lupus@ximian.com>
1163
1164         * dis-cil.c, dump.c, get.c, main.c, util.h: spring warning cleanup.
1165
1166 Thu Mar 28 11:29:58 CET 2002 Paolo Molaro <lupus@ximian.com>
1167
1168         * util.c: when an invalid flags combination is seen,
1169         return the string "invalid-flags", so disassembly can continue.
1170
1171 Tue Mar 19 18:15:29 CET 2002 Paolo Molaro <lupus@ximian.com>
1172
1173         * dis-cil.c: use unsigned for variables.
1174
1175 Sat Mar 16 19:13:57 CET 2002 Paolo Molaro <lupus@ximian.com>
1176
1177         * dump.c: handle TypeSpec token in memberref table dump.
1178
1179 2002-03-08  Nick Drochak  <ndrochak@gol.com>
1180
1181         * monodis.1: Add info about new parameter
1182         * main.c: Add flag to remember if user wants to us mscorlib for
1183         non-corilb assembly names
1184         * get.c(get_typedef): use mscorlib for assembly name only
1185         if user specifies it with a command line parameter. Default
1186         behavior is now to use actual assembly name.
1187  
1188 Tue Mar 5 18:11:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1189
1190         * dump.c: print index of the methodsemantics table.
1191         * main.cs: print event information.
1192
1193 Wed Feb 20 22:10:48 CET 2002 Paolo Molaro <lupus@ximian.com>
1194
1195         * dump.c: fix the fix and more complete custom attribute decoder.
1196
1197 Tue Feb 19 20:20:15 CET 2002 Paolo Molaro <lupus@ximian.com>
1198
1199         * dump.c: the prolog is before each arg in the custom attribute blob.
1200
1201 Mon Feb 18 15:48:38 CET 2002 Paolo Molaro <lupus@ximian.com>
1202
1203         * get.c: include last param.
1204
1205 Thu Feb 14 18:59:37 CET 2002 Paolo Molaro <lupus@ximian.com>
1206
1207         * main.c: output pack and size info if needed.
1208
1209 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
1210
1211         * *.c: s/MonoMetadata/MonoImage/ 
1212
1213 Tue Feb 12 14:33:53 CET 2002 Paolo Molaro <lupus@ximian.com>
1214
1215         * dump.c: make all the indexes printed starting from 1.
1216
1217 Fri Feb 8 19:28:31 CET 2002 Paolo Molaro <lupus@ximian.com>
1218
1219         * get.c: don't abort if a methodref is not found, usa alternative way
1220         to get the method name.
1221
1222 Fri Feb 8 12:29:41 CET 2002 Paolo Molaro <lupus@ximian.com>
1223
1224         * Makefile.am: correct linking order.
1225         * dis-cil.c: use opcode info from opcodes.h instead of a copy of the data.
1226
1227 Thu Jan 31 18:21:12 CET 2002 Paolo Molaro <lupus@ximian.com>
1228
1229         * dis-cil.c: reverse order when outputting start try blocks.
1230
1231 Mon Jan 14 17:00:23 CET 2002 Paolo Molaro <lupus@ximian.com>
1232
1233         * dump.c: more info in method table dump.
1234
1235 Mon Dec 24 17:24:13 CET 2001 Paolo Molaro <lupus@ximian.com>
1236
1237         * main.c, dump.h, dump.c: add dump_table_nestedclass().
1238         * dis-cil.c: output int64 as hex.
1239
1240 Tue Dec 18 18:48:00 CET 2001 Paolo Molaro <lupus@ximian.com>
1241
1242         * main.c: use mono_metadata_methods_from_property() and
1243         mono_metadata_properties_from_typedef() from metadata instead of
1244         custom code.
1245
1246 Tue Nov 27 16:31:52 CET 2001 Paolo Molaro <lupus@ximian.com>
1247
1248         * main.c: output a marker for method (used in debug support).
1249
1250 Mon Nov 19 11:32:28 CET 2001 Paolo Molaro <lupus@ximian.com>
1251
1252         * main.c: remove arch_create_jit_trampoline().
1253
1254 Thu Nov 15 17:42:03 CET 2001 Paolo Molaro <lupus@ximian.com>
1255
1256         * dump.c: decode more info in the constant table.
1257         * get.c: show literals the same way ildasm does.
1258         * main.c: decode literal values for fields.
1259
1260 Fri Nov 2 19:04:21 CET 2001 Paolo Molaro <lupus@ximian.com>
1261
1262         * main.c, dump, dump.c: decode the customattr table.
1263         * dump.c: handle also field signature when dumping the memberref
1264         table.
1265
1266 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
1267
1268         * main.c (dis_property_methods): Added missing colon which avoided
1269         setting loc.t
1270
1271 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
1272
1273         * main.c (arch_compile_method):  added to compute vtable entry
1274
1275 Mon Oct 8 16:13:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
1276
1277         * get.c, get.h: MonoArray changed in MonoArrayType.
1278         * main.c: guard against calling bsearch with a NULL pointer
1279         (pointed out by Laurent Rioux, smoux).
1280
1281 Thu Oct 4 19:05:56 CEST 2001 Paolo Molaro <lupus@ximian.com>
1282
1283         * dis-cil.c: fix printing of exception stuff.
1284         * dump.c: display some more info in the typedef table dump.
1285         * main.c: typo fix and method list fix.
1286
1287 2001-10-04  Dick Porter  <dick@ximian.com>
1288
1289         * meta.h: include mono-endian.h not endian.h
1290
1291 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
1292
1293         * get.c (get_method): always write namespace and class name.
1294
1295 2001-09-06  Miguel de Icaza  <miguel@ximian.com>
1296
1297         * monodis.1: Update man page.
1298
1299 Tue Aug 28 15:54:45 CEST 2001 Paolo Molaro <lupus@ximian.com>
1300
1301         * main.c, dump.c, dump.h, get.c: added dump_table_interfaceimpl ().
1302         Output info about interfaces when disassembling a type. Many small
1303         changes to make the output correct assembler.
1304
1305 Mon Aug 27 20:13:49 CEST 2001 Paolo Molaro <lupus@ximian.com>
1306
1307         * dis-cil.c, get.c: some endian fixes.
1308         * main.c: colon-separate version numbers. Print also namespace
1309         when outputting class information.
1310
1311 Fri Aug 24 16:10:12 CEST 2001 Paolo Molaro <lupus@ximian.com>
1312
1313         * get.c, main.c, get.h: updates for MonoParam merge in MonoType.
1314
1315 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
1316
1317         * main.c (disassemble_file): use assembly_open instead of image_open
1318
1319 Wed Aug 22 16:22:22 CEST 2001 Paolo Molaro <lupus@ximian.com>
1320
1321         * dis-cil.c: add a newline after branch instructions. Move
1322         end of exception handler code at the end.
1323
1324 Tue Aug 21 18:51:05 CEST 2001 Paolo Molaro <lupus@ximian.com>
1325
1326         * dis-cil.c: correctly print the label for multi-byte opcodes.
1327
1328 Mon Aug 20 19:33:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
1329
1330         * util.c: add a space when decoding multiple flags.
1331         * dump.c, dump.h, main.c: decode the property map and
1332         methodsemantics tables. Disassemble property information
1333         to .property IL directives.
1334         * get.c: allow passing a NULL as method in dis_stringify_method ()
1335         if a methoddef_row is given.
1336         
1337 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
1338
1339         * get.c (dis_stringify_type): support pinned values
1340
1341 Sat Aug 18 11:24:07 CEST 2001 Paolo Molaro <lupus@ximian.com>
1342
1343         * dump.c, get.c, get.h, main.c: dis_stringify_method_signature()
1344         gets an optional methodef_row index instead of a name, so it
1345         can figure out also the names and attributes of params.
1346         parse_method_signature() and free_method_signature() removed as
1347         they are useless now.
1348
1349 2001-08-17  Dietmar Maurer  <dietmar@ximian.com>
1350
1351         * main.c (pinvoke_info): bug fix - use the right column in the table
1352
1353 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
1354
1355         * get.c (dis_stringify_type): use strconcat instead of strjoin
1356
1357 Sat Aug 4 12:36:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
1358
1359         * get.c, get.h, main.c, dump.c: implement dis_stringify_method_signature().
1360         More magic constants replaced by enum values (spotted at least 3 real bugs
1361         doing this). Print usage information if an unknown option is given.
1362         Print the full signature when dumping the method table.
1363         Changed method and field table dumps to show the typedef name the field
1364         or method belongs to.
1365
1366 Fri Aug 3 18:30:16 CEST 2001 Paolo Molaro <lupus@ximian.com>
1367
1368         * get.c (get_method): fix use of unitialized variable and
1369         remove magic constants all over the place.
1370
1371 Wed Aug 1 22:46:45 CEST 2001 Paolo Molaro <lupus@ximian.com>
1372
1373         * dis-cil.c: properly decode the switch opcode.
1374         
1375 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
1376
1377         * get.c (get_token): decode typedef and typeref tokens
1378
1379         * main.c (dis_method_list): don't decode the next row, that is
1380         totally unnecessary
1381
1382 Tue Jul 31 17:48:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
1383
1384         * dis-cil.c, dis-cil.h, dump.c, dump.h, get.c, get.h, main.c, push-pop.h:
1385         massive namespace cleanup.
1386         * main.c: dis_locals() now just strigifies a MonoMethodHeader.
1387
1388 2001-07-31  Dietmar Maurer  <dietmar@ximian.com>
1389
1390         * main.c (pinvoke_flags): impl.
1391
1392 Mon Jul 30 20:08:37 CEST 2001 Paolo Molaro <lupus@ximian.com>
1393
1394         * dis-cil.c, dis-cil.h, main.c: changes to disassemble also
1395         the information about try/catch/finally blocks.
1396
1397 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
1398
1399         * get.c (dis_stringify_type): return "void" if !type
1400         (dis_stringify_type): print type* instead of *type
1401
1402 Thu Jul 26 13:22:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
1403
1404         * dis-cil.c, dump.c, get.c, main.c: updates to match changes in metadata.
1405         Removed dead code.
1406
1407 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
1408
1409         * main.c (usage): Print out all the arguments.
1410
1411         * get.c, main.c, dump.c: Remove `expand', `get_encoded_value',
1412         `get_blob_encoded_size' and replaced with the proper functions
1413         from metadata.c
1414
1415 2001-07-15  Miguel de Icaza  <miguel@ximian.com>
1416
1417         * main.c (dis_code): Only display .entrypoint when we are dealing
1418         with a module that contains an entry point.  This removes a bunch
1419         of warnings for .dll dumping
1420
1421 Sun Jul 15 17:29:10 CEST 2001 Paolo Molaro <lupus@ximian.com>
1422
1423         * get.h,get.c: added some dis_stringify_object() functions:
1424         metadata decoding is now done in libmetadata. Still need to use
1425         them throughhout the code (and move other decode code to
1426         metadata). Fix also field decoding (band-aid until we load
1427         also referenced assemblies).
1428         * dis/main.c: start using the new routines.
1429
1430 2001-07-13  Miguel de Icaza  <miguel@ximian.com>
1431
1432         * get.c (get_method): GOOD. Implemented this other bad boy.
1433
1434 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
1435
1436         * get.c (get_token_type): Implement TOKEN_TYPE_TYPE_SPEC.
1437         (get_typespec): Implement.
1438         (get_typedef_or_ref): Use get_typespec.
1439
1440         * dis-cil.c (dissasemble_cil): Implement InlineField
1441         (dissasemble_cil): Implement InlineTok.
1442
1443         * get.c (get_token, get_field): Implemented.  Worked around lame
1444         tables in the spec.
1445
1446 Wed Jul 11 18:52:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
1447
1448         * dis-cil.c: output real name of local var.
1449         * dump.c: output more info about fields (flags and type). Properly decode
1450         Property signatures. Decode also method table.
1451         * main.c: Fix local variable info. Hopefully fix field and property list.
1452
1453 Mon Jul  9 16:39:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
1454
1455         * dump.c: write stuff to output, not stderr. Give more info for properties.
1456         * dump.c,dump.h,main.c: implement dump_table_event(), dump_table_file(),
1457         dump_table_moduleref().
1458         * get.c: first attempt to decode string constants, need to find if and where
1459         this is actually specified.
1460
1461 Fri Jul  6 19:49:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
1462
1463         * dump.c,dump.h: implement dump_table_property().
1464         * main.c: implement local variable info disassembling.
1465         Annotate entrypoint method. Remove memory leak in 
1466         parse_method_signature ().
1467
1468 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
1469         
1470         * get.c (get_methodref_signature): Implement.
1471
1472         * dump.c (dump_table_memberref): Add memberref dumping.
1473
1474 Tue,  3 Jul 2001 18:32:10 +0200 Paolo Molaro <lupus@ximian.com>
1475
1476         * main.c: return on failure.
1477
1478 2001-07-02  Miguel de Icaza  <miguel@ximian.com>
1479
1480         * dis-cil.c (get_encoded_user_string): Return a string from the
1481         #US heap. o
1482
1483         * get.c (get_blob_encoded_size): Implement 23.1.4 decoding.
1484
1485 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
1486
1487         * dis-cil.c: New file.  CIL opcode dissasembler.
1488
1489 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
1490
1491         * main.c: Split code.
1492
1493 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
1494
1495         * main.c: More work on the disassembler and on the understanding
1496         of the metadata file format.   
1497