comparison src/share/vm/code/vtableStubs.cpp @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents 126ea7725993
children f95d63e2154a
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
46 const int bytes = chunk_factor * real_size + pd_code_alignment(); 46 const int bytes = chunk_factor * real_size + pd_code_alignment();
47 BufferBlob* blob = BufferBlob::create("vtable chunks", bytes); 47 BufferBlob* blob = BufferBlob::create("vtable chunks", bytes);
48 if (blob == NULL) { 48 if (blob == NULL) {
49 vm_exit_out_of_memory(bytes, "CodeCache: no room for vtable chunks"); 49 vm_exit_out_of_memory(bytes, "CodeCache: no room for vtable chunks");
50 } 50 }
51 _chunk = blob->instructions_begin(); 51 _chunk = blob->content_begin();
52 _chunk_end = _chunk + bytes; 52 _chunk_end = _chunk + bytes;
53 Forte::register_stub("vtable stub", _chunk, _chunk_end); 53 Forte::register_stub("vtable stub", _chunk, _chunk_end);
54 // Notify JVMTI about this stub. The event will be recorded by the enclosing 54 // Notify JVMTI about this stub. The event will be recorded by the enclosing
55 // JvmtiDynamicCodeEventCollector and posted when this thread has released 55 // JvmtiDynamicCodeEventCollector and posted when this thread has released
56 // all locks. 56 // all locks.