< prev index next >

src/hotspot/share/runtime/stackValue.cpp

Print this page

        

*** 189,204 **** #ifndef PRODUCT void StackValue::print_on(outputStream* st) const { switch(_type) { case T_INT: ! st->print("%d (int) %f (float) %x (hex)", *(int *)&_i, *(float *)&_i, *(int *)&_i); break; case T_OBJECT: ! _o()->print_value_on(st); ! st->print(" <" INTPTR_FORMAT ">", p2i((address)_o())); break; case T_CONFLICT: st->print("conflict"); break; --- 189,204 ---- #ifndef PRODUCT void StackValue::print_on(outputStream* st) const { switch(_type) { case T_INT: ! st->print("%d (int) %f (float) %x (hex)", *(int *)&_integer_value, *(float *)&_integer_value, *(int *)&_integer_value); break; case T_OBJECT: ! _handle_value()->print_value_on(st); ! st->print(" <" INTPTR_FORMAT ">", p2i((address)_handle_value())); break; case T_CONFLICT: st->print("conflict"); break;
< prev index next >