58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
# Categorization rules for spacetrace
|
|
#
|
|
# This file defines the stack frame rules that will categorize
|
|
# allocations that spacetrace processes. The format of this file is
|
|
#
|
|
# <categoryname>
|
|
# substring for stack frame n
|
|
# substring for stack frame n+1
|
|
# substring for stack frame n+2
|
|
#
|
|
# The key in the matching rule is that for every rule, we provide a
|
|
# snippet of the stack frame - contiguous substring matches.
|
|
# categorynames and rules substring matches are case sensitive
|
|
#
|
|
# Predefined Categories
|
|
# "All" - All allocations [default]
|
|
# "uncategorized" - All allocations that dont match any category
|
|
#
|
|
#
|
|
# Suresh Duddi <dp@netscape.com>
|
|
|
|
# NOTE: This is still under definition
|
|
|
|
# images category
|
|
# ----------------------------------------------------------------------
|
|
<images>
|
|
gfxImageFrame::Init
|
|
|
|
# jar category
|
|
# ----------------------------------------------------------------------
|
|
<jar>
|
|
nsZipArchive::BuildFileList
|
|
|
|
# necko
|
|
# ----------------------------------------------------------------------
|
|
<necko>
|
|
nsDiskCacheDevice::Init
|
|
|
|
# css category
|
|
# ----------------------------------------------------------------------
|
|
<css>
|
|
NS_NewCSS
|
|
|
|
# xpcom category
|
|
# ----------------------------------------------------------------------
|
|
<xpcom>
|
|
nsComponentManagerImpl::PlatformPrePopulateRegistry
|
|
|
|
# chrome js
|
|
# ----------------------------------------------------------------------
|
|
<chrome-js>
|
|
nsXULPrototypeScript::Deserialize
|
|
|
|
# Everything else
|
|
# ----------------------------------------------------------------------
|
|
# <uncategorized>
|
|
# This is a predefined category. Dont create it yourself.
|