--- old/src/share/vm/memory/heap.cpp 2016-11-03 14:16:40.000000000 -0700 +++ new/src/share/vm/memory/heap.cpp 2016-11-03 14:16:40.000000000 -0700 @@ -275,6 +275,13 @@ return h->allocated_space(); } +CodeBlob* CodeHeap::find_blob_unsafe(void* start) const { + CodeBlob* result = (CodeBlob*)CodeHeap::find_start(start); + if (result != NULL && result->blob_contains((address)start)) { + return result; + } + return NULL; +} size_t CodeHeap::alignment_unit() const { // this will be a power of two