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