equal
deleted
inserted
replaced
162 public static void printOopValueOn(Oop obj, PrintStream tty) { |
162 public static void printOopValueOn(Oop obj, PrintStream tty) { |
163 if (obj == null) { |
163 if (obj == null) { |
164 tty.print("null"); |
164 tty.print("null"); |
165 } else { |
165 } else { |
166 obj.printValueOn(tty); |
166 obj.printValueOn(tty); |
167 tty.print(" @ " + obj.getHandle()); |
167 tty.print(" @ " + VM.getVM().getUniverse().heap().oopAddressDescription(obj.getHandle())); |
168 } |
168 } |
169 } |
169 } |
170 |
170 |
171 public static void printOopAddressOn(Oop obj, PrintStream tty) { |
171 public static void printOopAddressOn(Oop obj, PrintStream tty) { |
172 if (obj == null) { |
172 if (obj == null) { |