X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbestat.c;h=847c3b7d9e0a9c77ec54e76fede500bd44959977;hb=6e998f91ca26b38b9022cfe5f3316bd3074bf39f;hp=ae45495b0360b6bf5b7cf78177b7d96cb0d206ad;hpb=894b2412290bfd0c2a9d69869dd678f7c8898e45;p=libfirm diff --git a/ir/be/bestat.c b/ir/be/bestat.c index ae45495b0..847c3b7d9 100644 --- a/ir/be/bestat.c +++ b/ir/be/bestat.c @@ -1,8 +1,27 @@ +/* + * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. + */ + /** - * This file calls the corresponding statistic functions for - * some backend statistics. - * @author Christian Wuerdig - * $Id$ + * @file + * @brief Provides several statistic functions for the backend. + * @author Christian Wuerdig + * @version $Id$ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -14,11 +33,13 @@ #include "irprintf.h" #include "irgwalk.h" #include "irhooks.h" +#include "execfreq.h" #include "dbginfo_t.h" #include "firmstat_t.h" #include "irtools.h" #include "pset.h" +#include "bearch_t.h" #include "bestat.h" #include "belive_t.h" #include "besched.h" @@ -101,7 +122,8 @@ struct a_pressure_walker { static void stat_reg_pressure_block(ir_node *block, void *data) { struct a_pressure_walker *env = data; be_irg_t *birg = env->birg; - const arch_env_t *aenv = birg->main_env->arch_env; + ir_graph *irg = be_get_birg_irg(birg); + const arch_env_t *aenv = be_get_birg_arch_env(birg); int i, n = arch_isa_get_n_reg_class(aenv->isa); for (i = 0; i < n; i++) { @@ -124,18 +146,20 @@ static void stat_reg_pressure_block(ir_node *block, void *data) { max_live = cnt < max_live ? max_live : cnt; } - stat_be_block_regpressure(birg->irg, block, max_live, cls->name); + stat_be_block_regpressure(irg, block, max_live, cls->name); } } void be_do_stat_reg_pressure(be_irg_t *birg) { + ir_graph *irg = be_get_birg_irg(birg); + if (stat_is_active()) { struct a_pressure_walker w; w.birg = birg; - w.lv = be_liveness(birg->irg); + w.lv = be_liveness(irg); /* Collect register pressure information for each block */ - irg_block_walk_graph(birg->irg, stat_reg_pressure_block, NULL, &w); + irg_block_walk_graph(irg, stat_reg_pressure_block, NULL, &w); be_liveness_free(w.lv); } } @@ -143,9 +167,9 @@ void be_do_stat_reg_pressure(be_irg_t *birg) { /** * Notify statistic module about amount of ready nodes. */ -void be_do_stat_sched_ready(ir_node *block, nodeset *ready_set) { +void be_do_stat_sched_ready(ir_node *block, const ir_nodeset_t *ready_set) { if (stat_is_active()) { - stat_be_block_sched_ready(get_irn_irg(block), block, MIN(nodeset_count(ready_set), 5)); + stat_be_block_sched_ready(get_irn_irg(block), block, MIN(ir_nodeset_size(ready_set), 5)); } } @@ -382,7 +406,7 @@ void be_close_stat_file() void (be_stat_init_irg)(const arch_env_t *arch_env, ir_graph *irg) {} void (be_do_stat_nodes)(ir_graph *irg, const char *phase) {} void (be_do_stat_reg_pressure)(be_irg_t *birg) {} -void (be_do_stat_sched_ready)(ir_node *block, nodeset *ready_set) {} +void (be_do_stat_sched_ready)(ir_node *block, ir_nodeset_t *ready_set) {} void (be_do_stat_perm)(const char *class_name, int n_regs, ir_node *perm, ir_node *block, int n, int real_size) {} #endif /* FIRM_STATISTICS */