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

Side by Side Diff: test/mjsunit/tools/profile.js

Issue 92120: Added ProfileView object for performing sorting, searching and filtering operations on a profile. (Closed)
Patch Set: Created 11 years, 8 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 | « no previous file | test/mjsunit/tools/profileview.js » ('j') | tools/profileview.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 }; 263 };
264 264
265 var testDriver = new Driver(); 265 var testDriver = new Driver();
266 testDriver.execute(); 266 testDriver.execute();
267 267
268 var counted = 0; 268 var counted = 0;
269 for (var c in testDriver.counters) { 269 for (var c in testDriver.counters) {
270 counted++; 270 counted++;
271 } 271 }
272 272
273 var flatProfile = testDriver.profile.getFlatProfile(); 273 var flatProfile =
274 testDriver.profile.getFlatProfile().getRoot().exportChildren();
274 assertEquals(counted, flatProfile.length, 'counted vs. flatProfile'); 275 assertEquals(counted, flatProfile.length, 'counted vs. flatProfile');
275 for (var i = 0; i < flatProfile.length; ++i) { 276 for (var i = 0; i < flatProfile.length; ++i) {
276 var rec = flatProfile[i]; 277 var rec = flatProfile[i];
277 assertTrue(rec.label in testDriver.counters, 'uncounted: ' + rec.label); 278 assertTrue(rec.label in testDriver.counters, 'uncounted: ' + rec.label);
278 var reference = testDriver.counters[rec.label]; 279 var reference = testDriver.counters[rec.label];
279 assertEquals(reference.self, rec.selfWeight, 'self of ' + rec.label); 280 assertEquals(reference.self, rec.selfWeight, 'self of ' + rec.label);
280 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label); 281 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label);
281 } 282 }
282 283
283 })(); 284 })();
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/tools/profileview.js » ('j') | tools/profileview.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698