blob: fc306af0d562b6caf1a7e812148ef5e8b126b7fa [file] [log] [blame]
weidendoa17f2a32006-03-20 10:27:30 +00001/*--------------------------------------------------------------------*/
2/*--- Callgrind ---*/
3/*--- ct_jumps.c ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Callgrind, a Valgrind tool for call tracing.
8
sewardj9eecbbb2010-05-03 21:37:12 +00009 Copyright (C) 2002-2010, Josef Weidendorfer (Josef.Weidendorfer@gmx.de)
weidendoa17f2a32006-03-20 10:27:30 +000010
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License as
13 published by the Free Software Foundation; either version 2 of the
14 License, or (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 02111-1307, USA.
25
26 The GNU General Public License is contained in the file COPYING.
27*/
28
29#include "global.h"
30
31#define N_JCC_INITIAL_ENTRIES 4437
32
33/*------------------------------------------------------------*/
34/*--- Jump Cost Center (JCC) operations, including Calls ---*/
35/*------------------------------------------------------------*/
36
37#define N_JCC_INITIAL_ENTRIES 4437
38
39jcc_hash current_jccs;
40
41void CLG_(init_jcc_hash)(jcc_hash* jccs)
42{
43 Int i;
44
45 CLG_ASSERT(jccs != 0);
46
47 jccs->size = N_JCC_INITIAL_ENTRIES;
48 jccs->entries = 0;
sewardj9c606bd2008-09-18 18:12:50 +000049 jccs->table = (jCC**) CLG_MALLOC("cl.jumps.ijh.1",
50 jccs->size * sizeof(jCC*));
weidendoa17f2a32006-03-20 10:27:30 +000051 jccs->spontaneous = 0;
52
53 for (i = 0; i < jccs->size; i++)
54 jccs->table[i] = 0;
55}
56
57
58void CLG_(copy_current_jcc_hash)(jcc_hash* dst)
59{
60 CLG_ASSERT(dst != 0);
61
62 dst->size = current_jccs.size;
63 dst->entries = current_jccs.entries;
64 dst->table = current_jccs.table;
65 dst->spontaneous = current_jccs.spontaneous;
66}
67
68void CLG_(set_current_jcc_hash)(jcc_hash* h)
69{
70 CLG_ASSERT(h != 0);
71
72 current_jccs.size = h->size;
73 current_jccs.entries = h->entries;
74 current_jccs.table = h->table;
75 current_jccs.spontaneous = h->spontaneous;
76}
77
78__inline__
79static UInt jcc_hash_idx(BBCC* from, UInt jmp, BBCC* to, UInt size)
80{
81 return (UInt) ( (UWord)from + 7* (UWord)to + 13*jmp) % size;
82}
83
84/* double size of jcc table */
85static void resize_jcc_table(void)
86{
87 Int i, new_size, conflicts1 = 0, conflicts2 = 0;
88 jCC** new_table;
89 UInt new_idx;
90 jCC *curr_jcc, *next_jcc;
91
92 new_size = 2* current_jccs.size +3;
sewardj9c606bd2008-09-18 18:12:50 +000093 new_table = (jCC**) CLG_MALLOC("cl.jumps.rjt.1",
94 new_size * sizeof(jCC*));
weidendoa17f2a32006-03-20 10:27:30 +000095
96 if (!new_table) return;
97
98 for (i = 0; i < new_size; i++)
99 new_table[i] = NULL;
100
101 for (i = 0; i < current_jccs.size; i++) {
102 if (current_jccs.table[i] == NULL) continue;
103
104 curr_jcc = current_jccs.table[i];
105 while (NULL != curr_jcc) {
106 next_jcc = curr_jcc->next_hash;
107
108 new_idx = jcc_hash_idx(curr_jcc->from, curr_jcc->jmp,
109 curr_jcc->to, new_size);
110
111 curr_jcc->next_hash = new_table[new_idx];
112 new_table[new_idx] = curr_jcc;
113 if (curr_jcc->next_hash) {
114 conflicts1++;
115 if (curr_jcc->next_hash->next_hash)
116 conflicts2++;
117 }
118
119 curr_jcc = next_jcc;
120 }
121 }
122
123 VG_(free)(current_jccs.table);
124
125
126 CLG_DEBUG(0, "Resize JCC Hash: %d => %d (entries %d, conflicts %d/%d)\n",
127 current_jccs.size, new_size,
128 current_jccs.entries, conflicts1, conflicts2);
129
130 current_jccs.size = new_size;
131 current_jccs.table = new_table;
132 CLG_(stat).jcc_hash_resizes++;
133}
134
135
136
137/* new jCC structure: a call was done to a BB of a BBCC
138 * for a spontaneous call, from is 0 (i.e. caller unknown)
139 */
140static jCC* new_jcc(BBCC* from, UInt jmp, BBCC* to)
141{
weidendo0b23d6e2009-06-15 00:16:32 +0000142 jCC* jcc;
weidendoa17f2a32006-03-20 10:27:30 +0000143 UInt new_idx;
144
145 /* check fill degree of jcc hash table and resize if needed (>80%) */
146 current_jccs.entries++;
147 if (10 * current_jccs.entries / current_jccs.size > 8)
148 resize_jcc_table();
149
weidendo0b23d6e2009-06-15 00:16:32 +0000150 jcc = (jCC*) CLG_MALLOC("cl.jumps.nj.1", sizeof(jCC));
weidendoa17f2a32006-03-20 10:27:30 +0000151
weidendo0b23d6e2009-06-15 00:16:32 +0000152 jcc->from = from;
153 jcc->jmp = jmp;
154 jcc->to = to;
155 jcc->jmpkind = Ijk_Call;
156 jcc->call_counter = 0;
157 jcc->cost = 0;
weidendoa17f2a32006-03-20 10:27:30 +0000158
159 /* insert into JCC chain of calling BBCC.
160 * This list is only used at dumping time */
161
162 if (from) {
weidendo0b23d6e2009-06-15 00:16:32 +0000163 jcc->next_from = from->jmp[jmp].jcc_list;
164 from->jmp[jmp].jcc_list = jcc;
weidendoa17f2a32006-03-20 10:27:30 +0000165 }
166 else {
weidendo0b23d6e2009-06-15 00:16:32 +0000167 jcc->next_from = current_jccs.spontaneous;
168 current_jccs.spontaneous = jcc;
weidendoa17f2a32006-03-20 10:27:30 +0000169 }
170
171 /* insert into JCC hash table */
172 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
weidendo0b23d6e2009-06-15 00:16:32 +0000173 jcc->next_hash = current_jccs.table[new_idx];
174 current_jccs.table[new_idx] = jcc;
weidendoa17f2a32006-03-20 10:27:30 +0000175
176 CLG_(stat).distinct_jccs++;
177
178 CLG_DEBUGIF(3) {
179 VG_(printf)(" new_jcc (now %d): %p\n",
weidendo0b23d6e2009-06-15 00:16:32 +0000180 CLG_(stat).distinct_jccs, jcc);
weidendoa17f2a32006-03-20 10:27:30 +0000181 }
182
weidendo0b23d6e2009-06-15 00:16:32 +0000183 return jcc;
weidendoa17f2a32006-03-20 10:27:30 +0000184}
185
186
187/* get the jCC for a call arc (BBCC->BBCC) */
188jCC* CLG_(get_jcc)(BBCC* from, UInt jmp, BBCC* to)
189{
190 jCC* jcc;
191 UInt idx;
192
193 CLG_DEBUG(5, "+ get_jcc(bbcc %p/%d => bbcc %p)\n",
194 from, jmp, to);
195
196 /* first check last recently used JCC */
197 jcc = to->lru_to_jcc;
198 if (jcc && (jcc->from == from) && (jcc->jmp == jmp)) {
199 CLG_ASSERT(to == jcc->to);
200 CLG_DEBUG(5,"- get_jcc: [LRU to] jcc %p\n", jcc);
201 return jcc;
202 }
203
204 jcc = from->lru_from_jcc;
205 if (jcc && (jcc->to == to) && (jcc->jmp == jmp)) {
206 CLG_ASSERT(from == jcc->from);
207 CLG_DEBUG(5, "- get_jcc: [LRU from] jcc %p\n", jcc);
208 return jcc;
209 }
210
211 CLG_(stat).jcc_lru_misses++;
212
213 idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
214 jcc = current_jccs.table[idx];
215
216 while(jcc) {
217 if ((jcc->from == from) &&
218 (jcc->jmp == jmp) &&
219 (jcc->to == to)) break;
220 jcc = jcc->next_hash;
221 }
222
223 if (!jcc)
224 jcc = new_jcc(from, jmp, to);
225
226 /* set LRU */
227 from->lru_from_jcc = jcc;
228 to->lru_to_jcc = jcc;
229
230 CLG_DEBUG(5, "- get_jcc(bbcc %p => bbcc %p)\n",
231 from, to);
232
233 return jcc;
234}
235