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

Side by Side Diff: tools/codemap.js

Issue 77014: Implemented Profile object that processes profiling events and calculates profiling data. (Closed)
Patch Set: addressed Soeren's comments 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 | « test/mjsunit/tools/profile.js ('k') | tools/profile.js » ('j') | no next file with comments »
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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 * @param {number} size Code entry size in bytes. 193 * @param {number} size Code entry size in bytes.
194 * @param {string} opt_name Code entry name. 194 * @param {string} opt_name Code entry name.
195 * @constructor 195 * @constructor
196 */ 196 */
197 devtools.profiler.CodeMap.CodeEntry = function(size, opt_name) { 197 devtools.profiler.CodeMap.CodeEntry = function(size, opt_name) {
198 this.size = size; 198 this.size = size;
199 this.name = opt_name || ''; 199 this.name = opt_name || '';
200 }; 200 };
201 201
202 202
203 devtools.profiler.CodeMap.CodeEntry.prototype.getName = function() {
204 return this.name;
205 };
206
207
203 devtools.profiler.CodeMap.CodeEntry.prototype.toString = function() { 208 devtools.profiler.CodeMap.CodeEntry.prototype.toString = function() {
204 return this.name + ': ' + this.size.toString(16); 209 return this.name + ': ' + this.size.toString(16);
205 }; 210 };
OLDNEW
« no previous file with comments | « test/mjsunit/tools/profile.js ('k') | tools/profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698