X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fstat%2Ffirmstat_t.h;h=6b39eac4155819ec1f50bd864e09ef60701aa747;hb=78b94dd9a1d6aee17e0dfb4218a49ef17531d680;hp=84aff97b8791ec4f0d2dfde6b74d865f7d18187e;hpb=ab182d4b9ed44239ab3ff1d08b2f8e14a3699ccf;p=libfirm diff --git a/ir/stat/firmstat_t.h b/ir/stat/firmstat_t.h index 84aff97b8..6b39eac41 100644 --- a/ir/stat/firmstat_t.h +++ b/ir/stat/firmstat_t.h @@ -21,7 +21,6 @@ * @file * @brief Statistics for Firm. Internal data structures. * @author Michael Beck - * @version $Id$ */ #ifndef FIRM_STAT_FIRMSTAT_T_H #define FIRM_STAT_FIRMSTAT_T_H @@ -59,7 +58,7 @@ typedef pset hmap_distrib_entry_t; * An entry in a distribution table */ typedef struct distrib_entry_t { - counter_t cnt; /**< the current count */ + counter_t cnt; /**< the current count */ const void *object; /**< the object which is counted */ } distrib_entry_t; @@ -152,7 +151,6 @@ typedef struct graph_entry_t { struct obstack recalc_cnts; /**< obstack containing the counters that are recalculated */ HASH_MAP(node_entry_t) *opcode_hash; /**< hash map containing the opcode counter */ HASH_MAP(block_entry_t) *block_hash; /**< hash map containing the block counter */ - HASH_MAP(block_entry_t) *extbb_hash; /**< hash map containing the extended block counter */ HASH_MAP(be_block_entry_t) *be_block_hash; /**< hash map containing backend block information */ counter_t cnt[_gcnt_last]; /**< counter */ unsigned num_tail_recursion; /**< number of tail recursion optimizations */ @@ -243,9 +241,6 @@ typedef struct block_entry_t { unsigned is_end:1; /**< set, if it's the End block. */ } block_entry_t; -/** An entry for an extended block in a ir-graph */ -typedef block_entry_t extbb_entry_t; - /** * Some potential interesting float values */ @@ -329,8 +324,6 @@ typedef struct statistic_info_t { ir_op *op_MulC; /**< pseudo op for multiplication by const */ ir_op *op_DivC; /**< pseudo op for division by const */ ir_op *op_ModC; /**< pseudo op for modulo by const */ - ir_op *op_DivModC; /**< pseudo op for DivMod by const */ - ir_op *op_QuotC; /**< pseudo op for floating point division by const */ ir_op *op_SelSel; /**< pseudo op for Sel(Sel) */ ir_op *op_SelSelSel; /**< pseudo op for Sel(Sel(Sel)) */ dumper_t *dumper; /**< list of dumper */ @@ -361,7 +354,7 @@ struct dumper_t { /** * helper: get an ir_op from an opcode */ -ir_op *stat_get_op_from_opcode(ir_opcode code); +ir_op *stat_get_op_from_opcode(unsigned code); /* API for distribution tables */