X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Ffirmstat.h;h=54a49efef7aedf435c28a8864119443af2c07c7f;hb=4d64d1d8ea625cc6075a0086671c525a162726a0;hp=872079fa28d0b524c22e481761b2f32435cf7933;hpb=6f4a35ebea3ecb9bc93b337ac810e2948bf594d7;p=libfirm diff --git a/include/libfirm/firmstat.h b/include/libfirm/firmstat.h index 872079fa2..54a49efef 100644 --- a/include/libfirm/firmstat.h +++ b/include/libfirm/firmstat.h @@ -27,6 +27,7 @@ #define FIRM_STAT_FIRMSTAT_H #include "irhooks.h" +#include "begin.h" /** * Statistic options, can be or'ed. @@ -82,6 +83,8 @@ enum firmstat_optimizations_t { FS_OPT_CONV, /**< a Conv could be removed */ FS_OPT_CAST, /**< a Cast could be removed */ FS_OPT_MIN_MAX_EQ, /**< Min(a,a) = Max(a,a) = a */ + FS_OPT_MUX_COMBINE, /**< two Mux nodes where combined into one */ + FS_OPT_MUX_CONV, /**< MuxI(sel, 1, 0) = (I)sel */ FS_OPT_MUX_BOOL, /**< Muxb(sel, true, false) = sel */ FS_OPT_MUX_NOT_BOOL, /**< Muxb(sel, false, true) = Not(sel) */ FS_OPT_MUX_OR_BOOL, /**< Muxb(sel, true, x) = Or(sel, x) */ @@ -121,6 +124,7 @@ enum firmstat_optimizations_t { FS_OPT_COMBO_CF, /**< Combo: removed conditional control flow */ FS_OPT_COMBO_FOLLOWER, /**< Combo: replaced a follower */ FS_OPT_COMBO_CONGRUENT, /**< Combo: replaced by congruent */ + FS_OPT_JUMPTHREADING, /**< Jump threading: removed conditional control flow */ FS_OPT_RTS_ABS, /**< RTS optimization: call to abs() replaced */ FS_OPT_RTS_ALLOCA, /**< RTS optimization: call to alloca() replaced */ FS_OPT_RTS_SQRT, /**< RTS optimization: call to sqrt() replaced */ @@ -140,9 +144,13 @@ enum firmstat_optimizations_t { FS_OPT_RTS_SYMMETRIC, /**< RTS optimization: call to symmetric function f(-x) replaced by f(x) */ FS_OPT_RTS_STRCMP, /**< RTS optimization: call to strcmp() replaced */ FS_OPT_RTS_STRNCMP, /**< RTS optimization: call to strncmp() replaced */ + FS_OPT_RTS_STRCPY, /**< RTS optimization: call to strcpy() replaced */ + FS_OPT_RTS_STRLEN, /**< RTS optimization: call to strlen() replaced */ FS_OPT_RTS_MEMCPY, /**< RTS optimization: call to memcpy() replaced */ + FS_OPT_RTS_MEMPCPY, /**< RTS optimization: call to mempcpy() replaced */ + FS_OPT_RTS_MEMMOVE, /**< RTS optimization: call to memmove() replaced */ FS_OPT_RTS_MEMSET, /**< RTS optimization: call to memset() replaced */ - FS_OPT_RTS_STRLEN, /**< RTS optimization: call to strlen() replaced */ + FS_OPT_RTS_MEMCMP, /**< RTS optimization: call to memcmp() replaced */ FS_BE_IA32_LEA, /**< Lea was created */ FS_BE_IA32_LOAD_LEA, /**< Load merged with a Lea */ FS_BE_IA32_STORE_LEA, /**< Store merged with a Lea */ @@ -161,26 +169,41 @@ enum firmstat_optimizations_t { * Dump a snapshot of the statistic values. * Never called from libFirm should be called from user. * - * @param name base name of the statistic output file - * @param phase a phase name. Prefix will be firmstat-- + * @param fname base name of the statistic output file + * @param phase a phase name. Prefix will be firmstat-\- + */ +FIRM_API void stat_dump_snapshot(const char *fname, const char *phase); + +/** + * Creates an ir_prog pass for stat_dump_snapshot(). + * + * @param name the name of this pass or NULL + * @param fname base name of the statistic output file + * @param phase a phase name. Prefix will be firmstat-\- + * + * @return the newly created ir_prog pass */ -void stat_dump_snapshot(const char *name, const char *phase); +FIRM_API ir_prog_pass_t *stat_dump_snapshot_pass( + const char *name, const char *fname, const char *phase); /** * initialize the statistics module. + * Should be called directly after ir_init * * @param enable_options a bitmask containing the statistic options */ -void firm_init_stat(unsigned enable_options); +FIRM_API void firm_init_stat(unsigned enable_options); /** * terminates the statistics module, frees all memory */ -void stat_term(void); +FIRM_API void stat_term(void); /** * returns 1 if statistic module is active, 0 otherwise */ -int stat_is_active(void); +FIRM_API int stat_is_active(void); + +#include "end.h" -#endif /* FIRM_STAT_FIRMSTAT_H */ +#endif