blob: c6a25b10f97833febf2a75448b5c68502466be23 [file] [log] [blame]
philippef5774342014-05-03 11:12:50 +00001
2/*--------------------------------------------------------------------*/
3/*--- Address Description. ---*/
4/*--- hg_addrdescr.c ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Helgrind, a Valgrind tool for detecting errors
9 in threaded programs.
10
11 Copyright (C) 2007-2012 OpenWorks Ltd
12 info@open-works.co.uk
13
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
29 The GNU General Public License is contained in the file COPYING.
30*/
31#include "pub_tool_basics.h"
32#include "pub_tool_libcbase.h"
33#include "pub_tool_libcprint.h"
34#include "pub_tool_libcassert.h"
philippe0c9ac8d2014-07-18 00:03:58 +000035#include "pub_tool_wordfm.h"
philippef5774342014-05-03 11:12:50 +000036#include "pub_tool_xarray.h"
37#include "pub_tool_execontext.h"
38#include "pub_tool_debuginfo.h"
39#include "pub_tool_threadstate.h"
philippe07c08522014-05-14 20:39:27 +000040#include "pub_tool_addrinfo.h"
philippef5774342014-05-03 11:12:50 +000041
42#include "hg_basics.h"
philippe0c9ac8d2014-07-18 00:03:58 +000043#include "hg_wordset.h"
44#include "hg_lock_n_thread.h"
philippef5774342014-05-03 11:12:50 +000045#include "hg_addrdescr.h" /* self */
46
philippe07c08522014-05-14 20:39:27 +000047void HG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai )
philippef5774342014-05-03 11:12:50 +000048{
philippe07c08522014-05-14 20:39:27 +000049 tl_assert(ai->tag == Addr_Undescribed);
50
philippe0c9ac8d2014-07-18 00:03:58 +000051 /* hctxt/tnr/haddr/hszB describe the addr if it is a heap block. */
philippe07c08522014-05-14 20:39:27 +000052 ExeContext* hctxt;
philippe0c9ac8d2014-07-18 00:03:58 +000053 UInt tnr;
philippe07c08522014-05-14 20:39:27 +000054 Addr haddr;
55 SizeT hszB;
philippef5774342014-05-03 11:12:50 +000056
57 /* First, see if it's in any heap block. Unfortunately this
58 means a linear search through all allocated heap blocks. The
59 assertion says that if it's detected as a heap block, then we
60 must have an allocation context for it, since all heap blocks
61 should have an allocation context. */
62 Bool is_heapblock
63 = HG_(mm_find_containing_block)(
philippe07c08522014-05-14 20:39:27 +000064 &hctxt,
philippe0c9ac8d2014-07-18 00:03:58 +000065 &tnr,
philippe07c08522014-05-14 20:39:27 +000066 &haddr,
67 &hszB,
philippef5774342014-05-03 11:12:50 +000068 a
69 );
philippe07c08522014-05-14 20:39:27 +000070 if (is_heapblock) {
71 tl_assert(is_heapblock == (hctxt != NULL));
72 ai->tag = Addr_Block;
73 ai->Addr.Block.block_kind = Block_Mallocd;
74 ai->Addr.Block.block_desc = "block";
75 ai->Addr.Block.block_szB = hszB;
76 ai->Addr.Block.rwoffset = (Word)(a) - (Word)(haddr);
77 ai->Addr.Block.allocated_at = hctxt;
philippe0c9ac8d2014-07-18 00:03:58 +000078 VG_(initThreadInfo) (&ai->Addr.Block.alloc_tinfo);
79 ai->Addr.Block.alloc_tinfo.tnr = tnr;
philippe07c08522014-05-14 20:39:27 +000080 ai->Addr.Block.freed_at = VG_(null_ExeContext)();;
philippef5774342014-05-03 11:12:50 +000081 } else {
philippe07c08522014-05-14 20:39:27 +000082 /* No block found. Search a non-heap block description. */
83 VG_(describe_addr) (a, ai);
philippe0c9ac8d2014-07-18 00:03:58 +000084
85 /* In case ai contains a tid, set tnr to the corresponding helgrind
86 thread number. */
87 if (ai->tag == Addr_Stack) {
88 Thread* thr = get_admin_threads();
89
90 tl_assert(ai->Addr.Stack.tinfo.tid);
91 while (thr) {
92 if (thr->coretid == ai->Addr.Stack.tinfo.tid) {
93 ai->Addr.Stack.tinfo.tnr = thr->errmsg_index;
94 break;
95 }
96 thr = thr->admin;
97 }
98 }
philippef5774342014-05-03 11:12:50 +000099 }
100}
101
philippe07c08522014-05-14 20:39:27 +0000102Bool HG_(get_and_pp_addrdescr) (Addr addr)
philippef5774342014-05-03 11:12:50 +0000103{
104
105 Bool ret;
philippe07c08522014-05-14 20:39:27 +0000106 AddrInfo glai;
philippef5774342014-05-03 11:12:50 +0000107
philippe07c08522014-05-14 20:39:27 +0000108 glai.tag = Addr_Undescribed;
109 HG_(describe_addr) (addr, &glai);
110 VG_(pp_addrinfo) (addr, &glai);
111 ret = glai.tag != Addr_Unknown;
philippef5774342014-05-03 11:12:50 +0000112
philippe07c08522014-05-14 20:39:27 +0000113 VG_(clear_addrinfo) (&glai);
philippef5774342014-05-03 11:12:50 +0000114
115 return ret;
116}
117
philippef5774342014-05-03 11:12:50 +0000118/*--------------------------------------------------------------------*/
119/*--- end hg_addrdescr.c ---*/
120/*--------------------------------------------------------------------*/