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

Unified Diff: tools/binary_size/libsupersize/console.py

Issue 2863753005: Supersize: Store whether source path was generated in flags (Closed)
Patch Set: Created 3 years, 7 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/libsupersize/console.py
diff --git a/tools/binary_size/libsupersize/console.py b/tools/binary_size/libsupersize/console.py
index 40a8746a186fa1efcc2038d0f7d398bb1c7073ba..40c3fdbb682e4c1d1b131b82768c1a6dd984e31a 100644
--- a/tools/binary_size/libsupersize/console.py
+++ b/tools/binary_size/libsupersize/console.py
@@ -154,8 +154,8 @@ class _Session(object):
'Print(by_path.WhereBiggerThan(1024))',
'',
'# Show all non-vtable generated symbols',
- 'generated_syms = size_info.symbols.WhereIsGenerated()',
- 'Print(generated_syms.WhereNameMatches(r"vtable").Inverted())',
+ 'generated_syms = size_info.symbols.WhereGeneratedByToolchain()',
+ 'Print(generated_syms.WhereNameMatches(r"vtable").Inverted().Sorted())',
'',
'# Show all symbols that have "print" in their name or path, except',
'# those within components/.',

Powered by Google App Engine
This is Rietveld 408576698