blob: 6330cbc701008863ae254c2eae0f58cd66595b7d (
plain)
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
|
# This file contains known patterns of crash signatures. One pattern per line.
#
# A crash signature is the concatenation of the top N functions, delimited by
# '___', in chrome.dll on the crash stack. All characters are lower case.
#
# We use crash signature patterns as our list of known crashes. A crash
# signature pattern is a string that can be used to identify a known crash. We
# use the notion of patterns because crashes with the same root cause can often
# differ somewhat in their crash stacks. A pattern is intended to be a
# generalized, yet still identifying, form of a particular crash. Usually a
# pattern will contain part of a crash signature, for example a prefix, but it
# can be more sophisticated, such as a regular expression. See below for more
# details.
#
# The format of known crashes in this file is as follows:
# TYPE : PATTERN
#
# PATTERN: A crash signature pattern is a potentially identifying string that
# can be used to match a crash signature.
# TYPE: The type of the pattern, indicates how the pattern should be matched
# against crash signatures. Possible options are:
# PREFIX: Match any signature beginning with this pattern.
# SUBSTRING: Match any signature containing this pattern.
# REGEX: Use this pattern as a regex to match against signatures.
# If the type is not listed, it defaults to PREFIX.
# Any crash due to out of memory is ignored.
PREFIX : `anonymous namespace'::onnomemory
# Mysterious crashes. Leave them for now.
# It is too broad to exclude all purecall related crashes. Thus here we filter
# any purecall crash immediately after runtask.
SUBSTRING : purecall___messageloop::runtask
REGEX : purecall___[^_]*___messageloop::runtask
# 5359. Random memory corruption?
PREFIX : v8::internal::sweepspace___v8::internal::markcompactcollector::sweepspaces___v8::internal::markcompactcollector::collectgarbage
# End mysterious crash section.
# 9615
SUBSTRING : history::historybackend::~historybackend
# 7701
PREFIX : iat_patch::getiatfunction___iat_patch::restoreimportedfunction___iat_patch::iatpatchfunction::unpatch
# 10791
PREFIX : npapi::plugininstance::npp_destroy___webplugindelegateimpl::destroyinstance___webplugindelegateimpl::~webplugindelegateimpl
# 5545
PREFIX : npapi::plugininstance::npp_handleevent___webplugindelegateimpl::windowlesspaint___webpluginproxy::paint___webpluginproxy::onpaint
# 8020
PREFIX : passwordformdommanager::findpasswordformfields___passwordformdommanager::createpasswordform___webframeloaderclient::dispatchdidfinishdocumentload
# 12156
SUBSTRING : views::focuswindowcallback___base::messagepumpforui::dorunloop
# 9947
SUBSTRING : webcore::frameloader::didreceiveresponse___webcore::resourceloader::didreceiveresponse___webcore::subresourceloader::didreceiveresponse___webcore::resourceloader::didreceiveresponse___webcore::resourcehandleinternal::onreceivedresponse
# 10978
PREFIX : webcore::renderobject::localtoabsolute___webcore::layoutstate::layoutstate___webcore::renderview::pushlayoutstate___webcore::frameview::layout
# 8033
SUBSTRING : windowdragresponsetask::run___messageloop::runtask___messageloop::dowork
# 12926
PREFIX : webcore::frame::settings___webcore::v8proxy::isenabled___webcore::v8proxy::retrieve
# 13078
SUBSTRING : v8::internal::GlobalHandles::PostGarbageCollectionProcessing
|