提交 b60b298c 编写于 作者: N never

6656830: assert((*p)->is_oop(),"expected an oop while scanning weak refs")

Reviewed-by: dcubed, kvn, twisti
上级 2c3e720d
...@@ -584,6 +584,7 @@ nmethod::nmethod( ...@@ -584,6 +584,7 @@ nmethod::nmethod(
_oops_do_mark_link = NULL; _oops_do_mark_link = NULL;
_method = method; _method = method;
_entry_bci = InvocationEntryBci; _entry_bci = InvocationEntryBci;
_jmethod_id = NULL;
_osr_link = NULL; _osr_link = NULL;
_scavenge_root_link = NULL; _scavenge_root_link = NULL;
_scavenge_root_state = 0; _scavenge_root_state = 0;
...@@ -677,6 +678,7 @@ nmethod::nmethod( ...@@ -677,6 +678,7 @@ nmethod::nmethod(
_oops_do_mark_link = NULL; _oops_do_mark_link = NULL;
_method = method; _method = method;
_entry_bci = InvocationEntryBci; _entry_bci = InvocationEntryBci;
_jmethod_id = NULL;
_osr_link = NULL; _osr_link = NULL;
_scavenge_root_link = NULL; _scavenge_root_link = NULL;
_scavenge_root_state = 0; _scavenge_root_state = 0;
...@@ -784,6 +786,7 @@ nmethod::nmethod( ...@@ -784,6 +786,7 @@ nmethod::nmethod(
NOT_PRODUCT(_has_debug_info = false); NOT_PRODUCT(_has_debug_info = false);
_oops_do_mark_link = NULL; _oops_do_mark_link = NULL;
_method = method; _method = method;
_jmethod_id = NULL;
_compile_id = compile_id; _compile_id = compile_id;
_comp_level = comp_level; _comp_level = comp_level;
_entry_bci = entry_bci; _entry_bci = entry_bci;
...@@ -1488,11 +1491,25 @@ void nmethod::post_compiled_method_load_event() { ...@@ -1488,11 +1491,25 @@ void nmethod::post_compiled_method_load_event() {
moop->signature()->utf8_length(), moop->signature()->utf8_length(),
code_begin(), code_size()); code_begin(), code_size());
if (JvmtiExport::should_post_compiled_method_load() ||
JvmtiExport::should_post_compiled_method_unload()) {
get_and_cache_jmethod_id();
}
if (JvmtiExport::should_post_compiled_method_load()) { if (JvmtiExport::should_post_compiled_method_load()) {
JvmtiExport::post_compiled_method_load(this); JvmtiExport::post_compiled_method_load(this);
} }
} }
jmethodID nmethod::get_and_cache_jmethod_id() {
if (_jmethod_id == NULL) {
// Cache the jmethod_id since it can no longer be looked up once the
// method itself has been marked for unloading.
_jmethod_id = method()->jmethod_id();
}
return _jmethod_id;
}
void nmethod::post_compiled_method_unload() { void nmethod::post_compiled_method_unload() {
if (unload_reported()) { if (unload_reported()) {
// During unloading we transition to unloaded and then to zombie // During unloading we transition to unloaded and then to zombie
...@@ -1504,12 +1521,17 @@ void nmethod::post_compiled_method_unload() { ...@@ -1504,12 +1521,17 @@ void nmethod::post_compiled_method_unload() {
DTRACE_METHOD_UNLOAD_PROBE(method()); DTRACE_METHOD_UNLOAD_PROBE(method());
// If a JVMTI agent has enabled the CompiledMethodUnload event then // If a JVMTI agent has enabled the CompiledMethodUnload event then
// post the event. Sometime later this nmethod will be made a zombie by // post the event. Sometime later this nmethod will be made a zombie
// the sweeper but the methodOop will not be valid at that point. // by the sweeper but the methodOop will not be valid at that point.
if (JvmtiExport::should_post_compiled_method_unload()) { // If the _jmethod_id is null then no load event was ever requested
// so don't bother posting the unload. The main reason for this is
// that the jmethodID is a weak reference to the methodOop so if
// it's being unloaded there's no way to look it up since the weak
// ref will have been cleared.
if (_jmethod_id != NULL && JvmtiExport::should_post_compiled_method_unload()) {
assert(!unload_reported(), "already unloaded"); assert(!unload_reported(), "already unloaded");
HandleMark hm; HandleMark hm;
JvmtiExport::post_compiled_method_unload(method()->jmethod_id(), code_begin()); JvmtiExport::post_compiled_method_unload(_jmethod_id, code_begin());
} }
// The JVMTI CompiledMethodUnload event can be enabled or disabled at // The JVMTI CompiledMethodUnload event can be enabled or disabled at
......
...@@ -135,6 +135,7 @@ class nmethod : public CodeBlob { ...@@ -135,6 +135,7 @@ class nmethod : public CodeBlob {
methodOop _method; methodOop _method;
int _entry_bci; // != InvocationEntryBci if this nmethod is an on-stack replacement method int _entry_bci; // != InvocationEntryBci if this nmethod is an on-stack replacement method
jmethodID _jmethod_id; // Cache of method()->jmethod_id()
// To support simple linked-list chaining of nmethods: // To support simple linked-list chaining of nmethods:
nmethod* _osr_link; // from instanceKlass::osr_nmethods_head nmethod* _osr_link; // from instanceKlass::osr_nmethods_head
...@@ -599,6 +600,7 @@ public: ...@@ -599,6 +600,7 @@ public:
// jvmti support: // jvmti support:
void post_compiled_method_load_event(); void post_compiled_method_load_event();
jmethodID get_and_cache_jmethod_id();
// verify operations // verify operations
void verify(); void verify();
......
...@@ -217,21 +217,21 @@ jvmtiError JvmtiCodeBlobEvents::generate_dynamic_code_events(JvmtiEnv* env) { ...@@ -217,21 +217,21 @@ jvmtiError JvmtiCodeBlobEvents::generate_dynamic_code_events(JvmtiEnv* env) {
class nmethodDesc: public CHeapObj { class nmethodDesc: public CHeapObj {
private: private:
methodHandle _method; jmethodID _jmethod_id;
address _code_begin; address _code_begin;
address _code_end; address _code_end;
jvmtiAddrLocationMap* _map; jvmtiAddrLocationMap* _map;
jint _map_length; jint _map_length;
public: public:
nmethodDesc(methodHandle method, address code_begin, address code_end, nmethodDesc(jmethodID jmethod_id, address code_begin, address code_end,
jvmtiAddrLocationMap* map, jint map_length) { jvmtiAddrLocationMap* map, jint map_length) {
_method = method; _jmethod_id = jmethod_id;
_code_begin = code_begin; _code_begin = code_begin;
_code_end = code_end; _code_end = code_end;
_map = map; _map = map;
_map_length = map_length; _map_length = map_length;
} }
methodHandle method() const { return _method; } jmethodID jmethod_id() const { return _jmethod_id; }
address code_begin() const { return _code_begin; } address code_begin() const { return _code_begin; }
address code_end() const { return _code_end; } address code_end() const { return _code_end; }
jvmtiAddrLocationMap* map() const { return _map; } jvmtiAddrLocationMap* map() const { return _map; }
...@@ -323,8 +323,7 @@ void nmethodCollector::do_nmethod(nmethod* nm) { ...@@ -323,8 +323,7 @@ void nmethodCollector::do_nmethod(nmethod* nm) {
JvmtiCodeBlobEvents::build_jvmti_addr_location_map(nm, &map, &map_length); JvmtiCodeBlobEvents::build_jvmti_addr_location_map(nm, &map, &map_length);
// record the nmethod details // record the nmethod details
methodHandle mh(nm->method()); nmethodDesc* snm = new nmethodDesc(nm->get_and_cache_jmethod_id(),
nmethodDesc* snm = new nmethodDesc(mh,
nm->code_begin(), nm->code_begin(),
nm->code_end(), nm->code_end(),
map, map,
...@@ -367,8 +366,7 @@ jvmtiError JvmtiCodeBlobEvents::generate_compiled_method_load_events(JvmtiEnv* e ...@@ -367,8 +366,7 @@ jvmtiError JvmtiCodeBlobEvents::generate_compiled_method_load_events(JvmtiEnv* e
// iterate over the list and post an event for each nmethod // iterate over the list and post an event for each nmethod
nmethodDesc* nm_desc = collector.first(); nmethodDesc* nm_desc = collector.first();
while (nm_desc != NULL) { while (nm_desc != NULL) {
methodOop method = nm_desc->method()(); jmethodID mid = nm_desc->jmethod_id();
jmethodID mid = method->jmethod_id();
assert(mid != NULL, "checking"); assert(mid != NULL, "checking");
JvmtiExport::post_compiled_method_load(env, mid, JvmtiExport::post_compiled_method_load(env, mid,
(jint)(nm_desc->code_end() - nm_desc->code_begin()), (jint)(nm_desc->code_end() - nm_desc->code_begin()),
......
...@@ -66,6 +66,7 @@ jobject JNIHandles::make_local(JNIEnv* env, oop obj) { ...@@ -66,6 +66,7 @@ jobject JNIHandles::make_local(JNIEnv* env, oop obj) {
jobject JNIHandles::make_global(Handle obj) { jobject JNIHandles::make_global(Handle obj) {
assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC");
jobject res = NULL; jobject res = NULL;
if (!obj.is_null()) { if (!obj.is_null()) {
// ignore null handles // ignore null handles
...@@ -81,6 +82,7 @@ jobject JNIHandles::make_global(Handle obj) { ...@@ -81,6 +82,7 @@ jobject JNIHandles::make_global(Handle obj) {
jobject JNIHandles::make_weak_global(Handle obj) { jobject JNIHandles::make_weak_global(Handle obj) {
assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC");
jobject res = NULL; jobject res = NULL;
if (!obj.is_null()) { if (!obj.is_null()) {
// ignore null handles // ignore null handles
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册