8153026: Change logging tag 'verboseverification' to 'verification'
Changed UL tag to 'verification' Reviewed-by: hseigel, lfoltan
This commit is contained in:
parent
9438549080
commit
d077700179
@ -177,7 +177,7 @@ bool Verifier::verify(instanceKlassHandle klass, Verifier::Mode mode, bool shoul
|
||||
if (can_failover && !HAS_PENDING_EXCEPTION &&
|
||||
(exception_name == vmSymbols::java_lang_VerifyError() ||
|
||||
exception_name == vmSymbols::java_lang_ClassFormatError())) {
|
||||
log_info(verboseverification)("Fail over class verification to old verifier for: %s", klassName);
|
||||
log_info(verification)("Fail over class verification to old verifier for: %s", klassName);
|
||||
log_info(classinit)("Fail over class verification to old verifier for: %s", klassName);
|
||||
exception_name = inference_verify(
|
||||
klass, message_buffer, message_buffer_len, THREAD);
|
||||
@ -193,8 +193,8 @@ bool Verifier::verify(instanceKlassHandle klass, Verifier::Mode mode, bool shoul
|
||||
if (log_is_enabled(Info, classinit)){
|
||||
log_end_verification(Log(classinit)::info_stream(), klassName, exception_name, THREAD);
|
||||
}
|
||||
if (log_is_enabled(Info, verboseverification)){
|
||||
log_end_verification(Log(verboseverification)::info_stream(), klassName, exception_name, THREAD);
|
||||
if (log_is_enabled(Info, verification)){
|
||||
log_end_verification(Log(verification)::info_stream(), klassName, exception_name, THREAD);
|
||||
}
|
||||
|
||||
if (HAS_PENDING_EXCEPTION) {
|
||||
@ -268,7 +268,7 @@ Symbol* Verifier::inference_verify(
|
||||
}
|
||||
|
||||
ResourceMark rm(THREAD);
|
||||
log_info(verboseverification)("Verifying class %s with old format", klass->external_name());
|
||||
log_info(verification)("Verifying class %s with old format", klass->external_name());
|
||||
|
||||
jclass cls = (jclass) JNIHandles::make_local(env, klass->java_mirror());
|
||||
jint result;
|
||||
@ -580,7 +580,7 @@ TypeOrigin ClassVerifier::ref_ctx(const char* sig, TRAPS) {
|
||||
}
|
||||
|
||||
void ClassVerifier::verify_class(TRAPS) {
|
||||
log_info(verboseverification)("Verifying class %s with new format", _klass->external_name());
|
||||
log_info(verification)("Verifying class %s with new format", _klass->external_name());
|
||||
|
||||
Array<Method*>* methods = _klass->methods();
|
||||
int num_methods = methods->length();
|
||||
@ -600,7 +600,7 @@ void ClassVerifier::verify_class(TRAPS) {
|
||||
}
|
||||
|
||||
if (was_recursively_verified()){
|
||||
log_info(verboseverification)("Recursive verification detected for: %s", _klass->external_name());
|
||||
log_info(verification)("Recursive verification detected for: %s", _klass->external_name());
|
||||
log_info(classinit)("Recursive verification detected for: %s",
|
||||
_klass->external_name());
|
||||
}
|
||||
@ -609,7 +609,7 @@ void ClassVerifier::verify_class(TRAPS) {
|
||||
void ClassVerifier::verify_method(const methodHandle& m, TRAPS) {
|
||||
HandleMark hm(THREAD);
|
||||
_method = m; // initialize _method
|
||||
log_info(verboseverification)("Verifying method %s", m->name_and_sig_as_C_string());
|
||||
log_info(verification)("Verifying method %s", m->name_and_sig_as_C_string());
|
||||
|
||||
// For clang, the only good constant format string is a literal constant format string.
|
||||
#define bad_type_msg "Bad type on operand stack in %s"
|
||||
@ -656,9 +656,9 @@ void ClassVerifier::verify_method(const methodHandle& m, TRAPS) {
|
||||
StackMapTable stackmap_table(&reader, ¤t_frame, max_locals, max_stack,
|
||||
code_data, code_length, CHECK_VERIFY(this));
|
||||
|
||||
if (log_is_enabled(Info, verboseverification)) {
|
||||
if (log_is_enabled(Info, verification)) {
|
||||
ResourceMark rm(THREAD);
|
||||
stackmap_table.print_on(Log(verboseverification)::info_stream());
|
||||
stackmap_table.print_on(Log(verification)::info_stream());
|
||||
}
|
||||
|
||||
RawBytecodeStream bcs(m);
|
||||
@ -698,10 +698,10 @@ void ClassVerifier::verify_method(const methodHandle& m, TRAPS) {
|
||||
VerificationType type, type2;
|
||||
VerificationType atype;
|
||||
|
||||
if (log_is_enabled(Info, verboseverification)) {
|
||||
if (log_is_enabled(Info, verification)) {
|
||||
ResourceMark rm(THREAD);
|
||||
current_frame.print_on(Log(verboseverification)::info_stream());
|
||||
log_info(verboseverification)("offset = %d, opcode = %s", bci, Bytecodes::name(opcode));
|
||||
current_frame.print_on(Log(verification)::info_stream());
|
||||
log_info(verification)("offset = %d, opcode = %s", bci, Bytecodes::name(opcode));
|
||||
}
|
||||
|
||||
// Make sure wide instruction is in correct format
|
||||
@ -2522,9 +2522,9 @@ void ClassVerifier::verify_invoke_init(
|
||||
verify_error(ErrorContext::bad_code(bci),
|
||||
"Bad <init> method call from after the start of a try block");
|
||||
return;
|
||||
} else if (log_is_enabled(Info, verboseverification)) {
|
||||
} else if (log_is_enabled(Info, verification)) {
|
||||
ResourceMark rm(THREAD);
|
||||
log_info(verboseverification)("Survived call to ends_in_athrow(): %s",
|
||||
log_info(verification)("Survived call to ends_in_athrow(): %s",
|
||||
current_class()->name()->as_C_string());
|
||||
}
|
||||
}
|
||||
|
@ -96,7 +96,7 @@
|
||||
LOG_TAG(thread) \
|
||||
LOG_TAG(tlab) \
|
||||
LOG_TAG(time) \
|
||||
LOG_TAG(verboseverification) \
|
||||
LOG_TAG(verification) \
|
||||
LOG_TAG(verify) \
|
||||
LOG_TAG(vmoperation) \
|
||||
LOG_TAG(vtables) \
|
||||
|
@ -433,7 +433,7 @@ static AliasedFlag const removed_develop_logging_flags[] = {
|
||||
{ "TraceStartupTime", "-Xlog:startuptime" },
|
||||
{ "TraceVMOperation", "-Xlog:vmoperation=debug" },
|
||||
{ "PrintVtables", "-Xlog:vtables=debug" },
|
||||
{ "VerboseVerification", "-Xlog:verboseverification" },
|
||||
{ "VerboseVerification", "-Xlog:verification" },
|
||||
{ NULL, NULL }
|
||||
};
|
||||
#endif //PRODUCT
|
||||
|
@ -57,7 +57,7 @@ public class RemovedDevelopFlagsTest {
|
||||
exec("TraceStartupTime", "-Xlog:startuptime");
|
||||
exec("TraceVMOperation", "-Xlog:vmoperation=debug");
|
||||
exec("PrintVtables", "-Xlog:vtables=debug");
|
||||
exec("VerboseVerification", "-Xlog:verboseverification");
|
||||
exec("VerboseVerification", "-Xlog:verification");
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -24,46 +24,46 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8150083
|
||||
* @summary verboseverification=info output should have output from the code
|
||||
* @summary verification=info output should have output from the code
|
||||
* @library /testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build jdk.test.lib.OutputAnalyzer jdk.test.lib.ProcessTools
|
||||
* @run driver VerboseVerificationTest
|
||||
* @run driver VerificationTest
|
||||
*/
|
||||
|
||||
import jdk.test.lib.OutputAnalyzer;
|
||||
import jdk.test.lib.ProcessTools;
|
||||
|
||||
public class VerboseVerificationTest {
|
||||
public class VerificationTest {
|
||||
static void analyzeOutputOn(ProcessBuilder pb) throws Exception {
|
||||
OutputAnalyzer output = new OutputAnalyzer(pb.start());
|
||||
output.shouldContain("[verboseverification]");
|
||||
output.shouldContain("Verifying class VerboseVerificationTest$InternalClass with new format");
|
||||
output.shouldContain("Verifying method VerboseVerificationTest$InternalClass.<init>()V");
|
||||
output.shouldContain("End class verification for: VerboseVerificationTest$InternalClass");
|
||||
output.shouldContain("[verification]");
|
||||
output.shouldContain("Verifying class VerificationTest$InternalClass with new format");
|
||||
output.shouldContain("Verifying method VerificationTest$InternalClass.<init>()V");
|
||||
output.shouldContain("End class verification for: VerificationTest$InternalClass");
|
||||
output.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
static void analyzeOutputOff(ProcessBuilder pb) throws Exception {
|
||||
OutputAnalyzer output = new OutputAnalyzer(pb.start());
|
||||
output.shouldNotContain("[verboseverification]");
|
||||
output.shouldNotContain("[verification]");
|
||||
output.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:verboseverification=info",
|
||||
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:verification=info",
|
||||
InternalClass.class.getName());
|
||||
analyzeOutputOn(pb);
|
||||
|
||||
pb = ProcessTools.createJavaProcessBuilder("-Xlog:verboseverification=off",
|
||||
pb = ProcessTools.createJavaProcessBuilder("-Xlog:verification=off",
|
||||
InternalClass.class.getName());
|
||||
analyzeOutputOff(pb);
|
||||
}
|
||||
|
||||
public static class InternalClass {
|
||||
public static void main(String[] args) throws Exception {
|
||||
System.out.println("VerboseVerificationTest");
|
||||
System.out.println("VerificationTest");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user