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

Unified Diff: test/mjsunit/tools/tickprocessor.js

Issue 2696903002: [profiler] Graphical front-end for tick processor. (Closed)
Patch Set: Fix test Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/tools/profile.js ('k') | tools/codemap.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/tools/tickprocessor.js
diff --git a/test/mjsunit/tools/tickprocessor.js b/test/mjsunit/tools/tickprocessor.js
index 804a85de78c0fffec522354f815e1ca0aa53787b..ebf24299540d76d2e53e3f5a72281d21d223ff0f 100644
--- a/test/mjsunit/tools/tickprocessor.js
+++ b/test/mjsunit/tools/tickprocessor.js
@@ -131,15 +131,14 @@
// shell executable
MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
this.symbols = [[
- ' U operator delete[]',
- '00001000 A __mh_execute_header',
- '00001b00 T start',
- '00001b40 t dyld_stub_binding_helper',
- '0011b710 T v8::internal::RegExpMacroAssembler::CheckPosition',
- '00134250 t v8::internal::Runtime_StringReplaceRegExpWithString',
- '00137220 T v8::internal::Runtime::GetElementOrCharAt',
- '00137400 t v8::internal::Runtime_DebugGetPropertyDetails',
- '001c1a80 b _private_mem\n'
+ ' operator delete[]',
+ '00001000 __mh_execute_header',
+ '00001b00 start',
+ '00001b40 dyld_stub_binding_helper',
+ '0011b710 v8::internal::RegExpMacroAssembler::CheckPosition',
+ '00134250 v8::internal::Runtime_StringReplaceRegExpWithString',
+ '00137220 v8::internal::Runtime::GetElementOrCharAt',
+ '00137400 v8::internal::Runtime_DebugGetPropertyDetails\n'
].join('\n'), ''];
};
@@ -161,10 +160,10 @@
// stdc++ library
MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
this.symbols = [[
- '0000107a T __gnu_cxx::balloc::__mini_vector<std::pair<__gnu_cxx::bitmap_allocator<char>::_Alloc_block*, __gnu_cxx::bitmap_allocator<char>::_Alloc_block*> >::__mini_vector',
- '0002c410 T std::basic_streambuf<char, std::char_traits<char> >::pubseekoff',
- '0002c488 T std::basic_streambuf<char, std::char_traits<char> >::pubseekpos',
- '000466aa T ___cxa_pure_virtual\n'].join('\n'), ''];
+ '0000107a __gnu_cxx::balloc::__mini_vector<std::pair<__gnu_cxx::bitmap_allocator<char>::_Alloc_block*, __gnu_cxx::bitmap_allocator<char>::_Alloc_block*> >::__mini_vector',
+ '0002c410 std::basic_streambuf<char, std::char_traits<char> >::pubseekoff',
+ '0002c488 std::basic_streambuf<char, std::char_traits<char> >::pubseekpos',
+ '000466aa ___cxa_pure_virtual\n'].join('\n'), ''];
};
var stdc_prov = new MacCppEntriesProvider();
var stdc_syms = [];
« no previous file with comments | « test/mjsunit/tools/profile.js ('k') | tools/codemap.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698