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

Side by Side Diff: tools/tickprocessor.js

Issue 160273: X64: Fixes to enable C/C++ functions processing in profiler. (Closed)
Patch Set: Created 11 years, 4 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 | « src/platform-linux.cc ('k') | no next file » | 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 422
423 CppEntriesProvider.prototype.parseNextLine = function() { 423 CppEntriesProvider.prototype.parseNextLine = function() {
424 return false; 424 return false;
425 }; 425 };
426 426
427 427
428 function UnixCppEntriesProvider(nmExec) { 428 function UnixCppEntriesProvider(nmExec) {
429 this.symbols = []; 429 this.symbols = [];
430 this.parsePos = 0; 430 this.parsePos = 0;
431 this.nmExec = nmExec; 431 this.nmExec = nmExec;
432 this.FUNC_RE = /^([0-9a-fA-F]{8}) ([0-9a-fA-F]{8} )?[tTwW] (.*)$/; 432 this.FUNC_RE = /^([0-9a-fA-F]{8,16}) ([0-9a-fA-F]{8,16} )?[tTwW] (.*)$/;
433 }; 433 };
434 inherits(UnixCppEntriesProvider, CppEntriesProvider); 434 inherits(UnixCppEntriesProvider, CppEntriesProvider);
435 435
436 436
437 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) { 437 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
438 this.parsePos = 0; 438 this.parsePos = 0;
439 try { 439 try {
440 this.symbols = [ 440 this.symbols = [
441 os.system(this.nmExec, ['-C', '-n', '-S', libName], -1, -1), 441 os.system(this.nmExec, ['-C', '-n', '-S', libName], -1, -1),
442 os.system(this.nmExec, ['-C', '-n', '-S', '-D', libName], -1, -1) 442 os.system(this.nmExec, ['-C', '-n', '-S', '-D', libName], -1, -1)
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 if (arg !== synArg && dispatch === this.argsDispatch_[synArg]) { 648 if (arg !== synArg && dispatch === this.argsDispatch_[synArg]) {
649 synonims.push(synArg); 649 synonims.push(synArg);
650 delete this.argsDispatch_[synArg]; 650 delete this.argsDispatch_[synArg];
651 } 651 }
652 } 652 }
653 print(' ' + padRight(synonims.join(', '), 20) + dispatch[2]); 653 print(' ' + padRight(synonims.join(', '), 20) + dispatch[2]);
654 } 654 }
655 quit(2); 655 quit(2);
656 }; 656 };
657 657
OLDNEW
« no previous file with comments | « src/platform-linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698