4686682fee42a8b5f10a43334db905171ebd6e33
[mono.git] / mono / dis / get.h
1
2 /*
3  * These return allocated strings
4  */
5 char *get_typedef             (MonoImage *m, int idx);
6 char *get_module              (MonoImage *m, int idx);
7 char *get_assemblyref         (MonoImage *m, int idx);
8 char *get_typeref             (MonoImage *m, int idx);
9 char *get_typedef_or_ref      (MonoImage *m, guint32 dor_token);
10 char *get_field_signature     (MonoImage *m, guint32 blob_signature);
11 char *decode_literal          (MonoImage *m, guint32 token);
12 char *get_field               (MonoImage *m, guint32 token);
13 char *param_flags             (guint32 f);
14 char *field_flags             (guint32 f);
15 char *get_methodref_signature (MonoImage *m, guint32 blob_signature, const char *fancy);
16 char *get_constant            (MonoImage *m, MonoTypeEnum t, guint32 blob_index);
17 char *get_token               (MonoImage *m, guint32 token);
18 char *get_token_type          (MonoImage *m, guint32 token);
19 char *get_typespec            (MonoImage *m, guint32 blob_idx);
20 char *get_method              (MonoImage *m, guint32 token);
21 char *get_guid                (MonoImage *m, guint32 guid_index);
22
23
24 char *dis_stringify_type      (MonoImage *m, MonoType *type);
25 char *dis_stringify_token     (MonoImage *m, guint32 token);
26 char *dis_stringify_array     (MonoImage *m, MonoArrayType *array);
27 char *dis_stringify_modifiers (MonoImage *m, int n, MonoCustomMod *mod);
28 char *dis_stringify_param     (MonoImage *m, MonoType *param);
29 char *dis_stringify_method_signature (MonoImage *m, MonoMethodSignature *method, int methoddef_row);
30
31 /*
32  * These functions are used during the decoding of streams in the
33  * metadata heaps (a simple parsing).
34  *
35  * They return the `next' location to continue parsing from (ptr is
36  * the starting location).
37  *
38  * Results are returning in the pointer argument.
39  */
40 const char *get_encoded_typedef_or_ref (MonoImage *m, const char *ptr,
41                                         char **result);
42 const char *get_encoded_value          (const char *_ptr,
43                                         guint32 *len);
44 const char *get_custom_mod             (MonoImage *m, const char *ptr,
45                                         char **return_value);
46 const char *get_type                   (MonoImage *m, const char *ptr,
47                                         char **result);
48 const char *get_ret_type               (MonoImage *m, const char *ptr,
49                                         char **ret_type);
50 const char *get_param                  (MonoImage *m, const char *ptr,
51                                         char **retval);
52 const char *get_blob_encoded_size      (const char *ptr, int *size);
53
54 MonoTypeEnum get_field_literal_type (MonoImage *m, guint32 blob_signature);
55