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

Unified Diff: tools/linux-tick-processor.py

Issue 132015: One some platforms nm spits out some strange internal symbols called $t, $d... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/linux-tick-processor.py
===================================================================
--- tools/linux-tick-processor.py (revision 2216)
+++ tools/linux-tick-processor.py (working copy)
@@ -47,9 +47,11 @@
row = re.match('^([0-9a-fA-F]{8}) . (.*)$', line)
if row:
addr = int(row.group(1), 16)
+ name = row.group(2);
if addr < start and addr < end - start:
addr += start
- self.cpp_entries.Insert(addr, tickprocessor.CodeEntry(addr, row.group(2)))
+ if not re.match('^\$[a-z]$', name):
+ self.cpp_entries.Insert(addr, tickprocessor.CodeEntry(addr, name))
finally:
pipe.close()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698