agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File sadis Cdiff agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java

agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java

Print this page

        

*** 165,175 **** visitor.prologue(ptr, end); CodeBlob lastBlob = null; while (ptr != null && ptr.lessThan(end)) { try { ! CodeBlob blob = findBlobUnsafe(ptr); if (blob != null) { visitor.visit(blob); if (blob == lastBlob) { throw new InternalError("saw same blob twice"); } --- 165,175 ---- visitor.prologue(ptr, end); CodeBlob lastBlob = null; while (ptr != null && ptr.lessThan(end)) { try { ! CodeBlob blob = findBlobUnsafe(heap.findStart(ptr)); if (blob != null) { visitor.visit(blob); if (blob == lastBlob) { throw new InternalError("saw same blob twice"); }
agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File