# HG changeset patch # User ecaspole # Date 1511299621 18000 # Node ID 24065d1e139c473a24e705a0812265783157413e # Parent df39ee8173237c34b2c3a19dbe2bd32e74c7d86b 8191615: LogCompilation can show bytes Summary: Print the bytes size of a method as it is now contained in the log Reviewed-by: kvn, vlivanov diff -r df39ee817323 -r 24065d1e139c src/utils/LogCompilation/src/com/sun/hotspot/tools/compiler/LogParser.java --- a/src/utils/LogCompilation/src/com/sun/hotspot/tools/compiler/LogParser.java Tue Nov 21 09:49:52 2017 -0800 +++ b/src/utils/LogCompilation/src/com/sun/hotspot/tools/compiler/LogParser.java Tue Nov 21 16:27:01 2017 -0500 @@ -898,7 +898,7 @@ m.setName(parts[1]); m.setSignature(parts[2]); m.setFlags("0"); - m.setBytes("unknown"); + m.setBytes(search(atts, "bytes", "unknown")); compile.setMethod(m); events.add(compile); compiles.put(id, compile);