Skip to content

Commit 4d6f318

Browse files
committedDec 15, 2020
8257726: Make -XX:+StressLdcRewrite option a diagnostic option
Reviewed-by: lfoltan, stuefe, dcubed
1 parent 8bf46c7 commit 4d6f318

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎src/hotspot/share/runtime/globals.hpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -881,11 +881,11 @@ const intx ObjectAlignmentInBytes = 8;
881881
product(ccstr, TraceJVMTI, NULL, \
882882
"Trace flags for JVMTI functions and events") \
883883
\
884-
/* This option can change an EMCP method into an obsolete method. */ \
885-
/* This can affect tests that except specific methods to be EMCP. */ \
886-
/* This option should be used with caution. */ \
887-
product(bool, StressLdcRewrite, false, \
888-
"Force ldc -> ldc_w rewrite during RedefineClasses") \
884+
product(bool, StressLdcRewrite, false, DIAGNOSTIC, \
885+
"Force ldc -> ldc_w rewrite during RedefineClasses. " \
886+
"This option can change an EMCP method into an obsolete method " \
887+
"and can affect tests that expect specific methods to be EMCP. " \
888+
"This option should be used with caution.") \
889889
\
890890
product(bool, AllowRedefinitionToAddDeleteMethods, false, \
891891
"(Deprecated) Allow redefinition to add and delete private " \

‎test/jdk/java/lang/instrument/RedefineMethodWithAnnotations.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -68,7 +68,7 @@ cp "${TESTSRC}"/RedefineMethodWithAnnotationsAnnotations.java \
6868
RedefineMethodWithAnnotationsAnnotations.java
6969

7070
"${JAVA}" ${TESTVMOPTS} -javaagent:RedefineMethodWithAnnotationsAgent.jar \
71-
-XX:+StressLdcRewrite -XX:+IgnoreUnrecognizedVMOptions \
71+
-XX:+UnlockDiagnosticVMOptions -XX:+StressLdcRewrite -XX:+IgnoreUnrecognizedVMOptions \
7272
-cp "${TESTCLASSES}" RedefineMethodWithAnnotationsApp > output.log 2>&1
7373
cat output.log
7474

0 commit comments

Comments
 (0)
Please sign in to comment.