< prev index next >
src/hotspot/share/gc/g1/g1Arguments.cpp
Print this page
rev 50629 : imported patch 8204084-stefanj-review2
rev 50631 : [mq]: 8204084-gtest-fixes
@@ -52,25 +52,25 @@
FREE_C_HEAP_ARRAY(char, type_list);
}
}
void G1Arguments::parse_verification_type(const char* type) {
- if (strcmp(type, "young-only") == 0) {
- G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyYoungOnly);
- } else if (strcmp(type, "initial-mark") == 0) {
- G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyInitialMark);
+ if (strcmp(type, "young-normal") == 0) {
+ G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyYoungNormal);
+ } else if (strcmp(type, "concurrent-start") == 0) {
+ G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyConcurrentStart);
} else if (strcmp(type, "mixed") == 0) {
G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyMixed);
} else if (strcmp(type, "remark") == 0) {
G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyRemark);
} else if (strcmp(type, "cleanup") == 0) {
G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyCleanup);
} else if (strcmp(type, "full") == 0) {
G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyFull);
} else {
log_warning(gc, verify)("VerifyGCType: '%s' is unknown. Available types are: "
- "young-only, initial-mark, mixed, remark, cleanup and full", type);
+ "young-normal, concurrent-start, mixed, remark, cleanup and full", type);
}
}
void G1Arguments::initialize() {
GCArguments::initialize();
< prev index next >