提交 922f4342 编写于 作者: C coleenp

7199068: NPG: SharedSkipVerify is meaningless

Summary: Remove the SharedSkipVerify flag
Reviewed-by: kamg, sspitsyn, coleenp
Contributed-by: harold.seigel@oracle.com
上级 411a385e
...@@ -413,8 +413,7 @@ char* java_lang_String::as_utf8_string(oop java_string, int start, int len) { ...@@ -413,8 +413,7 @@ char* java_lang_String::as_utf8_string(oop java_string, int start, int len) {
} }
bool java_lang_String::equals(oop java_string, jchar* chars, int len) { bool java_lang_String::equals(oop java_string, jchar* chars, int len) {
assert(SharedSkipVerify || assert(java_string->klass() == SystemDictionary::String_klass(),
java_string->klass() == SystemDictionary::String_klass(),
"must be java_string"); "must be java_string");
typeArrayOop value = java_lang_String::value(java_string); typeArrayOop value = java_lang_String::value(java_string);
int offset = java_lang_String::offset(java_string); int offset = java_lang_String::offset(java_string);
......
...@@ -1243,10 +1243,6 @@ void Universe::print_heap_after_gc(outputStream* st, bool ignore_extended) { ...@@ -1243,10 +1243,6 @@ void Universe::print_heap_after_gc(outputStream* st, bool ignore_extended) {
} }
void Universe::verify(bool silent, VerifyOption option) { void Universe::verify(bool silent, VerifyOption option) {
if (SharedSkipVerify) {
return;
}
// The use of _verify_in_progress is a temporary work around for // The use of _verify_in_progress is a temporary work around for
// 6320749. Don't bother with a creating a class to set and clear // 6320749. Don't bother with a creating a class to set and clear
// it since it is only used in this method and the control flow is // it since it is only used in this method and the control flow is
......
...@@ -356,12 +356,11 @@ void Klass::set_next_sibling(Klass* s) { ...@@ -356,12 +356,11 @@ void Klass::set_next_sibling(Klass* s) {
} }
void Klass::append_to_sibling_list() { void Klass::append_to_sibling_list() {
debug_only(if (!SharedSkipVerify) verify();) debug_only(verify();)
// add ourselves to superklass' subklass list // add ourselves to superklass' subklass list
InstanceKlass* super = superklass(); InstanceKlass* super = superklass();
if (super == NULL) return; // special case: class Object if (super == NULL) return; // special case: class Object
assert(SharedSkipVerify || assert((!super->is_interface() // interfaces cannot be supers
(!super->is_interface() // interfaces cannot be supers
&& (super->superklass() == NULL || !is_interface())), && (super->superklass() == NULL || !is_interface())),
"an interface can only be a subklass of Object"); "an interface can only be a subklass of Object");
Klass* prev_first_subklass = super->subklass_oop(); Klass* prev_first_subklass = super->subklass_oop();
...@@ -371,7 +370,7 @@ void Klass::append_to_sibling_list() { ...@@ -371,7 +370,7 @@ void Klass::append_to_sibling_list() {
} }
// make ourselves the superklass' first subklass // make ourselves the superklass' first subklass
super->set_subklass(this); super->set_subklass(this);
debug_only(if (!SharedSkipVerify) verify();) debug_only(verify();)
} }
void Klass::remove_from_sibling_list() { void Klass::remove_from_sibling_list() {
......
...@@ -3542,10 +3542,6 @@ class CommandLineFlags { ...@@ -3542,10 +3542,6 @@ class CommandLineFlags {
product(uintx, SharedDummyBlockSize, 0, \ product(uintx, SharedDummyBlockSize, 0, \
"Size of dummy block used to shift heap addresses (in bytes)") \ "Size of dummy block used to shift heap addresses (in bytes)") \
\ \
diagnostic(bool, SharedSkipVerify, false, \
"Skip assert() and verify() which page-in unwanted shared " \
"objects. ") \
\
diagnostic(bool, EnableInvokeDynamic, true, \ diagnostic(bool, EnableInvokeDynamic, true, \
"support JSR 292 (method handles, invokedynamic, " \ "support JSR 292 (method handles, invokedynamic, " \
"anonymous classes") \ "anonymous classes") \
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
oop* HandleArea::allocate_handle(oop obj) { oop* HandleArea::allocate_handle(oop obj) {
assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark"); assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark"); assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
assert(SharedSkipVerify || obj->is_oop(), "sanity check"); assert(obj->is_oop(), "sanity check");
return real_allocate_handle(obj); return real_allocate_handle(obj);
} }
......
...@@ -110,11 +110,11 @@ class Handle VALUE_OBJ_CLASS_SPEC { ...@@ -110,11 +110,11 @@ class Handle VALUE_OBJ_CLASS_SPEC {
/* Constructors */ \ /* Constructors */ \
type##Handle () : Handle() {} \ type##Handle () : Handle() {} \
type##Handle (type##Oop obj) : Handle((oop)obj) { \ type##Handle (type##Oop obj) : Handle((oop)obj) { \
assert(SharedSkipVerify || is_null() || ((oop)obj)->is_a(), \ assert(is_null() || ((oop)obj)->is_a(), \
"illegal type"); \ "illegal type"); \
} \ } \
type##Handle (Thread* thread, type##Oop obj) : Handle(thread, (oop)obj) { \ type##Handle (Thread* thread, type##Oop obj) : Handle(thread, (oop)obj) { \
assert(SharedSkipVerify || is_null() || ((oop)obj)->is_a(), "illegal type"); \ assert(is_null() || ((oop)obj)->is_a(), "illegal type"); \
} \ } \
\ \
/* Operators for ease of use */ \ /* Operators for ease of use */ \
...@@ -201,11 +201,11 @@ class instanceKlassHandle : public KlassHandle { ...@@ -201,11 +201,11 @@ class instanceKlassHandle : public KlassHandle {
/* Constructors */ /* Constructors */
instanceKlassHandle () : KlassHandle() {} instanceKlassHandle () : KlassHandle() {}
instanceKlassHandle (const Klass* k) : KlassHandle(k) { instanceKlassHandle (const Klass* k) : KlassHandle(k) {
assert(SharedSkipVerify || k == NULL || k->oop_is_instance(), assert(k == NULL || k->oop_is_instance(),
"illegal type"); "illegal type");
} }
instanceKlassHandle (Thread* thread, const Klass* k) : KlassHandle(thread, k) { instanceKlassHandle (Thread* thread, const Klass* k) : KlassHandle(thread, k) {
assert(SharedSkipVerify || k == NULL || k->oop_is_instance(), assert(k == NULL || k->oop_is_instance(),
"illegal type"); "illegal type");
} }
/* Access to klass part */ /* Access to klass part */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册