Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: binaries/mac/lib/valgrind/default.supp

Issue 8611001: Roll the new Valgrind binaries for Mac 10.5 (valgrind-variant r123) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/valgrind/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « binaries/mac/bin/vgdb ('k') | binaries/mac/lib/valgrind/libmpiwrap-amd64-darwin.so » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This is a generated file, composed of the following suppression rules: 1 # This is a generated file, composed of the following suppression rules:
2 # exp-ptrcheck.supp xfree-3.supp xfree-4.supp darwin9-drd.supp darwin9.supp 2 # exp-sgcheck.supp xfree-3.supp xfree-4.supp darwin9-drd.supp darwin9.supp
3 { 3 {
4 lib-X11-used-old-pointer-after-realloc-1 4 ld-2.X possibly applying relocations
5 exp-ptrcheck:Heap 5 exp-sgcheck:SorG
6 fun:strlen
7 obj:/usr/lib*/libX11.so*
8 obj:/usr/lib*/libX11.so*
9 }
10 {
11 lib-X11-used-old-pointer-after-realloc-2
12 exp-ptrcheck:Heap
13 obj:/usr/lib*/libX11.so*
14 obj:/usr/lib*/libX11.so*
15 }
16
17 {
18 ld-2.X-invalid-Add32/64-who-knows
19 exp-ptrcheck:Arith
20 obj:/*lib*/ld-2.*so* 6 obj:/*lib*/ld-2.*so*
21 obj:/*lib*/ld-2.*so* 7 obj:/*lib*/ld-2.*so*
22 } 8 }
23
24 {
25 ld-2.X possibly applying relocations
26 exp-ptrcheck:SorG
27 obj:/*lib*/ld-2.*so*
28 obj:/*lib*/ld-2.*so*
29 }
30 9
31 # I'm pretty sure this is a false positive caused by the sg_ stuff 10 # I'm pretty sure this is a false positive caused by the sg_ stuff
32 { 11 {
33 glibc realpath false positive 12 glibc realpath false positive
34 exp-ptrcheck:SorG 13 exp-sgcheck:SorG
35 fun:realpath 14 fun:realpath
36 fun:* 15 fun:*
37 } 16 }
38 17
39 { 18 {
40 If I had to guess, inlined or nameless strlen etc in ld.so
41 exp-ptrcheck:Heap
42 obj:/*lib*/ld-2.*so*
43 obj:/*lib*/ld-2.*so*
44 }
45
46 {
47 I think this is glibc's ultra optimised getenv doing 2 byte reads 19 I think this is glibc's ultra optimised getenv doing 2 byte reads
48 exp-ptrcheck:SorG 20 exp-sgcheck:SorG
49 fun:getenv 21 fun:getenv
50 } 22 }
51 23
52 {
53 Occurs on Fedora 7--9?
54 exp-ptrcheck:Heap
55 fun:_dl_fini
56 fun:exit
57 fun:(below main)
58 }
59
60
61 # Invalid read of size 16
62 # at 0x5643A5C: ??? (strcpy.S:94)
63 # by 0x50C6A99: XtResolvePathname (in /usr/lib/libXt.so.6.0.0)
64 # by 0x50C3856: XtScreenDatabase (in /usr/lib/libXt.so.6.0.0)
65 # by 0x50C4386: _XtDisplayInitialize (in /usr/lib/libXt.so.6.0.0)
66 {
67 Ubuntu 10.04 x86_64, SSEised strcpy, can't intercept
68 exp-ptrcheck:Heap
69 obj:/*lib*/libc-2.*so*
70 obj:/*lib*/libX*so*
71 }
72 {
73 Ubuntu 10.04 x86_64, SSEised strcpy, can't intercept - 2
74 exp-ptrcheck:Heap
75 obj:/*lib*/libc-2.*so*
76 obj:/*lib*/libICE*so*
77 }
78 {
79 Ubuntu 10.04 x86_64, SSEised strcpy, can't intercept - 3
80 exp-ptrcheck:Heap
81 obj:/*lib*/libc-2.*so*
82 obj:/*lib*/libglib*so*
83 }
84 {
85 Ubuntu 10.04 x86_64, SSEised strcpy, can't intercept - 4
86 exp-ptrcheck:Heap
87 obj:/*lib*/libc-2.*so*
88 obj:/*lib*/libfontconfig*so*
89 }
90
91 ##----------------------------------------------------------------------## 24 ##----------------------------------------------------------------------##
92 25
93 # Errors to suppress by default with XFree86 3.3.6) 26 # Errors to suppress by default with XFree86 3.3.6)
94 27
95 # Format of this file is: 28 # Format of this file is:
96 # { 29 # {
97 # name_of_suppression 30 # name_of_suppression
98 # tool_name:supp_kind 31 # tool_name:supp_kind
99 # (optional extra info for some suppression types) 32 # (optional extra info for some suppression types)
100 # caller0 name, or /name/of/so/file.so 33 # caller0 name, or /name/of/so/file.so
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 # 1334 #
1402 # no idea what this is about 1335 # no idea what this is about
1403 # 1336 #
1404 { 1337 {
1405 helgrind-darwin9--pthread-rwlock-kludgery 1338 helgrind-darwin9--pthread-rwlock-kludgery
1406 Helgrind:Misc 1339 Helgrind:Misc
1407 fun:pthread_cond_wait* 1340 fun:pthread_cond_wait*
1408 fun:pthread_rwlock_*lock* 1341 fun:pthread_rwlock_*lock*
1409 fun:pthread_rwlock_*lock* 1342 fun:pthread_rwlock_*lock*
1410 } 1343 }
OLDNEW
« no previous file with comments | « binaries/mac/bin/vgdb ('k') | binaries/mac/lib/valgrind/libmpiwrap-amd64-darwin.so » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698