示例#1
0
CodeBlob* CodeCache::find_blob_unsafe(void* start) {  
  CodeBlob* result = (CodeBlob*)_heap->find_start(start);
  if (result == NULL) return NULL;
  assert(result->blob_contains((address)start), "found wrong CodeBlob");     
  return result;  
}