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

Side by Side Diff: tools/valgrind.supp

Issue 1237213004: Fixed valgrind issues with libjpeg-turbo (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 months 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
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp" 1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp"
2 2
3 # Intentional thread / memory leak in DM. 3 # Intentional thread / memory leak in DM.
4 { 4 {
5 dm_keepalive_thread_leak 5 dm_keepalive_thread_leak
6 Memcheck:Leak 6 Memcheck:Leak
7 match-leak-kinds: possible 7 match-leak-kinds: possible
8 ... 8 ...
9 fun:_ZN8SkThreadC1EPFvPvES0_ 9 fun:_ZN8SkThreadC1EPFvPvES0_
10 ... 10 ...
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 { 229 {
230 gpu_issue_14 230 gpu_issue_14
231 Memcheck:Addr4 231 Memcheck:Addr4
232 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 232 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
233 } 233 }
234 { 234 {
235 gpu_issue_15 235 gpu_issue_15
236 Memcheck:Addr2 236 Memcheck:Addr2
237 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 237 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
238 } 238 }
239
240 # Valgrind issues caused by tip of tree libjpeg-turbo
241 # https://code.google.com/p/skia/issues/detail?id=4030
242 # TODO (msarett): Determine if any of these errors relate to jpeg_skip_scanlines () and fix those.
243 # Issue 4 looks like it may.
244 # Some of these errors may be fixed when we switch to Chromium's version of turbo.
245 # If they are not fixed in Chromium's version, they need to be f ixed after we switch.
246 {
247 turbo_issue_1
248 Memcheck:Value8
249 fun:_itoa_word
250 fun:vfprintf
251 fun:__vsnprintf_chk
252 fun:_ZN8SkString7appendfEPKcz
253 fun:_ZN4Task3RunEPS_
254 fun:_ZN12_GLOBAL__N_110ThreadPool4LoopEPv
255 fun:_ZL12thread_startPv
256 fun:start_thread
257 fun:clone
258 }
259 {
260 turbo_issue_2
261 Memcheck:Cond
262 fun:vfprintf
263 fun:__vsnprintf_chk
264 fun:_ZN8SkString7appendfEPKcz
265 fun:_ZN4Task3RunEPS_
266 fun:_ZN12_GLOBAL__N_110ThreadPool4LoopEPv
267 fun:_ZL12thread_startPv
268 fun:start_thread
269 fun:clone
270 }
271 {
272 turbo_issue_3
273 Memcheck:Cond
274 fun:_itoa_word
275 fun:vfprintf
276 fun:__vsnprintf_chk
277 fun:_ZN8SkString7appendfEPKcz
278 fun:_ZN4Task3RunEPS_
279 fun:_ZN12_GLOBAL__N_110ThreadPool4LoopEPv
280 fun:_ZL12thread_startPv
281 fun:start_thread
282 fun:clone
283 }
284 {
285 turbo_issue_4
286 Memcheck:Value8
287 fun:ycc_rgb565D_convert
288 fun:sep_upsample
289 fun:process_data_context_main
290 fun:turbo_jpeg_read_scanlines
291 fun:turbo_jpeg_skip_scanlines
292 fun:_ZN21SkJpegScanlineDecoder15onSkipScanlinesEi
293 fun:_ZNK2DM8CodecSrc4drawEP8SkCanvas
294 fun:_ZNK2DM10RasterSink4drawERKNS_3SrcEP8SkBitmapP9SkWStreamP8SkString
295 fun:_ZN4Task3RunEPS_
296 fun:_ZN12_GLOBAL__N_110ThreadPool4LoopEPv
297 fun:_ZL12thread_startPv
298 fun:start_thread
299 fun:clone
300 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698