1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
|
# There are three kinds of suppressions in this file.
# 1. third party stuff we have no control over
#
# 2. intentional unit test errors, or stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing
#
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system (but a few aren't yet).
# Periodically we should sweep this file and the bug tracker clean by
# running overnight and removing outdated bugs/suppressions.
#-----------------------------------------------------------------------
# 1. third party stuff we have no control over
{
Uninitialized value in deflate
Memcheck:Cond
...
fun:MOZ_Z_deflate
}
{
gtk developers don't like cleaning up one-time leaks. See http://mail.gnome.org/archives/gtk-devel-list/2004-April/msg00230.html
Memcheck:Leak
...
fun:gtk_init_check
}
{
Fontconfig leak?
Memcheck:Leak
...
fun:XML_ParseBuffer
fun:FcConfigParseAndLoad
}
{
bug_9245_FcConfigAppFontAddFile_leak
Memcheck:Leak
...
fun:FcConfigAppFontAddFile
}
{
# See also http://www.gnome.org/~johan/gtk.suppression
# (which has a smattering of similar pango suppressions)
pango_font_leak_todo
Memcheck:Leak
...
fun:FcFontRenderPrepare
obj:*
fun:pango_font_map_load_fontset
}
{
pango_font_leak_todo_2
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_strdup
fun:pango_script_get_sample_language
...
fun:pango_font_get_metrics
}
{
# Fontconfig leak, seen in shard 16 of 20 of ui_tests
# See https://bugs.freedesktop.org/show_bug.cgi?id=8428
# and http://www.gnome.org/~johan/gtk.suppression
fontconfig_bug_8428
Memcheck:Leak
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcPatternObjectAddWithBinding
}
{
dlopen invalid read, probably a bug in glibc. TODO(dkegel): file glibc bug
Memcheck:Value4
...
fun:dlopen@@GLIBC_2.1
fun:PR_LoadLibraryWithFlags
}
{
# glibc has a bug when it has to retry dns lookup?
# http://sourceware.org/bugzilla/show_bug.cgi?id=10391
glibc_bug_10391
Memcheck:Cond
...
fun:getaddrinfo
}
{
glibc leak. See also http://sources.redhat.com/bugzilla/show_bug.cgi?id=2451
Memcheck:Leak
fun:malloc
fun:_dl_map_object_from_fd
}
{
Pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug.
Memcheck:Leak
...
fun:NSS_NoDB_Init
}
{
Another pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug. Shows up under --show-reachable=yes.
Memcheck:Leak
...
fun:SECMOD_LoadUserModule
}
{
bug_12614
Memcheck:Leak
fun:malloc
...
fun:PR_LoadLibraryWithFlags
...
fun:SECMOD_LoadModule
}
{
Error in ICU
Memcheck:Overlap
fun:memcpy
fun:init_resb_result
}
{
libc_dynamiclinker_foo
Memcheck:Cond
obj:/lib*/ld-2.*.so
obj:/lib*/ld-2.*.so
}
{
libc_dynamiclinker_bar
Memcheck:Addr4
obj:/lib*/ld-2.*.so
obj:/lib*/ld-2.*.so
}
{
FIXME epoll uninitialized data 1
Memcheck:Param
epoll_ctl(epfd)
fun:syscall
fun:event_add
}
{
FIXME epoll uninitialized data 2
Memcheck:Param
epoll_ctl(epfd)
fun:syscall
fun:event_del
}
{
FIXME epoll uninitialized data 3
Memcheck:Param
epoll_wait(epfd)
fun:syscall
fun:event_base_loop
}
{
FIXME IPCing uninitialized data
Memcheck:Param
socketcall.sendmsg(msg.msg_iov[i])
fun:sendmsg
fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
}
{
# There is a fix in mainline, http://www.sqlite.org/cvstrac/chngview?cn=5968
# See also http://article.gmane.org/gmane.comp.db.sqlite.general/43177
SQLite write
Memcheck:Param
write(buf)
...
fun:writeJournalHdr
}
# Fixed in newer SQLite
# http://www.sqlite.org/cvstrac/tktview?tn=3326
# http://www.sqlite.org/cvstrac/tktview?tn=3575
# (Caller of sqlite3VdbeExec is either sqlite3Step or its wrapper sqlite3_step)
{
SQLite_bug_3326
Memcheck:Cond
fun:sqlite3VdbeMemShallowCopy
fun:sqlite3VdbeExec
fun:sqlite3*tep
}
# SQLite intentionally leaks a little memory in findLockInfo() in sqlite3_open
# Newer versions don't do this.
# See http://www.mail-archive.com/sqlite-users@sqlite.org/msg02334.html
# and http://www.mail-archive.com/sqlite-users@sqlite.org/msg30449.html
{
sqlite_open_leak
Memcheck:Leak
...
fun:findLockInfo
...
fun:sqlite3OsOpen
}
{
libevent does not provide a way to clean up unused oneshot timers at exit
Memcheck:Leak
fun:calloc
fun:event_base_once
fun:event_base_loopexit
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
}
{
# array of weak references freed but not processed?
bug_16576
Memcheck:Leak
...
fun:g_object_weak_ref
fun:g_object_add_weak_pointer
}
#-----------------------------------------------------------------------
# 2. intentional unit test errors, or stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing
{
logging::InitLogging never frees filename. It would be hard to free properly.
Memcheck:Leak
...
fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateENS_20OldFileDeletionStateE
}
{
{
# See comment on struct CheckOpString
logging::MakeCheckOpString result not freed because app is aborting
Memcheck:Leak
fun:_Znwj
fun:_ZN7logging17MakeCheckOpStringIiiEEPSsRKT_RKT0_PKc
}
{
Linux tests don't bother to undo net::TestServerLauncher::LoadTestRootCert().
Memcheck:Leak
...
fun:_ZN3net18TestServerLauncher16LoadTestRootCertEv
}
{
# uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose
Intentional_crash
Memcheck:Addr4
fun:_ZN12AboutHandler10AboutCrashEv
}
{
# Minor commandline options leak in v8
# See http://code.google.com/p/v8/issues/detail?id=275
v8_bug_275
Memcheck:Leak
fun:_Znaj
...
fun:_ZN2v88internal8FlagList18SetFlagsFromStringEPKci
}
#-----------------------------------------------------------------------
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system (but a few aren't yet).
{
(Probable memory leak in Skia)
Memcheck:Leak
fun:_Znwj
fun:_ZN10SkFontHost15ResolveTypefaceEj
fun:_ZN24SkScalerContext_FreeType9setupSizeEv
fun:_ZN24SkScalerContext_FreeType19generateFontMetricsEPN7SkPaint11FontMetricsES2_
fun:_ZN15SkScalerContext14getFontMetricsEPN7SkPaint11FontMetricsES2_
fun:_ZN12SkGlyphCacheC1EPK12SkDescriptor
fun:_ZN12SkGlyphCache10VisitCacheEPK12SkDescriptorPFbPKS_PvES5_
}
{
Another possible skia leak
Memcheck:Leak
fun:_Znwj
fun:_ZN10SkFontHost15ResolveTypefaceEj
fun:_ZN24SkScalerContext_FreeType9setupSizeEv
fun:_ZN24SkScalerContext_FreeType15generateMetricsEP7SkGlyph
fun:_ZN24SkScalerContext_FreeType15generateAdvanceEP7SkGlyph
fun:_ZN15SkScalerContext10getAdvanceEP7SkGlyph
fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
fun:_ZN12SkGlyphCache17getGlyphIDAdvanceEt
fun:_Z24sk_getAdvance_glyph_nextP12SkGlyphCachePPKc
fun:_ZNK7SkPaint12measure_textEP12SkGlyphCachePKcjPiP6SkRect
fun:_ZNK7SkPaint11measureTextEPKvjP6SkRectf
fun:_ZNK7SkPaint11measureTextEPKvj
fun:_ZNK7WebCore14SimpleFontData21platformWidthForGlyphEt
}
{
# src/webkit/tools/test_shell/node_leak_test.cc:44
NodeLeakTest_leak_todo
Memcheck:Leak
fun:_Znwj
...
fun:_ZN9file_util12AppendToPathEPSbIwSt11char_traitsIwESaIwEERKS3_
fun:*src_webkit_tools_test_shell_node_leak_test.cc*NodeLeakTest5SetUpEv
fun:_ZN7testing4Test3RunEv
}
{
# http://crbug.com/9246
webcore_renderText_leak_todo
Memcheck:Leak
fun:_Znwj
fun:_ZN10SkFontHost15ResolveTypefaceEj
fun:_ZN24SkScalerContext_FreeType9setupSizeEv
fun:_ZN24SkScalerContext_FreeType15generateMetricsEP7SkGlyph
fun:_ZN24SkScalerContext_FreeType15generateAdvanceEP7SkGlyph
fun:_ZN15SkScalerContext10getAdvanceEP7SkGlyph
fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
fun:_ZN12SkGlyphCache17getGlyphIDAdvanceEt
fun:_Z24sk_getAdvance_glyph_nextP12SkGlyphCachePPKc
fun:_ZNK7SkPaint12measure_textEP12SkGlyphCachePKcjPiP6SkRect
fun:_ZNK7SkPaint11measureTextEPKvjP6SkRectf
fun:_ZNK7SkPaint11measureTextEPKvj
fun:_ZNK7WebCore14SimpleFontData21platformWidthForGlyphEt
fun:_ZNK7WebCore14SimpleFontData13widthForGlyphEt
fun:_ZN7WebCore13WidthIterator7advanceEiPNS_11GlyphBufferE
fun:_ZNK7WebCore4Font23floatWidthForSimpleTextERKNS_7TextRunEPNS_11GlyphBufferE
fun:_ZNK7WebCore4Font10floatWidthERKNS_7TextRunE
fun:_ZNK7WebCore4Font5widthERKNS_7TextRunE
fun:_ZNK7WebCore10RenderText14widthFromCacheERKNS_4FontEiii
fun:_ZN7WebCore10RenderText14calcPrefWidthsEi
fun:_ZNK7WebCore10RenderText12maxPrefWidthEv
fun:_ZNK7WebCore10RenderText5widthEjjRKNS_4FontEi
fun:_ZN7WebCore9textWidthEPNS_10RenderTextEjjRKNS_4FontEibb
fun:_ZN7WebCore11RenderBlock17findNextLineBreakERNS_12BidiResolverINS_14InlineIteratorENS_7BidiRunEEEbPNS_6EClearE
}
{
webcore_parse_leak_todo
Memcheck:Leak
fun:_Znaj
fun:_ZN7WebCore17CSSPrimitiveValue6createEdNS0_9UnitTypesE
fun:_ZN7WebCore9CSSParser10parseValueEib
fun:_ZN7WebCore9CSSParser12parse4ValuesEiPKib
fun:_ZN7WebCore9CSSParser10parseValueEib
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCore12parseUASheetERKNS_6StringE
fun:_ZN7WebCore12parseUASheetEPKcj
fun:_ZN7WebCore22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentERKNS_6StringEPNS_14StyleSheetListEPNS_13CSSStyleSheetEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
fun:_ZN12WebFrameImpl13InitMainFrameEP11WebViewImpl
fun:_ZN7WebView6CreateEP15WebViewDelegateRK14WebPreferences
fun:_ZN11WebViewHost6CreateEP10_GtkWidgetP15WebViewDelegateRK14WebPreferences
fun:_ZN9TestShell10InitializeERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN9TestShell15CreateNewWindowERKSbIwSt11char_traitsIwESaIwEEPPS_
fun:_ZN13TestShellTest17CreateEmptyWindowEv
fun:_ZN13TestShellTest5SetUpEv
}
{
webcore_parse_leak_2_todo
Memcheck:Leak
fun:_Znaj
fun:_ZN7WebCore17CSSPrimitiveValue16createIdentifierEi
fun:_ZN7WebCore9CSSParser10parseValueEib
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCore12parseUASheetERKNS_6StringE
fun:_ZN7WebCore12parseUASheetEPKcj
fun:_ZN7WebCore22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentERKNS_6StringEPNS_14StyleSheetListEPNS_13CSSStyleSheetEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
fun:_ZN12WebFrameImpl13InitMainFrameEP11WebViewImpl
fun:_ZN7WebView6CreateEP15WebViewDelegateRK14WebPreferences
fun:_ZN11WebViewHost6CreateEP10_GtkWidgetP15WebViewDelegateRK14WebPreferences
fun:_ZN9TestShell10InitializeERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN9TestShell15CreateNewWindowERKSbIwSt11char_traitsIwESaIwEEPPS_
fun:_ZN13TestShellTest17CreateEmptyWindowEv
fun:_ZN13TestShellTest5SetUpEv
}
{
# Leak reported by NSS but possibly our fault, see http://crbug/4609
bug_4609
Memcheck:Leak
...
fun:NSS_Shutdown
}
{
# See http://crbug.com/6522
bug_6522
Memcheck:Param
write(buf)
...
fun:fwrite
fun:_ZN12DownloadFile16AppendDataToFileEPKci
fun:_ZN19DownloadFileManager14UpdateDownloadEiP14DownloadBuffer
}
{
# Chromium flakily leaks tasks at shutdown, see
# http://crbug.com/6532
# http://codereview.chromium.org/20067
# http://codereview.chromium.org/42083
# To reproduce, run ipc tests
# This is the -O0 case
# In Purify, they don't even try to free them anymore.
# For now, in Valgrind, we'll add suppressions to ignore these leaks.
bug_6532
Memcheck:Leak
fun:_Znwj
fun:_Z17NewRunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvvEEP14CancelableTaskPT_T0_
}
{
# See http://crbug.com/6532
# This is the -O1 case
bug_6532b
Memcheck:Leak
...
fun:_ZN3IPC12ChannelProxy7Context14OnChannelErrorEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
}
{
# See http://crbug.com/6547
# Found by running 20-sharded ui tests over and over, aways in shard 18
# after AutomationProxyTest.AutocompleteParallelProxy
bug_6547
Memcheck:Leak
fun:_Znwj
fun:_ZN18ResourceDispatcher12CreateBridgeERKSsRK4GURLS4_S4_S1_S1_S1_iiN12ResourceType4TypeEjii
fun:_ZN11webkit_glue20ResourceLoaderBridge6CreateERKSsRK4GURLS5_S5_S2_S2_S2_iiN12ResourceType4TypeEii
fun:_ZN7WebCore22ResourceHandleInternal5StartEPN11webkit_glue20ResourceLoaderBridge16SyncLoadResponseE
fun:_ZN7WebCore14ResourceHandle5startEPNS_5FrameE
fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEPNS_5FrameEbbb
}
{
# See http://crbug.com/9450
v8_bindings_leak_crbug_9450
Memcheck:Leak
fun:_Znwj
fun:_ZN7WebCore7V8Proxy20RegisterGlobalHandleENS_16GlobalHandleTypeEPvN2v810PersistentINS3_5ValueEEE
}
{
# V8 leak? See http://crbug.com/9458
bug_9458
Memcheck:Leak
fun:_Znwj
fun:_NPN_RegisterObject
fun:_Z25CreateV8ObjectForNPObjectP8NPObjectS0_
}
{
# webkit leak? See http://crbug.com/9503
bug_9503
Memcheck:Leak
...
fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb
}
{
# see http://crbug.com/10737
bug_10737
Memcheck:Leak
fun:calloc
fun:g_malloc0
fun:g_closure_new_simple
fun:g_cclosure_new
fun:_ZN16BrowserWindowGtk19ConnectAcceleratorsEv
fun:_ZN16BrowserWindowGtkC1EP7Browser
fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
}
{
# real leak; see http://crbug.com/10738
bug_10738
Memcheck:Leak
...
fun:_ZN20NavigationController22NavigateToPendingEntryEb
fun:_ZN20NavigationController9LoadEntryEP15NavigationEntry
fun:_ZN20NavigationController7LoadURLERK4GURLS2_j
}
{
# see http://crbug.com/10748
bug_10748
Memcheck:Leak
fun:_Znwj
fun:_ZN22RendererSecurityPolicy3AddEi
fun:_ZN24BrowserRenderProcessHost4InitEv
fun:_ZN14RenderViewHost16CreateRenderViewEv
}
{
# Possible NSS leak, see http://crbug.com/10750
bug_10750
Memcheck:Leak
fun:calloc
fun:PR_Calloc
...
fun:SECMOD_UnloadUserModule
}
{
# See http://crbug.com/10755 (1/2)
bug_10755
Memcheck:Leak
fun:_Znwj
...
fun:_ZN12RenderThread12RemoveFilterEPN3IPC12ChannelProxy13MessageFilterE
}
{
# See http://crbug.com/10755 (2/2)
bug_10755b
Memcheck:Leak
fun:_Znwj
fun:_ZN3IPC12ChannelProxy5CloseEv
fun:_ZN3IPC11SyncChannelD0Ev
fun:_ZN11ChildThread7CleanUpEv
fun:_ZN12RenderThread7CleanUpEv
}
{
# See http://crbug.com/10758
bug_10758
Memcheck:Leak
fun:_Znwj
fun:_ZN14MetricsService17GetPluginListTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
# See http://crbug.com/11116
bug_11116a
Memcheck:Leak
fun:_Znwj
fun:_ZN11ChildThread21OnProcessFinalReleaseEv
}
{
# See http://crbug.com/11116
bug_11116b
Memcheck:Leak
fun:_Znwj
fun:_ZN11ChildThread14OnChannelErrorEv
}
{
# See http://crbug.com/11117
bug_11117
Memcheck:Leak
...
fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
...
fun:_ZN24RendererWebKitClientImpl24suddenTerminationChangedEb
}
{
# See http://crbug.com/11130
bug_11130
Memcheck:Leak
fun:_Znwj
fun:_Z17NewRunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvPNS0_7MessageEES4_EP14CancelableTaskPT_T0_RKT1_
fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
fun:_ZN11ChildThread4SendEPN3IPC7MessageE
fun:_ZN12RenderThread4SendEPN3IPC7MessageE
fun:_ZN19AppCacheContextImpl19UnInitializeContextEv
}
{
# See http://crbug.com/11139
bug_11139
Memcheck:Leak
fun:_Znwj
fun:_ZN14ProcessWatcher23EnsureProcessTerminatedEi
}
{
# See http://crbug.com/11144
# This suppression is loose enough to match at least two message leaks
bug_11144
Memcheck:Leak
fun:_Znwj
fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
fun:_ZN11ChildThread4SendEPN3IPC7MessageE
fun:_ZN12RenderThread4SendEPN3IPC7MessageE
}
{
# See http://crbug.com/11213
bug_11213
Memcheck:Leak
...
fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEPNS_5FrameEbbb
fun:_ZN7WebCore14ResourceLoader4loadERKNS_15ResourceRequestE
fun:_ZN7WebCore17SubresourceLoader6createEPNS_5FrameEPNS_23SubresourceLoaderClientERKNS_15ResourceRequestEbbb
fun:_ZN7WebCore6Loader4Host20servePendingRequestsERN3WTF5DequeIPNS_7RequestEEERb
}
{
# See http://crbug.com/11462
bug_11462
Memcheck:Leak
fun:_Znwj
fun:_ZN27SafeBrowsingProtocolManager21HandleServiceResponseERK4GURLPKci
fun:_ZN27SafeBrowsingProtocolManager18OnURLFetchCompleteEPK10URLFetcherRK4GURLRK16URLRequestStatusiRKSt6vectorISsSaISsEERKSs
fun:_ZN10URLFetcher4Core21OnCompletedURLRequestERK16URLRequestStatus
fun:_ZN14RunnableMethodIN10URLFetcher4CoreEMS1_FvRK16URLRequestStatusE6Tuple1IS2_EE3RunEv
}
{
bug_11838
Memcheck:Cond
fun:strlen
...
fun:__xmlRaiseError
...
fun:_ZN16Toolbar5Importer17LocateNextOpenTagEP9XmlReader
fun:_ZN16Toolbar5Importer27LocateNextTagWithStopByNameEP9XmlReaderRKSsS3_
fun:_ZN16Toolbar5Importer24ParseBookmarksFromReaderEP9XmlReaderPSt6vectorIN13ProfileWriter13BookmarkEntryESaIS4_EE
fun:_ZN39Toolbar5ImporterTest_BookmarkParse_Test8TestBodyEv
}
{
bug_12366
Memcheck:Leak
fun:malloc
...
fun:cairo_image_surface_create
fun:_ZN3gfx6Canvas13SizeStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontEPiSA_i
}
{
# See bug 12539 and 12549
bug_12539
Memcheck:Leak
...
fun:_ZN7WebCore11ImageSource18createFrameAtIndexEj
fun:_ZNK11webkit_glue12ImageDecoder6DecodeEPKhj
}
{
bug_15762
Memcheck:Cond
fun:_ZN7testing8internal11CmpHelperEQIjjEENS_15AssertionResultEPKcS4_RKT_RKT0_
...
fun:_ZN39ImageOperations_CreateMaskedBitmap_Test8TestBodyEv
}
{
# very common in ui tests
bug_16089
Memcheck:Leak
fun:*
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net12HostResolver3Job5StartEv
}
{
# ditto, but tweaked to fire on bots, more robust against optimizer changes?
bug_16089b
Memcheck:Leak
fun:_Znwj
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN18chrome_browser_net9DnsMaster24PreLockedScheduleLookupsEv
}
{
# very common in ui tests
bug_16091
Memcheck:Leak
...
fun:_ZN11MessageLoop22AddDestructionObserverEPNS_19DestructionObserverE
...
fun:_ZN3IPC11SyncChannel11SyncContext15OnChannelOpenedEv
}
{
# very common in ui tests
bug_16092
Memcheck:Leak
fun:*
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16092b
Memcheck:Leak
...
fun:_ZNSt11_Deque_baseIN11MessageLoop11PendingTaskESaIS1_EE17_M_initialize_mapEj
...
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16092c
Memcheck:Leak
...
fun:_ZNSt14priority_queueIN11MessageLoop11PendingTaskESt6vectorIS1_SaIS1_EESt4lessIS1_EEC1ERKS6_RKS4_
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16093
Memcheck:Leak
...
fun:getaddrinfo
}
{
# very common in ui tests
bug_16095
Memcheck:Leak
...
fun:_ZN11MessageLoop21AddToDelayedWorkQueueERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
# very common in ui tests
bug_16096
Memcheck:Leak
fun:_Znwj
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendEPKcj
fun:_Z14StringAppendVTISsEvPT_PKNS0_10value_typeEPc
fun:_Z13StringAppendVPSsPKcPc
fun:_Z12StringPrintfPKcz
}
{
# Somewhat common in ui tests. See also bug 9245.
bug_16102
Memcheck:Leak
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcConfigPatternAdd
fun:FcConfigSubstituteWithPat
fun:FcFontRenderPrepare
fun:FcFontSetMatch
fun:FcFontMatch
}
{
bug_16103
Memcheck:Leak
fun:_Znwj
fun:_ZN20ShownSectionsHandler22HandleGetShownSectionsEPK5Value
...
fun:_ZN5DOMUI19ProcessDOMUIMessageERKSsS1_ib
fun:_ZN11TabContents19ProcessDOMUIMessageERKSsS1_ib
}
{
bug_16104
Memcheck:Leak
fun:_Znwj
fun:_ZN7history20VisitSegmentDatabase17QuerySegmentUsageERKN4base4TimeEiPSt6vectorIP13PageUsageDataSaIS7_EE
#fun:_ZN7history14HistoryBackend24QueryTopURLsAndRedirectsE13scoped_refptrI18CancelableRequest1I14CallbackRunnerI6Tuple2IPSt6vectorI4GURLSaIS6_EEPSt3mapIS6_S1_I16RefCountedVectorIS6_EESt4lessIS6_ESaISt4pairIKS6_SD_EEEEES4_IS8_SK_EEEi
}
{
bug_16128
Memcheck:Leak
fun:_Znwj
fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
...
fun:_ZN11ChildThreadC2Ev
fun:_ZN12RenderThreadC1Ev
}
{
bug_16129
Memcheck:Leak
fun:_Znwj
fun:_Z11NewCallbackI11WebViewImplPN11webkit_glue20ImageResourceFetcherERK8SkBitmapEPN9Callback2IT0_T1_E4TypeEPT_MSD_FvS8_S9_E
fun:_ZN11WebViewImpl13DownloadImageEiRK4GURLi
fun:_ZN10RenderView15OnDownloadImageEiRK4GURLi
}
{
bug_16129b
Memcheck:Leak
fun:_Znwj
fun:_Z11NewCallbackIN11webkit_glue20ImageResourceFetcherERKN6WebKit14WebURLResponseERKSsEPN9Callback2IT0_T1_E4TypeEPT_MSE_FvS9_SA_E
fun:_ZN11webkit_glue20ImageResourceFetcherC1ERK4GURLP8WebFrameiiP14CallbackRunnerI6Tuple2IPS0_RK8SkBitmapEE
fun:_ZN11WebViewImpl13DownloadImageEiRK4GURLi
fun:_ZN10RenderView15OnDownloadImageEiRK4GURLi
}
{
bug_16156
Memcheck:Leak
...
fun:gtk_im_context_set_cursor_location
...
fun:gtk_widget_size_allocate
}
{
bug_16161
Memcheck:Leak
fun:malloc
fun:g_malloc
...
fun:gtk_clipboard_set_text
fun:_ZN23AutocompleteEditViewGtk20SavePrimarySelectionERKSs
}
{
bug_16324
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN7WebCore14newUCharVectorEj
fun:_ZN7WebCore10StringImplC1EPKcjj
fun:_ZN7WebCore17CStringTranslator9translateERPNS_10StringImplERKPKcj
...
fun:_ZN7WebCore12parseUASheetERKNS_6StringE
}
{
bug_16326
Memcheck:Leak
fun:_Znwj
fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
fun:_ZN7WebCore22ResourceHandleInternal5startEv
...
fun:_ZN7WebCore11FrameLoader4loadEPNS_14DocumentLoaderE
}
{
bug_16577
Memcheck:Leak
fun:_Znwj
fun:_ZN12RenderThread22InformHostOfCacheStatsEv
}
{
# happened 1 in 16 runs
bug_16578
Memcheck:Leak
fun:_Znwj
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag
fun:_ZNSsC1EPKcRKSaIcE
fun:_ZN12WebFrameImplD0Ev
}
{
# Webkit leak in WebCore::HTMLNames::init() ?
bug_16579
Memcheck:Leak
fun:_Znwj
fun:_ZN3WTF9HashTableIPN7WebCore13QualifiedName17QualifiedNameImplES4_NS_17IdentityExtractorIS4_EENS1_17QualifiedNameHashENS_10HashTraitsIS4_EES9_E18addPassingHashCodeINS1_23QualifiedNameComponentsESC_NS_24HashSetTranslatorAdapterIS4_S9_SC_NS1_25QNameComponentsTranslatorEEEEESt4pairINS_17HashTableIteratorIS4_S4_S6_S7_S9_S9_EEbERKT_RKT0_
fun:_ZN3WTF7HashSetIPN7WebCore13QualifiedName17QualifiedNameImplENS1_17QualifiedNameHashENS_10HashTraitsIS4_EEE3addINS1_23QualifiedNameComponentsENS1_25QNameComponentsTranslatorEEESt4pairINS_24HashTableIteratorAdapterINS_9HashTableIS4_S4_NS_17IdentityExtractorIS4_EES5_S7_S7_EES4_EEbERKT_
fun:_ZN7WebCore13QualifiedNameC1ERKNS_12AtomicStringES3_S3_
fun:_ZN7WebCore9HTMLNames4initEv
}
{
# Another leak in WebCore::HTMLNames::init() ?
bug_16579b
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
...
fun:_ZN7WebCore12AtomicString3addEPKc
fun:_ZN7WebCore12AtomicStringC1EPKc
fun:_ZN7WebCore9HTMLNames4initEv
}
{
bug_16583
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slice_alloc0
fun:g_type_create_instance
fun:*
fun:g_object_newv
fun:g_object_new_valist
...
fun:gtk_window_realize
}
{
bug_16584
Memcheck:Leak
fun:_Znwj
fun:_ZN7WebCore10CSSRuleSet12addToRuleSetEPNS_16AtomicStringImplERN3WTF7HashMapIS2_PNS_15CSSRuleDataListENS3_7PtrHashIS2_EENS3_10HashTraitsIS2_EENS9_IS6_EEEEPNS_12CSSStyleRuleEPNS_11CSSSelectorE
fun:_ZN7WebCore10CSSRuleSet7addRuleEPNS_12CSSStyleRuleEPNS_11CSSSelectorE
fun:_ZN7WebCore10CSSRuleSet17addRulesFromSheetEPNS_13CSSStyleSheetERKNS_19MediaQueryEvaluatorEPNS_16CSSStyleSelectorE
fun:_ZN7WebCoreL22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentERKNS_6StringEPNS_14StyleSheetListEPNS_13CSSStyleSheetEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
}
{
# 1 in 20 runs?
bug_16586
Memcheck:Leak
fun:_Znwj
fun:_ZN10URLFetcherC1ERK4GURLNS_11RequestTypeEPNS_8DelegateE
fun:_ZN22AlternateNavURLFetcher7ObserveE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN19NotificationService6NotifyE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN20NavigationController9LoadEntryEP15NavigationEntry
fun:_ZN20NavigationController7LoadURLERK4GURLS2_j
fun:_ZN7Browser14OpenURLAtIndexEP11TabContentsRK4GURLS4_21WindowOpenDispositionjib
fun:_ZN7Browser14OpenCurrentURLEv
}
{
# 1 in 40 runs? Handle both leaks with one suppression.
# Anonymous namespaces are encoded differently on mac and linux,
# hence the wildcard.
bug_16625
Memcheck:Leak
...
fun:_ZN16ChildProcessHost13CreateChannelEv
fun:_ZN18UtilityProcessHost12StartProcessERK8FilePath
fun:_ZN18UtilityProcessHost22StartExtensionUnpackerERK8FilePath
fun:*UtilityProcessHostTest_ExtensionUnpacker_Test8TestBodyEv
}
{
# 1 in 20 runs?
bug_16908
Memcheck:Leak
fun:_Znwj
fun:_ZN7WebCore9CSSParser22createFloatingSelectorEv
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCoreL12parseUASheetERKNS_6StringE
fun:_ZN7WebCoreL12parseUASheetEPKcj
fun:_ZN7WebCoreL22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentERKNS_6StringEPNS_14StyleSheetListEPNS_13CSSStyleSheetEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
}
{
bug_17185
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN7WebCore10StringImpl19createUninitializedEjRPt
...
fun:_ZN7WebCore10Pasteboard14writeSelectionEPNS_5RangeEbPNS_5FrameE
}
{
bug_17187
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN7WebCore10StringImpl19createUninitializedEjRPt
fun:_ZN7WebCore10StringImpl6createEPKtj
fun:_ZN6WebKit9WebString6assignEPKtj
fun:_ZN20MockWebClipboardImpl10writeImageERKN6WebKit8WebImageERKNS0_6WebURLERKNS0_9WebStringE
fun:_ZN7WebCore14ChromiumBridge19clipboardWriteImageEPK15NativeImageSkiaRKNS_4KURLERKNS_6StringE
fun:_ZN7WebCore10Pasteboard10writeImageEPNS_4NodeERKNS_4KURLERKNS_6StringE
}
{
bug_17385
Memcheck:Leak
fun:_Znw*
fun:_ZN14RevocableStoreC2Ev
fun:_ZN3IPC7Channel11ChannelImplC2ERKSsNS0_4ModeEPNS0_8ListenerE
fun:_ZN3IPC7Channel11ChannelImplC1ERKSsNS0_4ModeEPNS0_8ListenerE
fun:_ZN3IPC7ChannelC2ERKSsNS0_4ModeEPNS0_8ListenerE
fun:_ZN3IPC7ChannelC1ERKSsNS0_4ModeEPNS0_8ListenerE
fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKSsRKNS_7Channel4ModeE
fun:_ZN3IPC12ChannelProxy4InitERKSsNS_7Channel4ModeEP11MessageLoopb
fun:_ZN3IPC12ChannelProxyC2ERKSsNS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
fun:_ZN3IPC11SyncChannelC2ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN11ChildThread4InitEv
}
|