src/hotspot/share/compiler/oopMap.cpp
changeset 54807 33fe50b6d707
parent 54786 ebf733a324d4
child 54916 7136c9ac56a7
--- a/src/hotspot/share/compiler/oopMap.cpp	Thu May 09 14:28:30 2019 +0200
+++ b/src/hotspot/share/compiler/oopMap.cpp	Fri May 10 09:05:29 2019 -0400
@@ -510,6 +510,8 @@
   st->print(" ");
 }
 
+void OopMapValue::print() const { print_on(tty); }
+
 void ImmutableOopMap::print_on(outputStream* st) const {
   OopMapValue omv;
   st->print("ImmutableOopMap{");
@@ -520,6 +522,8 @@
   st->print("}");
 }
 
+void ImmutableOopMap::print() const { print_on(tty); }
+
 void OopMap::print_on(outputStream* st) const {
   OopMapValue omv;
   st->print("OopMap{");
@@ -530,6 +534,8 @@
   st->print("off=%d}", (int) offset());
 }
 
+void OopMap::print() const { print_on(tty); }
+
 void ImmutableOopMapSet::print_on(outputStream* st) const {
   const ImmutableOopMap* last = NULL;
   for (int i = 0; i < _count; ++i) {
@@ -545,6 +551,8 @@
   }
 }
 
+void ImmutableOopMapSet::print() const { print_on(tty); }
+
 void OopMapSet::print_on(outputStream* st) const {
   int i, len = om_count();
 
@@ -558,6 +566,8 @@
   }
 }
 
+void OopMapSet::print() const { print_on(tty); }
+
 bool OopMap::equals(const OopMap* other) const {
   if (other->_omv_count != _omv_count) {
     return false;