diff -r 7eef4cda471c -r 4fa7845f7c14 hotspot/src/share/vm/runtime/frame.cpp --- a/hotspot/src/share/vm/runtime/frame.cpp Wed Aug 11 01:17:27 2010 -0700 +++ b/hotspot/src/share/vm/runtime/frame.cpp Wed Aug 11 05:51:21 2010 -0700 @@ -1100,6 +1100,10 @@ oops_entry_do(f, map); } else if (CodeCache::contains(pc())) { oops_code_blob_do(f, cf, map); +#ifdef SHARK + } else if (is_fake_stub_frame()) { + // nothing to do +#endif // SHARK } else { ShouldNotReachHere(); }