ir_mode: simplify interface, improve float-mode handling
[libfirm] / ir / stat / const_stat.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   Statistic functions for constant counting.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include "firmstat_t.h"
29 #include "tv_t.h"
30 #include "util.h"
31
32 /**
33  * calculated the dual logarithm of |value|
34  */
35 static unsigned log2abs(long value)
36 {
37         unsigned res = 0;
38
39         if (value < 0)
40                 value = -value;
41
42         if (value > 0xFFFF) {
43                 res += 16;
44                 value >>= 16;
45         }
46         if (value > 0xFF) {
47                 res += 8;
48                 value >>= 8;
49         }
50         if (value > 0xF) {
51                 res += 4;
52                 value >>= 4;
53         }
54         if (value > 3) {
55                 res += 2;
56                 value >>= 2;
57         }
58         if (value > 1) {
59                 res += 1;
60         }
61
62         return res;
63 }
64
65 /**
66  * classify the value of a float tarval
67  */
68 static float_classify_t classify_float_value(ir_tarval *tv)
69 {
70         ir_mode *mode = get_tarval_mode(tv);
71
72         if (tv == get_mode_null(mode))
73                 return STAT_FC_0;
74         else if (tv == get_mode_one(mode))
75                 return STAT_FC_1;
76         else if (tarval_is_finite(tv) && tarval_zero_mantissa(tv)) {
77                 int exp = tarval_get_exponent(tv);
78
79                 if (! tarval_is_negative(tv)) {
80                         if (exp == 1)
81                                 return STAT_FC_2;
82                         else if (exp == -1)
83                                 return STAT_FC_0_5;
84                 }
85                 return STAT_FC_POWER_OF_TWO;
86         }
87         return STAT_FC_OTHER;
88 }
89
90 /* return a human readable name for an float classification */
91 const char *stat_fc_name(float_classify_t classification)
92 {
93         switch (classification) {
94         case STAT_FC_0:            return "0.0";
95         case STAT_FC_1:            return "1.0";
96         case STAT_FC_2:            return "2.0";
97         case STAT_FC_0_5:          return "0.5";
98         case STAT_FC_POWER_OF_TWO: return "2.0^x";
99         case STAT_FC_OTHER:        return "other";
100         default:                   return "<UNKNOWN>";
101         }
102 }
103
104 /* update info on Consts */
105 void stat_update_const(stat_info_t *status, ir_node *node, graph_entry_t *graph)
106 {
107         ir_mode   *mode = get_irn_mode(node);
108         ir_tarval *tv;
109         unsigned   bits;
110         (void) graph;
111
112         if (mode_is_int(mode)) {
113                 tv   = get_Const_tarval(node);
114
115                 /* FIXME: */
116                 if (! tarval_is_long(tv))
117                         return;
118
119                 bits = log2abs(get_tarval_long(tv));
120
121                 if (bits > ARRAY_SIZE(status->const_info.int_bits_count))
122                         bits = ARRAY_SIZE(status->const_info.int_bits_count);
123
124                 cnt_inc(&status->const_info.int_bits_count[bits]);
125         } else if (mode_is_float(mode)) {
126                 tv = get_Const_tarval(node);
127
128                 cnt_inc(&status->const_info.floats[classify_float_value(tv)]);
129         } else {
130                 /* something different */
131                 cnt_inc(&status->const_info.others);
132         }
133 }
134
135 /* clears the const statistics for a new snapshot */
136 void stat_const_clear(stat_info_t *status)
137 {
138         size_t i;
139
140         for (i = 0; i < ARRAY_SIZE(status->const_info.int_bits_count); ++i)
141                 cnt_clr(&status->const_info.int_bits_count[i]);
142
143         for (i = 0; i < ARRAY_SIZE(status->const_info.floats); ++i)
144                 cnt_clr(&status->const_info.floats[i]);
145
146         cnt_clr(&status->const_info.others);
147 }
148
149 /* initialize the Const statistic. */
150 void stat_init_const_cnt(stat_info_t *status)
151 {
152         (void) status;
153         /* currently nothing */
154 }