Remove the unused attribute const arch_env_t *arch_env from struct regpressure_ana_t.
[libfirm] / ir / be / bepressurestat.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Register Pressure Statistics.
23  * @author      Adam M. Szalkowski
24  * @date        06.04.2006
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <math.h>
32
33 #include "hashptr.h"
34 #include "debug.h"
35 #include "obst.h"
36 #include "set.h"
37 #include "list.h"
38 #include "pmap.h"
39
40 #include "irprintf.h"
41 #include "irgwalk.h"
42 #include "irdump_t.h"
43 #include "irnode_t.h"
44 #include "ircons_t.h"
45 #include "irloop_t.h"
46 #include "phiclass.h"
47 #include "iredges.h"
48 #include "execfreq.h"
49 #include "irtools.h"
50
51 #include "be_t.h"
52 #include "belive_t.h"
53 #include "besched_t.h"
54 #include "beirgmod.h"
55 #include "bearch_t.h"
56 #include "benode_t.h"
57 #include "beutil.h"
58 #include "bespill.h"
59 #include "beirg_t.h"
60
61 #define MAXPRESSURE 128
62
63 typedef struct _regpressure_ana_t {
64         const arch_register_class_t  *cls;
65         const be_lv_t                *lv;
66         unsigned int                 *stat;
67         DEBUG_ONLY(firm_dbg_module_t *dbg);
68 } regpressure_ana_t;
69
70 static INLINE int has_reg_class(const regpressure_ana_t *ra, const ir_node *irn)
71 {
72         return arch_irn_consider_in_reg_alloc(ra->cls, irn);
73 }
74
75 static INLINE int regpressure(pset *live) {
76         int pressure = pset_count(live);
77         return MIN(pressure, MAXPRESSURE);
78 }
79
80 static void
81 regpressureanawalker(ir_node *bb, void *data)
82 {
83         regpressure_ana_t  *ra   = data;
84         pset               *live = pset_new_ptr_default();
85         const ir_node      *irn;
86         unsigned int       *stat = ra->stat;
87         int                i;
88         const be_lv_t      *lv   = ra->lv;
89
90         be_lv_foreach(lv, bb, be_lv_state_end, i) {
91                 ir_node *value = be_lv_get_irn(lv, bb, i);
92                 if (has_reg_class(ra, value)) {
93                         pset_insert_ptr(live, value);
94                 }
95         }
96         stat[regpressure(live)]++;
97
98         sched_foreach_reverse(bb, irn) {
99
100                 if (is_Phi(irn)) break;
101
102                 if (has_reg_class(ra, irn)) {
103                         pset_remove_ptr(live, irn);
104                 }
105
106                 for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
107                         ir_node  *arg = get_irn_n(irn, i);
108
109                         if (has_reg_class(ra, arg)) {
110                                 pset_insert_ptr(live, arg);
111                         }
112                 }
113
114                 if (! is_Proj(irn))
115                         stat[regpressure(live)]++;
116         }
117 }
118
119 void be_analyze_regpressure(be_irg_t *birg, const arch_register_class_t *cls, const char *suffix)
120 {
121         regpressure_ana_t ra;
122         unsigned int      stat[MAXPRESSURE+1];
123         unsigned int      i;
124         char              fname[256];
125         FILE              *f;
126         ir_graph          *irg = be_get_birg_irg(birg);
127
128         ir_snprintf(fname, sizeof(fname), "%F_%s%s_pressure.stat", irg, cls->name, suffix);
129         f = fopen(fname, "w");
130         assert(f);
131
132         be_liveness_assure_sets(be_assure_liveness(birg));
133
134         FIRM_DBG_REGISTER(ra.dbg, "firm.be.regpressureana");
135
136         ra.lv   = be_get_birg_liveness(birg);
137         ra.cls  = cls;
138         ra.stat = stat;
139
140         memset(stat, 0, sizeof(stat));
141
142         irg_block_walk_graph(irg, regpressureanawalker, NULL, &ra);
143
144         for (i = 0; i <= MAXPRESSURE; ++i) {
145                 fprintf(f, "%d\n", stat[i]);
146         }
147
148         fclose(f);
149 }