1 /*--------------------------------------------------------------------*/
3 /*--- ct_context.c ---*/
4 /*--------------------------------------------------------------------*/
7 This file is part of Callgrind, a Valgrind tool for call tracing.
9 Copyright (C) 2002-2017, Josef Weidendorfer (Josef.Weidendorfer@gmx.de)
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.
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.
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
26 The GNU General Public License is contained in the file COPYING.
32 /*------------------------------------------------------------*/
33 /*--- Context operations ---*/
34 /*------------------------------------------------------------*/
36 #define N_FNSTACK_INITIAL_ENTRIES 500
37 #define N_CXT_INITIAL_ENTRIES 2537
39 fn_stack
CLG_(current_fn_stack
);
41 void CLG_(init_fn_stack
)(fn_stack
* s
)
45 s
->size
= N_FNSTACK_INITIAL_ENTRIES
;
46 s
->bottom
= (fn_node
**) CLG_MALLOC("cl.context.ifs.1",
47 s
->size
* sizeof(fn_node
*));
52 void CLG_(copy_current_fn_stack
)(fn_stack
* dst
)
56 dst
->size
= CLG_(current_fn_stack
).size
;
57 dst
->bottom
= CLG_(current_fn_stack
).bottom
;
58 dst
->top
= CLG_(current_fn_stack
).top
;
61 void CLG_(set_current_fn_stack
)(fn_stack
* s
)
65 CLG_(current_fn_stack
).size
= s
->size
;
66 CLG_(current_fn_stack
).bottom
= s
->bottom
;
67 CLG_(current_fn_stack
).top
= s
->top
;
72 void CLG_(init_cxt_table
)()
76 cxts
.size
= N_CXT_INITIAL_ENTRIES
;
78 cxts
.table
= (Context
**) CLG_MALLOC("cl.context.ict.1",
79 cxts
.size
* sizeof(Context
*));
81 for (i
= 0; i
< cxts
.size
; i
++)
85 /* double size of cxt table */
86 static void resize_cxt_table(void)
88 UInt i
, new_size
, conflicts1
= 0, conflicts2
= 0;
89 Context
**new_table
, *curr
, *next
;
92 new_size
= 2* cxts
.size
+3;
93 new_table
= (Context
**) CLG_MALLOC("cl.context.rct.1",
94 new_size
* sizeof(Context
*));
96 for (i
= 0; i
< new_size
; i
++)
99 for (i
= 0; i
< cxts
.size
; i
++) {
100 if (cxts
.table
[i
] == NULL
) continue;
102 curr
= cxts
.table
[i
];
103 while (NULL
!= curr
) {
106 new_idx
= (UInt
) (curr
->hash
% new_size
);
108 curr
->next
= new_table
[new_idx
];
109 new_table
[new_idx
] = curr
;
112 if (curr
->next
->next
)
120 VG_(free
)(cxts
.table
);
123 CLG_DEBUG(0, "Resize Context Hash: %u => %u (entries %u, conflicts %u/%u)\n",
125 cxts
.entries
, conflicts1
, conflicts2
);
127 cxts
.size
= new_size
;
128 cxts
.table
= new_table
;
129 CLG_(stat
).cxt_hash_resizes
++;
133 static UWord
cxt_hash_val(fn_node
** fn
, UInt size
)
138 hash
= (hash
<<7) + (hash
>>25) + (UWord
)(*fn
);
147 static Bool
is_cxt(UWord hash
, fn_node
** fn
, Context
* cxt
)
152 if (hash
!= cxt
->hash
) return False
;
155 cxt_fn
= &(cxt
->fn
[0]);
156 while((*fn
!= 0) && (count
>0)) {
157 if (*cxt_fn
!= *fn
) return False
;
166 * Allocate new Context structure
168 static Context
* new_cxt(fn_node
** fn
)
178 if (top_fn
== 0) return 0;
180 size
= top_fn
->separate_callers
+1;
181 recs
= top_fn
->separate_recursions
;
184 /* check fill degree of context hash table and resize if needed (>80%) */
186 if (10 * cxts
.entries
/ cxts
.size
> 8)
189 cxt
= (Context
*) CLG_MALLOC("cl.context.nc.1",
190 sizeof(Context
)+sizeof(fn_node
*)*size
);
192 // hash value calculation similar to cxt_hash_val(), but additionally
193 // copying function pointers in one run
197 hash
= (hash
<<7) + (hash
>>25) + (UWord
)(*fn
);
198 cxt
->fn
[offset
] = *fn
;
201 if (offset
>= size
) break;
203 if (offset
< size
) size
= offset
;
206 cxt
->base_number
= CLG_(stat
).context_counter
;
209 CLG_(stat
).context_counter
+= recs
;
210 CLG_(stat
).distinct_contexts
++;
212 /* insert into Context hash table */
213 idx
= (UInt
) (hash
% cxts
.size
);
214 cxt
->next
= cxts
.table
[idx
];
215 cxts
.table
[idx
] = cxt
;
219 VG_(printf
)(" new_cxt ox%p: ", cxt
);
220 CLG_(print_cxt
)(12, cxt
, 0);
227 /* get the Context structure for current context */
228 Context
* CLG_(get_cxt
)(fn_node
** fn
)
235 if (*fn
== 0) return 0;
236 size
= (*fn
)->separate_callers
+1;
237 if (size
<=0) { size
= -size
+1; }
239 CLG_DEBUG(5, "+ get_cxt(fn '%s'): size %u\n",
242 hash
= cxt_hash_val(fn
, size
);
244 if ( ((cxt
= (*fn
)->last_cxt
) != 0) && is_cxt(hash
, fn
, cxt
)) {
245 CLG_DEBUG(5, "- get_cxt: %p\n", cxt
);
249 CLG_(stat
).cxt_lru_misses
++;
251 idx
= (UInt
) (hash
% cxts
.size
);
252 cxt
= cxts
.table
[idx
];
255 if (is_cxt(hash
,fn
,cxt
)) break;
262 (*fn
)->last_cxt
= cxt
;
264 CLG_DEBUG(5, "- get_cxt: %p\n", cxt
);
271 * Change execution context by calling a new function from current context
272 * Pushing 0x0 specifies a marker for a signal handler entry
274 void CLG_(push_cxt
)(fn_node
* fn
)
276 call_stack
* cs
= &CLG_(current_call_stack
);
279 CLG_DEBUG(5, "+ push_cxt(fn '%s'): old ctx %d\n",
280 fn
? fn
->name
: "0x0",
281 CLG_(current_state
).cxt
?
282 (Int
)CLG_(current_state
).cxt
->base_number
: -1);
284 /* save old context on stack (even if not changed at all!) */
285 CLG_ASSERT(cs
->sp
< cs
->size
);
286 CLG_ASSERT(cs
->entry
[cs
->sp
].cxt
== 0);
287 cs
->entry
[cs
->sp
].cxt
= CLG_(current_state
).cxt
;
288 cs
->entry
[cs
->sp
].fn_sp
= CLG_(current_fn_stack
).top
- CLG_(current_fn_stack
).bottom
;
290 if (fn
&& (*(CLG_(current_fn_stack
).top
) == fn
)) return;
291 if (fn
&& (fn
->group
>0) &&
292 ((*(CLG_(current_fn_stack
).top
))->group
== fn
->group
)) return;
294 /* resizing needed ? */
295 fn_entries
= CLG_(current_fn_stack
).top
- CLG_(current_fn_stack
).bottom
;
296 if (fn_entries
== CLG_(current_fn_stack
).size
-1) {
297 UInt new_size
= CLG_(current_fn_stack
).size
*2;
298 fn_node
** new_array
= (fn_node
**) CLG_MALLOC("cl.context.pc.1",
299 new_size
* sizeof(fn_node
*));
301 for(i
=0;i
<CLG_(current_fn_stack
).size
;i
++)
302 new_array
[i
] = CLG_(current_fn_stack
).bottom
[i
];
303 VG_(free
)(CLG_(current_fn_stack
).bottom
);
304 CLG_(current_fn_stack
).top
= new_array
+ fn_entries
;
305 CLG_(current_fn_stack
).bottom
= new_array
;
307 CLG_DEBUG(0, "Resize Context Stack: %u => %u (pushing '%s')\n",
308 CLG_(current_fn_stack
).size
, new_size
,
309 fn
? fn
->name
: "0x0");
311 CLG_(current_fn_stack
).size
= new_size
;
314 if (fn
&& (*(CLG_(current_fn_stack
).top
) == 0)) {
317 /* this is first function: increment its active count */
318 pactive
= CLG_(get_fn_entry
)(fn
->number
);
322 CLG_(current_fn_stack
).top
++;
323 *(CLG_(current_fn_stack
).top
) = fn
;
324 CLG_(current_state
).cxt
= CLG_(get_cxt
)(CLG_(current_fn_stack
).top
);
326 CLG_DEBUG(5, "- push_cxt(fn '%s'): new cxt %d, fn_sp %ld\n",
327 fn
? fn
->name
: "0x0",
328 CLG_(current_state
).cxt
?
329 (Int
)CLG_(current_state
).cxt
->base_number
: -1,
330 CLG_(current_fn_stack
).top
- CLG_(current_fn_stack
).bottom
+ 0L);