X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Ffirmstat.h;h=e28b8c00d129949996124164b876a20082569016;hb=45fc5c69b556a288c3df6058b58ad99b2d865ac5;hp=813bfc1b1fa196107c1e9a603cf8033273a26ad7;hpb=e690de805182c6c6f15d73b8649e59ffb7f84b6a;p=libfirm diff --git a/include/libfirm/firmstat.h b/include/libfirm/firmstat.h index 813bfc1b1..e28b8c00d 100644 --- a/include/libfirm/firmstat.h +++ b/include/libfirm/firmstat.h @@ -82,6 +82,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,7 +123,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_COND_EVAL, /**< Conditional evaluation: removed conditional control flow */ + 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 */ @@ -166,10 +168,22 @@ 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-\- */ -void stat_dump_snapshot(const char *name, const char *phase); +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 + */ +ir_prog_pass_t *stat_dump_snapshot_pass( + const char *name, const char *fname, const char *phase); /** * initialize the statistics module.