OLD | NEW |
---|---|
1 { | 1 { |
2 "components": [ | 2 "components": [ |
3 "second", | 3 "second", |
4 "mmap-profiler", | 4 "mmap-profiler", |
5 "mmap-type-profiler", | 5 "mmap-type-profiler", |
6 "mmap-tcmalloc", | 6 "mmap-tcmalloc", |
7 "FROM_HERE_FOR_TOTAL", | 7 "FROM_HERE_FOR_TOTAL", |
8 "mustbezero", | 8 "mustbezero", |
9 "unhooked-absent", | 9 "unhooked-absent", |
10 "unhooked-anonymous", | 10 "unhooked-anonymous", |
11 "unhooked-file-exec", | 11 "unhooked-file-exec", |
12 "unhooked-file-nonexec", | 12 "unhooked-file-nonexec", |
13 "unhooked-stack", | 13 "unhooked-stack", |
14 "unhooked-other", | 14 "unhooked-other", |
15 "no-bucket", | 15 "no-bucket", |
16 "mmap-v8", | 16 "mmap-v8", |
17 "mmap-catch-all", | 17 "mmap-catch-all", |
18 "tc-used-all", | 18 "tc-v8", |
19 "tc-skia", | |
20 "tc-webcore", | |
21 "tc-webkit", | |
22 "tc-catch-all", | |
19 "tc-unused", | 23 "tc-unused", |
20 "UNTIL_HERE_FOR_TOTAL", | 24 "UNTIL_HERE_FOR_TOTAL", |
21 "total-exclude-profiler", | 25 "total-exclude-profiler", |
22 "total", | 26 "total", |
23 "absent", | 27 "absent", |
24 "anonymous", | 28 "anonymous", |
25 "file-exec", | 29 "file-exec", |
26 "file-nonexec", | 30 "file-nonexec", |
27 "stack", | 31 "stack", |
28 "other", | 32 "other", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
91 "stacktrace": "optional", | 95 "stacktrace": "optional", |
92 "allocator": "optional" | 96 "allocator": "optional" |
93 }, | 97 }, |
94 { | 98 { |
95 "name": "unhooked-other", | 99 "name": "unhooked-other", |
96 "stacktrace": "optional", | 100 "stacktrace": "optional", |
97 "allocator": "optional" | 101 "allocator": "optional" |
98 }, | 102 }, |
99 { | 103 { |
100 "name": "mmap-v8", | 104 "name": "mmap-v8", |
101 "stacktrace": ".*v8::.*", | 105 "stacksourcefile": ".*../../v8/src/.*", |
peria
2013/04/08 10:24:09
This pattern may match with unexpected paths like
Dai Mikurube (NOT FULLTIME)
2013/04/08 10:54:37
Done.
| |
102 "allocator": "mmap" | 106 "allocator": "mmap" |
103 }, | 107 }, |
104 { | 108 { |
105 "name": "mmap-catch-all", | 109 "name": "mmap-catch-all", |
106 "stacktrace": ".*", | 110 "stacksourcefile": ".*", |
107 "allocator": "mmap" | 111 "allocator": "mmap" |
108 }, | 112 }, |
109 { | 113 { |
110 "name": "tc-used-all", | 114 "name": "tc-v8", |
111 "stacktrace": ".*", | 115 "stacksourcefile": ".*../../v8/src/.*", |
peria
2013/04/08 10:24:09
ditto
Dai Mikurube (NOT FULLTIME)
2013/04/08 10:54:37
Done.
| |
112 "allocator": "malloc" | 116 "allocator": "malloc" |
113 }, | 117 }, |
114 { | 118 { |
119 "name": "tc-skia", | |
120 "stacksourcefile": ".*../../third_party/skia/src/.*", | |
peria
2013/04/08 10:24:09
ditto.
Dai Mikurube (NOT FULLTIME)
2013/04/08 10:54:37
Done.
| |
121 "allocator": "malloc" | |
122 }, | |
123 { | |
124 "name": "tc-webcore", | |
125 "stacksourcefile": | |
126 ".*../../third_party/WebKit/Source/WebCore/.*", | |
peria
2013/04/08 10:24:09
ditto.
Dai Mikurube (NOT FULLTIME)
2013/04/08 10:54:37
Done.
| |
127 "allocator": "malloc" | |
128 }, | |
129 { | |
130 "name": "tc-webkit", | |
131 "stacksourcefile": ".*../../third_party/WebKit/Source/.*", | |
peria
2013/04/08 10:24:09
ditto
Dai Mikurube (NOT FULLTIME)
2013/04/08 10:54:37
Done.
| |
132 "allocator": "malloc" | |
133 }, | |
134 { | |
135 "name": "tc-catch-all", | |
136 "stacksourcefile": ".*", | |
137 "allocator": "malloc" | |
138 }, | |
139 { | |
115 "name": "UNTIL_HERE_FOR_TOTAL", | 140 "name": "UNTIL_HERE_FOR_TOTAL", |
116 "stacktrace": "optional", | 141 "stacktrace": "optional", |
117 "allocator": "optional" | 142 "allocator": "optional" |
118 }, | 143 }, |
119 { | 144 { |
120 "name": "total-exclude-profiler", | 145 "name": "total-exclude-profiler", |
121 "stacktrace": "optional", | 146 "stacktrace": "optional", |
122 "allocator": "optional" | 147 "allocator": "optional" |
123 }, | 148 }, |
124 { | 149 { |
(...skipping 27 matching lines...) Expand all Loading... | |
152 "allocator": "optional" | 177 "allocator": "optional" |
153 }, | 178 }, |
154 { | 179 { |
155 "name": "other", | 180 "name": "other", |
156 "stacktrace": "optional", | 181 "stacktrace": "optional", |
157 "allocator": "optional" | 182 "allocator": "optional" |
158 } | 183 } |
159 ], | 184 ], |
160 "version": "POLICY_DEEP_3" | 185 "version": "POLICY_DEEP_3" |
161 } | 186 } |
OLD | NEW |