< prev index next >

src/share/vm/runtime/stackValueCollection.cpp

Print this page

        

*** 136,149 **** tty->print("\t %2d ", index); at(index)->print_on(tty); if( at(index )->type() == T_INT && index+1 < size() && at(index+1)->type() == T_INT ) { ! tty->print(" " INT64_FORMAT " (long)", long_at(index)); tty->cr(); tty->print("\t %.15e (double)", double_at(index)); ! tty->print(" " PTR64_FORMAT " (longhex)", long_at(index)); } tty->cr(); } } #endif --- 136,149 ---- tty->print("\t %2d ", index); at(index)->print_on(tty); if( at(index )->type() == T_INT && index+1 < size() && at(index+1)->type() == T_INT ) { ! tty->print(" " INT64_FORMAT " (long)", (int64_t)long_at(index)); tty->cr(); tty->print("\t %.15e (double)", double_at(index)); ! tty->print(" " PTR64_FORMAT " (longhex)", (int64_t)long_at(index)); } tty->cr(); } } #endif
< prev index next >