8149038: SIGSEGV at frame::is_interpreted_frame_valid -> StubRoutines::SafeFetchN

Backout change for 8146984 but add an alignment check which may have caught original bug.

Reviewed-by: mgronlun, dcubed
This commit is contained in:
Coleen Phillimore 2016-02-04 18:25:02 -05:00
parent 88711a6b2d
commit 546bba34d7

View File

@ -55,7 +55,6 @@
#include "runtime/relocator.hpp"
#include "runtime/sharedRuntime.hpp"
#include "runtime/signature.hpp"
#include "runtime/stubRoutines.hpp"
#include "utilities/quickSort.hpp"
#include "utilities/xmlstream.hpp"
@ -2099,29 +2098,24 @@ void Method::clear_jmethod_ids(ClassLoaderData* loader_data) {
}
bool Method::has_method_vptr(const void* ptr) {
// Use SafeFetch to check if this is a valid pointer first
// This assumes that the vtbl pointer is the first word of a C++ object.
// This assumption is also in universe.cpp patch_klass_vtable
intptr_t this_vptr = SafeFetchN((intptr_t*)ptr, intptr_t(1));
if (this_vptr == 1) {
return false;
}
Method m;
return (intptr_t)dereference_vptr(&m) == this_vptr;
// This assumes that the vtbl pointer is the first word of a C++ object.
// This assumption is also in universe.cpp patch_klass_vtble
return dereference_vptr(&m) == dereference_vptr(ptr);
}
// Check that this pointer is valid by checking that the vtbl pointer matches
bool Method::is_valid_method() const {
if (this == NULL) {
return false;
}
// Quick sanity check on pointer.
if ((intptr_t(this) & (wordSize-1)) != 0) {
} else if ((intptr_t(this) & (wordSize-1)) != 0) {
// Quick sanity check on pointer.
return false;
} else if (!is_metaspace_object()) {
return false;
} else {
return has_method_vptr((const void*)this);
}
return has_method_vptr(this);
}
#ifndef PRODUCT