X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firdump.h;h=2532f566898431897ca9d48dbcb2c2de45d23326;hb=cb91bddc9cacdab7c28e4336847bd3dc248aa549;hp=21dc4dcf3b39a3d23b67c26858dd46fc298ae2a6;hpb=2f1660d797cad3ad5739e4543817dac6af4b07d2;p=libfirm diff --git a/ir/ir/irdump.h b/ir/ir/irdump.h index 21dc4dcf3..2532f5668 100644 --- a/ir/ir/irdump.h +++ b/ir/ir/irdump.h @@ -263,7 +263,7 @@ void dump_callgraph_loop_tree(const char *suffix); /** Verbosity for text dumpers */ typedef enum { - dump_verbosity_onlynames = 0x00000001, /**< only dump type names. turns off all other + dump_verbosity_onlynames = 0x00000001, /**< only dump names. turns off all other flags up to 0x00010000. */ dump_verbosity_fields = 0x00000002, /**< dump types and fields (like a type declaration) */ dump_verbosity_methods = 0x00000004, /**< dump types and methods (like a type declaration) */ @@ -271,6 +271,8 @@ typedef enum { dump_verbosity_entattrs = 0x00000010, /**< dump all entity attributes */ dump_verbosity_entconsts = 0x00000020, /**< dump entity constants */ + dump_verbosity_accessStats = 0x00000100, /**< dump entity access statistics */ + dump_verbosity_noClassTypes = 0x00001000, /**< dump no class types */ dump_verbosity_noStructTypes = 0x00002000, /**< dump no struct types */ dump_verbosity_noUnionTypes = 0x00004000, /**< dump no union types */ @@ -283,13 +285,13 @@ typedef enum { dump_verbosity_onlyClassTypes = 0x000FE000, /**< dump only class types */ dump_verbosity_onlyStructTypes = 0x000FD000, /**< dump only struct types */ dump_verbosity_onlyUnionTypes = 0x000FB000, /**< dump only union types */ - dump_verbosity_onlyArrayTypes = 0x000F8000, /**< dump only array types */ + dump_verbosity_onlyArrayTypes = 0x000F7000, /**< dump only array types */ dump_verbosity_onlyPointerTypes = 0x000EF000, /**< dump only pointer types */ dump_verbosity_onlyMethodTypes = 0x000DF000, /**< dump only method types */ dump_verbosity_onlyPrimitiveTypes = 0x000BF000, /**< dump only primitive types */ - dump_verbosity_onlyEnumerationTypes=0x0008F000, /**< dump only enumeration types */ + dump_verbosity_onlyEnumerationTypes=0x0007F000, /**< dump only enumeration types */ - dump_verbosity_max = 0x48888887, /**< turn on all verbosity. */ + dump_verbosity_max = 0x48888887 /**< turn on all verbosity. */ } dump_verbosity;