diff options
author | hajimehoshi@chromium.org <hajimehoshi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-28 08:21:57 +0000 |
---|---|---|
committer | hajimehoshi@chromium.org <hajimehoshi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-28 08:21:57 +0000 |
commit | e4b9afd85bd218d371b7af3f730ee88775534ad0 (patch) | |
tree | af2d7fe5f0fa06deb6460fdb02605a2f0fdee248 | |
parent | f5d4e76d7a82b2ed9ccec4936ef9d24b1985d55e (diff) | |
download | chromium_src-e4b9afd85bd218d371b7af3f730ee88775534ad0.zip chromium_src-e4b9afd85bd218d371b7af3f730ee88775534ad0.tar.gz chromium_src-e4b9afd85bd218d371b7af3f730ee88775534ad0.tar.bz2 |
DMP: Add mmap-partition-alloc
Split the usage of Parition Alloc from mmap-catch-all. Partition Alloc
is the allocator used in Blink, and it would be helpful if we could see
the usage of this separately.
NOTRY=true
Review URL: https://codereview.chromium.org/423793003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285877 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | tools/deep_memory_profiler/policy.l2.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/deep_memory_profiler/policy.l2.json b/tools/deep_memory_profiler/policy.l2.json index ce6f711..d8b7bb1 100644 --- a/tools/deep_memory_profiler/policy.l2.json +++ b/tools/deep_memory_profiler/policy.l2.json @@ -24,6 +24,7 @@ "mmap-gpu-transfer-ringbuffer", "mmap-gpu-gles2-createbuffer", "mmap-skia-font", + "mmap-partition-alloc", "mmap-catch-all", "tc-webcore-cachedmatchedproperties", "tc-webcore-fontcache", @@ -196,6 +197,11 @@ "allocator": "mmap" }, { + "name": "mmap-partition-alloc", + "stacktrace": ".*WTF::partitionAllocSlowPath.*", + "allocator": "mmap" + }, + { "name": "mmap-catch-all", "stacktrace": ".*", "allocator": "mmap" |