comparison src/share/vm/code/pcDesc.cpp @ 3446:07c2e7ffd1fc

7047697: MethodHandle.invokeExact call for wrong method causes VM failure if run with -Xcomp Reviewed-by: never, twisti
author jrose
date Wed, 08 Jun 2011 17:04:06 -0700
parents f95d63e2154a
children be4ca325525a 7588156f5cf9
comparison
equal deleted inserted replaced
3445:67c0f5f5deac 3446:07c2e7ffd1fc
42 } 42 }
43 43
44 void PcDesc::print(nmethod* code) { 44 void PcDesc::print(nmethod* code) {
45 #ifndef PRODUCT 45 #ifndef PRODUCT
46 ResourceMark rm; 46 ResourceMark rm;
47 tty->print_cr("PcDesc(pc=0x%lx offset=%x):", real_pc(code), pc_offset()); 47 tty->print_cr("PcDesc(pc=0x%lx offset=%x bits=%x):", real_pc(code), pc_offset(), _flags.bits);
48 48
49 if (scope_decode_offset() == DebugInformationRecorder::serialized_null) { 49 if (scope_decode_offset() == DebugInformationRecorder::serialized_null) {
50 return; 50 return;
51 } 51 }
52 52