src/share/vm/runtime/safepoint.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File warning2 Cdiff src/share/vm/runtime/safepoint.cpp

src/share/vm/runtime/safepoint.cpp

Print this page
rev 3821 : [mq]: unused

*** 743,752 **** --- 743,755 ---- // ------------------------------------------------------------------------------------------------------ // Exception handlers #ifndef PRODUCT + + #ifdef SPARC + #ifdef _LP64 #define PTR_PAD "" #else #define PTR_PAD " " #endif
*** 763,773 **** tty->print_cr(PTR64_FORMAT " %s %c " PTR64_FORMAT " %s %s", oldptr, wasoop?"oop":" ", oldptr == newptr ? ' ' : '!', newptr, is_oop?"oop":" ", (wasoop && !is_oop) ? "STALE" : ((wasoop==false&&is_oop==false&&oldptr !=newptr)?"STOMP":" ")); } - #ifdef SPARC static void print_me(intptr_t *new_sp, intptr_t *old_sp, bool *was_oops) { #ifdef _LP64 tty->print_cr("--------+------address-----+------before-----------+-------after----------+"); const int incr = 1; // Increment to skip a long, in units of intptr_t #else --- 766,775 ----
src/share/vm/runtime/safepoint.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File