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

Unified Diff: tools/binary_size/run_binary_size_analysis.py

Issue 339853004: binary_size_tool: fix for ambiguous addr2line output (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 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
Index: tools/binary_size/run_binary_size_analysis.py
diff --git a/tools/binary_size/run_binary_size_analysis.py b/tools/binary_size/run_binary_size_analysis.py
index f06884f8dafe1f7ba54c8586d18882c0e0ec5227..004f1a5d890163508f8c76b862e08ed735379ebb 100755
--- a/tools/binary_size/run_binary_size_analysis.py
+++ b/tools/binary_size/run_binary_size_analysis.py
@@ -482,9 +482,11 @@ class Progress():
self.collisions = 0
self.time_last_output = time.time()
self.count_last_output = 0
+ self.disambiguations = 0
Andrew Hayden (chromium.org) 2014/06/17 11:36:27 In the old code I also counted the number of disam
-def RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs):
+def RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs,
+ disambiguate, src_path):
nm_output = RunNm(library, nm_binary)
nm_output_lines = nm_output.splitlines()
nm_output_lines_len = len(nm_output_lines)
@@ -497,6 +499,8 @@ def RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs):
# str(address_symbol[addr].name))
progress.collisions += 1
else:
+ if symbol.disambiguated:
+ progress.disambiguations += 1
address_symbol[addr] = symbol
progress_chunk = 100
@@ -514,12 +518,16 @@ def RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs):
speed = 0
progress_percent = (100.0 * (progress.count + progress.skip_count) /
nm_output_lines_len)
- print('%.1f%%: Looked up %d symbols (%d collisions) - %.1f lookups/s.' %
- (progress_percent, progress.count, progress.collisions, speed))
+ print('%.1f%%: Looked up %d symbols (%d collisions, %d disambiguations)'
+ '- %.1f lookups/s.' %
+ (progress_percent, progress.count, progress.collisions,
+ progress.disambiguations, speed))
symbolizer = elf_symbolizer.ELFSymbolizer(library, addr2line_binary,
map_address_symbol,
- max_concurrent_jobs=jobs)
+ max_concurrent_jobs=jobs,
+ disambiguate=disambiguate,
+ disambiguation_source_path=src_path)
user_interrupted = False
try:
for line in nm_output_lines:
@@ -599,14 +607,15 @@ def RunNm(binary, nm_binary):
def GetNmSymbols(nm_infile, outfile, library, jobs, verbose,
- addr2line_binary, nm_binary):
+ addr2line_binary, nm_binary, disambiguate, src_path):
if nm_infile is None:
if outfile is None:
outfile = tempfile.NamedTemporaryFile(delete=False).name
if verbose:
print 'Running parallel addr2line, dumping symbols to ' + outfile
- RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs)
+ RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs,
+ disambiguate, src_path)
nm_infile = outfile
@@ -716,6 +725,15 @@ def main():
'This argument is only valid when using --library.')
parser.add_option('--legacy', action='store_true',
help='emit legacy binary size report instead of modern')
+ parser.add_option('--disable-disambiguation', action='store_true',
+ help='disables the disambiguation process altogether,'
+ ' NOTE: this will produce output with some symbols at the'
+ ' top layer due to the fact that addr2line could not get'
+ ' the entire source path.')
+ parser.add_option('--source-path', default='./',
+ help='the path to the source code of the output binary, '
+ 'default set to current directory. Used in the'
+ ' disambiguation process.')
opts, _args = parser.parse_args()
if ((not opts.library) and (not opts.nm_in)) or (opts.library and opts.nm_in):
@@ -756,7 +774,9 @@ def main():
symbols = GetNmSymbols(opts.nm_in, opts.nm_out, opts.library,
opts.jobs, opts.verbose is True,
- addr2line_binary, nm_binary)
+ addr2line_binary, nm_binary,
+ not opts.disable_disambiguation,
+ opts.source_path)
if not os.path.exists(opts.destdir):
os.makedirs(opts.destdir, 0755)

Powered by Google App Engine
This is Rietveld 408576698