hotspot/src/share/vm/code/relocInfo.cpp
changeset 46968 9119841280f4
parent 46630 75aa3e39d02c
equal deleted inserted replaced
46953:39063b484ec2 46968:9119841280f4
   865                  p2i(oop_addr), p2i(raw_oop), r->offset());
   865                  p2i(oop_addr), p2i(raw_oop), r->offset());
   866       // Do not print the oop by default--we want this routine to
   866       // Do not print the oop by default--we want this routine to
   867       // work even during GC or other inconvenient times.
   867       // work even during GC or other inconvenient times.
   868       if (WizardMode && oop_value != NULL) {
   868       if (WizardMode && oop_value != NULL) {
   869         tty->print("oop_value=" INTPTR_FORMAT ": ", p2i(oop_value));
   869         tty->print("oop_value=" INTPTR_FORMAT ": ", p2i(oop_value));
   870         if (oop_value->is_oop()) {
   870         if (oopDesc::is_oop(oop_value)) {
   871           oop_value->print_value_on(tty);
   871           oop_value->print_value_on(tty);
   872         }
   872         }
   873       }
   873       }
   874       break;
   874       break;
   875     }
   875     }