changeset in /hg/icedtea: 2009-06-18 Gary Benson <gbenson at redh...
Gary Benson
gbenson at redhat.com
Mon Aug 3 10:31:17 PDT 2009
changeset 21f0340f7c98 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=21f0340f7c98
description:
2009-06-18 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp
(SharkTopLevelBlock::improve_virtual_call): Only print cast
warnings when run with -XX:+SharkPerformanceWarnings.
diffstat:
2 files changed, 15 insertions(+), 9 deletions(-)
ChangeLog | 6 +++++
ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp | 18 +++++++--------
diffs (41 lines):
diff -r 8caa172d8bbc -r 21f0340f7c98 ChangeLog
--- a/ChangeLog Thu Jun 18 12:00:59 2009 -0400
+++ b/ChangeLog Thu Jun 18 12:14:25 2009 -0400
@@ -1,3 +1,9 @@ 2009-06-18 Gary Benson <gbenson at redhat
+2009-06-18 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp
+ (SharkTopLevelBlock::improve_virtual_call): Only print cast
+ warnings when run with -XX:+SharkPerformanceWarnings.
+
2009-06-18 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkInvariants.hpp: New file.
diff -r 8caa172d8bbc -r 21f0340f7c98 ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp Thu Jun 18 12:00:59 2009 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp Thu Jun 18 12:14:25 2009 -0400
@@ -902,15 +902,15 @@ ciMethod* SharkTopLevelBlock::improve_vi
// types, but I can't even tell which direction it
// doesn't like. For now I'm going to block *any* cast.
if (monomorphic_target != dest_method) {
-#ifndef PRODUCT
- tty->print_cr("found monomorphic target, but inhibited cast:");
- tty->print(" dest_method = ");
- dest_method->print_short_name(tty);
- tty->cr();
- tty->print(" monomorphic_target = ");
- monomorphic_target->print_short_name(tty);
- tty->cr();
-#endif // !PRODUCT
+ if (SharkPerformanceWarnings) {
+ warning("found monomorphic target, but inhibited cast:");
+ tty->print(" dest_method = ");
+ dest_method->print_short_name(tty);
+ tty->cr();
+ tty->print(" monomorphic_target = ");
+ monomorphic_target->print_short_name(tty);
+ tty->cr();
+ }
monomorphic_target = NULL;
}
}
More information about the distro-pkg-dev
mailing list