blob: 4fa6b9f30c48212518c0b5f1f1b7876fcbf74907 [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
3/*--- Storage, and equality on, execution contexts (backtraces). ---*/
4/*--- vg_execontext.c ---*/
5/*--------------------------------------------------------------------*/
6
7/*
njnc9539842002-10-02 13:26:35 +00008 This file is part of Valgrind, an extensible x86 protected-mode
9 emulator for monitoring program execution on x86-Unixes.
sewardjde4a1d02002-03-22 01:27:54 +000010
njn0e1b5142003-04-15 14:58:06 +000011 Copyright (C) 2000-2003 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000012 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000013
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
njn25e49d8e72002-09-23 09:36:25 +000029 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000030*/
31
32#include "vg_include.h"
sewardjde4a1d02002-03-22 01:27:54 +000033
34
35/*------------------------------------------------------------*/
36/*--- Low-level ExeContext storage. ---*/
37/*------------------------------------------------------------*/
38
39/* The idea is only to ever store any one context once, so as to save
40 space and make exact comparisons faster. */
41
42static ExeContext* vg_ec_list[VG_N_EC_LISTS];
43
44/* Stats only: the number of times the system was searched to locate a
45 context. */
46static UInt vg_ec_searchreqs;
47
48/* Stats only: the number of full context comparisons done. */
49static UInt vg_ec_searchcmps;
50
51/* Stats only: total number of stored contexts. */
52static UInt vg_ec_totstored;
53
54/* Number of 2, 4 and (fast) full cmps done. */
55static UInt vg_ec_cmp2s;
56static UInt vg_ec_cmp4s;
57static UInt vg_ec_cmpAlls;
58
59
60/*------------------------------------------------------------*/
61/*--- Exported functions. ---*/
62/*------------------------------------------------------------*/
63
64
65/* Initialise this subsystem. */
sewardjc6b0fe52003-07-23 23:01:11 +000066static void init_ExeContext_storage ( void )
sewardjde4a1d02002-03-22 01:27:54 +000067{
68 Int i;
sewardjc6b0fe52003-07-23 23:01:11 +000069 static Bool init_done = False;
70 if (init_done)
71 return;
sewardjde4a1d02002-03-22 01:27:54 +000072 vg_ec_searchreqs = 0;
73 vg_ec_searchcmps = 0;
74 vg_ec_totstored = 0;
75 vg_ec_cmp2s = 0;
76 vg_ec_cmp4s = 0;
77 vg_ec_cmpAlls = 0;
78 for (i = 0; i < VG_N_EC_LISTS; i++)
79 vg_ec_list[i] = NULL;
sewardjc6b0fe52003-07-23 23:01:11 +000080 init_done = True;
sewardjde4a1d02002-03-22 01:27:54 +000081}
82
83
84/* Show stats. */
85void VG_(show_ExeContext_stats) ( void )
86{
sewardjc6b0fe52003-07-23 23:01:11 +000087 init_ExeContext_storage();
sewardjde4a1d02002-03-22 01:27:54 +000088 VG_(message)(Vg_DebugMsg,
89 "exectx: %d lists, %d contexts (avg %d per list)",
90 VG_N_EC_LISTS, vg_ec_totstored,
91 vg_ec_totstored / VG_N_EC_LISTS
92 );
93 VG_(message)(Vg_DebugMsg,
94 "exectx: %d searches, %d full compares (%d per 1000)",
95 vg_ec_searchreqs, vg_ec_searchcmps,
96 vg_ec_searchreqs == 0
97 ? 0
98 : (UInt)( (((ULong)vg_ec_searchcmps) * 1000)
99 / ((ULong)vg_ec_searchreqs ))
100 );
101 VG_(message)(Vg_DebugMsg,
102 "exectx: %d cmp2, %d cmp4, %d cmpAll",
103 vg_ec_cmp2s, vg_ec_cmp4s, vg_ec_cmpAlls
104 );
105}
106
107
108/* Print an ExeContext. */
109void VG_(pp_ExeContext) ( ExeContext* e )
110{
sewardjc6b0fe52003-07-23 23:01:11 +0000111 init_ExeContext_storage();
sewardjde4a1d02002-03-22 01:27:54 +0000112 VG_(mini_stack_dump) ( e );
113}
114
115
116/* Compare two ExeContexts, comparing all callers. */
njn25e49d8e72002-09-23 09:36:25 +0000117Bool VG_(eq_ExeContext) ( VgRes res, ExeContext* e1, ExeContext* e2 )
sewardjde4a1d02002-03-22 01:27:54 +0000118{
njn25e49d8e72002-09-23 09:36:25 +0000119 if (e1 == NULL || e2 == NULL)
120 return False;
121 switch (res) {
122 case Vg_LowRes:
123 /* Just compare the top two callers. */
124 vg_ec_cmp2s++;
125 if (e1->eips[0] != e2->eips[0]
126 || e1->eips[1] != e2->eips[1]) return False;
127 return True;
sewardjde4a1d02002-03-22 01:27:54 +0000128
njn25e49d8e72002-09-23 09:36:25 +0000129 case Vg_MedRes:
130 /* Just compare the top four callers. */
131 vg_ec_cmp4s++;
132 if (e1->eips[0] != e2->eips[0]
133 || e1->eips[1] != e2->eips[1]) return False;
sewardjde4a1d02002-03-22 01:27:54 +0000134
njn25e49d8e72002-09-23 09:36:25 +0000135 if (VG_(clo_backtrace_size) < 3) return True;
136 if (e1->eips[2] != e2->eips[2]) return False;
sewardjde4a1d02002-03-22 01:27:54 +0000137
njn25e49d8e72002-09-23 09:36:25 +0000138 if (VG_(clo_backtrace_size) < 4) return True;
139 if (e1->eips[3] != e2->eips[3]) return False;
140 return True;
sewardjde4a1d02002-03-22 01:27:54 +0000141
njn25e49d8e72002-09-23 09:36:25 +0000142 case Vg_HighRes:
143 vg_ec_cmpAlls++;
144 /* Compare them all -- just do pointer comparison. */
145 if (e1 != e2) return False;
146 return True;
sewardjde4a1d02002-03-22 01:27:54 +0000147
njn25e49d8e72002-09-23 09:36:25 +0000148 default:
njne427a662002-10-02 11:08:25 +0000149 VG_(core_panic)("VG_(eq_ExeContext): unrecognised VgRes");
njn25e49d8e72002-09-23 09:36:25 +0000150 }
sewardjde4a1d02002-03-22 01:27:54 +0000151}
152
153
154/* This guy is the head honcho here. Take a snapshot of the client's
155 stack. Search our collection of ExeContexts to see if we already
156 have it, and if not, allocate a new one. Either way, return a
157 pointer to the context. If there is a matching context we
158 guarantee to not allocate a new one. Thus we never store
159 duplicates, and so exact equality can be quickly done as equality
160 on the returned ExeContext* values themselves. Inspired by Hugs's
161 Text type.
sewardj8c824512002-04-14 04:16:48 +0000162
163 In order to be thread-safe, we pass in the thread's %EIP and %EBP.
sewardjde4a1d02002-03-22 01:27:54 +0000164*/
njn25e49d8e72002-09-23 09:36:25 +0000165ExeContext* VG_(get_ExeContext2) ( Addr eip, Addr ebp,
166 Addr ebp_min, Addr ebp_max_orig )
sewardjde4a1d02002-03-22 01:27:54 +0000167{
168 Int i;
sewardjde4a1d02002-03-22 01:27:54 +0000169 Addr eips[VG_DEEPEST_BACKTRACE];
njn25e49d8e72002-09-23 09:36:25 +0000170 Addr ebp_max;
sewardjde4a1d02002-03-22 01:27:54 +0000171 Bool same;
172 UInt hash;
173 ExeContext* new_ec;
174 ExeContext* list;
175
176 VGP_PUSHCC(VgpExeContext);
177
sewardjc6b0fe52003-07-23 23:01:11 +0000178 init_ExeContext_storage();
sewardjde4a1d02002-03-22 01:27:54 +0000179 vg_assert(VG_(clo_backtrace_size) >= 2
180 && VG_(clo_backtrace_size) <= VG_DEEPEST_BACKTRACE);
181
182 /* First snaffle %EIPs from the client's stack into eips[0
183 .. VG_(clo_backtrace_size)-1], putting zeroes in when the trail
njn25e49d8e72002-09-23 09:36:25 +0000184 goes cold, which we guess to be when %ebp is not a reasonable
185 stack location. We also assert that %ebp increases down the chain. */
sewardjde4a1d02002-03-22 01:27:54 +0000186
njn25e49d8e72002-09-23 09:36:25 +0000187 // Gives shorter stack trace for tests/badjump.c
188 // JRS 2002-aug-16: I don't think this is a big deal; looks ok for
189 // most "normal" backtraces.
190 // NJN 2002-sep-05: traces for pthreaded programs are particularly bad.
191
192 // JRS 2002-sep-17: hack, to round up ebp_max to the end of the
193 // current page, at least. Dunno if it helps.
194 // NJN 2002-sep-17: seems to -- stack traces look like 1.0.X again
195 ebp_max = (ebp_max_orig + VKI_BYTES_PER_PAGE - 1)
196 & ~(VKI_BYTES_PER_PAGE - 1);
197 ebp_max -= sizeof(Addr);
198
199 /* Assertion broken before main() is reached in pthreaded programs; the
200 * offending stack traces only have one item. --njn, 2002-aug-16 */
201 /* vg_assert(ebp_min <= ebp_max);*/
202
njnac5b0612002-10-02 07:56:02 +0000203 if (ebp_min + 4000000 <= ebp_max) {
sewardjc32b9d62002-10-01 09:02:47 +0000204 /* If the stack is ridiculously big, don't poke around ... but
205 don't bomb out either. Needed to make John Regehr's
206 user-space threads package work. JRS 20021001 */
207 eips[0] = eip;
208 i = 1;
209 } else {
210 /* Get whatever we safely can ... */
211 eips[0] = eip;
212 for (i = 1; i < VG_(clo_backtrace_size); i++) {
213 if (!(ebp_min <= ebp && ebp <= ebp_max)) {
214 //VG_(printf)("... out of range %p\n", ebp);
215 break; /* ebp gone baaaad */
216 }
217 // NJN 2002-sep-17: monotonicity doesn't work -- gives wrong traces...
218 // if (ebp >= ((UInt*)ebp)[0]) {
219 // VG_(printf)("nonmonotonic\n");
220 // break; /* ebp gone nonmonotonic */
221 // }
222 eips[i] = ((UInt*)ebp)[1]; /* ret addr */
223 ebp = ((UInt*)ebp)[0]; /* old ebp */
224 //VG_(printf)(" %p\n", eips[i]);
njn25e49d8e72002-09-23 09:36:25 +0000225 }
njn25e49d8e72002-09-23 09:36:25 +0000226 }
227
228 /* Put zeroes in the rest. */
229 for (; i < VG_(clo_backtrace_size); i++) {
sewardjde4a1d02002-03-22 01:27:54 +0000230 eips[i] = 0;
sewardjde4a1d02002-03-22 01:27:54 +0000231 }
232
sewardjde4a1d02002-03-22 01:27:54 +0000233 /* Now figure out if we've seen this one before. First hash it so
234 as to determine the list number. */
235
236 hash = 0;
237 for (i = 0; i < VG_(clo_backtrace_size); i++) {
238 hash ^= (UInt)eips[i];
239 hash = (hash << 29) | (hash >> 3);
240 }
241 hash = hash % VG_N_EC_LISTS;
242
243 /* And (the expensive bit) look a matching entry in the list. */
244
245 vg_ec_searchreqs++;
246
247 list = vg_ec_list[hash];
248
249 while (True) {
250 if (list == NULL) break;
251 vg_ec_searchcmps++;
252 same = True;
253 for (i = 0; i < VG_(clo_backtrace_size); i++) {
254 if (list->eips[i] != eips[i]) {
255 same = False;
256 break;
257 }
258 }
259 if (same) break;
260 list = list->next;
261 }
262
263 if (list != NULL) {
264 /* Yay! We found it. */
njn25e49d8e72002-09-23 09:36:25 +0000265 VGP_POPCC(VgpExeContext);
sewardjde4a1d02002-03-22 01:27:54 +0000266 return list;
267 }
268
269 /* Bummer. We have to allocate a new context record. */
270 vg_ec_totstored++;
271
njn25e49d8e72002-09-23 09:36:25 +0000272 new_ec = VG_(arena_malloc)( VG_AR_EXECTXT,
273 sizeof(struct _ExeContext *)
274 + VG_(clo_backtrace_size) * sizeof(Addr) );
sewardjde4a1d02002-03-22 01:27:54 +0000275
276 for (i = 0; i < VG_(clo_backtrace_size); i++)
277 new_ec->eips[i] = eips[i];
278
279 new_ec->next = vg_ec_list[hash];
280 vg_ec_list[hash] = new_ec;
281
njn25e49d8e72002-09-23 09:36:25 +0000282 VGP_POPCC(VgpExeContext);
sewardjde4a1d02002-03-22 01:27:54 +0000283 return new_ec;
284}
285
njn25e49d8e72002-09-23 09:36:25 +0000286ExeContext* VG_(get_ExeContext) ( ThreadState *tst )
287{
sewardj499e3de2002-11-13 22:22:25 +0000288 ExeContext *ec;
289
290 if (tst == NULL) {
291 /* thread currently in baseblock */
292 ThreadId tid = VG_(get_current_tid)();
293
294 ec = VG_(get_ExeContext2)( VG_(baseBlock)[VGOFF_(m_eip)],
295 VG_(baseBlock)[VGOFF_(m_ebp)],
296 VG_(baseBlock)[VGOFF_(m_esp)],
297 VG_(threads)[tid].stack_highest_word);
298 } else {
299 ec = VG_(get_ExeContext2)( tst->m_eip, tst->m_ebp, tst->m_esp,
300 tst->stack_highest_word );
301 }
302 return ec;
njn25e49d8e72002-09-23 09:36:25 +0000303}
304
sewardj499e3de2002-11-13 22:22:25 +0000305Addr VG_(get_EIP) ( ThreadState *tst )
306{
307 Addr ret;
308
309 if (tst == NULL)
310 ret = VG_(baseBlock)[VGOFF_(m_eip)];
311 else
312 ret = tst->m_eip;
313
314 return ret;
315}
sewardjde4a1d02002-03-22 01:27:54 +0000316
317/*--------------------------------------------------------------------*/
318/*--- end vg_execontext.c ---*/
319/*--------------------------------------------------------------------*/