From vicente.romero at oracle.com Thu May 3 02:00:12 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 03 May 2018 02:00:12 +0000 Subject: hg: amber/amber: fixing several failing regression tests Message-ID: <201805030200.w4320Cws026450@aojmv0008.oracle.com> Changeset: c071cbedc651 Author: vromero Date: 2018-05-02 18:46 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/c071cbedc651 fixing several failing regression tests ! src/java.base/share/classes/java/lang/Enum.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Constables.java ! test/langtools/tools/javac/annotations/typeAnnotations/referenceinfos/Driver.java ! test/langtools/tools/javac/generics/inference/8176534/TestUncheckedCalls.java ! test/langtools/tools/javac/lambda/lambdaNaming/TestSerializedLambdaNameStability.java ! test/langtools/tools/javac/lvti/harness/NonDenotableTest.java From kevinb at google.com Thu May 3 14:31:33 2018 From: kevinb at google.com (Kevin Bourrillion) Date: Thu, 3 May 2018 07:31:33 -0700 Subject: IDE (IntelliJ IDEA) support for Raw String Literals In-Reply-To: References: Message-ID: Hi Anna, I have a couple other requests for IntelliJ's behavior with raw string literals. It would be helpful for me if I could get some sense of how likely these features would be to be implemented. The requests apply to either of these cases: - Case 1: If we decide to implement automatic stripIndent behavior for RSLs - Case 2: If we decide not to, but for the particular string literal in question, IntelliJ recognizes that stripIndent is being called. In either of these cases, - Will IntelliJ automatically maintain the leading indentation inside the RSL in the same way it handles leading indentation outside it? - Of course, there is an issue in "Case 2" that when you are first typing you won't have *typed* stripIndent yet, so it won't know whether you are planning to. There could be a user preference that automatically inserts `.stripindent() at the end when you type the opening delimiter; that would help. - Could IntelliJ compute the region of the source file that will be included in the resulting runtime constant, and render that boundary visually on the screen (either as a border, or a different shading for the region)? - When the user is highlighting text, as long as the endpoints are both within the delimiters, can the highlighted region be automatically restricted to that boundary? That is, exclude whitespace that is recognized as indentation that will be stripped. This would make pasting raw text to a different file much cleaner/easier. Thanks! On Fri, Apr 20, 2018 at 9:36 AM, Anna Kozlova wrote: > Hi guys, > > we started developing the support for raw literals and would like to ask > what do you think. > > Given a string `ab` and press ` at , what is the expected > behavior? > > 1. Just insert tick: result is `a`b` where it would be parsed as raw > literal (`a`), unknown identifier (b) and new raw literal till the end of > file. Second ` at the same position will fix parsing. If one tick was > intended, one would need to call an intention to fix the number of quotes > around initial raw literal. > > 2. Add additional quotes around initial raw literal: result is ``a`b``. > Literal is valid but to get `a` + `b` expression, one need to go to the > string start/end and change the number of ticks or call an intention. > > It looks like to me that (1) would be needed more often, like each time > when one needs to dynamically compose a string. (2) is more about injected > code in the raw strings which IDE could treat differently anyway. (It's > possible to create an IDE switcher between these strategies but still the > default value would be needed.) I would love to see other use cases as > well. > > Thank you, > Anna > -- Kevin Bourrillion | Java Librarian | Google, Inc. | kevinb at google.com From maurizio.cimadamore at oracle.com Thu May 3 19:56:51 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 19:56:51 +0000 Subject: hg: amber/amber: 69 new changesets Message-ID: <201805031956.w43JutZ1019291@aojmv0008.oracle.com> Changeset: 4bb58f644e4e Author: eosterlund Date: 2018-04-26 20:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/4bb58f644e4e 8201543: Modularize C1 GC barriers Reviewed-by: pliden, rbackman, rkennke ! make/hotspot/lib/JvmFeatures.gmk ! src/hotspot/cpu/aarch64/c1_CodeStubs_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_MacroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_MacroAssembler_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.hpp ! src/hotspot/cpu/arm/c1_CodeStubs_arm.cpp ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/arm/c1_Runtime1_arm.cpp ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.hpp ! src/hotspot/cpu/ppc/c1_CodeStubs_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.hpp ! src/hotspot/cpu/s390/c1_CodeStubs_s390.cpp ! src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp ! src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp ! src/hotspot/cpu/s390/c1_Runtime1_s390.cpp ! src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.hpp ! src/hotspot/cpu/sparc/c1_CodeStubs_sparc.cpp ! src/hotspot/cpu/sparc/c1_LIRGenerator_sparc.cpp ! src/hotspot/cpu/sparc/c1_MacroAssembler_sparc.hpp ! src/hotspot/cpu/sparc/c1_Runtime1_sparc.cpp ! src/hotspot/cpu/sparc/gc/g1/g1BarrierSetAssembler_sparc.cpp ! src/hotspot/cpu/sparc/gc/g1/g1BarrierSetAssembler_sparc.hpp ! src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp ! src/hotspot/cpu/x86/c1_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/c1_MacroAssembler_x86.hpp ! src/hotspot/cpu/x86/c1_Runtime1_x86.cpp ! src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.hpp ! src/hotspot/share/c1/c1_CodeStubs.hpp + src/hotspot/share/c1/c1_Decorators.hpp ! src/hotspot/share/c1/c1_LIRAssembler.hpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/c1/c1_MacroAssembler.hpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/c1/c1_Runtime1.hpp + src/hotspot/share/gc/g1/c1/g1BarrierSetC1.cpp + src/hotspot/share/gc/g1/c1/g1BarrierSetC1.hpp ! src/hotspot/share/gc/g1/g1BarrierSet.cpp ! src/hotspot/share/gc/shared/barrierSet.hpp + src/hotspot/share/gc/shared/c1/barrierSetC1.cpp + src/hotspot/share/gc/shared/c1/barrierSetC1.hpp + src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.cpp + src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.hpp + src/hotspot/share/gc/shared/c1/modRefBarrierSetC1.cpp + src/hotspot/share/gc/shared/c1/modRefBarrierSetC1.hpp ! src/hotspot/share/gc/shared/cardTableBarrierSet.cpp ! src/hotspot/share/gc/shared/cardTableBarrierSet.hpp ! src/hotspot/share/gc/shared/modRefBarrierSet.hpp ! src/hotspot/share/oops/accessBackend.hpp ! src/hotspot/share/oops/accessDecorators.hpp ! src/hotspot/share/utilities/macros.hpp Changeset: 1ca3406a2101 Author: stuefe Date: 2018-04-26 15:41 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/1ca3406a2101 8202325: [aix] disable warnings-as-errors by default Reviewed-by: goetz, erikj, ihse ! make/autoconf/flags-cflags.m4 Changeset: 22eb3e22f245 Author: thartmann Date: 2018-04-27 07:59 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/22eb3e22f245 8202179: Compilation fails with assert(n->is_expensive()) failed: expensive nodes with non-null control here only Summary: Only treat the SqrtFNode as expensive if the control input is not NULL. Reviewed-by: kvn, roland ! src/hotspot/share/opto/node.cpp ! src/hotspot/share/opto/subnode.hpp Changeset: f276b348ec14 Author: kbarrett Date: 2018-04-27 03:57 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/f276b348ec14 8202230: Provide accessors for JNIHandles storage objects Summary: Add JNIHandles::[weak_]global_handles(). Reviewed-by: coleenp, tschatzl ! src/hotspot/share/runtime/jniHandles.cpp ! src/hotspot/share/runtime/jniHandles.hpp Changeset: c822dd1a3b66 Author: eosterlund Date: 2018-04-27 10:59 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/c822dd1a3b66 8202082: Remove explicit CMS checks in CardTableBarrierSetAssembler Reviewed-by: shade, kbarrett ! src/hotspot/cpu/aarch64/gc/shared/cardTableBarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/ppc/gc/shared/cardTableBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/x86/gc/shared/cardTableBarrierSetAssembler_x86.cpp Changeset: 358be4680d12 Author: tschatzl Date: 2018-04-27 12:06 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses Summary: Regularly try to drain task queues. This helps memory usage and performance during garbage collection. Reviewed-by: sjohanss, sangheki - src/hotspot/share/gc/g1/bufferingOopClosure.hpp ! src/hotspot/share/gc/g1/g1Arguments.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp ! src/hotspot/share/gc/g1/g1OopClosures.cpp ! src/hotspot/share/gc/g1/g1OopClosures.hpp ! src/hotspot/share/gc/g1/g1OopClosures.inline.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.cpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.inline.hpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/g1RemSet.hpp ! src/hotspot/share/gc/g1/g1RootClosures.cpp ! src/hotspot/share/gc/g1/g1RootClosures.hpp ! src/hotspot/share/gc/g1/g1RootProcessor.cpp ! src/hotspot/share/gc/g1/g1RootProcessor.hpp ! src/hotspot/share/gc/g1/g1SharedClosures.hpp ! src/hotspot/share/gc/shared/taskqueue.hpp ! src/hotspot/share/gc/shared/taskqueue.inline.hpp ! src/hotspot/share/utilities/ticks.hpp ! src/hotspot/share/utilities/ticks.inline.hpp - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp Changeset: 64d4f6fa21e5 Author: clanger Date: 2018-04-27 13:09 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/64d4f6fa21e5 8202367: AIX build broken after JDK-8201543 Reviewed-by: eosterlund, shade, mdoerr ! src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.cpp Changeset: 61dbbdd6b857 Author: hseigel Date: 2018-04-27 08:45 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/61dbbdd6b857 8202204: Rename hotspot runtime jtreg constantPool ConstantPool directories Summary: Move the tests in the constantPool directory to a new directory named AccModule. Reviewed-by: dholmes, gtriantafill + test/hotspot/jtreg/runtime/AccModule/ACCModule52.java + test/hotspot/jtreg/runtime/AccModule/ConstModule.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java Changeset: f82a7db36d30 Author: chrisphi Date: 2018-04-25 12:21 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/f82a7db36d30 8201509: Zero: S390 31bit atomic_copy64 inline assembler is wrong Summary: The inline assembler for the S390 (S390 and not _LP64) has src and dst reversed thereby corrupting data Reviewed-by: shade Contributed-by: Martin Balao ! src/hotspot/os_cpu/linux_zero/os_linux_zero.hpp Changeset: 938478a66ad7 Author: kvn Date: 2018-04-27 08:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/938478a66ad7 8202273: [AOT] Graal does not support the CMS collector Summary: avoid running AOT and JVMCI tests with CMS Reviewed-by: dcubed ! test/hotspot/jtreg/TEST.groups Changeset: 3c90c742952e Author: erikj Date: 2018-04-27 09:57 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3c90c742952e 8202382: Filter docs modules Reviewed-by: erikj Contributed-by: archana.nogriya at uk.ibm.com ! make/Docs.gmk Changeset: 1871c5d07caf Author: jjg Date: 2018-04-27 15:55 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/1871c5d07caf 8201622: Reduce unnecessary Package.complete() calls in javadoc Reviewed-by: jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/model/JavacElements.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/WorkArounds.java Changeset: 8b9c78f0a712 Author: rgoel Date: 2018-04-30 11:59 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/8b9c78f0a712 8179071: Month value is inconsistent between CLDR and Java in some locales Summary: handled Language aliases from CLDR SupplementalMetaData Reviewed-by: naoto ! make/jdk/src/classes/build/tools/cldrconverter/CLDRConverter.java ! make/jdk/src/classes/build/tools/cldrconverter/ResourceBundleGenerator.java ! make/jdk/src/classes/build/tools/cldrconverter/SupplementalMetadataParseHandler.java ! src/java.base/share/classes/sun/util/cldr/CLDRLocaleProviderAdapter.java ! src/java.base/share/classes/sun/util/locale/provider/LocaleDataMetaInfo.java + test/jdk/java/util/Locale/Bug8179071.java ! test/jdk/sun/text/resources/LocaleData.cldr ! test/jdk/sun/text/resources/LocaleDataTest.java ! test/jdk/tools/jlink/plugins/IncludeLocalesPluginTest.java Changeset: 96d4658eb7f2 Author: redestad Date: 2018-04-30 09:15 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/96d4658eb7f2 8201650: Move iteration order randomization of unmodifiable Set and Map to iterators Reviewed-by: smarks, jiangli ! src/java.base/share/classes/java/util/ImmutableCollections.java Changeset: dbfef18ad510 Author: mbaesken Date: 2018-04-24 17:56 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/dbfef18ad510 8202200: set INCLUDE_SA to false on s390x by default Reviewed-by: ihse, erikj, jgeorge ! make/autoconf/jdk-options.m4 ! src/jdk.hotspot.agent/linux/native/libsaproc/libproc.h Changeset: b708a1e34fcc Author: redestad Date: 2018-04-30 11:48 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/b708a1e34fcc 8202417: [TESTBUG] Broken hard-coded dependency in serviceability/sa/ClhsdbJhisto.java Reviewed-by: alanb ! test/hotspot/jtreg/serviceability/sa/ClhsdbJhisto.java Changeset: 3a64eea72624 Author: pliden Date: 2018-04-30 12:19 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/3a64eea72624 8202364: Add GCConfig::hs_err_name() to avoid GC-specific code in error reporting Reviewed-by: eosterlund, shade ! src/hotspot/share/gc/shared/gcConfig.cpp ! src/hotspot/share/gc/shared/gcConfig.hpp ! src/hotspot/share/utilities/vmError.cpp Changeset: 764aea6237ad Author: pliden Date: 2018-04-30 12:19 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/764aea6237ad 8202366: Add macro for common loop in GCConfig Reviewed-by: eosterlund, shade ! src/hotspot/share/gc/shared/gcConfig.cpp Changeset: 84d0fe3cefd4 Author: jlahoda Date: 2018-04-30 15:03 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/84d0fe3cefd4 8202105: Console echo is disabled when exiting jshell Summary: Preserving original terminal echo state when Console.readPassword finishes. Reviewed-by: sherman, martin ! src/java.base/share/classes/java/io/Console.java ! src/java.base/unix/native/libjava/Console_md.c ! src/java.base/windows/native/libjava/Console_md.c Changeset: 3deb300f0e55 Author: redestad Date: 2018-04-30 16:27 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/3deb300f0e55 8202419: Avoid creating Permission constants early Reviewed-by: alanb, mullan ! src/java.base/share/classes/java/lang/Thread.java ! src/java.base/share/classes/java/lang/reflect/AccessibleObject.java ! src/java.base/share/classes/jdk/internal/reflect/ReflectionFactory.java ! src/java.base/share/classes/sun/security/util/SecurityConstants.java Changeset: b7c2996d690b Author: chegar Date: 2018-04-30 16:13 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/b7c2996d690b 8201545: InetAddress.getByName/getAllByName should clarify empty String behavior Reviewed-by: chegar Contributed-by: Jaikiran Pai ! src/java.base/share/classes/java/net/InetAddress.java ! test/jdk/java/net/InetAddress/GetLoopbackAddress.java Changeset: 891132345d43 Author: ccheung Date: 2018-04-30 09:37 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/891132345d43 8154204: [TESTBUG] Update DefaultUseWithClient test to handle client-less builds Summary: removed the DefaultUseWithClient.java test Reviewed-by: hseigel, jiangli ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java Changeset: ae58e24ce81a Author: erikj Date: 2018-04-30 09:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/ae58e24ce81a 8202383: Custom extensions for jvmti doc Reviewed-by: erikj Contributed-by: archana.nogriya at uk.ibm.com ! make/Docs.gmk Changeset: f38329fe8055 Author: eosterlund Date: 2018-04-30 21:17 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f38329fe8055 8202381: (Solaris) SIGBUS in # V [libjvm.so+0xcee494] jni_GetIntField+0x224 Reviewed-by: kbarrett, dcubed ! src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.hpp ! src/hotspot/cpu/aarch64/jniFastGetField_aarch64.cpp ! src/hotspot/cpu/sparc/gc/shared/barrierSetAssembler_sparc.cpp ! src/hotspot/cpu/sparc/gc/shared/barrierSetAssembler_sparc.hpp ! src/hotspot/cpu/sparc/jniFastGetField_sparc.cpp ! src/hotspot/cpu/x86/gc/shared/barrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shared/barrierSetAssembler_x86.hpp ! src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp Changeset: 3aaaa5370999 Author: bpb Date: 2018-04-30 13:40 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3aaaa5370999 8202284: FileChannel and FileOutpuStream variants of AtomicAppend should fail silently on macOS >= 10.13 Reviewed-by: chegar ! test/jdk/java/io/FileOutputStream/AtomicAppend.java ! test/jdk/java/nio/channels/FileChannel/AtomicAppend.java ! test/lib/jdk/test/lib/Platform.java Changeset: 840e26123940 Author: jiangli Date: 2018-04-30 16:59 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/840e26123940 8193213: Make the UseAppCDS option obsolete. 8182731: Odd handling of -XX:-UseAppCDS and -XX:SharedArchiveFile. Summary: Application class data sharing is enabled without -XX:+UseAppCDS. SharedArchiveFile is now a product flag. Reviewed-by: dholmes, ihse, erikj, ccheung ! make/GenerateLinkOptData.gmk ! src/hotspot/share/classfile/classListParser.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classLoaderExt.hpp ! src/hotspot/share/classfile/sharedClassUtil.cpp ! src/hotspot/share/classfile/sharedClassUtil.hpp ! src/hotspot/share/classfile/sharedPathsMiscInfo.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/memory/filemap.cpp ! src/hotspot/share/memory/filemap.hpp ! src/hotspot/share/memory/metaspaceShared.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! test/hotspot/jtreg/compiler/aot/fingerprint/CDSDumper.java ! test/hotspot/jtreg/compiler/aot/fingerprint/SelfChangedCDS.java ! test/hotspot/jtreg/runtime/SharedArchiveFile/BootAppendTests.java ! test/hotspot/jtreg/runtime/SharedArchiveFile/DumpSharedDictionary.java ! test/hotspot/jtreg/runtime/SharedArchiveFile/NonBootLoaderClasses.java ! test/hotspot/jtreg/runtime/SharedArchiveFile/SASymbolTableTest.java ! test/hotspot/jtreg/runtime/SharedArchiveFile/SharedArchiveFile.java ! test/hotspot/jtreg/runtime/appcds/DirClasspathTest.java ! test/hotspot/jtreg/runtime/appcds/DumpClassList.java ! test/hotspot/jtreg/runtime/appcds/GraalWithLimitedMetaspace.java ! test/hotspot/jtreg/runtime/appcds/MismatchedUseAppCDS.java ! test/hotspot/jtreg/runtime/appcds/SpecifySysLoaderProp.java ! test/hotspot/jtreg/runtime/appcds/TestCommon.java ! test/hotspot/jtreg/runtime/appcds/VerifierTest.java ! test/hotspot/jtreg/runtime/appcds/sharedStrings/SharedStringsBasic.java ! test/hotspot/jtreg/runtime/appcds/sharedStrings/SysDictCrash.java ! test/lib/jdk/test/lib/cds/CDSTestUtils.java Changeset: e7b0c4f65b64 Author: jiangli Date: 2018-04-30 17:50 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/e7b0c4f65b64 8202452: Delete test files missed from commit for 8193213&8182731. Summary: Deleted outdated tests. Reviewed-by: dholmes - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java Changeset: c63bdf53a1a7 Author: dholmes Date: 2018-04-30 20:29 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/c63bdf53a1a7 8202399: [C1] LIRGenerator::do_CheckCast needs to exclude is_invokespecial_receiver_check() when using PatchAlot Reviewed-by: kvn Contributed-by: Vladimir Ivanov ! src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp ! src/hotspot/cpu/sparc/c1_LIRGenerator_sparc.cpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp Changeset: 44839fbb20db Author: iignatyev Date: 2018-04-30 18:10 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/44839fbb20db 8199643: [TESTBUG] Open source common VM testbase code Reviewed-by: vlivanov, erikj, mseledtsov, gthornbr ! make/test/JtregNativeHotspot.gmk + test/hotspot/jtreg/vmTestbase/ExecDriver.java + test/hotspot/jtreg/vmTestbase/PropertyResolvingWrapper.java + test/hotspot/jtreg/vmTestbase/README.md + test/hotspot/jtreg/vmTestbase/nsk/share/AbstractGoldChecker.java + test/hotspot/jtreg/vmTestbase/nsk/share/ArgumentParser.java + test/hotspot/jtreg/vmTestbase/nsk/share/ClassFileFinder.java + test/hotspot/jtreg/vmTestbase/nsk/share/ClassUnloader.java + test/hotspot/jtreg/vmTestbase/nsk/share/Consts.java + test/hotspot/jtreg/vmTestbase/nsk/share/CustomClassLoader.java + test/hotspot/jtreg/vmTestbase/nsk/share/Debug.java + test/hotspot/jtreg/vmTestbase/nsk/share/Denotation.java + test/hotspot/jtreg/vmTestbase/nsk/share/DummyClassLoader.java + test/hotspot/jtreg/vmTestbase/nsk/share/Failure.java + test/hotspot/jtreg/vmTestbase/nsk/share/FileUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/Finalizable.java + test/hotspot/jtreg/vmTestbase/nsk/share/FinalizableObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/Finalizer.java + test/hotspot/jtreg/vmTestbase/nsk/share/GoldChecker.java + test/hotspot/jtreg/vmTestbase/nsk/share/Grep.java + test/hotspot/jtreg/vmTestbase/nsk/share/Harakiri.java + test/hotspot/jtreg/vmTestbase/nsk/share/IORedirector.java + test/hotspot/jtreg/vmTestbase/nsk/share/JVMDITools.c + test/hotspot/jtreg/vmTestbase/nsk/share/JVMDITools.h + test/hotspot/jtreg/vmTestbase/nsk/share/JVMTIagent.c + test/hotspot/jtreg/vmTestbase/nsk/share/LocalProcess.java + test/hotspot/jtreg/vmTestbase/nsk/share/Log.java + test/hotspot/jtreg/vmTestbase/nsk/share/NativeUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/ObjectInstancesManager.java + test/hotspot/jtreg/vmTestbase/nsk/share/Oddity.java + test/hotspot/jtreg/vmTestbase/nsk/share/Pair.java + test/hotspot/jtreg/vmTestbase/nsk/share/Paragrep.java + test/hotspot/jtreg/vmTestbase/nsk/share/PrintProperties.java + test/hotspot/jtreg/vmTestbase/nsk/share/RASagent.java + test/hotspot/jtreg/vmTestbase/nsk/share/README + test/hotspot/jtreg/vmTestbase/nsk/share/ReferringObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/ReferringObjectSet.java + test/hotspot/jtreg/vmTestbase/nsk/share/StringGoldChecker.java + test/hotspot/jtreg/vmTestbase/nsk/share/TestBug.java + test/hotspot/jtreg/vmTestbase/nsk/share/TestFailure.java + test/hotspot/jtreg/vmTestbase/nsk/share/TestJNIError.java + test/hotspot/jtreg/vmTestbase/nsk/share/TimeoutHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/TreeNodesDenotation.java + test/hotspot/jtreg/vmTestbase/nsk/share/Wicket.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/AODRunnerArgParser.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/AODTargetArgParser.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/AODTestRunner.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/AbstractJarAgent.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/AgentInformation.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/AgentsAttacher.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/DummyTargetApplication.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/ProcessExecutor.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/TargetApplicationWaitingAgents.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/Utils.java + test/hotspot/jtreg/vmTestbase/nsk/share/aod/aod.c + test/hotspot/jtreg/vmTestbase/nsk/share/aod/aod.h + test/hotspot/jtreg/vmTestbase/nsk/share/classload/ClassPathNonDelegatingClassLoader.java + test/hotspot/jtreg/vmTestbase/nsk/share/classload/GeneratingClassLoader.java + test/hotspot/jtreg/vmTestbase/nsk/share/classload/TemplateClass.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/Algorithms.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/AllDiag.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/AllMemoryObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/ArgumentHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/Cell.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/CircularLinkedList.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/ClassChain.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/FinDiag.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/FinMemoryObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/FinMemoryObject1.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/GC.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/GCParams.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/GCParamsAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/GCTestBase.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/IndexPair.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/LinkedMemoryObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/Matrix.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/Memory.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/MemoryObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/NonbranchyTree.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/OOMStress.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/ThreadedGCTest.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/TwoFieldsObject.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/classes/Classes.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/DerivedProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/DerivedStrategyProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/GarbageProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/GarbageProducer1Aware.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/GarbageProducerAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/GarbageProducers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/GarbageUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/MemoryStrategy.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/MemoryStrategyAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/RandomProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/ArrayOfProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/ArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/BooleanArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/ByteArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/CharArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/DoubleArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/FloatArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/IntArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/LongArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/ObjectArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/array/ShortArrayProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/classload/GeneratedClassProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/list/CircularListProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/list/LinearListProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/misc/HashedGarbageProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/misc/TraceProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/misc/TwoFieldsObjectProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/obj/AllMemoryObjectProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/obj/FinMemoryObject1Producer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/obj/FinMemoryObjectProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/obj/MemoryObjectProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/string/InternedStringProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/string/RandomStringProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/string/SimpleStringProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/gp/tree/NonbranchyTreeProducer.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/CriticalSectionLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/CriticalSectionObjectLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/CriticalSectionTimedLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/Locker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/LockerUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/Lockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/LockersAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/MultiLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/BooleanArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/BooleanArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/ByteArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/ByteArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/CharArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/CharArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/DoubleArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/DoubleArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/FloatArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/FloatArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/IntArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/IntArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/JNILockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/LongArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/LongArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/ShortArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/ShortArrayCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/StringCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/StringCriticalLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIGlobalRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIGlobalRefLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIGlobalRefLockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNILocalRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNILocalRefLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNILocalRefLockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIRefLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIRefLockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIWeakGlobalRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIWeakGlobalRefLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/JNIWeakGlobalRefLockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jvmti/JVMTIAllocLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jvmti/JVMTIAllocLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jvmti/JVMTIAllocLockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/malloc/MallocLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/malloc/MallocLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/malloc/MallocLockers.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/tree/Tree.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/tree/TreeNode.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/AbstractJDIDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/ArgumentHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/Binder.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/ConnectorTest.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/Debugee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/DebuggeeEventData.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/DebuggerEventData.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/EventFilters.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/EventHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/EventTestTemplates.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/ForceEarlyReturnDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/HeapwalkingDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/HeapwalkingDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/JDIEventsDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/JDIEventsDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/MockReferenceType.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/MonitorEnterExecutor.c + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/MonitorEventsDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/OwnedMonitorsDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/OwnedMonitorsDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/PlugConnectors.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/PlugTransportService.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/SerialExecutionDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/SerialExecutionDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/TestClass1.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/TestClass2.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/TestDebuggerType1.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/TestDebuggerType2.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/TestInterfaceImplementer1.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/ThreadState.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/ValueConversionDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/sde/InstallSDE.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/sde/SDEDebuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/sde/SDEDebugger.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/sde/SmapGenerator.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/sde/SmapStratum.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/sde/TestClass1.java + test/hotspot/jtreg/vmTestbase/nsk/share/jni/JNIreferences.c + test/hotspot/jtreg/vmTestbase/nsk/share/jni/README + test/hotspot/jtreg/vmTestbase/nsk/share/jni/jni_tools.c + test/hotspot/jtreg/vmTestbase/nsk/share/jni/jni_tools.h + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/AbstractDebuggeeTest.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/BindServer.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/ConversionUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/DebugeeArgumentHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/DebugeeBinder.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/DebugeeProcess.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/ForceEarlyReturnTestThread.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/IOPipe.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/SocketConnection.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/SocketIOPipe.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/StateTestThread.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/DeadlockLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/DeadlockMaker.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/DeadlockedThread.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/JNIMonitorLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/locks/JNIMonitorLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/LockType.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/LockingThread.c + test/hotspot/jtreg/vmTestbase/nsk/share/locks/LockingThread.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/MonitorLockingThread.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/ReentrantLockLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/SynchronizedBlockLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/locks/SynchronizedMethodLocker.java + test/hotspot/jtreg/vmTestbase/nsk/share/log/Log.java + test/hotspot/jtreg/vmTestbase/nsk/share/log/LogAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/log/LogSupport.java + test/hotspot/jtreg/vmTestbase/nsk/share/native/README + test/hotspot/jtreg/vmTestbase/nsk/share/native/native_thread.c + test/hotspot/jtreg/vmTestbase/nsk/share/native/native_thread.h + test/hotspot/jtreg/vmTestbase/nsk/share/native/native_utils.c + test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_list.c + test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_list.h + test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_mutex.c + test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_mutex.h + test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_tools.c + test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_tools.h + test/hotspot/jtreg/vmTestbase/nsk/share/runner/FinRunner.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/GCRunner.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/MemDiag.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/MultiRunner.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/MultiRunnerAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/RunParams.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/RunParamsAware.java + test/hotspot/jtreg/vmTestbase/nsk/share/runner/ThreadsRunner.java + test/hotspot/jtreg/vmTestbase/nsk/share/sysdict/ClassLoadersBTree.java + test/hotspot/jtreg/vmTestbase/nsk/share/sysdict/ClassLoadersChain.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/Dumpable.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/ExecutionController.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/Initializable.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/LazyFormatString.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/LazyIntArrayToString.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/LazyObjectArrayToString.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/LocalRandom.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/StressOptions.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/Stresser.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/Test.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/TestBase.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/TestExitCode.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/TestUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/Tests.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/timeoutwatchdog/TimeoutHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/test/timeoutwatchdog/TimeoutWatchdog.java + test/hotspot/jtreg/vmTestbase/vm/share/CommentedFileReader.java + test/hotspot/jtreg/vmTestbase/vm/share/FileUtils.java + test/hotspot/jtreg/vmTestbase/vm/share/InMemoryJavaCompiler.java + test/hotspot/jtreg/vmTestbase/vm/share/ProcessUtils.c + test/hotspot/jtreg/vmTestbase/vm/share/ProcessUtils.java + test/hotspot/jtreg/vmTestbase/vm/share/RandomEx.java + test/hotspot/jtreg/vmTestbase/vm/share/StringUtils.java + test/hotspot/jtreg/vmTestbase/vm/share/UnsafeAccess.java + test/hotspot/jtreg/vmTestbase/vm/share/VMRuntimeEnvUtils.java + test/hotspot/jtreg/vmTestbase/vm/share/gc/TriggerUnloadingByFillingHeap.java + test/hotspot/jtreg/vmTestbase/vm/share/gc/TriggerUnloadingByFillingMetaspace.java + test/hotspot/jtreg/vmTestbase/vm/share/gc/TriggerUnloadingHelper.java + test/hotspot/jtreg/vmTestbase/vm/share/gc/TriggerUnloadingWithWhiteBox.java + test/hotspot/jtreg/vmTestbase/vm/share/libProcessUtils.c + test/hotspot/jtreg/vmTestbase/vm/share/monitoring/MemoryPoolFinder.java + test/hotspot/jtreg/vmTestbase/vm/share/monitoring/data/MemoryManagerData.java + test/hotspot/jtreg/vmTestbase/vm/share/monitoring/data/MemoryPoolData.java + test/hotspot/jtreg/vmTestbase/vm/share/monitoring/data/MemoryUsageData.java + test/hotspot/jtreg/vmTestbase/vm/share/options/BasicObjectFactory.java + test/hotspot/jtreg/vmTestbase/vm/share/options/BasicOptionObjectFactory.java + test/hotspot/jtreg/vmTestbase/vm/share/options/FClass.java + test/hotspot/jtreg/vmTestbase/vm/share/options/Factory.java + test/hotspot/jtreg/vmTestbase/vm/share/options/IgnoreUnknownArgumentsHandler.java + test/hotspot/jtreg/vmTestbase/vm/share/options/ObjectFactory.java + test/hotspot/jtreg/vmTestbase/vm/share/options/Option.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionDefinition.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionError.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionHandler.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionObjectFactory.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionSupport.java + test/hotspot/jtreg/vmTestbase/vm/share/options/Options.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionsMap.java + test/hotspot/jtreg/vmTestbase/vm/share/options/OptionsSetup.java + test/hotspot/jtreg/vmTestbase/vm/share/options/ParserException.java + test/hotspot/jtreg/vmTestbase/vm/share/options/PrimitiveParser.java + test/hotspot/jtreg/vmTestbase/vm/share/options/package-info.java + test/hotspot/jtreg/vmTestbase/vm/share/options/test/BasicObjectFactoryUsageExample.java + test/hotspot/jtreg/vmTestbase/vm/share/options/test/ExampleWithNonprimitiveOptions.java + test/hotspot/jtreg/vmTestbase/vm/share/options/test/SimpleExample.java + test/hotspot/jtreg/vmTestbase/vm/share/options/test/SimpleExampleWithOptionsAnnotation.java + test/hotspot/jtreg/vmTestbase/vm/share/options/test/SubClassExample.java + test/hotspot/jtreg/vmTestbase/vm/share/options/test/package-info.java + test/hotspot/jtreg/vmTestbase/vm/share/process/CmdExecutor.java + test/hotspot/jtreg/vmTestbase/vm/share/process/MessageInput.java + test/hotspot/jtreg/vmTestbase/vm/share/process/MessageOutput.java + test/hotspot/jtreg/vmTestbase/vm/share/process/ProcessExecutor.java + test/hotspot/jtreg/vmTestbase/vm/share/process/ProcessHandler.java + test/hotspot/jtreg/vmTestbase/vm/share/process/StreamListener.java + test/hotspot/jtreg/vmTestbase/vm/share/process/StreamLogger.java + test/hotspot/jtreg/vmTestbase/vm/share/process/StreamMessageInput.java + test/hotspot/jtreg/vmTestbase/vm/share/process/StreamMessageOutput.java + test/hotspot/jtreg/vmTestbase/vm/share/process/StreamReader.java + test/hotspot/jtreg/vmTestbase/vm/share/stack/StackUtils.java + test/hotspot/jtreg/vmTestbase/vm/share/transform/AbstractClassFileTransformer.java + test/hotspot/jtreg/vmTestbase/vm/share/transform/AnnotationAppender.java + test/hotspot/jtreg/vmTestbase/vm/share/transform/TransformingClassLoader.java + test/hotspot/jtreg/vmTestbase/vm/share/vmcrasher/Crasher.java + test/hotspot/jtreg/vmTestbase/vm/share/vmcrasher/CrasherFactory.java + test/hotspot/jtreg/vmTestbase/vm/share/vmcrasher/SignalCrasher.java + test/hotspot/jtreg/vmTestbase/vm/share/vmcrasher/UnsafeGCCrasher.java + test/hotspot/jtreg/vmTestbase/vm/share/vmcrasher/UnsafeJavaCrasher.java + test/hotspot/jtreg/vmTestbase/vm/share/vmstresser/CompileAndDeoptimize.java + test/hotspot/jtreg/vmTestbase/vm/share/vmstresser/MetaspaceStresser.java Changeset: 2ace90aec488 Author: dholmes Date: 2018-04-30 21:56 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/2ace90aec488 8200167: Validate more special case invocations Reviewed-by: acorn, vlivanov, dholmes Contributed-by: John Rose , Vladimir Ivanov , Tobias Hartmann ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/java.base/share/classes/java/lang/invoke/DirectMethodHandle.java ! src/java.base/share/classes/java/lang/invoke/InvokerBytecodeGenerator.java ! src/java.base/share/classes/java/lang/invoke/LambdaForm.java ! src/java.base/share/classes/java/lang/invoke/MethodHandles.java ! src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java + test/jdk/java/lang/invoke/I4Special.jcod + test/jdk/java/lang/invoke/SpecialInterfaceCall.java Changeset: 4da7dce7e2bf Author: zgu Date: 2018-05-01 07:40 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/4da7dce7e2bf 8201542: Remove unused _gc_timer field in GCMemoryManager Summary: Minor cleanup to remove unused field Reviewed-by: shade, minqi ! src/hotspot/share/services/memoryManager.hpp Changeset: 7fed08d588b5 Author: dl Date: 2018-05-01 06:18 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7fed08d588b5 8202373: Forcing eager initialization of CHM$ReservationNode avoids deoptimization Reviewed-by: martin, psandoz, dholmes, redestad ! src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java Changeset: 2c2a722a2c0c Author: shade Date: 2018-05-01 19:13 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2c2a722a2c0c 8202379: ARM32 is broken after JDK-8201543 (Modularize C1 GC barriers) Reviewed-by: aph, eosterlund ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/arm/c1_Runtime1_arm.cpp ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.hpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp Changeset: 7686304551f2 Author: naoto Date: 2018-05-01 12:37 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7686304551f2 8202484: Unused field in TimeZone Reviewed-by: lancea ! src/java.base/share/classes/java/util/TimeZone.java Changeset: 516128be1a80 Author: bpb Date: 2018-05-01 14:40 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/516128be1a80 8202507: Remove IO and NIO AtomicAppend tests from problem list Reviewed-by: lancea ! test/jdk/ProblemList.txt Changeset: 2f0c14b69efa Author: darcy Date: 2018-05-01 17:19 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/2f0c14b69efa 8202334: Update javax.lang.model.util visitors for 11 Reviewed-by: jjg ! src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/ElementScanner9.java ! src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor9.java Changeset: f4310c01104d Author: ccheung Date: 2018-05-01 17:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/f4310c01104d 8202130: [TESTBUG] Some appcds regression test cases fail with "Error: VM option 'PrintSystemDictionaryAtExit' is notproduct and is available only in debug version of VM" Summary: removed the PrintSystemDictionaryAtExit vm option from the tests Reviewed-by: zgu ! test/hotspot/jtreg/runtime/appcds/jigsaw/modulepath/AddOpens.java ! test/hotspot/jtreg/runtime/appcds/jigsaw/modulepath/ExportModule.java ! test/hotspot/jtreg/runtime/appcds/jigsaw/modulepath/MainModuleOnly.java ! test/hotspot/jtreg/runtime/appcds/jigsaw/modulepath/ModulePathAndCP.java Changeset: 8e1ed2a15845 Author: mdoerr Date: 2018-05-02 10:47 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/8e1ed2a15845 8202425: [s390] C2: Wrong unsigned comparison with 0 Summary: Remove wrong node compU_reg_imm0. Other node is already available. Reviewed-by: shade, lucy ! src/hotspot/cpu/s390/s390.ad Changeset: 4690a2871b44 Author: chegar Date: 2018-05-02 02:36 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/4690a2871b44 8202423: Small HTTP Client refresh Reviewed-by: chegar, dfuchs, michaelm, prappo Contributed-by: Chris Hegarty , Daniel Fuchs , Michael McMahon , Pavel Rappo ! src/java.net.http/share/classes/jdk/internal/net/http/AsyncSSLConnection.java ! src/java.net.http/share/classes/jdk/internal/net/http/AsyncSSLTunnelConnection.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1AsyncReceiver.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1Exchange.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1Request.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1Response.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http2ClientImpl.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java ! src/java.net.http/share/classes/jdk/internal/net/http/HttpClientImpl.java ! src/java.net.http/share/classes/jdk/internal/net/http/PlainHttpConnection.java ! src/java.net.http/share/classes/jdk/internal/net/http/SocketTube.java ! src/java.net.http/share/classes/jdk/internal/net/http/Stream.java + src/java.net.http/share/classes/jdk/internal/net/http/common/BufferSupplier.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/DebugLogger.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/FlowTube.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/SSLFlowDelegate.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/SSLTube.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/SubscriberWrapper.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/Utils.java ! src/java.net.http/share/classes/jdk/internal/net/http/hpack/Huffman.java + src/java.net.http/share/classes/jdk/internal/net/http/hpack/NaiveHuffman.java + src/java.net.http/share/classes/jdk/internal/net/http/hpack/QuickHuffman.java ! src/java.net.http/share/classes/jdk/internal/net/http/hpack/SimpleHeaderTable.java ! src/java.net.http/share/classes/jdk/internal/net/http/hpack/StringReader.java ! src/java.net.http/share/classes/jdk/internal/net/http/hpack/StringWriter.java ! test/jdk/java/net/httpclient/BodyProcessorInputStreamTest.java ! test/jdk/java/net/httpclient/DependentPromiseActionsTest.java ! test/jdk/java/net/httpclient/EscapedOctetsInURI.java ! test/jdk/java/net/httpclient/HttpInputStreamTest.java + test/jdk/java/net/httpclient/NonAsciiCharsInURI.java ! test/jdk/java/net/httpclient/ProxyServer.java ! test/jdk/java/net/httpclient/RetryWithCookie.java ! test/jdk/java/net/httpclient/SmallTimeout.java ! test/jdk/java/net/httpclient/TimeoutOrdering.java ! test/jdk/java/net/httpclient/http2/java.net.http/jdk/internal/net/http/hpack/CircularBufferTest.java ! test/jdk/java/net/httpclient/http2/java.net.http/jdk/internal/net/http/hpack/DecoderTest.java ! test/jdk/java/net/httpclient/http2/java.net.http/jdk/internal/net/http/hpack/HuffmanTest.java ! test/jdk/java/net/httpclient/http2/server/Http2TestServer.java ! test/jdk/java/net/httpclient/websocket/DummyWebSocketServer.java ! test/jdk/java/net/httpclient/websocket/PendingBinaryPingClose.java ! test/jdk/java/net/httpclient/websocket/PendingBinaryPongClose.java ! test/jdk/java/net/httpclient/websocket/PendingPingBinaryClose.java ! test/jdk/java/net/httpclient/websocket/PendingPingTextClose.java ! test/jdk/java/net/httpclient/websocket/PendingPongBinaryClose.java ! test/jdk/java/net/httpclient/websocket/PendingPongTextClose.java ! test/jdk/java/net/httpclient/websocket/PendingTextPingClose.java ! test/jdk/java/net/httpclient/websocket/PendingTextPongClose.java ! test/jdk/java/net/httpclient/websocket/SendTest.java ! test/jdk/java/net/httpclient/websocket/WSHandshakeExceptionTest.java ! test/jdk/java/net/httpclient/websocket/WebSocketExtendedTest.java ! test/jdk/java/net/httpclient/websocket/WebSocketTest.java Changeset: 9425445633cf Author: sjohanss Date: 2018-05-02 13:44 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/9425445633cf 8191471: Elastic TLABs for G1 Reviewed-by: tschatzl, pliden ! src/hotspot/share/gc/g1/g1AllocRegion.cpp ! src/hotspot/share/gc/g1/g1AllocRegion.hpp ! src/hotspot/share/gc/g1/g1AllocRegion.inline.hpp ! src/hotspot/share/gc/g1/g1Allocator.cpp ! src/hotspot/share/gc/g1/g1Allocator.hpp ! src/hotspot/share/gc/g1/g1Allocator.inline.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/collectedHeap.hpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/gc/shared/genCollectedHeap.hpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp Changeset: 2143feab681a Author: sjohanss Date: 2018-05-02 13:44 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2143feab681a 8202140: TLAB logging is not correct for G1 Reviewed-by: tschatzl, sangheki ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp Changeset: cece972575ac Author: mcimadamore Date: 2018-05-02 15:29 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/cece972575ac 8202372: Diagnostic with incorrect line info generated when compiling lambda expression Summary: Add tree position to speculative lambda tree Reviewed-by: vromero, jlahoda Contributed-by: bsrbnd at gmail.com ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/DeferredAttr.java + test/langtools/tools/javac/lambda/8202372/T8202372.java + test/langtools/tools/javac/lambda/8202372/T8202372.out ! test/langtools/tools/javac/lvti/T8200199.java ! test/langtools/tools/javac/lvti/badTypeReference/BadTypeReference.java ! test/langtools/tools/javac/preview/classReaderTest/Client.java Changeset: ff8dbb56740a Author: ccheung Date: 2018-05-02 09:26 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/ff8dbb56740a 8200466: Revisit the setting of _transitive_interfaces in InstanceKlass Summary: Delay the setting of _transitive_interfaces until after initialize_supers() in fill_instance_klass(). Reviewed-by: iklam, coleenp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/oops/arrayKlass.cpp ! src/hotspot/share/oops/arrayKlass.hpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/objArrayKlass.cpp ! src/hotspot/share/oops/objArrayKlass.hpp Changeset: c8684fac37bb Author: kvn Date: 2018-05-02 10:48 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/c8684fac37bb 8202505: ctw2 tasks are timing out in hs-tier3 Summary: put CTW java_desktop_2.java test on problem list for Windows. Reviewed-by: iignatyev ! test/hotspot/jtreg/ProblemList.txt Changeset: 7b916885654d Author: shade Date: 2018-05-02 19:26 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/7b916885654d 8201786: Modularize interpreter GC barriers: leftovers for ARM32 Reviewed-by: enevill, eosterlund ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.hpp + src/hotspot/cpu/arm/gc/shared/barrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/shared/barrierSetAssembler_arm.hpp ! src/hotspot/cpu/arm/gc/shared/cardTableBarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/shared/cardTableBarrierSetAssembler_arm.hpp ! src/hotspot/cpu/arm/gc/shared/modRefBarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/shared/modRefBarrierSetAssembler_arm.hpp ! src/hotspot/cpu/arm/interp_masm_arm.cpp ! src/hotspot/cpu/arm/interp_masm_arm.hpp ! src/hotspot/cpu/arm/macroAssembler_arm.cpp ! src/hotspot/cpu/arm/macroAssembler_arm.hpp ! src/hotspot/cpu/arm/stubGenerator_arm.cpp ! src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp ! src/hotspot/cpu/arm/templateTable_arm.cpp Changeset: 65b13c206495 Author: shade Date: 2018-05-02 19:26 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/65b13c206495 8202418: Remove explicit CMS checks in CardTableBarrierSetAssembler: ARM32 leftovers Reviewed-by: eosterlund ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/arm/gc/shared/cardTableBarrierSetAssembler_arm.cpp Changeset: a6224ea48b66 Author: jjg Date: 2018-05-02 11:11 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a6224ea48b66 8201817: Taglet.init should be called with the "primary" doclet Reviewed-by: ksrini ! src/jdk.javadoc/share/classes/jdk/javadoc/doclet/StandardDoclet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDoclet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/BaseConfiguration.java ! test/langtools/jdk/javadoc/doclet/testUserTaglet/TestUserTaglet.java Changeset: a17d59ffca47 Author: martin Date: 2018-05-02 11:19 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a17d59ffca47 8202397: Typo in X-Buffer javadoc Reviewed-by: psandoz ! src/java.base/share/classes/java/nio/X-Buffer.java.template Changeset: deefa2120bc4 Author: martin Date: 2018-05-02 11:20 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/deefa2120bc4 8201634: Random seedUniquifier uses incorrect LCG Summary: Correct typo in constant from L'Ecuyer Reviewed-by: dl, psandoz ! src/java.base/share/classes/java/util/Random.java Changeset: ea246151be08 Author: martin Date: 2018-05-02 11:21 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/ea246151be08 8202398: Optimize Arrays.deepHashCode Reviewed-by: psandoz ! src/java.base/share/classes/java/util/Arrays.java Changeset: a87f2e7a527c Author: dcubed Date: 2018-05-02 16:47 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/a87f2e7a527c 8191798: redo nested ThreadsListHandle to drop Threads_lock Summary: Refactor Thread hazard ptrs and nested ThreadsLists into SafeThreadsListPtr. Reviewed-by: dcubed, eosterlund, rehn Contributed-by: erik.osterlund at oracle.com, daniel.daugherty at oracle.com ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp ! src/hotspot/share/runtime/threadSMR.cpp ! src/hotspot/share/runtime/threadSMR.hpp ! src/hotspot/share/runtime/threadSMR.inline.hpp ! src/hotspot/share/services/threadService.hpp ! test/hotspot/jtreg/runtime/ErrorHandling/NestedThreadsListHandleInErrorHandlingTest.java ! test/hotspot/jtreg/runtime/ErrorHandling/ThreadsListHandleInErrorHandlingTest.java Changeset: 746229cc1ab0 Author: kbarrett Date: 2018-05-02 19:24 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/746229cc1ab0 8179887: Build failure with glibc >= 2.24: error: 'int readdir_r(DIR*, dirent*, dirent**)' is deprecated Summary: Use readir rather than readdir_r on Linux. Reviewed-by: kbarrett, stuefe, andrew Contributed-by: Michal Vala ! src/hotspot/os/linux/os_linux.inline.hpp Changeset: cc29d7717e3a Author: iignatyev Date: 2018-05-02 16:43 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/cc29d7717e3a 8199375: [TESTBUG] Open source vm testbase monitoring tests Reviewed-by: kvn, ihse, sspitsyn ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/nsk/monitoring/CompilationMXBean/comptimemon001/comptimemon001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/CompilationMXBean/comptimemon002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/CompilationMXBean/comptimemon003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/CompilationMXBean/comptimemon004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/CompilationMXBean/comptimemon005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/CollectionCounters/CollectionCounters001/CollectionCounters001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/CollectionCounters/CollectionCounters002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/CollectionCounters/CollectionCounters003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/CollectionCounters/CollectionCounters004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/CollectionCounters/CollectionCounters005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionCount/getcollectioncount001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionCount/getcollectioncount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionCount/getcollectioncount002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionCount/getcollectioncount003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionCount/getcollectioncount004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionCount/getcollectioncount005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionTime/getcollectiontime001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionTime/getcollectiontime001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionTime/getcollectiontime002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionTime/getcollectiontime003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionTime/getcollectiontime004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/GarbageCollectorMXBean/getCollectionTime/getcollectiontime005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LockTest/LockTest001/LockTest001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LockTest/LockTest002/LockTest002.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerLevel/getloggerlevel001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerLevel/getloggerlevel001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerLevel/getloggerlevel002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerLevel/getloggerlevel003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerLevel/getloggerlevel004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerLevel/getloggerlevel005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerNames/getloggernames001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerNames/getloggernames001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerNames/getloggernames002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerNames/getloggernames003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerNames/getloggernames004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getLoggerNames/getloggernames005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getParentLoggerName/getparentloggername001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getParentLoggerName/getparentloggername001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getParentLoggerName/getparentloggername002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getParentLoggerName/getparentloggername003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getParentLoggerName/getparentloggername004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/getParentLoggerName/getparentloggername005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/setLoggerLevel/setloggerlevel001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/setLoggerLevel/setloggerlevel001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/setLoggerLevel/setloggerlevel002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/setLoggerLevel/setloggerlevel003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/setLoggerLevel/setloggerlevel004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/LoggingMXBean/setLoggerLevel/setloggerlevel005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/MemoryNotificationInfo/info001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/MemoryNotificationInfo/info001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/from/from001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/from/from001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/getCount/getcount001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/getCount/getcount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/getPoolName/getpoolname001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/getPoolName/getpoolname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/getUsage/getusage001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryNotificationInfo/getUsage/getusage001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsage/getusage001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsage/getusage001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsage/getusage002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsage/getusage003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsage/getusage004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsage/getusage005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThreshold/getthreshold001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThreshold/getthreshold001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThreshold/getthreshold002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThreshold/getthreshold003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThreshold/getthreshold004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThreshold/getthreshold005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThresholdCount/getcount001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThresholdCount/getcount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThresholdCount/getcount002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThresholdCount/getcount003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThresholdCount/getcount004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getCollectionUsageThresholdCount/getcount005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getPeakUsage/getpeak001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getPeakUsage/getpeak001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getPeakUsage/getpeak002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getPeakUsage/getpeak003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getPeakUsage/getpeak004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getPeakUsage/getpeak005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsage/getusage001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsage/getusage001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsage/getusage002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsage/getusage003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsage/getusage004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsage/getusage005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThreshold/getthreshold001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThreshold/getthreshold001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThreshold/getthreshold002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThreshold/getthreshold003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThreshold/getthreshold004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThreshold/getthreshold005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThresholdCount/getcount001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThresholdCount/getcount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThresholdCount/getcount002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThresholdCount/getcount003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThresholdCount/getcount004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/getUsageThresholdCount/getcount005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdExceeded/isexceeded005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdSupported/issupported001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdSupported/issupported001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdSupported/issupported002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdSupported/issupported003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdSupported/issupported004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isCollectionUsageThresholdSupported/issupported005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdSupported/issupported001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdSupported/issupported001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdSupported/issupported002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdSupported/issupported003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdSupported/issupported004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdSupported/issupported005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/resetPeakUsage/reset001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/resetPeakUsage/reset001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/resetPeakUsage/reset002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/resetPeakUsage/reset003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/resetPeakUsage/reset004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/resetPeakUsage/reset005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setCollectionUsageThreshold/setthreshold001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setCollectionUsageThreshold/setthreshold001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setCollectionUsageThreshold/setthreshold002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setCollectionUsageThreshold/setthreshold003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setCollectionUsageThreshold/setthreshold004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setCollectionUsageThreshold/setthreshold005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setUsageThreshold/setthreshold001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setUsageThreshold/setthreshold001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setUsageThreshold/setthreshold002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setUsageThreshold/setthreshold003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setUsageThreshold/setthreshold004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryPoolMBean/setUsageThreshold/setthreshold005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryUsage/MemoryUsage/memoryusage001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryUsage/MemoryUsage/memoryusage001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryUsage/from/from001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/MemoryUsage/from/from001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean001/RuntimeMXBean001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean006/RuntimeMXBean006.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/RuntimeMXBean/RuntimeMXBean010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/from_c/from_c001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/from_c/from_c001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/getLockName/getlockname001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/getLockName/getlockname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/getLockOwnerName/getlockownername001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/getLockOwnerName/getlockownername001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/isInNative/isinnative001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/isInNative/isinnative001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/isSuspended/issuspended001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/isSuspended/issuspended001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/isSuspended/issuspended002.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadInfo/isSuspended/issuspended002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMBean/findMonitorDeadlockedThreads/find001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMBean/isCurrentThreadCpuTimeSupported/curthcputime001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMBean/isThreadContentionMonitoringSupported/thcontmonitor001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMBean/isThreadCpuTimeSupported/thcputime001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMBean/resetPeakThreadCount/reset001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/BarrierHandler.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/AllocatedMemorySupportedTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/AllocatedMemorySupportedTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/BaseBehaviorTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/BaseBehaviorTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/DoubleAllocationTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/DoubleAllocationTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/EqualThreadsTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/EqualThreadsTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/IllegalArgumentsTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/IllegalArgumentsTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/NoAllocationTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/NoAllocationTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/StressTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/StressTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/allocatedMemorySupportedTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/allocatedMemorySupportedTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/allocatedMemorySupportedTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/allocatedMemorySupportedTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/allocatedMemorySupportedTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_directly_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_directly_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_proxy_custom_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_proxy_custom_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_proxy_default_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_proxy_default_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_server_custom_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_server_custom_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_server_default_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/doubleAllocationTest_server_default_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_directly_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_directly_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_proxy_custom_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_proxy_custom_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_proxy_default_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_proxy_default_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_server_custom_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_server_custom_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_server_default_array/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/equalThreadsTest_server_default_string/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/illegalArgumentsTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/illegalArgumentsTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/illegalArgumentsTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/illegalArgumentsTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/illegalArgumentsTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/noAllocationTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/noAllocationTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/noAllocationTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/noAllocationTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/noAllocationTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_directly/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_proxy_custom/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_proxy_default/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_server_custom/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_server_default/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/stressTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/BaseBehaviorTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/BaseBehaviorTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/IllegalArgumentsTest.README + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/IllegalArgumentsTest.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/baseBehaviorTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/baseBehaviorTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/baseBehaviorTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/baseBehaviorTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/baseBehaviorTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/illegalArgumentsTest_directly/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/illegalArgumentsTest_proxy_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/illegalArgumentsTest_proxy_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/illegalArgumentsTest_server_custom/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadCpuTime/illegalArgumentsTest_server_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/MXBeanTestThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/BlockedThread/BlockedThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/BlockedThread/BlockedThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/BlockedThread/BlockedThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/BlockedThread/BlockedThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/BlockedThread/BlockedThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/MixedDeadlock001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/NativeDeadlock001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/SynchronizedMethodDeadlock001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/SynchronizerDeadlock001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/FinishedThread/FinishedThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/FinishedThread/FinishedThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/FinishedThread/FinishedThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/FinishedThread/FinishedThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/FinishedThread/FinishedThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/LockingThreads/LockingThreads001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/LockingThreads/LockingThreads002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/LockingThreads/LockingThreads003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/LockingThreads/LockingThreads004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/LockingThreads/LockingThreads005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi001/Multi001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Multi/Multi005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NativeBlockedThread/NativeBlockedThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NativeBlockedThread/NativeBlockedThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NativeBlockedThread/NativeBlockedThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NativeBlockedThread/NativeBlockedThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NativeBlockedThread/NativeBlockedThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NewThread/NewThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NewThread/NewThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NewThread/NewThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NewThread/NewThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/NewThread/NewThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/RunningThread/RunningThread001/RunningThread001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/RunningThread/RunningThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/RunningThread/RunningThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/RunningThread/RunningThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/RunningThread/RunningThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SleepingThread/SleepingThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SleepingThread/SleepingThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SleepingThread/SleepingThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SleepingThread/SleepingThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SleepingThread/SleepingThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SynchronizerLockingThreads/SynchronizerLockingThreads001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SynchronizerLockingThreads/SynchronizerLockingThreads002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SynchronizerLockingThreads/SynchronizerLockingThreads003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SynchronizerLockingThreads/SynchronizerLockingThreads004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/SynchronizerLockingThreads/SynchronizerLockingThreads005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/TimedWaitingThread/TimedWaitingThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/TimedWaitingThread/TimedWaitingThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/TimedWaitingThread/TimedWaitingThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/TimedWaitingThread/TimedWaitingThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/TimedWaitingThread/TimedWaitingThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/WaitingThread/WaitingThread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/WaitingThread/WaitingThread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/WaitingThread/WaitingThread003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/WaitingThread/WaitingThread004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/WaitingThread/WaitingThread005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/ThreadMXBeanTestBase.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find006.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/findMonitorDeadlockedThreads/find006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isCurrentThreadCpuTimeSupported/curthcputime001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isCurrentThreadCpuTimeSupported/curthcputime002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isCurrentThreadCpuTimeSupported/curthcputime003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isCurrentThreadCpuTimeSupported/curthcputime004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isCurrentThreadCpuTimeSupported/curthcputime005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadContentionMonitoringSupported/thcontmonitor001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadContentionMonitoringSupported/thcontmonitor002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadContentionMonitoringSupported/thcontmonitor003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadContentionMonitoringSupported/thcontmonitor004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadContentionMonitoringSupported/thcontmonitor005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadCpuTimeSupported/thcputime001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadCpuTimeSupported/thcputime002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadCpuTimeSupported/thcputime003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadCpuTimeSupported/thcputime004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/isThreadCpuTimeSupported/thcputime005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/resetPeakThreadCount/reset001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/resetPeakThreadCount/reset002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/resetPeakThreadCount/reset003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/resetPeakThreadCount/reset004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/ThreadMXBean/resetPeakThreadCount/reset005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ArgumentHandler.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ArgumentHandlerAware.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ClassLoadingController.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ClassLoadingMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/CompilationMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/CustomMBeanRegistration.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/CustomMBeanServer.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/CustomMBeanServerBuilder.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/GarbageCollectorMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/Generator.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/LoadableClass.pattern + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/LoggingMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/MemoryMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/Monitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/Monitoring.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/MonitoringFactory.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/MonitoringFactoryAware.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/MonitoringTestBase.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/RuntimeMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ServerNotificationEmitter.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/StackTraceController.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/StateController.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/StateControllerBase.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ThreadController.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ThreadController.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ThreadMonitor.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/direct/DirectMonitoringFactory.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/libStackTraceController.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/libThreadController.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/proxy/ProxyMonitoringFactory.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerClassLoadingMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerCompilationMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerGarbageCollectorMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerMemoryMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerMemoryManagerMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerMemoryPoolMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerMonitoringFactory.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerRuntimeMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerThreadMXBean.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/server/ServerThreadMXBeanNew.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/BlockedThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/Deadlock.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/Deadlock.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/FinishedThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/LockerThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/LockingThreads.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/LockingThreads.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/MonitoringThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/MultiScenario.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/NativeBlockedThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/NewThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/RecursiveMonitoringThread.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/RecursiveMonitoringThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/RunType.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/RunningThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/ScenarioTypeAware.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/SleepingThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/StandardThreadMonitoringScenarioFactory.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/SynchronizerLockingThreads.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/ThreadMonitoringScenario.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/ThreadMonitoringScenarioBase.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/ThreadMonitoringScenarioFactory.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/ThreadUtils.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/TimedWaitingThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/WaitingThread.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/libDeadlock.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/libLockingThreads.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/libNativeBlockedThread.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/thread/libRecursiveMonitoringThread.c + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/GenClassesBuilder.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load006/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load007/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load008/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load009/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load010/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load011/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load012/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/load012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload006/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload007/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload008/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload009/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload010/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload011/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload012/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/classload/unload012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem006/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem007/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem008/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem009/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem010/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem011/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem012/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem013/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem014/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem014/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem015/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem015/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem016/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem016/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem017/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem017/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem018/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem018/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem019/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem019/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem020/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem020/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem021/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem021/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem022/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem022/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem023/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem023/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem024/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem024/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem025/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem025/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem026/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem026/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem027/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem027/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem028/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem028/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem029/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem029/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem030/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem030/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem031/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem031/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem032/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem032/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem033/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem033/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem034/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem034/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem035/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem035/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem036/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/lowmem/lowmem036/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/cmon003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace001.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace006/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace007/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace008/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace009/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace010.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace010/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace011/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace012/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace013/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace014/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace014/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace015/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace015/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace016/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace016/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace017/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace017/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace018/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/monitoring/stress/thread/strace018/TestDescription.java ! test/hotspot/jtreg/vmTestbase/nsk/share/ArgumentParser.java ! test/hotspot/jtreg/vmTestbase/nsk/share/README Changeset: 313dd42409d6 Author: njian Date: 2018-04-28 17:33 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/313dd42409d6 8202186: AArch64: Debug build VM crashes with PrintC1Statistics option Reviewed-by: aph ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp Changeset: 3ab6ba9f94a9 Author: rfield Date: 2018-05-02 18:36 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3ab6ba9f94a9 8202520: JShell tests: move intermittently failing tests to tier2 Reviewed-by: darcy ! test/langtools/TEST.groups Changeset: 7379e6f906ae Author: stuefe Date: 2018-05-03 07:35 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/7379e6f906ae 8202303: LogStream should autoflush on destruction Reviewed-by: dholmes, rehn, zgu ! src/hotspot/share/logging/logStream.cpp ! src/hotspot/share/logging/logStream.hpp ! test/hotspot/gtest/logging/test_logStream.cpp Changeset: 3b43e97b3697 Author: amlu Date: 2018-05-03 15:04 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/3b43e97b3697 8202575: Remove java/lang/String/nativeEncoding/StringPlatformChars.java from ProblemList Reviewed-by: alanb ! test/jdk/ProblemList.txt Changeset: 93a7cbd3f838 Author: asiebenborn Date: 2018-04-26 12:54 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/93a7cbd3f838 8195002: Fix test/hotspot/jtreg/gtest/GTestWrapper.java on Alpine/Musl Reviewed-by: stuefe, clanger, mikael ! test/hotspot/jtreg/gtest/GTestWrapper.java Changeset: 99e698e94cc7 Author: tschatzl Date: 2018-05-03 14:09 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery Summary: Collectors like G1 implementing non-contiguous generations previously used an inexact but conservative area for discovery. Concurrent and STW reference processing could discover the same reference multiple times, potentially missing referents during evacuation. So these collectors had to take extra measures while concurrent marking/reference discovery has been running. This change makes discovery exact for G1 (and any collector using non-contiguous generations) so that concurrent discovery and STW discovery discover on strictly disjoint memory areas. This means that the mentioned situation can not occur any more, and extra work is not required any more too. Reviewed-by: kbarrett, sjohanss ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.hpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.inline.hpp ! src/hotspot/share/gc/g1/g1FullCollector.cpp ! src/hotspot/share/gc/g1/g1FullCollector.hpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp ! src/hotspot/share/gc/parallel/asPSYoungGen.cpp ! src/hotspot/share/gc/parallel/psMarkSweep.cpp ! src/hotspot/share/gc/parallel/psMarkSweep.hpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.hpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/parallel/psScavenge.hpp ! src/hotspot/share/gc/parallel/psYoungGen.cpp ! src/hotspot/share/gc/shared/generation.cpp ! src/hotspot/share/gc/shared/generation.hpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/referenceProcessor.hpp ! test/hotspot/jtreg/gc/g1/TestGCLogMessages.java Changeset: befc76c55940 Author: tschatzl Date: 2018-05-03 14:09 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/befc76c55940 8201640: Use _ref_processor_* member variables directly in G1CollectedHeap Reviewed-by: sjohanss ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp Changeset: cac87c923310 Author: tschatzl Date: 2018-05-03 14:09 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/cac87c923310 8202018: Move card table clear before enqueuing pending references Summary: Move card table clearing in preparation of removal of the Reference enqueue phase. Reviewed-by: sangheki, sjohanss ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp Changeset: 672ded60a082 Author: tschatzl Date: 2018-05-03 14:10 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/672ded60a082 8202021: Improve variable naming in ReferenceProcesso Reviewed-by: sangheki, sjohanss ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1FullGCReferenceProcessorExecutor.cpp ! src/hotspot/share/gc/parallel/psMarkSweep.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/genMarkSweep.cpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/referenceProcessor.hpp ! src/hotspot/share/gc/shared/referenceProcessor.inline.hpp Changeset: 33a76b934213 Author: zgu Date: 2018-05-03 08:07 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/33a76b934213 8199067: [REDO] NMT: Enhance thread stack tracking Summary: Precise thread stack tracking on Linux and Windows Reviewed-by: stuefe, coleenp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/os.hpp ! src/hotspot/share/services/memTracker.hpp ! src/hotspot/share/services/virtualMemoryTracker.cpp ! src/hotspot/share/services/virtualMemoryTracker.hpp + test/hotspot/gtest/runtime/test_committed_virtualmemory.cpp Changeset: 8624981f1ffa Author: coleenp Date: 2018-04-27 15:00 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/8624981f1ffa 8202447: Fix unloading_occurred to mean unloading_occurred Summary: nmethod unloading does not need to test for jvmti to set unloading_occurred, nor do we need to clean weak Klasses in metadata if unloading does not occur. Reviewed-by: sspitsyn, rehn ! src/hotspot/share/code/compiledMethod.cpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/parallel/psMarkSweep.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/serial/genMarkSweep.cpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/prims/jvmtiExport.hpp Changeset: fc778e86381f Author: vromero Date: 2018-05-03 06:20 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/fc778e86381f 8202584: de-problem list tools/javac/jvm/VerboseOutTest Reviewed-by: mcimadamore ! test/langtools/ProblemList.txt Changeset: bafa1860c107 Author: stuefe Date: 2018-04-30 15:55 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bafa1860c107 8202424: Metaspace: on chunk retirement, use correct lower limit on chunksize when adding blocks to free blocks list Reviewed-by: zgu, coleenp ! src/hotspot/share/memory/metaspace.cpp Changeset: 37b2446d7f86 Author: kvn Date: 2018-05-03 09:07 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/37b2446d7f86 8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT Reviewed-by: stefank, ihse ! make/hotspot/lib/JvmFeatures.gmk ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp ! src/hotspot/share/compiler/oopMap.cpp ! src/hotspot/share/gc/shared/cardTableBarrierSet.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/deoptimization.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/utilities/macros.hpp Changeset: e3653598e3b0 Author: mchung Date: 2018-05-03 11:18 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/e3653598e3b0 8201793: (ref) Reference object should not support cloning Reviewed-by: psandoz, kbarrett ! src/java.base/share/classes/java/lang/ref/Reference.java + test/jdk/java/lang/ref/ReferenceClone.java Changeset: b7be5758a838 Author: joehw Date: 2018-05-03 12:13 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/b7be5758a838 8201138: Defect in XMLEventReader.getElementText() may cause data to be skipped, duplicated or otherwise result in a ClassCastException Reviewed-by: lancea ! src/java.xml/share/classes/com/sun/xml/internal/stream/XMLEventReaderImpl.java + test/jaxp/javax/xml/jaxp/unittest/stream/XMLEventReaderTest/JDK8201138.java From maurizio.cimadamore at oracle.com Thu May 3 20:00:26 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:00:26 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032000.w43K0QuR021057@aojmv0008.oracle.com> Changeset: bbbf2afa4caf Author: mcimadamore Date: 2018-05-03 22:04 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bbbf2afa4caf Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:00:46 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:00:46 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032000.w43K0kmr021418@aojmv0008.oracle.com> Changeset: d5c19193c3c9 Author: mcimadamore Date: 2018-05-03 22:05 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/d5c19193c3c9 Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:01:06 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:01:06 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032001.w43K16KC021742@aojmv0008.oracle.com> Changeset: 126f0368d481 Author: mcimadamore Date: 2018-05-03 22:05 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/126f0368d481 Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:01:26 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:01:26 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032001.w43K1QpJ022271@aojmv0008.oracle.com> Changeset: 23f5dd367e9d Author: mcimadamore Date: 2018-05-03 22:05 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/23f5dd367e9d Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:01:46 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:01:46 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032001.w43K1kVm022671@aojmv0008.oracle.com> Changeset: 2b2f7f718910 Author: mcimadamore Date: 2018-05-03 22:06 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2b2f7f718910 Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/DeferredAttr.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:02:06 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:02:06 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032002.w43K26av023048@aojmv0008.oracle.com> Changeset: 51fa46426842 Author: mcimadamore Date: 2018-05-03 22:06 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/51fa46426842 Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:02:27 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:02:27 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032002.w43K2Rht023383@aojmv0008.oracle.com> Changeset: 3c70ef98f66a Author: mcimadamore Date: 2018-05-03 22:06 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/3c70ef98f66a Automatic merge with default - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/model/JavacElements.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/BaseConfiguration.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From maurizio.cimadamore at oracle.com Thu May 3 20:02:47 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 03 May 2018 20:02:47 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805032002.w43K2mi1023690@aojmv0008.oracle.com> Changeset: 97341d327bc2 Author: mcimadamore Date: 2018-05-03 22:07 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/97341d327bc2 Automatic merge with default ! make/Docs.gmk ! make/GenerateLinkOptData.gmk ! make/autoconf/jdk-options.m4 ! make/test/JtregNativeHotspot.gmk ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/systemDictionary.cpp - src/hotspot/share/gc/g1/bufferingOopClosure.hpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/runtime/globals.hpp ! src/java.base/share/classes/java/lang/invoke/MethodHandles.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java From vicente.romero at oracle.com Fri May 4 18:34:02 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 04 May 2018 18:34:02 +0000 Subject: hg: amber/amber: removing Lookup argument from describeConstable() and adding FieldDescriptor, MethodDescriptor and TypeDescriptor Message-ID: <201805041834.w44IY2g7029401@aojmv0008.oracle.com> Changeset: 1ecd754523c6 Author: vromero Date: 2018-05-04 11:20 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/1ecd754523c6 removing Lookup argument from describeConstable() and adding FieldDescriptor, MethodDescriptor and TypeDescriptor ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/invoke/MethodHandle.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/EnumDesc.java + src/java.base/share/classes/java/lang/invoke/constant/FieldDescriptor.java + src/java.base/share/classes/java/lang/invoke/constant/MethodDescriptor.java ! src/java.base/share/classes/java/lang/invoke/constant/MethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java + src/java.base/share/classes/java/lang/invoke/constant/TypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/constant/VarHandleDesc.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Constables.java ! test/langtools/tools/javac/specialConstantFolding/IndyLinkageErrorTest.java ! test/langtools/tools/javac/specialConstantFolding/IndyNegativeTest01.java ! test/langtools/tools/javac/specialConstantFolding/IndyPositiveTest01.java ! test/langtools/tools/javac/specialConstantFolding/IntrinsicsTest.java From james.laskey at oracle.com Mon May 7 19:47:59 2018 From: james.laskey at oracle.com (james.laskey at oracle.com) Date: Mon, 07 May 2018 19:47:59 +0000 Subject: hg: amber/amber: 0000000: revise based on CSR approval Message-ID: <201805071947.w47Jlx87014789@aojmv0008.oracle.com> Changeset: 5ca077b4ad41 Author: jlaskey Date: 2018-05-07 16:47 -0300 URL: http://hg.openjdk.java.net/amber/amber/rev/5ca077b4ad41 0000000: revise based on CSR approval ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java From vicente.romero at oracle.com Tue May 8 14:55:34 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Tue, 08 May 2018 14:55:34 +0000 Subject: hg: amber/amber: replacing the signature for Enum.describeConstable Message-ID: <201805081455.w48EtYdH010631@aojmv0008.oracle.com> Changeset: 3e41ca0d8cfd Author: vromero Date: 2018-05-08 07:38 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3e41ca0d8cfd replacing the signature for Enum.describeConstable ! src/java.base/share/classes/java/lang/Enum.java From maurizio.cimadamore at oracle.com Thu May 10 19:59:21 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 19:59:21 +0000 Subject: hg: amber/amber: 104 new changesets Message-ID: <201805101959.w4AJxTPo020639@aojmv0008.oracle.com> Changeset: 2882764cc79c Author: jjg Date: 2018-05-03 12:56 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/2882764cc79c 8194968: problem list actions for tools/javac/jvm/VerboseOutTest Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/JNIWriter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/JavaCompiler.java ! test/langtools/tools/javac/jvm/VerboseOutTest.java Changeset: 19829b375d08 Author: erikj Date: 2018-05-03 14:13 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/19829b375d08 8200083: Bump bootjdk requirement for JDK 11 to JDK 10 Reviewed-by: tbell, ihse ! make/autoconf/version-numbers ! make/conf/jib-profiles.js Changeset: 9f758f0bb058 Author: kbarrett Date: 2018-05-03 17:36 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/9f758f0bb058 8200557: OopStorage parallel iteration scales poorly Summary: Change representation of sequence of all blocks for better scaling. Reviewed-by: coleenp, eosterlund ! src/hotspot/share/gc/shared/oopStorage.cpp ! src/hotspot/share/gc/shared/oopStorage.hpp ! src/hotspot/share/gc/shared/oopStorage.inline.hpp ! src/hotspot/share/gc/shared/oopStorageParState.hpp ! src/hotspot/share/gc/shared/oopStorageParState.inline.hpp ! test/hotspot/gtest/gc/shared/test_oopStorage.cpp + test/hotspot/gtest/gc/shared/test_oopStorage_parperf.cpp Changeset: 64229f3e9716 Author: lana Date: 2018-05-03 22:29 +0000 URL: http://hg.openjdk.java.net/amber/amber/rev/64229f3e9716 Added tag jdk-11+12 for changeset 3ab6ba9f94a9 ! .hgtags Changeset: b70281f5146e Author: erikj Date: 2018-05-03 17:36 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/b70281f5146e 8196113: Remove the Compact Profile builds Reviewed-by: tbell, alanb ! make/Bundles.gmk ! make/Help.gmk ! make/Images.gmk ! make/Main.gmk ! make/autoconf/spec.gmk.in Changeset: 57dd7b4ba338 Author: stuefe Date: 2018-04-24 18:06 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/57dd7b4ba338 8201572: Improve Metaspace Statistics Reviewed-by: adinn, zgu ! src/hotspot/share/memory/metachunk.hpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/metaspace.hpp + src/hotspot/share/memory/metaspace/metaspaceCommon.cpp + src/hotspot/share/memory/metaspace/metaspaceCommon.hpp + src/hotspot/share/memory/metaspace/metaspaceDCmd.cpp + src/hotspot/share/memory/metaspace/metaspaceDCmd.hpp + src/hotspot/share/memory/metaspace/metaspaceStatistics.cpp + src/hotspot/share/memory/metaspace/metaspaceStatistics.hpp ! src/hotspot/share/runtime/vm_operations.cpp ! src/hotspot/share/runtime/vm_operations.hpp ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/diagnosticCommand.hpp ! src/hotspot/share/services/memReporter.cpp ! src/hotspot/share/services/memTracker.cpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/hotspot/share/services/nmtCommon.cpp ! src/hotspot/share/services/virtualMemoryTracker.cpp ! src/hotspot/share/utilities/ostream.cpp ! src/hotspot/share/utilities/ostream.hpp ! src/hotspot/share/utilities/vmError.cpp ! test/hotspot/jtreg/TEST.ROOT + test/hotspot/jtreg/runtime/Metaspace/PrintMetaspaceDcmd.java ! test/hotspot/jtreg/runtime/NMT/PrintNMTStatistics.java Changeset: bd0a95bec96b Author: redestad Date: 2018-05-04 09:29 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bd0a95bec96b 8187123: (reflect) Class#getCanonicalName and Class#getSimpleName is a part of performance issue Reviewed-by: psandoz, dholmes, mchung ! src/java.base/share/classes/java/lang/Class.java Changeset: 9042ffe5b7fe Author: stefank Date: 2018-05-04 11:41 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/9042ffe5b7fe 8200729: Conditional compilation of GCs Reviewed-by: ehelin, coleenp, kvn, ihse ! make/autoconf/hotspot.m4 ! make/hotspot/lib/JvmDtraceObjects.gmk ! make/hotspot/lib/JvmFeatures.gmk ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp ! src/hotspot/cpu/arm/assembler_arm.cpp ! src/hotspot/cpu/arm/assembler_arm_32.cpp ! src/hotspot/cpu/arm/assembler_arm_64.cpp ! src/hotspot/cpu/arm/interp_masm_arm.cpp ! src/hotspot/cpu/ppc/assembler_ppc.cpp ! src/hotspot/cpu/s390/assembler_s390.cpp ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/zero/assembler_zero.cpp ! src/hotspot/cpu/zero/cppInterpreterGenerator_zero.cpp ! src/hotspot/os/windows/attachListener_windows.cpp ! src/hotspot/share/aot/aotCodeHeap.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/compiler/abstractCompiler.cpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.hpp ! src/hotspot/share/gc/g1/g1Arguments.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1FullGCMarker.cpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.cpp ! src/hotspot/share/gc/g1/g1RootProcessor.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.inline.hpp + src/hotspot/share/gc/parallel/psMarkSweepProxy.hpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psOldGen.hpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/parallel/psTasks.cpp ! src/hotspot/share/gc/parallel/psYoungGen.cpp ! src/hotspot/share/gc/parallel/psYoungGen.hpp ! src/hotspot/share/gc/parallel/vmPSOperations.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/serial/vmStructs_serial.hpp ! src/hotspot/share/gc/shared/barrierSetConfig.hpp ! src/hotspot/share/gc/shared/barrierSetConfig.inline.hpp ! src/hotspot/share/gc/shared/blockOffsetTable.hpp ! src/hotspot/share/gc/shared/cardGeneration.cpp ! src/hotspot/share/gc/shared/cardTableRS.cpp ! src/hotspot/share/gc/shared/collectedHeap.inline.hpp ! src/hotspot/share/gc/shared/collectorPolicy.hpp ! src/hotspot/share/gc/shared/gcConfig.cpp ! src/hotspot/share/gc/shared/gcTrace.cpp ! src/hotspot/share/gc/shared/gcTrace.hpp ! src/hotspot/share/gc/shared/gcTraceSend.cpp ! src/hotspot/share/gc/shared/gc_globals.hpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/gc/shared/genCollectedHeap.hpp ! src/hotspot/share/gc/shared/genMemoryPools.cpp ! src/hotspot/share/gc/shared/genOopClosures.cpp ! src/hotspot/share/gc/shared/genOopClosures.hpp ! src/hotspot/share/gc/shared/genOopClosures.inline.hpp ! src/hotspot/share/gc/shared/generation.cpp ! src/hotspot/share/gc/shared/generation.hpp ! src/hotspot/share/gc/shared/generationSpec.cpp ! src/hotspot/share/gc/shared/jvmFlagConstraintsGC.cpp ! src/hotspot/share/gc/shared/jvmFlagConstraintsGC.hpp ! src/hotspot/share/gc/shared/preservedMarks.inline.hpp ! src/hotspot/share/gc/shared/space.cpp ! src/hotspot/share/gc/shared/space.hpp ! src/hotspot/share/gc/shared/space.inline.hpp ! src/hotspot/share/gc/shared/specialized_oop_closures.hpp ! src/hotspot/share/gc/shared/vmGCOperations.cpp ! src/hotspot/share/gc/shared/vmStructs_gc.hpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/jvmci/jvmciRuntime.hpp ! src/hotspot/share/jvmci/vmStructs_jvmci.cpp ! src/hotspot/share/memory/filemap.cpp ! src/hotspot/share/memory/metaspaceShared.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/oops/arrayKlass.hpp ! src/hotspot/share/oops/instanceClassLoaderKlass.hpp ! src/hotspot/share/oops/instanceClassLoaderKlass.inline.hpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/oops/instanceKlass.inline.hpp ! src/hotspot/share/oops/instanceMirrorKlass.hpp ! src/hotspot/share/oops/instanceMirrorKlass.inline.hpp ! src/hotspot/share/oops/instanceRefKlass.hpp ! src/hotspot/share/oops/instanceRefKlass.inline.hpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/objArrayKlass.hpp ! src/hotspot/share/oops/oop.cpp ! src/hotspot/share/oops/oop.hpp ! src/hotspot/share/oops/oop.inline.hpp ! src/hotspot/share/oops/typeArrayKlass.hpp ! src/hotspot/share/opto/arraycopynode.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/escape.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/graphKit.hpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/precompiled/precompiled.hpp ! src/hotspot/share/prims/forte.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvmtiExport.cpp ! src/hotspot/share/prims/jvmtiTagMap.cpp ! src/hotspot/share/prims/methodComparator.cpp ! src/hotspot/share/prims/resolvedMethodTable.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/flags/jvmFlagWriteableList.cpp ! src/hotspot/share/runtime/init.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/memprofiler.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/reflection.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/sharedRuntime.hpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp ! src/hotspot/share/runtime/thread.inline.hpp ! src/hotspot/share/runtime/unhandledOops.cpp ! src/hotspot/share/utilities/hashtable.cpp ! src/hotspot/share/utilities/macros.hpp ! test/hotspot/gtest/gc/parallel/test_psAdaptiveSizePolicy.cpp ! test/hotspot/gtest/gc/shared/test_memset_with_concurrent_readers.cpp Changeset: 41069c4fad29 Author: rgoel Date: 2018-05-04 15:44 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/41069c4fad29 8202582: DateTimeFormatterBuilder.parseOffsetBased unnecessarily calls toString() Summary: call text.subSequence() before calling toString() on input string Reviewed-by: igerasim ! src/java.base/share/classes/java/time/format/DateTimeFormatterBuilder.java Changeset: aa3afd9bda87 Author: lkorinth Date: 2018-05-03 15:17 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/aa3afd9bda87 8176717: GC log file handle leaked to child processes Reviewed-by: stuefe, rehn ! src/hotspot/share/logging/logFileOutput.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/os.hpp + test/hotspot/jtreg/runtime/8176717/TestInheritFD.java Changeset: 44e581f54d08 Author: clanger Date: 2018-05-04 14:37 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/44e581f54d08 8202181: Correctly specify size of hostname buffer in Unix Inet*AddressImpl_getLocalHostName implementations Reviewed-by: stuefe, bpb, vtewari, chegar ! src/java.base/unix/native/libnet/Inet4AddressImpl.c ! src/java.base/unix/native/libnet/Inet6AddressImpl.c ! src/java.base/unix/native/libnet/net_util_md.h Changeset: 29b840b16a96 Author: ecaspole Date: 2018-05-04 10:45 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/29b840b16a96 8197447: LogCompilation throws "couldn't find bytecode" Summary: Handle unstable_fused_if Reviewed-by: kvn, gtriantafill ! src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/UncommonTrapEvent.java Changeset: e4b3cc56e2b2 Author: lfoltan Date: 2018-05-04 12:14 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/e4b3cc56e2b2 8189916: Dynamic Constant support for Sparc Summary: Change to the template interpreter to support dynamic constant on Sparc. Reviewed-by: coleenp, psandoz ! src/hotspot/cpu/aarch64/templateTable_aarch64.cpp ! src/hotspot/cpu/sparc/interp_masm_sparc.cpp ! src/hotspot/cpu/sparc/templateTable_sparc.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp ! test/hotspot/jtreg/runtime/appcds/condy/CondyHelloTest.java ! test/hotspot/jtreg/runtime/condy/BadBSMUseTest.java ! test/hotspot/jtreg/runtime/condy/CondyBadBSMArrayTest.java ! test/hotspot/jtreg/runtime/condy/CondyBadNameTypeTest.java ! test/hotspot/jtreg/runtime/condy/CondyCFVCheckTest.java ! test/hotspot/jtreg/runtime/condy/CondyLDCTest.java ! test/hotspot/jtreg/runtime/condy/CondyNewInvokeSpecialTest.java ! test/jdk/java/lang/invoke/condy/CondyRepeatFailedResolution.java ! test/jdk/java/lang/invoke/condy/CondyReturnPrimitiveTest.java ! test/jdk/java/lang/invoke/condy/CondyWrongType.java ! test/jdk/java/lang/invoke/condy/ConstantBootstrapsTest.java Changeset: 4ed714d1f90b Author: aivanov Date: 2018-04-14 00:25 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/4ed714d1f90b 8201433: Fix potential crash in BufImg_SetupICM Reviewed-by: prr, serb ! src/java.desktop/share/native/libawt/awt/image/BufImgSurfaceData.c + test/jdk/java/awt/image/BufferedImage/ICMColorDataTest/ICMColorDataTest.java Changeset: ecc7b10a1cca Author: sveerabhadra Date: 2018-04-16 10:35 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/ecc7b10a1cca 8181910: [macos] Support dark title bars on macOS Reviewed-by: serb, denis ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java ! src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m + test/jdk/javax/swing/JFrame/DarkTitleBar/DarkTitleBar.java Changeset: 6cd19862c742 Author: pbansal Date: 2018-04-16 15:22 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/6cd19862c742 8153532: Add @throws NPE javadoc to UIManager.setLookAndFeel(String) method description Reviewed-by: prr, serb, kaddepalli ! src/java.desktop/share/classes/javax/swing/UIManager.java + test/jdk/javax/swing/UIManager/UIManagerSetLookAndFeelNPETest.java Changeset: 033f3118dc67 Author: simonis Date: 2018-04-16 16:43 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/033f3118dc67 8201524: [AIX] Don't link libfontmanager against libawt_headless Reviewed-by: erikj, clanger, prr ! make/lib/Awt2dLibraries.gmk Changeset: 6c572aff3648 Author: serb Date: 2018-04-17 18:10 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/6c572aff3648 8201626: Typo in MakeWindowAlwaysOnTop test Reviewed-by: jdv ! test/jdk/java/awt/Dialog/MakeWindowAlwaysOnTop/MakeWindowAlwaysOnTop.java Changeset: 3d2aeea95d8c Author: serb Date: 2018-04-17 18:18 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3d2aeea95d8c 8199932: Missing copyright header in AWT source code Reviewed-by: prr, mhalder ! src/java.desktop/macosx/native/libawt_lwawt/font/CCharToGlyphMapper.m ! src/java.desktop/share/classes/sun/awt/WeakIdentityHashMap.java Changeset: 0e9be7add10a Author: sveerabhadra Date: 2018-04-18 10:43 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/0e9be7add10a 8201598: Fix for 8181910: Support dark title bars on macOS broke the MacOS build Reviewed-by: prr, serb ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java ! src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m - test/jdk/javax/swing/JFrame/DarkTitleBar/DarkTitleBar.java Changeset: 6f595ec05539 Author: jdv Date: 2018-04-18 12:33 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/6f595ec05539 6788458: PNGImageReader ignores tRNS chunk while reading non-indexed RGB/Gray images Reviewed-by: prr, pnarayanan, kaddepalli ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGMetadata.java + test/jdk/javax/imageio/plugins/png/ReadPngGrayImageWithTRNSChunk.java + test/jdk/javax/imageio/plugins/png/ReadPngRGBImageWithTRNSChunk.java Changeset: 39dc39093c5e Author: jdv Date: 2018-04-18 13:22 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/39dc39093c5e 6574555: PNGImageWriter incorrectly sets bKGD chunk Reviewed-by: prr, pnarayanan ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGImageWriter.java + test/jdk/javax/imageio/plugins/png/VerifyRGBValuesFromBKGDChunk.java Changeset: 0540b802b24e Author: prr Date: 2018-04-18 08:48 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/0540b802b24e Merge - src/hotspot/share/gc/cms/vmStructs_parNew.hpp - src/hotspot/share/gc/g1/g1_globals.cpp - src/hotspot/share/memory/binaryTreeDictionary.cpp - src/hotspot/share/memory/freeList.cpp - src/hotspot/share/runtime/commandLineFlagConstraintsGC.cpp - src/hotspot/share/runtime/commandLineFlagConstraintsGC.hpp - src/java.base/share/classes/com/sun/crypto/provider/ai.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AbstractAsyncSSLConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AbstractSubscription.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AsyncEvent.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AsyncSSLConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AsyncSSLTunnelConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AsyncTriggerEvent.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AuthenticationFilter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/BufferingSubscriber.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/ConnectionPool.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/CookieFilter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Exchange.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/ExchangeImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/FilterFactory.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HeaderFilter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HeaderParser.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1AsyncReceiver.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1Exchange.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1HeaderParser.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1Request.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1Response.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http2ClientImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http2Connection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClient.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClientBuilderImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClientFacade.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClientImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpHeaders.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequest.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequestBuilderImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequestImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponseImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpTimeoutException.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/ImmutableHeaders.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/MultiExchange.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/MultiMapResult.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PlainHttpConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PlainProxyConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PlainTunnelingConnection.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PrivilegedExecutor.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PullPublisher.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PushGroup.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/RawChannelImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/RedirectFilter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/RequestPublishers.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Response.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/ResponseContent.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/ResponseSubscribers.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/SSLDelegate.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/SocketTube.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Stream.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/TimeoutEvent.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocket.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocketHandshakeException.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WindowController.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WindowUpdateSender.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/ByteBufferPool.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/ByteBufferReference.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/ConnectionExpiredException.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/DebugLogger.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/Demand.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/FlowTube.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/HttpHeadersImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/Log.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/MinimalFuture.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/Pair.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/SSLFlowDelegate.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/SSLTube.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/SequentialScheduler.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/SubscriberWrapper.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/SubscriptionBase.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/Utils.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/ContinuationFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/DataFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/ErrorFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/FramesDecoder.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/FramesEncoder.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/GoAwayFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/HeaderFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/HeadersFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/Http2Frame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/MalformedFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/OutgoingHeaders.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/PingFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/PriorityFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/PushPromiseFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/ResetFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/SettingsFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/WindowUpdateFrame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/BinaryRepresentationWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/BulkSizeUpdateWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/Decoder.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/DecodingCallback.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/Encoder.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/HPACK.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/HeaderTable.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/Huffman.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/ISO_8859_1.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/IndexNameValueWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/IndexedWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/IntegerReader.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/IntegerWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/LiteralNeverIndexedWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/LiteralWithIndexingWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/LiteralWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/SizeUpdateWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/StringReader.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/StringWriter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/package-info.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/BuilderImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/CheckFailedException.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/FailWebSocketException.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/Frame.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/FrameConsumer.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/MessageStreamConsumer.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/OpeningHandshake.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/OutgoingMessage.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/RawChannel.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/Receiver.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/StatusCodes.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/Transmitter.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/TransportSupplier.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/UTF8AccumulatingDecoder.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/WebSocketImpl.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/WebSocketRequest.java - src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/package-info.java - src/jdk.incubator.httpclient/share/classes/module-info.java - src/jdk.internal.vm.compiler.management/share/classes/org/graalvm/compiler/hotspot/jmx/GraalMBeans.java - test/hotspot/jtreg/runtime/6626217/Test6626217.sh - test/hotspot/jtreg/runtime/6626217/many_loader1.java.foo - test/hotspot/jtreg/runtime/6626217/many_loader2.java.foo - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/BinaryPrimitivesTest.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/BuffersTestingKit.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/CircularBufferTest.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/DecoderTest.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/EncoderTest.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/HeaderTableTest.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/HuffmanTest.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/SpecHelper.java - test/jdk/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/TestHelper.java - test/jdk/java/net/httpclient/security/filePerms/httpclient.policy - test/jdk/java/net/httpclient/websocket/BuildingWebSocketDriver.java - test/jdk/java/net/httpclient/websocket/ConnectionHandover.java - test/jdk/java/net/httpclient/websocket/ReceivingTestDriver.java - test/jdk/java/net/httpclient/websocket/SendingTestDriver.java - test/jdk/java/net/httpclient/websocket/WSHandshakeException.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/BuildingWebSocketTest.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/HeaderWriterTest.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/MaskerTest.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/MockListener.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/MockReceiver.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/MockTransmitter.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/MockTransport.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/ReaderTest.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/ReceivingTest.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/SendingTest.java - test/jdk/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/TestSupport.java - test/jdk/java/net/httpclient/whitebox/Driver.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/AbstractRandomTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/AbstractSSLTubeTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/ConnectionPoolTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/FlowTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/Http1HeaderParserTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/RawChannelTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/SSLEchoTubeTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/SSLTubeTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/SelectorTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/WrapperTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/internal/common/DemandTest.java - test/jdk/java/net/httpclient/whitebox/jdk.incubator.httpclient/jdk/incubator/http/internal/frame/FramesDecoderTest.java - test/langtools/tools/javac/diags/examples/PreviewPluralAdditional/PreviewPluralAdditional.java - test/langtools/tools/javac/diags/examples/PreviewPluralAdditional/PreviewPluralAdditionalBar.java Changeset: 9070717a16a1 Author: serb Date: 2018-04-18 14:07 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/9070717a16a1 8187392: Deprecated methods in the peers can be removed Reviewed-by: prr, kaddepalli ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CMenuItem.java ! src/java.desktop/unix/classes/sun/awt/X11/XButtonPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XChoicePeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XComponentPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XEmbedChildProxyPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XListPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XMenuItemPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XPanelPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XPopupMenuPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XTextFieldPeer.java ! src/java.desktop/unix/classes/sun/awt/X11/XWindowPeer.java ! src/java.desktop/windows/classes/sun/awt/windows/WChoicePeer.java ! src/java.desktop/windows/classes/sun/awt/windows/WComponentPeer.java ! src/java.desktop/windows/classes/sun/awt/windows/WListPeer.java ! src/java.desktop/windows/classes/sun/awt/windows/WMenuItemPeer.java ! src/java.desktop/windows/classes/sun/awt/windows/WPanelPeer.java ! src/java.desktop/windows/classes/sun/awt/windows/WScrollPanePeer.java ! src/java.desktop/windows/native/libawt/windows/awt_Choice.cpp ! src/java.desktop/windows/native/libawt/windows/awt_List.cpp Changeset: d70bc48b2a20 Author: prr Date: 2018-04-20 09:05 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/d70bc48b2a20 Merge ! make/lib/Awt2dLibraries.gmk - src/java.base/windows/classes/java/net/TwoStacksPlainSocketImpl.java - src/java.base/windows/native/libnet/TwoStacksPlainSocketImpl.c - src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM942C.java - src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM943C.java - test/langtools/tools/javac/6410653/T6410653.java - test/langtools/tools/javac/T8009640/CheckRejectProfileBCPOptionsIfUsedTogetherTest.java - test/langtools/tools/javac/options/release/ReleaseOptionClashes.java Changeset: a4a0d0ece022 Author: prr Date: 2018-04-20 09:44 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a4a0d0ece022 8200313: java/awt/Gtk/GtkVersionTest/GtkVersionTest.java fails Reviewed-by: serb, kaddepalli ! test/jdk/java/awt/Gtk/GtkVersionTest/GtkVersionTest.java Changeset: 7985d51b85df Author: serb Date: 2018-04-20 18:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7985d51b85df 8202050: Add javax/sound/midi/Sequencer/Recording.java to the problemList Reviewed-by: prr, darcy ! test/jdk/ProblemList.txt Changeset: 4fad1003357f Author: serb Date: 2018-04-23 14:06 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/4fad1003357f 8200146: Remove the appletviewer launcher Reviewed-by: prr, ihse ! make/Images.gmk - make/launcher/Launcher-java.desktop.gmk ! make/scripts/compare_exceptions.sh.incl - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java Changeset: e2d4ac45fe36 Author: dmarkov Date: 2018-04-24 11:39 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/e2d4ac45fe36 8202143: Parts of 8193435 added in merge change set. Reviewed-by: serb, prr ! src/java.desktop/share/classes/java/awt/Toolkit.java Changeset: b6f4bd0bf173 Author: alitvinov Date: 2018-04-24 15:42 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/b6f4bd0bf173 8199748: Touch keyboard is not shown, if text component gets focus from other text component Reviewed-by: serb, aivanov ! src/java.desktop/windows/classes/sun/awt/windows/WToolkit.java Changeset: 48637783b4f6 Author: ant Date: 2018-04-25 21:54 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/48637783b4f6 8189687: Swing: Invalid position of candidate pop-up of InputMethod in Hi-DPI on Windows Reviewed-by: serb, psadhukhan Contributed-by: anton.tarasov at jetbrains.com ! src/java.desktop/windows/native/libawt/windows/awt_Component.cpp Changeset: 394a0387a3ab Author: serb Date: 2018-04-26 13:33 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/394a0387a3ab 8202301: Add tests related to JDK-8196572 to the ProblemList Reviewed-by: jdv ! test/jdk/ProblemList.txt Changeset: 70a63053cf68 Author: serb Date: 2018-04-26 17:03 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/70a63053cf68 8198342: Test FileSystemViewListenerLeak.java is unstable Reviewed-by: jdv, kaddepalli, psadhukhan ! test/jdk/ProblemList.txt ! test/jdk/javax/swing/JFileChooser/FileSystemView/FileSystemViewListenerLeak.java Changeset: c87a5690e394 Author: kaddepalli Date: 2018-05-02 15:11 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/c87a5690e394 4842658: DefaultListModel and DefaultComboBoxModel should support addAll (Collection c) Reviewed-by: darcy, serb, prr ! src/java.desktop/share/classes/javax/swing/DefaultComboBoxModel.java ! src/java.desktop/share/classes/javax/swing/DefaultListModel.java + test/jdk/javax/swing/JComboBox/DefaultComboBoxModelAddAllElementsTest.java + test/jdk/javax/swing/JList/DefaultListModelAddAllTest.java Changeset: 93cb8fb7a843 Author: prr Date: 2018-05-02 09:16 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/93cb8fb7a843 Merge ! make/Images.gmk - src/hotspot/share/gc/cms/commandLineFlagConstraintsCMS.cpp - src/hotspot/share/gc/cms/commandLineFlagConstraintsCMS.hpp - src/hotspot/share/gc/g1/bufferingOopClosure.hpp - src/hotspot/share/gc/g1/commandLineFlagConstraintsG1.cpp - src/hotspot/share/gc/g1/commandLineFlagConstraintsG1.hpp - src/hotspot/share/gc/parallel/commandLineFlagConstraintsParallel.cpp - src/hotspot/share/gc/parallel/commandLineFlagConstraintsParallel.hpp - src/hotspot/share/gc/shared/commandLineFlagConstraintsGC.cpp - src/hotspot/share/gc/shared/commandLineFlagConstraintsGC.hpp - src/hotspot/share/runtime/commandLineFlagConstraintList.cpp - src/hotspot/share/runtime/commandLineFlagConstraintList.hpp - src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.cpp - src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.hpp - src/hotspot/share/runtime/commandLineFlagConstraintsRuntime.cpp - src/hotspot/share/runtime/commandLineFlagConstraintsRuntime.hpp - src/hotspot/share/runtime/commandLineFlagRangeList.cpp - src/hotspot/share/runtime/commandLineFlagRangeList.hpp - src/hotspot/share/runtime/commandLineFlagWriteableList.cpp - src/hotspot/share/runtime/commandLineFlagWriteableList.hpp - src/java.base/windows/classes/java/net/DualStackPlainSocketImpl.java - src/java.base/windows/native/libnet/DualStackPlainSocketImpl.c - src/java.base/windows/native/libnet/portconfig.c - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferPool.java - src/java.net.http/share/classes/jdk/internal/net/http/common/ByteBufferReference.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections.test/src/org/graalvm/collections/test/EconomicMapImplTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections.test/src/org/graalvm/collections/test/EconomicMapLargeTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections.test/src/org/graalvm/collections/test/EconomicMapTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections.test/src/org/graalvm/collections/test/EconomicSetTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections.test/src/org/graalvm/collections/test/EquivalenceTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections.test/src/org/graalvm/collections/test/PairTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/EconomicMap.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/EconomicMapImpl.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/EconomicSet.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/Equivalence.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/MapCursor.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/Pair.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/UnmodifiableEconomicMap.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/UnmodifiableEconomicSet.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/UnmodifiableMapCursor.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.collections/src/org/graalvm/collections/package-info.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/ModuleAPI.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/CoreCompilerConfiguration.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/Management.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/.checkstyle_checks.xml - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotSuitesProvider.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotGraalMBeanTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CoreCompilerConfigurationFactory.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalMBean.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionValuesAccess.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64ReadNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64ReadReplacementPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.serviceprovider/src/org/graalvm/compiler/serviceprovider/JDK9Method.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual.bench/.checkstyle.exclude - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/.checkstyle_checks.xml - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/ComparableWord.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/LocationIdentity.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/Pointer.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/PointerBase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/SignedWord.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/UnsignedWord.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/WordBase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/WordFactory.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/ImplementedMethods.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/VisibleMemberMap.java - test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp - test/hotspot/jtreg/runtime/SharedArchiveFile/DefaultUseWithClient.java - test/hotspot/jtreg/runtime/SharedArchiveFile/org/omg/CORBA/Context.jasm - test/hotspot/jtreg/runtime/appcds/SharedArchiveFile.java - test/hotspot/jtreg/runtime/appcds/UseAppCDS.java - test/hotspot/jtreg/runtime/appcds/javaldr/CheckAnonymousClass.java - test/hotspot/jtreg/runtime/appcds/jigsaw/classpathtests/src/com/sun/tools/javac/Main2.jasm - test/hotspot/jtreg/runtime/appcds/jigsaw/classpathtests/src/javax/activation/UnsupportedDataTypeException2.jasm - test/hotspot/jtreg/runtime/appcds/jigsaw/overridetests/src/java.activation/javax/activation/UnsupportedDataTypeException.java - test/hotspot/jtreg/runtime/appcds/jigsaw/overridetests/src/java.activation/module-info.java - test/hotspot/jtreg/runtime/appcds/test-classes/javax/activation/MimeType.jasm - test/hotspot/jtreg/runtime/constantPool/ACCModule52.java - test/hotspot/jtreg/runtime/constantPool/ConstModule.java ! test/jdk/ProblemList.txt Changeset: 9a36de1df5db Author: prr Date: 2018-05-02 13:23 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/9a36de1df5db 8154463: New failure of closed/java/awt/font/Outline/OutlineInvarianceTest.java Reviewed-by: serb + test/jdk/java/awt/font/Outline/OutlineInvarianceTest.java Changeset: 3a384c83c756 Author: prr Date: 2018-05-02 14:55 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3a384c83c756 8196572: Tests ColConvCCMTest.java and MTColConvTest.java fail Reviewed-by: serb ! test/jdk/ProblemList.txt ! test/jdk/sun/java2d/cmm/ColorConvertOp/ColConvCCMTest.java Changeset: 37aa8b00c604 Author: anazarov Date: 2018-05-02 22:11 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/37aa8b00c604 8197388: Added not existing bug id in jdk/ProblemList.txt Reviewed-by: serb ! test/jdk/ProblemList.txt Changeset: a2a0c61f8b09 Author: prr Date: 2018-05-04 08:50 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a2a0c61f8b09 Merge ! make/Images.gmk - src/hotspot/share/services/metaspaceDCmd.cpp ! test/jdk/ProblemList.txt Changeset: 09cbe16c0662 Author: prr Date: 2018-05-04 09:46 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/09cbe16c0662 Merge Changeset: d0a350777bd1 Author: kbarrett Date: 2018-05-04 17:52 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/d0a350777bd1 8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6 Summary: Disable warnings. Reviewed-by: dholmes, kbarrett Contributed-by: Gary Adams ! src/hotspot/share/runtime/frame.cpp ! src/hotspot/share/utilities/vmError.cpp Changeset: 947f79c91b35 Author: vlivanov Date: 2018-05-04 16:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/947f79c91b35 8202465: [C1] casts should not be eliminated for interface types Reviewed-by: jrose, thartmann ! src/hotspot/share/c1/c1_Canonicalizer.cpp - test/jdk/java/lang/invoke/I4Special.jcod ! test/jdk/java/lang/invoke/SpecialInterfaceCall.java + test/jdk/java/lang/invoke/SpecialInterfaceCallI4.jasm Changeset: 88cc95780b6e Author: rfield Date: 2018-05-04 23:19 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/88cc95780b6e 8199912: jshell tool: /open from URI Reviewed-by: rfield Contributed-by: mvala at redhat.com ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/JShellTool.java ! test/langtools/jdk/jshell/ToolBasicTest.java Changeset: 3ba0d8631f24 Author: iignatyev Date: 2018-05-05 09:24 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3ba0d8631f24 8199382: [TESTBUG] Open source VM testbase JDI tests Reviewed-by: erikj, kvn, sspitsyn ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/ProblemList-graal.txt ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/nsk/jdi/AccessWatchpointEvent/_itself_/awevent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AccessWatchpointEvent/_itself_/awevent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AccessWatchpointEvent/_itself_/awevent001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPackagePrivate/accipp001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPackagePrivate/accipp001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPackagePrivate/accipp001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPackagePrivate/accipp002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPackagePrivate/accipp002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPackagePrivate/accipp002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPrivate/isPrivate001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPrivate/isPrivate001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPrivate/isPrivate001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPrivate/isprivate002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPrivate/isprivate002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPrivate/isprivate002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isProtected/isProtected001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isProtected/isProtected001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isProtected/isProtected001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isProtected/isprotected002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isProtected/isprotected002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isProtected/isprotected002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/isPublic001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/isPublic001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/isPublic001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/ispublic002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/ispublic002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/ispublic002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/ispublic003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/ispublic003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/isPublic/ispublic003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/modifiers/modifiers001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/modifiers/modifiers001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/modifiers/modifiers001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/modifiers/modifiers002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/modifiers/modifiers002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Accessible/modifiers/modifiers002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/description/description001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/description/description001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/isValid/isvalid005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/label/label001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/label/label001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/mustSpecify/mustspecify001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/mustSpecify/mustspecify001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/setValue/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/setValue/setvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/setValue/setvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/setValue/setvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Argument/value/value004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValue/getvalue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues/getvalues003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/getValues_ii/getvaluesii005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/length/length001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/length/length001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/length/length001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValue/setvalue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayReference/setValues_l/setvaluesl003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentSignature/componentsignature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentSignature/componentsignature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentSignature/componentsignature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentSignature/componentsignature002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentSignature/componentsignature002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentSignature/componentsignature002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentType/componenttype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentType/componenttype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentType/componenttype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentTypeName/componenttypename001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentTypeName/componenttypename001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentTypeName/componenttypename001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentTypeName/componenttypename002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentTypeName/componenttypename002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/componentTypeName/componenttypename002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ArrayType/newInstance/newinstance004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach004/TestDriver.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach004/attach004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach004/attach004t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attach/attach005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attachnosuspend/attachnosuspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attachnosuspend/attachnosuspend001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attachnosuspend/attachnosuspend001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attachnosuspend/attachnosuspend002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/AttachingConnector/attachnosuspend/attachnosuspend003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x001/newclass/tc01x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002/newclass/tc01x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001/newclass/tc02x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002/newclass/tc02x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc03x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc03x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc03x001/newclass/tc03x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc03x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001/newclass/tc04x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002/newclass/tc04x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x001/newclass/tc05x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x002/newclass/tc05x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc05x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001/newclass/tc06x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc07x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc07x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc07x001/newclass/tc07x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc07x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001/newclass/tc08x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x001/newclass/tc09x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x002/newclass/tc09x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc09x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x001/newclass/tc10x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002/newclass/tc10x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc01x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc01x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc01x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc03x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc03x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc03x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc04x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc04x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/multithrd/tc04x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc01x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc01x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc01x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc01x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc01x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc01x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc02x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc02x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc02x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc03x003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc04x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc04x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc04x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc05x001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc05x001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BScenarios/singlethrd/tc05x001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/booleanValue/booleanvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/booleanValue/booleanvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/booleanValue/booleanvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/booleanValue/booleanvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/isValid/isvalid001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/isValid/isvalid001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/isValid/isvalid002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/isValid/isvalid002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/setValue/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/setValue/setvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/setValue/setvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/setValue/setvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/stringValueOf/stringvalueof001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/stringValueOf/stringvalueof001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/stringValueOf/stringvalueof002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanArgument/stringValueOf/stringvalueof002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanType/_itself_/booleantype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanType/_itself_/booleantype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanType/_itself_/booleantype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointEvent/_itself_/breakpoint001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointEvent/_itself_/breakpoint001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointEvent/_itself_/breakpoint001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointEvent/_itself_/breakpoint002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointEvent/_itself_/breakpoint002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointEvent/_itself_/breakpoint002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addThreadFilter/threadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/location/location001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/location/location001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/location/location001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteType/_itself_/bytetype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteType/_itself_/bytetype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteType/_itself_/bytetype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ByteValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharType/_itself_/chartype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharType/_itself_/chartype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharType/_itself_/chartype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/CharValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses003/loadclass/definedclasses003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses003/loadclass/definedclasses003c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses005/loadclass/definedclasses005b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/definedClasses/definedclasses005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/visibleClasses/visibleclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/visibleClasses/visibleclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/visibleClasses/visibleclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/visibleClasses/visibleclasses002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/visibleClasses/visibleclasses002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassLoaderReference/visibleClasses/visibleclasses002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype002/loadclass/reflectype002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/reflectedType/reflectype002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassObjectReference/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareEvent/referenceType/refType001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareEvent/referenceType/refType001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareEvent/referenceType/refType001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareEvent/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareEvent/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareEvent/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassExclusionFilter/filter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_rt/filter_rt003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_s/filter_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_s/filter_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_s/filter_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_s/filter_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_s/filter_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addClassFilter_s/filter_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addSourceNameFilter/addSourceNameFilter001/TestClass2.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addSourceNameFilter/addSourceNameFilter001/addSourceNameFilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassPrepareRequest/addSourceNameFilter/addSourceNameFilter002/addSourceNameFilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/allInterfaces/allinterfaces001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/allInterfaces/allinterfaces001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/allInterfaces/allinterfaces001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/allInterfaces/allinterfaces002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/allInterfaces/allinterfaces002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/allInterfaces/allinterfaces002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/concreteMethodByName/method001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/concreteMethodByName/method001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/concreteMethodByName/method001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/concreteMethodByName/method002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/concreteMethodByName/method002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/concreteMethodByName/method002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/interfaces/interfaces001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/interfaces/interfaces001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/interfaces/interfaces001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/interfaces/interfaces002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/interfaces/interfaces002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/interfaces/interfaces002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod009t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod010t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod011.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod011t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod012.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod012t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod013.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod013t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod014.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod014/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod014t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod015.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod015/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/invokeMethod/invokemethod015a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/isEnum/isenum001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/isEnum/isenum001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/isEnum/isenum001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/newInstance/newinstance009t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue006t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue007t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/setValue/setvalue008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/subclasses/subclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/subclasses/subclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/subclasses/subclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/subclasses/subclasses002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/subclasses/subclasses002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/subclasses/subclasses002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/superclass/superclass001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/superclass/superclass001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/superclass/superclass001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/superclass/superclass002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/superclass/superclass002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassType/superclass/superclass002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/className/classname001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/className/classname001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/className/classname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/className/classname001/loadclass/classname001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/className/classname001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/classSignature/signature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/classSignature/signature001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/classSignature/signature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/classSignature/signature001/loadclass/signature001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/classSignature/signature001/loadclass/signature001c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadEvent/classSignature/signature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter001/loadclass/Superexclfilter001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassExclusionFilter/exclfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter001/loadclass/Superfilter001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ClassUnloadRequest/addClassFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/_bounds_/bounds001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/_bounds_/bounds001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/_bounds_/bounds001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/defaultArguments/defaultArguments001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/defaultArguments/defaultArguments001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/defaultArguments/defaultArguments002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/defaultArguments/defaultArguments002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/defaultArguments/defaultArguments003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/defaultArguments/defaultArguments003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/description/description001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/description/description001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/transport/transport001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Connector/transport/transport001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ConnectorsJarBuilder.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ConstantField/values001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ConstantField/values001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleType/_itself_/doubletype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleType/_itself_/doubletype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleType/_itself_/doubletype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/DoubleValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/_itself_/event001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/_itself_/event001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/_itself_/event001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/_itself_/event002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/_itself_/event002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/_itself_/event002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/request/request001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/request/request001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Event/request/request001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventIterator/nextEvent/nextevent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventIterator/nextEvent/nextevent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventIterator/nextEvent/nextevent001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove/remove004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/_bounds_/eventrequest001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/_bounds_/eventrequest001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/_bounds_/eventrequest001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/addCountFilter/addcountfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/addCountFilter/addcountfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/addCountFilter/addcountfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable003/newclass/disable003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/disable/disable003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/enable/enable001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/enable/enable001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/enable/enable001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/enable/enable002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/enable/enable002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/enable/enable002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/getProperty/getproperty001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/getProperty/getproperty001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/getProperty/getproperty001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/isEnabled/isenabled001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/isEnabled/isenabled001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/isEnabled/isenabled001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/putProperty/putproperty001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/putProperty/putproperty001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/putProperty/putproperty001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setSuspendPolicy/setsuspendpolicy001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setSuspendPolicy/setsuspendpolicy001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/setSuspendPolicy/setsuspendpolicy001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/suspendPolicy/suspendpolicy001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/suspendPolicy/suspendpolicy001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequest/suspendPolicy/suspendpolicy001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/_bounds_/requests001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/_bounds_/requests001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/_bounds_/requests001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/accessWatchpointRequests/accwtchpreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/accessWatchpointRequests/accwtchpreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/accessWatchpointRequests/accwtchpreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/accessWatchpointRequests/accwtchpreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/accessWatchpointRequests/accwtchpreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/accessWatchpointRequests/accwtchpreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/breakpointRequests/breakpreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/breakpointRequests/breakpreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/breakpointRequests/breakpreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/breakpointRequests/breakpreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/breakpointRequests/breakpreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/breakpointRequests/breakpreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classPrepareRequests/clsprepreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classPrepareRequests/clsprepreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classPrepareRequests/clsprepreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classPrepareRequests/clsprepreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classPrepareRequests/clsprepreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classPrepareRequests/clsprepreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classUnloadRequests/clsunlreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classUnloadRequests/clsunlreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classUnloadRequests/clsunlreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classUnloadRequests/clsunlreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classUnloadRequests/clsunlreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/classUnloadRequests/clsunlreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createAccessWatchpointRequest/craccwtchpreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createAccessWatchpointRequest/craccwtchpreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createAccessWatchpointRequest/craccwtchpreq002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createAccessWatchpointRequest/craccwtchpreq003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createAccessWatchpointRequest/craccwtchpreq003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createAccessWatchpointRequest/craccwtchpreq003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createBreakpointRequest/crbreakpreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createBreakpointRequest/crbreakpreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createBreakpointRequest/crbreakpreq002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createBreakpointRequest/crbreakpreq003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createBreakpointRequest/crbreakpreq003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createBreakpointRequest/crbreakpreq003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createClassPrepareRequest/cpreg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createClassPrepareRequest/cpreg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createClassPrepareRequest/cpreg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createClassUnloadRequest/cureg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createClassUnloadRequest/cureg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createClassUnloadRequest/cureg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createExceptionRequest/crexreq009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createExceptionRequest/crexreq009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createExceptionRequest/crexreq009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createExceptionRequest/crexreq010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createExceptionRequest/crexreq010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createExceptionRequest/crexreq010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createMethodEntryRequest/menreg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createMethodEntryRequest/menreg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createMethodEntryRequest/menreg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createMethodExitRequest/mexreg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createMethodExitRequest/mexreg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createMethodExitRequest/mexreg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createModificationWatchpointRequest/crmodwtchpreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createModificationWatchpointRequest/crmodwtchpreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createModificationWatchpointRequest/crmodwtchpreq002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createModificationWatchpointRequest/crmodwtchpreq003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createModificationWatchpointRequest/crmodwtchpreq003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createModificationWatchpointRequest/crmodwtchpreq003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createThreadDeathRequest/tdreg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createThreadDeathRequest/tdreg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createThreadDeathRequest/tdreg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createThreadStartRequest/tsreg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createThreadStartRequest/tsreg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createThreadStartRequest/tsreg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createVMDeathRequest/vmdreg001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createVMDeathRequest/vmdreg001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createVMDeathRequest/vmdreg001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteAllBreakpoints/delallbreakp002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteAllBreakpoints/delallbreakp002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteAllBreakpoints/delallbreakp002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq003/newclass/delevtreq003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequest/delevtreq003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequests/delevtreqs002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequests/delevtreqs002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequests/delevtreqs002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq001c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/exceptionRequests/excreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodEntryRequests/methentreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodEntryRequests/methentreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodEntryRequests/methentreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodEntryRequests/methentreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodEntryRequests/methentreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodEntryRequests/methentreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodExitRequests/methexitreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodExitRequests/methexitreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodExitRequests/methexitreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodExitRequests/methexitreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodExitRequests/methexitreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/methodExitRequests/methexitreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/modificationWatchpointRequests/modwtchpreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/modificationWatchpointRequests/modwtchpreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/modificationWatchpointRequests/modwtchpreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/modificationWatchpointRequests/modwtchpreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/modificationWatchpointRequests/modwtchpreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/modificationWatchpointRequests/modwtchpreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadDeathRequests/thrdeathreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadDeathRequests/thrdeathreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadDeathRequests/thrdeathreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadDeathRequests/thrdeathreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadDeathRequests/thrdeathreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadDeathRequests/thrdeathreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests/thrstartreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests/thrstartreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests/thrstartreq001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests/thrstartreq002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests/thrstartreq002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests/thrstartreq002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/vmDeathRequests/vmdeathreq001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/vmDeathRequests/vmdeathreq001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/vmDeathRequests/vmdeathreq001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/eventIterator/eventiterator004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume011.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume012.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume012a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume013.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/resume/resume013a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy011.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy012.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy012a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy013.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy013a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy014.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy014/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy014a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy015.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy015/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy015a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy016.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy016/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy016a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy017.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy017/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy017a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy018.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy018/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/suspendPolicy/suspendpolicy018a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/virtualMachine/virtualmachine001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/virtualMachine/virtualmachine001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/EventSet/virtualMachine/virtualmachine001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent004t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent006t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent007t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/_itself_/exevent008t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/exception/exception001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/exception/exception001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionEvent/exception/exception001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassExclusionFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassExclusionFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassExclusionFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassExclusionFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassExclusionFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassExclusionFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_rt/filter_rt003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_s/filter_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_s/filter_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_s/filter_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_s/filter_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_s/filter_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addClassFilter_s/filter_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addInstanceFilter/instancefilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/addThreadFilter/threadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/exception/exception001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/exception/exception001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/exception/exception001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/notifyCaught/notifycaught001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/notifyCaught/notifycaught001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/notifyCaught/notifycaught001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/notifyUncaught/notifyuncaught001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/notifyUncaught/notifyuncaught001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExceptionRequest/notifyUncaught/notifyuncaught001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ExtraClassesInstaller.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/equals/equals005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isEnumConstant/isenumconstant001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isEnumConstant/isenumconstant001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isEnumConstant/isenumconstant001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isTransient/istrans001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isTransient/istrans001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isTransient/istrans001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isVolatile/isvol001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isVolatile/isvol001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/isVolatile/isvol001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/type/type004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/typeName/typename001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/typeName/typename001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/typeName/typename001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/typeName/typename002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/typeName/typename002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Field/typeName/typename002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatType/_itself_/floattype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatType/_itself_/floattype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatType/_itself_/floattype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/FloatValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/intValue/intvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/intValue/intvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/intValue/intvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/intValue/intvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/isValid/isvalid001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/isValid/isvalid001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/isValid/isvalid002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/isValid/isvalid002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/isValid/isvalid003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/isValid/isvalid003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/max/max001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/max/max001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/min/min001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/min/min001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/setValue/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/setValue/setvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/stringValueOf/stringvalueof001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerArgument/stringValueOf/stringvalueof001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerType/_itself_/integertype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerType/_itself_/integertype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerType/_itself_/integertype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/IntegerValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/implementors/implementors001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/implementors/implementors001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/implementors/implementors001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/subinterfaces/subinterfaces001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/subinterfaces/subinterfaces001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/subinterfaces/subinterfaces001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/superinterfaces/superinterfaces001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/superinterfaces/superinterfaces001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/InterfaceType/superinterfaces/superinterfaces001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch001o.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch002o.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch003o.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launch/launch004o.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launchnosuspend/launchnosuspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launchnosuspend/launchnosuspend001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LaunchingConnector/launchnosuspend/launchnosuspend001o.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/accept/accept001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/accept/accept001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/accept/accept001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/accept/accept002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/accept/accept002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/accept/accept002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/listennosuspend/listennosuspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/listennosuspend/listennosuspend001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/listennosuspend/listennosuspend001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/startListening/startlis002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/stopListening/stoplis001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/stopListening/stoplis001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/stopListening/stoplis001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/stopListening/stoplis002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/stopListening/stoplis002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/stopListening/stoplis002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/supportsMultipleConnections/supportsmultipleconnections001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ListeningConnector/supportsMultipleConnections/supportsmultipleconnections001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/genericSignature/gensignature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/genericSignature/gensignature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/genericSignature/gensignature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/isArgument/isargument001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/isArgument/isargument001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/isArgument/isargument001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/isVisible/isvisible001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/isVisible/isvisible001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/isVisible/isvisible001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/signature/signature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/signature/signature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/signature/signature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/type/type001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/type/type001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/type/type001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/type/type002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/type/type002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/type/type002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/typeName/typename001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/typeName/typename001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/typeName/typename001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/typeName/typename002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/typeName/typename002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocalVariable/typeName/typename002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Locatable/location/location006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocatableEvent/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocatableEvent/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LocatableEvent/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/codeIndex/codeindex001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/codeIndex/codeindex001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/codeIndex/codeindex001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/declaringType/declaringtype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/declaringType/declaringtype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/declaringType/declaringtype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber/linenumber001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber/linenumber001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber/linenumber001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber_s/lineNumber_s002/lineNumber_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber_s/linenumber_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber_s/linenumber_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/lineNumber_s/linenumber_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/method/method001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/method/method001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/method/method001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName/sourcename001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName/sourcename001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName/sourcename001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName_s/sourceName_s002/sourceName_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName_s/sourcename_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName_s/sourcename_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourceName_s/sourcename_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath/sourcepath001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath/sourcepath001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath/sourcepath001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath_s/sourcePath_s002/sourcePath_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath_s/sourcepath_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath_s/sourcepath_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Location/sourcePath_s/sourcepath_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongType/_itself_/longtype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongType/_itself_/longtype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongType/_itself_/longtype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/LongValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/_bounds_/bounds001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/_bounds_/bounds001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/_bounds_/bounds001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations/alllinelocations001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations/alllinelocations001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations/alllinelocations001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations/alllinelocations002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations/alllinelocations002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations/alllinelocations002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations_ss/allLineLocations_ss002/allLineLocations_ss002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations_ss/allLineLocations_ss003/allLineLocations_ss003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations_ss/alllinelocations_ss001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations_ss/alllinelocations_ss001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/allLineLocations_ss/alllinelocations_ss001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypeNames/argumenttypenames003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypes/argumenttypes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypes/argumenttypes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypes/argumenttypes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypes/argumenttypes002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypes/argumenttypes002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/argumentTypes/argumenttypes002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/arguments/arguments003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/bytecodes/bytecodes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/bytecodes/bytecodes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/bytecodes/bytecodes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isAbstract/isabstract001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isAbstract/isabstract001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isAbstract/isabstract001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isBridge/isbridge001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isBridge/isbridge001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isBridge/isbridge001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isConstructor/isconstructor001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isConstructor/isconstructor001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isConstructor/isconstructor001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isNative/isnative001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isNative/isnative001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isNative/isnative001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete001/newclass/isobsolete001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete002/newclass/isobsolete002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete003/newclass/isobsolete003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isObsolete/isobsolete003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isStaticInitializer/isstinitializer001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isStaticInitializer/isstinitializer001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isStaticInitializer/isstinitializer001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isSynchronized/issynchronized001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isSynchronized/issynchronized001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isSynchronized/issynchronized001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isVarArgs/isvarargs001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isVarArgs/isvarargs001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/isVarArgs/isvarargs001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationOfCodeIndex/locationofcodeindex001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationOfCodeIndex/locationofcodeindex001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationOfCodeIndex/locationofcodeindex001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine/locationsofline001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine/locationsofline001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine/locationsofline001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine_ssi/locationsOfLine_ssi002/locationsOfLine_ssi002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine_ssi/locationsOfLine_ssi003/locationsOfLine_ssi003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine_ssi/locationsofline_ssi001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine_ssi/locationsofline_ssi001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/locationsOfLine_ssi/locationsofline_ssi001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnType/returntype003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/returnTypeNames/returntypenames003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variables/variables001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variables/variables001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variables/variables001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variables/variables002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variables/variables002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variables/variables002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variablesByName/variablesbyname001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variablesByName/variablesbyname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variablesByName/variablesbyname001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variablesByName/variablesbyname002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variablesByName/variablesbyname002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Method/variablesByName/variablesbyname002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryEvent/method/method001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryEvent/method/method001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryEvent/method/method001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryEvent/method/method002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryEvent/method/method002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryEvent/method/method002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassExclusionFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassExclusionFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassExclusionFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassExclusionFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassExclusionFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassExclusionFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_rt/filter_rt003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_s/filter_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_s/filter_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_s/filter_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_s/filter_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_s/filter_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addClassFilter_s/filter_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addInstanceFilter/instancefilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodEntryRequest/addThreadFilter/threadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/_itself_/methodexit001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/_itself_/methodexit001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/_itself_/methodexit001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/method/method001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/method/method001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/method/method001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/method/method002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/method/method002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/method/method002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue001/returnValue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue001/returnValue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue002/returnValue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue002/returnValue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue003/returnValue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue003/returnValue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue004/returnValue004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue004/returnValue004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_rt/filter_rt003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_s/filter_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_s/filter_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_s/filter_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_s/filter_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_s/filter_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addClassFilter_s/filter_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addInstanceFilter/instancefilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MethodExitRequest/addThreadFilter/threadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/virtualMachine/virtualmachine001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/virtualMachine/virtualmachine001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Mirror/virtualMachine/virtualmachine001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/_itself_/mwevent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/_itself_/mwevent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/_itself_/mwevent001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/valueToBe/valuetobe001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/valueToBe/valuetobe001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/valueToBe/valuetobe001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/valueToBe/valuetobe002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/valueToBe/valuetobe002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ModificationWatchpointEvent/valueToBe/valuetobe002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/MonitorContendedEnterRequest001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/MonitorContendedEnterRequest002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/addClassExclusionFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/addClassFilter_ClassName/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/addClassFilter_ReferenceType/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/addInstanceFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnterRequest/addThreadFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/MonitorContendedEnteredRequest001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/MonitorContendedEnteredRequest002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/addClassExclusionFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/addClassFilter_ClassName/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/addClassFilter_ReferenceType/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/addInstanceFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorContendedEnteredRequest/addThreadFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/MonitorWaitRequest001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/MonitorWaitRequest002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/addClassExclusionFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/addClassFilter_ClassName/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/addClassFilter_ReferenceType/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/addInstanceFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitRequest/addThreadFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/MonitorWaitedRequest001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/MonitorWaitedRequest002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/addClassExclusionFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/addClassFilter_ClassName/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/addClassFilter_ReferenceType/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/addInstanceFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/MonitorWaitedRequest/addThreadFilter/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/_bounds_/bounds003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/disableCollection/disablecollection001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/disableCollection/disablecollection001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/disableCollection/disablecollection001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/disableCollection/disablecollection002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/disableCollection/disablecollection002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/disableCollection/disablecollection002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/dummyPackage/invokemethod014a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/entryCount/entrycount001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/entryCount/entrycount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/entryCount/entrycount001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/entryCount/entrycount002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/entryCount/entrycount002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/entryCount/entrycount002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValue/getvalue004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/getValues/getvalues003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod004t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod006t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod007t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod008t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod009t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod010t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod011.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod011t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod012.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod012t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod013.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod013t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod014.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod014/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/invokeMethod/invokemethod014t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/isCollected/iscollected001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/isCollected/iscollected001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/isCollected/iscollected001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referenceType/referencetype007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects001/referringObjects001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects002/referringObjects002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects002/referringObjects002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects003/referringObjects003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects003/referringObjects003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects004/referringObjects004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue004t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/setValue/setvalue005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/uniqueID/uniqueid001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/uniqueID/uniqueid001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/uniqueID/uniqueid001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/baseDirectory/directory001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/baseDirectory/directory001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/baseDirectory/directory001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/bootClassPath/bootpath001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/bootClassPath/bootpath001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/bootClassPath/bootpath001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/classPath/classpath001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/classPath/classpath001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PathSearchingVirtualMachine/classPath/classpath001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001/connectors/PlugAttachConnector001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001/plugAttachConnect001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect002/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect002/connectors/PlugAttachConnector002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect002/plugAttachConnect002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect003/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect003/connectors/PlugAttachConnector003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect003/plugAttachConnect003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect001/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect001/connectors/PlugLaunchConnector001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect001/plugLaunchConnect001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect002/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect002/connectors/PlugLaunchConnector002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect002/plugLaunchConnect002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect003/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect003/connectors/PlugLaunchConnector003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/LaunchConnector/plugLaunchConnect003/plugLaunchConnect003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001/connectors/PlugListenConnector001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001/plugListenConnect001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect002/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect002/connectors/PlugListenConnector002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect002/plugListenConnect002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect003/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect003/connectors/PlugListenConnector003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect003/plugListenConnect003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/PlugAttachConnector001_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/PlugAttachConnector001_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/PlugLaunchConnector001_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/PlugLaunchConnector001_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/PlugListenConnector001_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/connectors/PlugListenConnector001_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect001/plugMultiConnect001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugAttachConnector002_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugAttachConnector002_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugAttachConnector002_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugLaunchConnector002_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugLaunchConnector002_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugLaunchConnector002_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugListenConnector002_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugListenConnector002_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/connectors/PlugListenConnector002_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect002/plugMultiConnect002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect003/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect003/connectors/PlugTransportService003_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect003/connectors/PlugTransportService003_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect003/plugMultiConnect003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect004/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect004/connectors/PlugTransportService004_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect004/connectors/PlugTransportService004_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect004/connectors/PlugTransportService004_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect004/plugMultiConnect004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugAttachConnector005_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugAttachConnector005_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugLaunchConnector005_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugLaunchConnector005_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugListenConnector005_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugListenConnector005_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugTransportService005_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/connectors/PlugTransportService005_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect005/plugMultiConnect005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/META-INF/services/com.sun.jdi.connect.Connector + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugAttachConnector006_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugAttachConnector006_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugAttachConnector006_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugLaunchConnector006_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugLaunchConnector006_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugLaunchConnector006_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugListenConnector006_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugListenConnector006_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugListenConnector006_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugTransportService006_01.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugTransportService006_02.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/connectors/PlugTransportService006_03.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/MultiConnectors/plugMultiConnect006/plugMultiConnect006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService001/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService001/connectors/PlugTransportService001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService001/transportService001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService002/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService002/connectors/PlugTransportService002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService002/transportService002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService003/connectors/META-INF/services/com.sun.jdi.connect.spi.TransportService + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService003/connectors/PlugTransportService003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PlugConnectors/TransportService/transportService003/transportService003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveType/_itself_/primitivetype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveType/_itself_/primitivetype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveType/_itself_/primitivetype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/booleanValue/booleanvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/booleanValue/booleanvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/booleanValue/booleanvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/byteValue/bytevalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/byteValue/bytevalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/byteValue/bytevalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/charValue/charvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/charValue/charvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/charValue/charvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/doubleValue/doublevalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/doubleValue/doublevalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/doubleValue/doublevalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/doubleValue/doublevalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/doubleValue/doublevalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/doubleValue/doublevalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/floatValue/floatvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/floatValue/floatvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/floatValue/floatvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/intValue/intvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/intValue/intvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/intValue/intvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/longValue/longvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/longValue/longvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/longValue/longvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/shortValue/shortvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/shortValue/shortvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/PrimitiveValue/shortValue/shortvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/_bounds_/bounds001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/_bounds_/bounds001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/_bounds_/bounds001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/_bounds_/bounds002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/_bounds_/bounds002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/_bounds_/bounds002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields002/loadclass/allfields002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields003/loadclass/allfields003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allFields/allfields006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations/alllinelocations001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations/alllinelocations001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations/alllinelocations001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations/alllinelocations002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations/alllinelocations002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations/alllinelocations002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/allLineLocations_ss003/allLineLocations_ss003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/allLineLocations_ss004/allLineLocations_ss004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/alllinelocations_ss001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/alllinelocations_ss001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/alllinelocations_ss001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/alllinelocations_ss002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/alllinelocations_ss002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allLineLocations_ss/alllinelocations_ss002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods002/loadclass/allmethods002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods003/loadclass/allmethods003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/allMethods/allmethods006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/availableStrata/availableStrata002/availableStrata002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/availableStrata/availablestrata001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/availableStrata/availablestrata001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/availableStrata/availablestrata001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classLoader/classloader001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classLoader/classloader001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classLoader/classloader001/loadclass/classloader001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classLoader/classloader001/loadclass1/classloader001c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classLoader/classloader001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj002/loadclass/classobj002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/classObject/classobj003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum002/defaultStratum002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum003/defaultStratum003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum004/TestClass1.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum004/TestClass2.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum004/TestClass3.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum004/defaultStratum004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultStratum004/defaultStratum004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultstratum001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultstratum001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/defaultStratum/defaultstratum001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/dummyPackage/getvalues003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals002/loadclass/equals002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedToInitialize001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedToInitialize001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedToInitialize001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedtoinit002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedtoinit002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedtoinit002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedtoinit002/loadclass/failedtoinit002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/failedToInitialize/failedtoinit002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname002/loadclass/fieldbyname002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname003/loadclass/fieldbyname003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fieldByName/fieldbyname003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields002/loadclass/fields002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields003/loadclass/fields003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/fields/fields006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/genericSignature/genericSignature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/genericSignature/genericSignature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/genericSignature/genericSignature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/genericSignature/genericSignature002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/genericSignature/genericSignature002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/genericSignature/genericSignature002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue004t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValue/getvalue005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/getValues/getvalues003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode002/loadclass/hashcode002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/hashCode/hashcode002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/instances/instances001/instances001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/instances/instances002/instances002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/instances/instances002/instances002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/instances/instances003/instances003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/instances/instances004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/instances/instances005/instances005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isAbstract001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isAbstract001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isAbstract001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract002/loadclass/isabstract002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isAbstract/isabstract003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isFinal/isfinal001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isFinal/isfinal001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isFinal/isfinal001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isFinal/isfinal002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isFinal/isfinal002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isFinal/isfinal002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit002/loadclass/isinit002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isInitialized/isinit003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared002/loadclass/isprepared002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isPrepared/isprepared002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isStatic/isstatic001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isStatic/isstatic001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isStatic/isstatic001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isStatic/isstatic002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isStatic/isstatic002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isStatic/isstatic002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isVerified001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isVerified001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isVerified001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified002/loadclass/isverified002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified003/loadclass/isverified003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified003/loadclass/isverified003c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/isVerified/isverified003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_i/locationsofline_i001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_i/locationsofline_i001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_i/locationsofline_i001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_i/locationsofline_i002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_i/locationsofline_i002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_i/locationsofline_i002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsOfLine_ssi003/locationsOfLine_ssi003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsOfLine_ssi004/locationsOfLine_ssi004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsofline_ssi001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsofline_ssi001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsofline_ssi001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsofline_ssi002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsofline_ssi002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/locationsOfLine_ssi/locationsofline_ssi002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods002/loadclass/methods002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods003/loadclass/methods003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methods/methods006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s002/loadclass/methbyname_s002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s003/loadclass/methbyname_s003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_s/methbyname_s004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss002/loadclass/methbyname_ss002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss003/loadclass/methbyname_ss003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/methodsByName_ss/methbyname_ss003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name002/loadclass/name002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/name/name002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/nestedTypes/nestedtypes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/nestedTypes/nestedtypes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/nestedTypes/nestedtypes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/nestedTypes/nestedtypes002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/nestedTypes/nestedtypes002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/nestedTypes/nestedtypes002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx002/srcdebugx002x.jcod + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceDebugExtension/srcdebugx002x.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename002/loadclass/sourcename002b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceName/sourcename004t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourceNames003/sourceNames003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourcenames001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourcenames001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourcenames001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourcenames002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourcenames002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourceNames/sourcenames002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcePaths003/sourcePaths003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcepaths001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcepaths001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcepaths001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcepaths002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcepaths002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/sourcePaths/sourcepaths002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield002/loadclass/visibfield002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield003/loadclass/visibfield003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleFields/visibfield006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod002/loadclass/visibmethod002aClassForCheck.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod003/loadclass/visibmethod003b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod006t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ReferenceType/visibleMethods/visibmethod007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/redefineclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/redefineclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/redefineclasses001/newclass/redefineclasses001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/redefineclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Scenarios/invokeMethod/redefineclasses001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/SelectedArgument/choices/choices001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/SelectedArgument/choices/choices001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/SelectedArgument/isValid/isvalid001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/SelectedArgument/isValid/isvalid001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/SelectedArgument/isValid/isvalid002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/SelectedArgument/isValid/isvalid002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortType/_itself_/shorttype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortType/_itself_/shorttype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortType/_itself_/shorttype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/compareTo/compareto001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/compareTo/compareto001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/compareTo/compareto001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/equals/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/equals/equals001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/equals/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ShortValue/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getArgumentValues/getArgumentValues001/getArgumentValues001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getArgumentValues/getArgumentValues001/getArgumentValues001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getArgumentValues/getArgumentValues002/getArgumentValues002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getArgumentValues/getArgumentValues002/getArgumentValues002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getArgumentValues/getArgumentValues003/getArgumentValues003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getArgumentValues/getArgumentValues003/getArgumentValues003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValue/getvalue003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/getValues/getvalues003t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/location/location001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/location/location001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/location/location001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue001/setvalue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue001/setvalue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue002/setvalue002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue002/setvalue002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue003/setvalue003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue003/setvalue003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue004/setvalue004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue004/setvalue004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue005/setvalue005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue005/setvalue005t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue006/setvalue006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/setValue/setvalue006/setvalue006t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thisObject/thisobject001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thisObject/thisobject001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thisObject/thisobject001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thisObject/thisobject002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thisObject/thisobject002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thisObject/thisobject002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariableByName/visiblevarbyname001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariableByName/visiblevarbyname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariableByName/visiblevarbyname001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariableByName/visiblevarbyname002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariableByName/visiblevarbyname002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariableByName/visiblevarbyname002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariables/visiblevariables001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariables/visiblevariables001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariables/visiblevariables001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariables/visiblevariables002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariables/visiblevariables002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StackFrame/visibleVariables/visiblevariables002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepEvent003/stepEvent003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepEvent004/TestClass1.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepEvent004/stepEvent004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepevent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepevent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepevent001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepevent002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepevent002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepEvent/_itself_/stepevent002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassExclusionFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassExclusionFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassExclusionFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassExclusionFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassExclusionFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassExclusionFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_rt/filter_rt003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_s/filter_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_s/filter_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_s/filter_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_s/filter_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_s/filter_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addClassFilter_s/filter_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/addInstanceFilter/instancefilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/depth/depth003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/size/size001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/size/size001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/size/size001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/size/size002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/size/size002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/size/size002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StepRequest/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringArgument/isValid/isvalid001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringArgument/isValid/isvalid001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringArgument/isValid/isvalid002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringArgument/isValid/isvalid002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringArgument/isValid/isvalid003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringArgument/isValid/isvalid003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringReference/value/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringReference/value/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/StringReference/value/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathEvent/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathEvent/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathEvent/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadDeathRequest/addThreadFilter/addthreadfilter005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/parent/parent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/parent/parent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/parent/parent001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/resume/resume001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/resume/resume001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/resume/resume001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/suspend/suspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/suspend/suspend001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/suspend/suspend001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/threadGroups/threadgroups001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/threadGroups/threadgroups001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/threadGroups/threadgroups001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/threads/threads001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/threads/threads001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/threads/threads001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadGroupReference/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/_bounds_/bounds001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/_bounds_/bounds001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/_bounds_/bounds001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/currentContendedMonitor/currentcm001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/currentContendedMonitor/currentcm001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/currentContendedMonitor/currentcm001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn001/forceEarlyReturn001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn001/forceEarlyReturn001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn002/forceEarlyReturn002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn002/forceEarlyReturn002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn003/forceEarlyReturn003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn004/forceEarlyReturn004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn004/forceEarlyReturn004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn004/libforceEarlyReturn004a.c + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn005/forceEarlyReturn005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn005/forceEarlyReturn005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn005/libforceEarlyReturn005a.c + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn008/forceEarlyReturn008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn008/forceEarlyReturn008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn009/forceEarlyReturn009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn009/forceEarlyReturn009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn013/forceEarlyReturn013.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn013/forceEarlyReturn013a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn014/forceEarlyReturn014.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn014/forceEarlyReturn014a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn015/forceEarlyReturn015.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn015/forceEarlyReturn015a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frame/frame001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frame/frame001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frame/frame001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frameCount/framecount001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frameCount/framecount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frameCount/framecount001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames/frames001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames/frames001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames/frames001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames_ii/frames_ii001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames_ii/frames_ii001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames_ii/frames_ii001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames_ii/frames_ii002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames_ii/frames_ii002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/frames_ii/frames_ii002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/interrupt/interrupt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/interrupt/interrupt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/interrupt/interrupt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isAtBreakpoint/isatbreakpoint001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isAtBreakpoint/isatbreakpoint001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isAtBreakpoint/isatbreakpoint001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitors/ownedmonitors001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitors/ownedmonitors001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitors/ownedmonitors001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitors/ownedmonitors002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitors/ownedmonitors002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitors/ownedmonitors002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames001/ownedMonitorsAndFrames001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames002/ownedMonitorsAndFrames002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames003/ownedMonitorsAndFrames003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames004/ownedMonitorsAndFrames004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames004/ownedMonitorsAndFrames004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames005/ownedMonitorsAndFrames005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames006/ownedMonitorsAndFrames006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames007/ownedMonitorsAndFrames007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames009/ownedMonitorsAndFrames009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/ownedMonitorsAndFrames/ownedMonitorsAndFrames009/ownedMonitorsAndFrames009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes006t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes007t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/resume/resume001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/resume/resume001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/resume/resume001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status003/status003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status003/status003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status004/status004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status004/status004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status005/status005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status005/status005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status006/status006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status006/status006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status007/status007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status007/status007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status008/status008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/status/status008/status008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/stop/stop001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/stop/stop001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/stop/stop001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/stop/stop002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/stop/stop002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/stop/stop002t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/suspend/suspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/suspend/suspend001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/suspend/suspend001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/suspendCount/suspendcount001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/suspendCount/suspendcount001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/suspendCount/suspendcount001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/threadGroup/threadgroup001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/threadGroup/threadgroup001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/threadGroup/threadgroup001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartEvent/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartEvent/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartEvent/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadStartRequest/addThreadFilter/addthreadfilter005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Transport/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Transport/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/hashCode/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/hashCode/hashcode001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/hashCode/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/name/name003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Type/signature/signature003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/declaringType/decltype009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/genericSignature/genericSignature001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/genericSignature/genericSignature001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/genericSignature/genericSignature001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/genericSignature/genericSignature002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/genericSignature/genericSignature002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/genericSignature/genericSignature002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isFinal/isfinal004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPackagePrivate/ispackageprivate001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPackagePrivate/ispackageprivate001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPackagePrivate/ispackageprivate001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPackagePrivate/ispackageprivate002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPackagePrivate/ispackageprivate002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPackagePrivate/ispackageprivate002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPrivate/isprivate001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPrivate/isprivate001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPrivate/isprivate001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPrivate/isprivate002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPrivate/isprivate002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPrivate/isprivate002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isProtected/isprotected001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isProtected/isprotected001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isProtected/isprotected001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isProtected/isprotected002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isProtected/isprotected002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isProtected/isprotected002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPublic/ispublic001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPublic/ispublic001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPublic/ispublic001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPublic/ispublic002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPublic/ispublic002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isPublic/ispublic002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isStatic/isstatic004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isSynthetic/issynthetic001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isSynthetic/issynthetic001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isSynthetic/issynthetic001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isSynthetic/issynthetic002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isSynthetic/issynthetic002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/isSynthetic/issynthetic002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/name/name003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/TypeComponent/signature/sign003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMCannotBeModifiedEx/_itself_/canntbemod001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMCannotBeModifiedEx/_itself_/canntbemod001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDeathEvent/_itself_/vmdeath003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMDisconnectEvent/_itself_/disconnect003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMOutOfMemoryException/VMOutOfMemoryException001/VMOutOfMemoryException001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMOutOfMemoryException/VMOutOfMemoryException001/VMOutOfMemoryException001t.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMStartEvent/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMStartEvent/thread/thread001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VMStartEvent/thread/thread001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/_itself_/value001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/_itself_/value001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/_itself_/value001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type002/type002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type002/type002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/Value/type/type003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allClasses/allclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allClasses/allclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allClasses/allclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allClasses/allclasses002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allClasses/allclasses002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allClasses/allclasses002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allThreads/allthreads001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allThreads/allthreads001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/allThreads/allthreads001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canAddMethod/canaddmethod001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canAddMethod/canaddmethod001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canAddMethod/canaddmethod001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canBeModified/canbemodified001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canBeModified/canbemodified001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canBeModified/canbemodified001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetBytecodes/cangetbytecodes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetBytecodes/cangetbytecodes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetBytecodes/cangetbytecodes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetCurrentContendedMonitor/cangccm001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetCurrentContendedMonitor/cangccm001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetCurrentContendedMonitor/cangccm001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetMonitorInfo/cangetmonitorinfo001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetMonitorInfo/cangetmonitorinfo001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetMonitorInfo/cangetmonitorinfo001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetOwnedMonitorInfo/cangetinfo001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetOwnedMonitorInfo/cangetinfo001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetOwnedMonitorInfo/cangetinfo001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetSourceDebugExtension/cangetsde001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetSourceDebugExtension/cangetsde001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetSourceDebugExtension/cangetsde001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetSyntheticAttribute/cangetattr001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetSyntheticAttribute/cangetattr001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canGetSyntheticAttribute/cangetattr001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canPopFrames/canpopframes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canPopFrames/canpopframes001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canPopFrames/canpopframes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canRedefineClasses/canredefineclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canRedefineClasses/canredefineclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canRedefineClasses/canredefineclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canRequestVMDeathEvent/canreqvmdev001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canRequestVMDeathEvent/canreqvmdev001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canRequestVMDeathEvent/canreqvmdev001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canUnrestrictedlyRedefineClasses/curc001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canUnrestrictedlyRedefineClasses/curc001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canUnrestrictedlyRedefineClasses/curc001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canUseInstanceFilters/canusefilters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canUseInstanceFilters/canusefilters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canUseInstanceFilters/canusefilters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canWatchFieldAccess/canwatchaccess001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canWatchFieldAccess/canwatchaccess001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canWatchFieldAccess/canwatchaccess001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canWatchFieldModification/canwatchmod001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canWatchFieldModification/canwatchmod001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/canWatchFieldModification/canwatchmod001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/classesByName/classesbyname001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/classesByName/classesbyname001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/classesByName/classesbyname001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/description/description001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/description/description001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/description/description001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/dispose/dispose005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/eventQueue/eventqueue001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/eventQueue/eventqueue001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/eventQueue/eventqueue001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/eventRequestManager/eventrmanager001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/eventRequestManager/eventrmanager001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/eventRequestManager/eventrmanager001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/exit/exit001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/exit/exit001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/exit/exit001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/exit/exit002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/exit/exit002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/exit/exit002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/getDefaultStratum/getdefaultstratum001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/getDefaultStratum/getdefaultstratum001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/getDefaultStratum/getdefaultstratum001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/instanceCounts/instancecounts001/instancecounts001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/instanceCounts/instancecounts002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/instanceCounts/instancecounts003/instancecounts003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/instanceCounts/instancecounts004/instancecounts004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/instanceCounts/instancecounts004/instancecounts004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_bool/mirrorof_bool001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_bool/mirrorof_bool001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_bool/mirrorof_bool001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_byte/mirrorof_byte001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_byte/mirrorof_byte001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_byte/mirrorof_byte001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_char/mirrorof_char001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_char/mirrorof_char001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_char/mirrorof_char001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_double/mirrorof_double001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_double/mirrorof_double001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_double/mirrorof_double001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_float/mirrorof_float001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_float/mirrorof_float001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_float/mirrorof_float001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_int/mirrorof_int001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_int/mirrorof_int001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_int/mirrorof_int001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_long/mirrorof_long001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_long/mirrorof_long001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_long/mirrorof_long001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_short/mirrorof_short001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_short/mirrorof_short001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_short/mirrorof_short001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_string/mirrorof_string001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_string/mirrorof_string001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/mirrorOf_string/mirrorof_string001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/name/name001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/name/name001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/name/name001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/process/process001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/process/process001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/process/process001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses001/newclass/redefineclasses001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses001b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses002/newclass/redefineclasses002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses003/newclass/redefineclasses003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass01/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass02/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass03/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass04/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass05/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass06/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass07/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass08/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass09/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004/newclass10/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005/newclass01/redefineclasses005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005/newclass02/redefineclasses005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005/newclass03/redefineclasses005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005/newclass04/redefineclasses005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006/newclass01/redefineclasses006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006/newclass02/redefineclasses006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006/newclass03/redefineclasses006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006/newclass04/redefineclasses006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass01/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass02/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass03/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass04/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass05/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass06/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass07/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007/newclass08/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass01/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass02/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass03/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass04/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass05/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass06/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass07/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008/newclass08/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses009.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses009/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses009/newclass01/redefineclasses009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses009/newclass02/redefineclasses009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses009/newclass03/redefineclasses009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses009a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010/newclass01/redefineclasses010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010/newclass02/redefineclasses010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010/newclass03/redefineclasses010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010/newclass04/redefineclasses010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses010a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011/newclass01/redefineclasses011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011/newclass02/redefineclasses011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011/newclass03/redefineclasses011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011/newclass04/redefineclasses011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses011a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses012.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses012/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses012/newclass01/redefineclasses012b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses012/newclass02/redefineclasses012b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses012a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses012b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013/newclass01/redefineclasses013b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013/newclass02/redefineclasses013b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013/newclass03/redefineclasses013b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses013b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014/newclass01/redefineclasses014b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014/newclass02/redefineclasses014b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014/newclass03/redefineclasses014b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses014b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass01/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass02/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass03/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass04/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass05/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass06/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass07/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015/newclass08/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses015b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/newclass01/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/newclass02/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/newclass03/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/newclass04/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/newclass05/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016/newclass06/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses016b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020/newclass01/redefineclasses020b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020/newclass02/redefineclasses020b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020/newclass03/redefineclasses020b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020/newclass04/redefineclasses020b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses020b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/newclass01/redefineclasses021b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/newclass02/redefineclasses021b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/newclass03/redefineclasses021b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/newclass04/redefineclasses021b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022/newclass01/redefineclasses022b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022/newclass02/redefineclasses022b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022/newclass03/redefineclasses022b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses022b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023/newclass01/redefineclasses023b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023/newclass02/redefineclasses023b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023/newclass03/redefineclasses023b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024/newclass01/redefineclasses024b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024/newclass02/redefineclasses024b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024/newclass03/redefineclasses024b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024/newclass04/redefineclasses024b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses024b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses025.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses025/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses025/newclass01/redefineclasses025b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses025/newclass02/redefineclasses025b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses025a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses025b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026/newclass/redefineclasses026c_otherName.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses027.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses027/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses027a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses027c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses027i.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses028.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses028/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses028a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses028b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses029.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses029/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses029a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030/newclass01/redefineclasses030b.jasm + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030/newclass02/redefineclasses030b.jasm + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031/newclass01/redefineclasses031a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031/newclass02/redefineclasses031a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031/newclass03/redefineclasses031a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031/newclass04/redefineclasses031a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031/newclass05/redefineclasses031a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses031a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses032.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses032/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses032/newclass/redefineclasses032a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses032a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034/loadclass/redefineclasses034b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034/loadclass/redefineclasses034c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034/newclass/redefineclasses034b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034/newclass/redefineclasses034c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses034a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035/loadclass/redefineclasses035b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035/loadclass/redefineclasses035c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035/newclass/redefineclasses035b.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035/newclass/redefineclasses035c.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses035a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/resume/resume001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/resume/resume001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/resume/resume001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/setDefaultStratum/setDefaultStratum002/setDefaultStratum002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/setDefaultStratum/setDefaultStratum003/setDefaultStratum003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/setDefaultStratum/setdefaultstratum001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/setDefaultStratum/setdefaultstratum001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/setDefaultStratum/setdefaultstratum001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/suspend/suspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/suspend/suspend001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/suspend/suspend001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/topLevelThreadGroups/toplevelgroups001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/topLevelThreadGroups/toplevelgroups001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/topLevelThreadGroups/toplevelgroups001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/version/version001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/version/version001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachine/version/version001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/allConnectors/allconnectors001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/allConnectors/allconnectors001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/attachingConnectors/attaching001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/attachingConnectors/attaching001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/connectedVirtualMachines/convm003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM002_TargetVM.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM002_TranspServ.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM003_TargetVM.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM003_TranspServ.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM004_TargetVM.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM004_TranspServ.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM005_TargetVM.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/CreateVM005_TranspServ.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/createVirtualMachine/createVM005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/defaultConnector/default001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/defaultConnector/default001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/launchingConnectors/launching001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/launchingConnectors/launching001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/listeningConnectors/listening001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/listeningConnectors/listening001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/majorInterfaceVersion/major001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/majorInterfaceVersion/major001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/minorInterfaceVersion/minor001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VirtualMachineManager/minorInterfaceVersion/minor001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidType/_itself_/voidtype001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidType/_itself_/voidtype001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidType/_itself_/voidtype001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidType/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidType/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidType/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/equals/equals001/equals001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/equals/equals001/equals001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/equals/equals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/equals/equals002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/equals/equals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/hashCode/hashcode001/hashcode001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/hashCode/hashcode001/hashcode001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/toString/tostring001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/toString/tostring001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/VoidValue/toString/tostring001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/_itself_/wevent001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/_itself_/wevent001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/_itself_/wevent001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/field/field001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/field/field001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/field/field001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/object/object001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/object/object001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/object/object001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/valueCurrent/valuecur001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/valueCurrent/valuecur001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointEvent/valueCurrent/valuecur001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/_bounds_/filters001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/_bounds_/filters001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/_bounds_/filters001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassExclusionFilter/filter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_rt/filter_rt006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addClassFilter_s/filter_s004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addInstanceFilter/instancefilter008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter003.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter003/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter004.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter004/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter005.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter005/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter006.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter006/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter007.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter007/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter007a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter008.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter008/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/addThreadFilter/addthreadfilter008a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/field/field001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/field/field001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/field/field001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/field/field002.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/field/field002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/WatchpointRequest/field/field002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/ClassPrepareEvents/ClassPrepareEvents001/ClassPrepareEvents001.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/MonitorEvents/MonitorEvents001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/MonitorEvents/MonitorEvents002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn001/forceEarlyReturn001.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn002/forceEarlyReturn002.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/heapwalking001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/heapwalking001/heapwalking001.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/heapwalking002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/heapwalking002/heapwalking002.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/mixed001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/mixed001/mixed001.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/mixed002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/mixed002/mixed002.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/monitorEvents001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/monitorEvents001/monitorEvents001.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/monitorEvents002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/monitorEvents002/monitorEvents002.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/ownedMonitorsAndFrames001/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/ownedMonitorsAndFrames001/ownedMonitorsAndFrames001.tests + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/ownedMonitorsAndFrames002/TestDescription.java + test/hotspot/jtreg/vmTestbase/nsk/jdi/stress/serial/ownedMonitorsAndFrames002/ownedMonitorsAndFrames002.tests + test/hotspot/jtreg/vmTestbase/nsk/share/ExtraClassesBuilder.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdi/libMonitorEnterExecutor.c + test/hotspot/jtreg/vmTestbase/nsk/share/jni/libJNIreferences.c + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/NativeMethodsTestThread.java + test/hotspot/jtreg/vmTestbase/nsk/share/jpda/libNativeMethodsTestThread.c + test/hotspot/jtreg/vmTestbase/nsk/share/locks/libJNIMonitorLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/locks/libLockingThread.c Changeset: e2dc18484400 Author: darcy Date: 2018-05-05 09:34 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/e2dc18484400 8202599: Mark intermittently failing jshell tests Reviewed-by: rfield ! test/langtools/TEST.groups ! test/langtools/jdk/jshell/FailOverDirectExecutionControlTest.java ! test/langtools/jdk/jshell/FailOverExecutionControlDyingLaunchTest.java ! test/langtools/jdk/jshell/FailOverExecutionControlHangingListenTest.java ! test/langtools/jdk/jshell/JdiHangingListenExecutionControlTest.java ! test/langtools/jdk/jshell/JdiLaunchingExecutionControlTest.java ! test/langtools/jdk/jshell/JdiListeningExecutionControlTest.java ! test/langtools/jdk/jshell/JdiListeningLocalhostExecutionControlTest.java ! test/langtools/jdk/jshell/ToolBasicTest.java ! test/langtools/jdk/jshell/UserJdiUserRemoteTest.java Changeset: 9e82ca74f086 Author: kbarrett Date: 2018-05-05 12:38 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/9e82ca74f086 8202672: Build failed in metaspace.cpp with VS2017 Summary: Add whitespace between string and identifier. Reviewed-by: dcubed, erikj ! src/hotspot/share/memory/metaspace.cpp Changeset: b8308d6356e7 Author: shade Date: 2018-05-05 18:55 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/b8308d6356e7 8202684: Minimal VM build is broken after JDK-8199067, JDK-8202638 Reviewed-by: eosterlund, stuefe ! src/hotspot/share/memory/metaspace/metaspaceDCmd.cpp ! src/hotspot/share/utilities/macros.hpp ! test/hotspot/gtest/runtime/test_committed_virtualmemory.cpp Changeset: 653343de5e7a Author: stuefe Date: 2018-05-03 17:10 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/653343de5e7a 8202435: [aix] print program break as part of memory info into hs-err file Reviewed-by: mdoerr, dholmes ! src/hotspot/os/aix/os_aix.cpp Changeset: bdb627563075 Author: eosterlund Date: 2018-05-05 22:19 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bdb627563075 8202640: Small C1 cleanups for BarrierSetC1 Reviewed-by: kvn, neliasso ! src/hotspot/cpu/sparc/c1_Runtime1_sparc.cpp ! src/hotspot/cpu/x86/c1_MacroAssembler_x86.hpp ! src/hotspot/cpu/x86/c1_Runtime1_x86.cpp ! src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp ! src/hotspot/share/c1/c1_LIR.cpp ! src/hotspot/share/c1/c1_LIR.hpp Changeset: 7238cb613dc5 Author: rkennke Date: 2018-05-06 00:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/7238cb613dc5 8202676: AArch64: Missing enter/leave around barrier leads to infinite loop Reviewed-by: aph, eosterlund ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp Changeset: caf05d64138f Author: pmuthuswamy Date: 2018-05-07 07:44 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/caf05d64138f 8200094: Turkish locale reports NPE No enum constant com.sun.source.doctree.DocTree.Kind.S?NCE Reviewed-by: ksrini, jjg ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/Utils.java Changeset: e81481fea884 Author: thartmann Date: 2018-05-07 08:56 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/e81481fea884 8202565: C1 compilation crashes with "assert(is_double_stack() && !is_virtual()) failed: type check" Summary: Only eagerly resolving the address into a register if the store is precise. Reviewed-by: roland, eosterlund ! src/hotspot/share/gc/shared/c1/modRefBarrierSetC1.cpp Changeset: 69aadf0c1e69 Author: jlahoda Date: 2018-05-07 10:37 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/69aadf0c1e69 8202387: javac --release 11 not supported Summary: Adding historical data for JDK 10; adding ability to produce the historical data incrementally. Reviewed-by: erikj, forax, jjg + make/data/symbols/java.activation-A.sym.txt + make/data/symbols/java.base-A.sym.txt + make/data/symbols/java.compiler-A.sym.txt + make/data/symbols/java.corba-A.sym.txt + make/data/symbols/java.datatransfer-A.sym.txt + make/data/symbols/java.desktop-A.sym.txt + make/data/symbols/java.instrument-A.sym.txt + make/data/symbols/java.logging-A.sym.txt + make/data/symbols/java.management-A.sym.txt + make/data/symbols/java.management.rmi-A.sym.txt + make/data/symbols/java.naming-A.sym.txt + make/data/symbols/java.prefs-A.sym.txt + make/data/symbols/java.rmi-A.sym.txt + make/data/symbols/java.scripting-A.sym.txt + make/data/symbols/java.se-A.sym.txt + make/data/symbols/java.se.ee-A.sym.txt + make/data/symbols/java.security.jgss-A.sym.txt + make/data/symbols/java.security.sasl-A.sym.txt + make/data/symbols/java.smartcardio-A.sym.txt + make/data/symbols/java.sql-A.sym.txt + make/data/symbols/java.sql.rowset-A.sym.txt + make/data/symbols/java.transaction-A.sym.txt + make/data/symbols/java.xml-A.sym.txt + make/data/symbols/java.xml.bind-A.sym.txt + make/data/symbols/java.xml.crypto-A.sym.txt + make/data/symbols/java.xml.ws-A.sym.txt + make/data/symbols/java.xml.ws.annotation-A.sym.txt + make/data/symbols/jdk.accessibility-A.sym.txt + make/data/symbols/jdk.attach-A.sym.txt + make/data/symbols/jdk.charsets-A.sym.txt + make/data/symbols/jdk.compiler-A.sym.txt + make/data/symbols/jdk.crypto.cryptoki-A.sym.txt + make/data/symbols/jdk.crypto.ec-A.sym.txt + make/data/symbols/jdk.dynalink-A.sym.txt + make/data/symbols/jdk.editpad-A.sym.txt + make/data/symbols/jdk.hotspot.agent-A.sym.txt + make/data/symbols/jdk.httpserver-A.sym.txt + make/data/symbols/jdk.incubator.httpclient-A.sym.txt + make/data/symbols/jdk.jartool-A.sym.txt + make/data/symbols/jdk.javadoc-A.sym.txt + make/data/symbols/jdk.jcmd-A.sym.txt + make/data/symbols/jdk.jconsole-A.sym.txt + make/data/symbols/jdk.jdeps-A.sym.txt + make/data/symbols/jdk.jdi-A.sym.txt + make/data/symbols/jdk.jdwp.agent-A.sym.txt + make/data/symbols/jdk.jlink-A.sym.txt + make/data/symbols/jdk.jshell-A.sym.txt + make/data/symbols/jdk.jsobject-A.sym.txt + make/data/symbols/jdk.jstatd-A.sym.txt + make/data/symbols/jdk.localedata-A.sym.txt + make/data/symbols/jdk.management-A.sym.txt + make/data/symbols/jdk.management.agent-A.sym.txt + make/data/symbols/jdk.naming.dns-A.sym.txt + make/data/symbols/jdk.naming.rmi-A.sym.txt + make/data/symbols/jdk.net-A.sym.txt + make/data/symbols/jdk.pack-A.sym.txt + make/data/symbols/jdk.policytool-A.sym.txt + make/data/symbols/jdk.rmic-A.sym.txt + make/data/symbols/jdk.scripting.nashorn-A.sym.txt + make/data/symbols/jdk.sctp-A.sym.txt + make/data/symbols/jdk.security.auth-A.sym.txt + make/data/symbols/jdk.security.jgss-A.sym.txt + make/data/symbols/jdk.unsupported-A.sym.txt + make/data/symbols/jdk.xml.dom-A.sym.txt + make/data/symbols/jdk.zipfs-A.sym.txt ! make/data/symbols/symbols ! make/gendata/Gendata-jdk.compiler.gmk ! make/langtools/src/classes/build/tools/symbolgenerator/CreateSymbols.java ! make/langtools/src/classes/build/tools/symbolgenerator/TransitiveDependencies.java + test/langtools/tools/javac/options/release/ReleaseOptionCurrent.java ! test/langtools/tools/javac/preview/PreviewOptionTest.java Changeset: 28eaf7a99a8c Author: mli Date: 2018-05-07 18:23 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/28eaf7a99a8c 8202291: java/rmi/Naming/LookupIPv6.java failed with Connection refused Reviewed-by: clanger ! test/jdk/java/rmi/Naming/LookupIPv6.java Changeset: ea0a16ba6ac0 Author: mdoerr Date: 2018-05-07 12:28 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ea0a16ba6ac0 8202080: Introduce ordering semantics for Atomic::add and other RMW atomics Reviewed-by: lucy, rehn, dholmes ! src/hotspot/os_cpu/aix_ppc/atomic_aix_ppc.hpp ! src/hotspot/os_cpu/bsd_x86/atomic_bsd_x86.hpp ! src/hotspot/os_cpu/bsd_zero/atomic_bsd_zero.hpp ! src/hotspot/os_cpu/linux_aarch64/atomic_linux_aarch64.hpp ! src/hotspot/os_cpu/linux_arm/atomic_linux_arm.hpp ! src/hotspot/os_cpu/linux_ppc/atomic_linux_ppc.hpp ! src/hotspot/os_cpu/linux_s390/atomic_linux_s390.hpp ! src/hotspot/os_cpu/linux_sparc/atomic_linux_sparc.hpp ! src/hotspot/os_cpu/linux_x86/atomic_linux_x86.hpp ! src/hotspot/os_cpu/linux_zero/atomic_linux_zero.hpp ! src/hotspot/os_cpu/solaris_sparc/atomic_solaris_sparc.hpp ! src/hotspot/os_cpu/solaris_x86/atomic_solaris_x86.hpp ! src/hotspot/os_cpu/windows_x86/atomic_windows_x86.hpp ! src/hotspot/share/runtime/atomic.hpp ! src/hotspot/share/utilities/globalCounter.cpp Changeset: bcf41be8ea14 Author: eosterlund Date: 2018-05-07 10:36 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bcf41be8ea14 8202083: Remove explicit CMS checks in CardTableBarrierSet Reviewed-by: kbarrett ! src/hotspot/share/gc/shared/cardTableBarrierSet.inline.hpp Changeset: aa04bf7b99bd Author: stefank Date: 2018-05-07 14:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/aa04bf7b99bd 8202591: Remove usage of CMSEdenChunksRecordAlways in defNewGeneration.cpp Reviewed-by: eosterlund, kbarrett ! src/hotspot/share/gc/serial/defNewGeneration.cpp Changeset: 6be313c6c250 Author: stefank Date: 2018-05-07 14:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/6be313c6c250 8202592: Remove unused EvacuateFollowersClosure Reviewed-by: kbarrett, tschatzl ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/defNewGeneration.hpp Changeset: 000c697c81db Author: stefank Date: 2018-05-07 14:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap Reviewed-by: eosterlund, ehelin ! src/hotspot/share/gc/cms/cmsHeap.cpp ! src/hotspot/share/gc/cms/cmsHeap.hpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/jvmFlagConstraintsCMS.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/defNewGeneration.hpp ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialHeap.hpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/gc/shared/genCollectedHeap.hpp Changeset: 01a88f825a84 Author: stefank Date: 2018-05-07 14:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates Reviewed-by: eosterlund, sjohanss ! src/hotspot/share/gc/cms/cmsHeap.hpp + src/hotspot/share/gc/cms/cmsHeap.inline.hpp ! src/hotspot/share/gc/cms/cms_specialized_oop_closures.hpp ! src/hotspot/share/gc/cms/compactibleFreeListSpace.cpp ! src/hotspot/share/gc/cms/compactibleFreeListSpace.hpp + src/hotspot/share/gc/cms/compactibleFreeListSpace.inline.hpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.hpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.inline.hpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.hpp ! src/hotspot/share/gc/cms/promotionInfo.cpp ! src/hotspot/share/gc/cms/promotionInfo.hpp + src/hotspot/share/gc/cms/promotionInfo.inline.hpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/defNewGeneration.hpp ! src/hotspot/share/gc/serial/defNewGeneration.inline.hpp ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialHeap.hpp + src/hotspot/share/gc/serial/serialHeap.inline.hpp ! src/hotspot/share/gc/serial/serial_specialized_oop_closures.hpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.hpp ! src/hotspot/share/gc/serial/tenuredGeneration.inline.hpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/gc/shared/genCollectedHeap.hpp ! src/hotspot/share/gc/shared/generation.hpp ! src/hotspot/share/gc/shared/space.cpp ! src/hotspot/share/gc/shared/space.hpp ! src/hotspot/share/gc/shared/space.inline.hpp ! src/hotspot/share/gc/shared/specialized_oop_closures.hpp Changeset: af1923174c9b Author: stefank Date: 2018-05-07 14:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/af1923174c9b 8202642: Replace PAR_OOP_ITERATE with templates Reviewed-by: eosterlund, sjohanss ! src/hotspot/share/gc/cms/cms_specialized_oop_closures.hpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/shared/space.cpp ! src/hotspot/share/gc/shared/space.hpp ! src/hotspot/share/gc/shared/space.inline.hpp ! src/hotspot/share/gc/shared/specialized_oop_closures.hpp Changeset: e0dbf14885b8 Author: goetz Date: 2018-05-07 11:38 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/e0dbf14885b8 8199852: Print more information about class loaders in LinkageErrors. Reviewed-by: dholmes, lfoltan, gtriantafill ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/interpreter/linkResolver.cpp ! src/hotspot/share/oops/klassVtable.cpp ! test/hotspot/jtreg/runtime/LoaderConstraints/common/C.jasm ! test/hotspot/jtreg/runtime/LoaderConstraints/common/Foo.java ! test/hotspot/jtreg/runtime/LoaderConstraints/common/J.java ! test/hotspot/jtreg/runtime/LoaderConstraints/common/PreemptingClassLoader.java + test/hotspot/jtreg/runtime/LoaderConstraints/differentLE/D_ambgs.jasm + test/hotspot/jtreg/runtime/LoaderConstraints/differentLE/Test.java + test/hotspot/jtreg/runtime/LoaderConstraints/differentLE/test/A.java + test/hotspot/jtreg/runtime/LoaderConstraints/differentLE/test/B.java + test/hotspot/jtreg/runtime/LoaderConstraints/differentLE/test/C.java + test/hotspot/jtreg/runtime/LoaderConstraints/differentLE/test/D_ambgs.java + test/hotspot/jtreg/runtime/LoaderConstraints/duplicateLE/Test.java ! test/hotspot/jtreg/runtime/LoaderConstraints/itableICCE/I.java ! test/hotspot/jtreg/runtime/LoaderConstraints/itableICCE/Task.java ! test/hotspot/jtreg/runtime/LoaderConstraints/itableICCE/Test.java ! test/hotspot/jtreg/runtime/LoaderConstraints/itableLdrConstraint/I.java ! test/hotspot/jtreg/runtime/LoaderConstraints/itableLdrConstraint/Task.java ! test/hotspot/jtreg/runtime/LoaderConstraints/itableLdrConstraint/Test.java ! test/hotspot/jtreg/runtime/LoaderConstraints/vtableAME/I.java ! test/hotspot/jtreg/runtime/LoaderConstraints/vtableAME/Task.java ! test/hotspot/jtreg/runtime/LoaderConstraints/vtableAME/Test.java ! test/hotspot/jtreg/runtime/LoaderConstraints/vtableLdrConstraint/I.java ! test/hotspot/jtreg/runtime/LoaderConstraints/vtableLdrConstraint/Task.java ! test/hotspot/jtreg/runtime/LoaderConstraints/vtableLdrConstraint/Test.java Changeset: 92ec6aec6f06 Author: vtheeyarath Date: 2018-05-03 04:18 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/92ec6aec6f06 8195717: test java/lang/invoke/MethodHandlesTest timed out running testAsCollector1 Summary: refactor MethodHandlesTest Reviewed-by: psandoz + test/jdk/java/lang/invoke/MethodHandlesAsCollectorTest.java + test/jdk/java/lang/invoke/MethodHandlesCastFailureTest.java + test/jdk/java/lang/invoke/MethodHandlesGeneralTest.java + test/jdk/java/lang/invoke/MethodHandlesInsertArgumentsTest.java + test/jdk/java/lang/invoke/MethodHandlesInvokersTest.java + test/jdk/java/lang/invoke/MethodHandlesPermuteArgumentsTest.java + test/jdk/java/lang/invoke/MethodHandlesSpreadArgumentsTest.java ! test/jdk/java/lang/invoke/MethodHandlesTest.java Changeset: 3db7884546a1 Author: stuefe Date: 2018-05-07 20:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/3db7884546a1 8185034: Cleanup and consolidate Metaspace coding Reviewed-by: coleenp, zgu ! src/hotspot/share/memory/metaspace.cpp Changeset: 9fec54fe663d Author: iklam Date: 2018-04-26 13:40 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation Reviewed-by: jiangli, ccheung ! src/hotspot/share/classfile/classListParser.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classLoaderExt.hpp ! src/hotspot/share/classfile/dictionary.cpp ! src/hotspot/share/classfile/klassFactory.cpp - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp ! src/hotspot/share/classfile/sharedPathsMiscInfo.cpp ! src/hotspot/share/classfile/sharedPathsMiscInfo.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp - src/hotspot/share/classfile/systemDictionary_ext.hpp ! src/hotspot/share/memory/filemap.cpp ! src/hotspot/share/memory/filemap.hpp ! src/hotspot/share/memory/metaspaceShared.cpp ! src/hotspot/share/memory/metaspaceShared.hpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/prims/jvm.cpp Changeset: a7d4b4d78c37 Author: coleenp Date: 2018-05-07 18:48 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/a7d4b4d78c37 8202606: Deprecate AllowNonVirtualCalls option Reviewed-by: hseigel, dholmes ! src/hotspot/share/runtime/arguments.cpp ! test/hotspot/jtreg/runtime/CommandLine/VMDeprecatedOptions.java Changeset: 86c6968ff67a Author: dholmes Date: 2018-05-07 19:31 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/86c6968ff67a 8202686: Missing test case for 8200167 - final Object methods Reviewed-by: psandoz ! test/jdk/java/lang/invoke/SpecialInterfaceCall.java ! test/jdk/java/lang/invoke/SpecialInterfaceCallI4.jasm Changeset: 9f2b32b87906 Author: dholmes Date: 2018-05-07 21:48 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/9f2b32b87906 8202744: Expired flag removal for JDK 11 Reviewed-by: coleenp, jiangli ! src/hotspot/share/runtime/arguments.cpp ! test/hotspot/jtreg/runtime/CommandLine/ObsoleteFlagErrorMessage.java Changeset: 2d1952d4d067 Author: xyin Date: 2018-05-08 09:51 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/2d1952d4d067 8202690: jdk/jshell/ToolBasicTest.java failed in testOpenFileOverHttp() and testOpenLocalFileUrl() Reviewed-by: rfield, jlahoda ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/JShellTool.java ! test/langtools/jdk/jshell/ToolBasicTest.java Changeset: 2566ad726765 Author: amlu Date: 2018-05-08 12:37 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/2566ad726765 8202581: failure_handler: gather more environment information on macOS Reviewed-by: psandoz ! test/failure_handler/src/share/conf/mac.properties Changeset: d9d55f64d136 Author: rgoel Date: 2018-05-08 11:49 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/d9d55f64d136 8191410: Unicode 10 Summary: upgrade to Unicode 10 Reviewed-by: naoto, rriggs, igerasim ! make/data/characterdata/CharacterData00.java.template ! make/data/characterdata/CharacterData01.java.template ! make/data/unicodedata/PropList.txt ! make/data/unicodedata/Scripts.txt ! make/data/unicodedata/SpecialCasing.txt ! make/data/unicodedata/UnicodeData.txt ! make/data/unicodedata/VERSION ! src/java.base/share/classes/java/lang/Character.java ! src/java.base/share/classes/sun/text/normalizer/ICUBinary.java ! src/java.base/share/classes/sun/text/normalizer/Norm2AllModes.java ! src/java.base/share/classes/sun/text/normalizer/Normalizer2.java ! src/java.base/share/classes/sun/text/normalizer/NormalizerImpl.java ! src/java.base/share/classes/sun/text/resources/nfc.icu ! src/java.base/share/classes/sun/text/resources/nfkc.icu ! src/java.base/share/classes/sun/text/resources/nfkc_cf.icu ! src/java.base/share/classes/sun/text/resources/ubidi.icu ! src/java.base/share/classes/sun/text/resources/uprops.icu ! src/java.desktop/share/classes/java/awt/font/NumericShaper.java + test/jdk/java/lang/Character/Blocks.txt + test/jdk/java/lang/Character/CharCheck.java + test/jdk/java/lang/Character/CheckBlocks.java + test/jdk/java/lang/Character/CheckUnicode.java + test/jdk/java/lang/Character/DumpCharProperties.java ! test/jdk/java/lang/Character/PropList.txt ! test/jdk/java/lang/Character/PropertyValueAliases.txt ! test/jdk/java/lang/Character/Scripts.txt + test/jdk/java/lang/Character/SpecialCasing.txt ! test/jdk/java/lang/Character/UnicodeBlock/OptimalMapSize.java + test/jdk/java/lang/Character/UnicodeCasingTest.java + test/jdk/java/lang/Character/UnicodeData.txt + test/jdk/java/lang/Character/UnicodeSpec.java + test/jdk/java/lang/Character/charprop00.bin + test/jdk/java/lang/Character/charprop01.bin + test/jdk/java/lang/Character/charprop02.bin + test/jdk/java/lang/Character/charprop03.bin + test/jdk/java/lang/Character/charprop0E.bin + test/jdk/java/lang/Character/charprop0F.bin + test/jdk/java/lang/Character/charprop10.bin + test/jdk/java/lang/String/SpecialCasingTest.java + test/jdk/java/lang/String/UnicodeCasingTest.java Changeset: 26d9c0cf53d5 Author: hannesw Date: 2018-05-08 09:41 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/26d9c0cf53d5 8200716: Object propertyIsEnumerable buggy behavior on short integer-string key Reviewed-by: jlaskey, sundar ! src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/NativeObject.java + test/nashorn/script/basic/JDK-8200716.js Changeset: edbb27451b4b Author: redestad Date: 2018-05-08 09:52 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/edbb27451b4b 8202583: Remove experimental ClassForNamePlugin Reviewed-by: jlaskey, alanb, mchung - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java ! src/jdk.jlink/share/classes/module-info.java Changeset: 1c4fb292447c Author: redestad Date: 2018-05-08 09:57 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/1c4fb292447c 8202719: Use Collections.emptyEnumeration where possible Reviewed-by: martin, psandoz Contributed-by: christoph.dreis at freenet.de ! src/java.base/share/classes/java/util/jar/JarFile.java ! src/java.base/share/classes/java/util/jar/JarVerifier.java Changeset: 9d17c375dc30 Author: tschatzl Date: 2018-05-08 10:01 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/9d17c375dc30 8202017: Merge Reference Enqueuing phase with phase 3 of Reference processing Summary: Do reference enqueuing work directly in phase 3 after every Reference. Reviewed-by: kbarrett, sangheki ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1FullGCReferenceProcessorExecutor.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp ! src/hotspot/share/gc/parallel/psMarkSweep.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/referenceProcessor.hpp ! src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.cpp ! src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.hpp ! test/hotspot/jtreg/gc/g1/TestGCLogMessages.java ! test/hotspot/jtreg/gc/logging/TestPrintReferences.java Changeset: 0d4920ac269c Author: redestad Date: 2018-05-08 10:49 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/0d4920ac269c 8202548: Use reservation Object when creating SpeciesData Reviewed-by: psandoz, plevart Contributed-by: claes.redestad at oracle.com, peter.levart at gmail.com ! src/java.base/share/classes/java/lang/invoke/ClassSpecializer.java Changeset: f5231f5762fc Author: jlaskey Date: 2018-05-08 09:27 -0300 URL: http://hg.openjdk.java.net/amber/amber/rev/f5231f5762fc 8200372: String::trim JavaDoc should clarify meaning of space Reviewed-by: sundar ! src/java.base/share/classes/java/lang/String.java Changeset: d213d70182a9 Author: apetcher Date: 2018-05-08 09:21 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/d213d70182a9 8181594: Efficient and constant-time modular arithmetic Summary: Field arithmetic library for crypto algorithms like Poly1305 and X25519 Reviewed-by: xuelei + src/java.base/share/classes/sun/security/util/math/ImmutableIntegerModuloP.java + src/java.base/share/classes/sun/security/util/math/IntegerFieldModuloP.java + src/java.base/share/classes/sun/security/util/math/IntegerModuloP.java + src/java.base/share/classes/sun/security/util/math/MutableIntegerModuloP.java + src/java.base/share/classes/sun/security/util/math/SmallValue.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial1305.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial25519.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial448.java + test/jdk/sun/security/util/math/BigIntegerModuloP.java + test/jdk/sun/security/util/math/TestIntegerModuloP.java Changeset: 9bc1e6487cbb Author: apetcher Date: 2018-05-08 09:47 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/9bc1e6487cbb 8171277: Elliptic Curves for Security in Crypto Summary: Implementations of X25519 and X448 key agreement in SunEC Reviewed-by: mullan + src/java.base/share/classes/java/security/interfaces/XECKey.java + src/java.base/share/classes/java/security/interfaces/XECPrivateKey.java + src/java.base/share/classes/java/security/interfaces/XECPublicKey.java ! src/java.base/share/classes/java/security/spec/ECGenParameterSpec.java + src/java.base/share/classes/java/security/spec/NamedParameterSpec.java + src/java.base/share/classes/java/security/spec/XECPrivateKeySpec.java + src/java.base/share/classes/java/security/spec/XECPublicKeySpec.java ! src/java.base/share/classes/module-info.java ! src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XDHKeyAgreement.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XDHKeyFactory.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XDHKeyPairGenerator.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XDHPrivateKeyImpl.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XDHPublicKeyImpl.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XECOperations.java + src/jdk.crypto.ec/share/classes/sun/security/ec/XECParameters.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java + test/jdk/java/security/KeyAgreement/KeyAgreementTest.java + test/jdk/java/security/KeyAgreement/KeySizeTest.java + test/jdk/java/security/KeyAgreement/KeySpecTest.java + test/jdk/java/security/KeyAgreement/MultiThreadTest.java + test/jdk/java/security/KeyAgreement/NegativeTest.java + test/jdk/sun/security/ec/xec/TestXDH.java + test/jdk/sun/security/ec/xec/TestXECOps.java + test/jdk/sun/security/ec/xec/X25519.iter + test/jdk/sun/security/ec/xec/X448.iter + test/jdk/sun/security/ec/xec/XECIterative.java + test/lib/jdk/test/lib/Convert.java Changeset: 4fa726f796f5 Author: tschatzl Date: 2018-05-08 16:49 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/4fa726f796f5 8202781: Fix typo in DiscoveredListIterator::complete_enqeue Reviewed-by: kbarrett ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/referenceProcessor.hpp Changeset: 0b63526d1550 Author: jjg Date: 2018-05-08 12:16 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/0b63526d1550 8199196: Add javadoc support for preview features Reviewed-by: ksrini ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/ToolOption.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/resources/javadoc.properties + test/langtools/jdk/javadoc/tool/EnablePreviewOption.java Changeset: ca1f2d4d4ec8 Author: stefank Date: 2018-05-07 14:57 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ca1f2d4d4ec8 8202709: Move oopDesc::is_archive_object to MetaspaceShared::is_archive_object Reviewed-by: ehelin, jiangli ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/memory/metaspaceShared.cpp ! src/hotspot/share/memory/metaspaceShared.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/oop.cpp ! src/hotspot/share/oops/oop.hpp ! src/hotspot/share/oops/oop.inline.hpp ! src/hotspot/share/prims/whitebox.cpp Changeset: f945444fabc3 Author: stefank Date: 2018-05-07 14:57 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f945444fabc3 8202647: Add deduplicate_string function to CollectedHeap Reviewed-by: rehn, sjohanss ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/collectedHeap.hpp Changeset: f7e564cacfbc Author: stefank Date: 2018-05-07 16:12 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f7e564cacfbc 8202649: Move the Parallel GC specific task creation functions out of Threads Reviewed-by: ehelin, pliden ! src/hotspot/share/gc/parallel/pcTasks.cpp ! src/hotspot/share/gc/parallel/pcTasks.hpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/parallel/psTasks.cpp ! src/hotspot/share/gc/parallel/psTasks.hpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp Changeset: 10843c8ecd54 Author: stefank Date: 2018-05-07 16:16 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/10843c8ecd54 8202722: Move marksweep_init into GC code Reviewed-by: ehelin, kbarrett ! src/hotspot/share/gc/parallel/psMarkSweep.cpp ! src/hotspot/share/gc/serial/markSweep.cpp ! src/hotspot/share/gc/serial/markSweep.hpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp ! src/hotspot/share/runtime/init.cpp Changeset: 06d5b1f66553 Author: redestad Date: 2018-05-08 23:02 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/06d5b1f66553 8202810: Remove class-for-name test Reviewed-by: jlaskey, mchung ! test/jdk/tools/jlink/JLinkPluginsTest.java Changeset: 20520a835f48 Author: vromero Date: 2018-05-08 17:12 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/20520a835f48 8202597: javac is not inducing a notional interface if Object appears in an intersection type Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java + test/langtools/tools/javac/T8202597/NotionalInterfaceNotBeingInducedTest.java ! test/langtools/tools/javac/diags/examples/NotAnInterfaceComponent.java ! test/langtools/tools/javac/lambda/intersection/IntersectionTargetTypeTest.java Changeset: e64e3cd120b7 Author: darcy Date: 2018-05-08 17:58 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/e64e3cd120b7 8202563: BigInteger/BigDecimal not immune to overflow, contrary to spec Reviewed-by: martin, bpb ! src/java.base/share/classes/java/math/BigInteger.java Changeset: 50c0d24d3971 Author: kbarrett Date: 2018-05-08 20:59 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/50c0d24d3971 8202631: JVM_Clone to throw CloneNotSupportException for Reference object Summary: JVM_Clone throws; delete previous partial support for cloning. Reviewed-by: eosterlund, mchung, dholmes, coleenp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/javaClasses.inline.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/prims/jvm.cpp Changeset: e4a7bacf99b1 Author: weijun Date: 2018-05-09 09:50 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/e4a7bacf99b1 8202816: Update JarSigning.keystore Reviewed-by: xuelei ! test/jdk/sun/security/tools/jarsigner/JarSigning.keystore + test/jdk/sun/security/tools/jarsigner/JarSigning.keystore.README ! test/jdk/sun/security/tools/jarsigner/JarSigningNonAscii.java Changeset: ae0ebd3cf949 Author: mdoerr Date: 2018-05-08 15:40 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ae0ebd3cf949 8202564: java/lang/management/ThreadMXBean/ThreadCounts.java fails Summary: _exiting_daemon_threads_count needs to be decremented at the right place Reviewed-by: kvn, dcubed ! src/hotspot/share/services/threadService.cpp Changeset: bd3e4517dfa3 Author: stuefe Date: 2018-05-09 06:51 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bd3e4517dfa3 8202634: Metaspace: simplify SpaceManager lists Reviewed-by: zgu, coleenp ! src/hotspot/share/memory/metachunk.cpp ! src/hotspot/share/memory/metachunk.hpp ! src/hotspot/share/memory/metaspace.cpp Changeset: 88b76c19d8eb Author: clanger Date: 2018-05-09 07:48 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/88b76c19d8eb 8202650: Enforce group for attach listener file Reviewed-by: cjplummer, stuefe ! src/hotspot/os/aix/attachListener_aix.cpp ! src/hotspot/os/bsd/attachListener_bsd.cpp ! src/hotspot/os/linux/attachListener_linux.cpp Changeset: 5201c9474ee7 Author: redestad Date: 2018-05-09 09:39 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/5201c9474ee7 8202711: Merge tiered compilation policies Reviewed-by: neliasso, kvn - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/compilationPolicy.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/simpleThresholdPolicy.cpp ! src/hotspot/share/runtime/simpleThresholdPolicy.hpp ! test/hotspot/jtreg/compiler/aot/RecompilationTest.java ! test/hotspot/jtreg/compiler/tiered/ConstantGettersTransitionsTest.java ! test/hotspot/jtreg/compiler/tiered/LevelTransitionTest.java - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java Changeset: c5341d61506f Author: dsamersoff Date: 2018-05-09 12:19 +0300 URL: http://hg.openjdk.java.net/amber/amber/rev/c5341d61506f 8201602: ARM32 - Minimal Dynamic Constant support Summary: Minimal condy support for ARM Reviewed-by: dsamersoff, bobv Contributed-by: boris.ulasevich at bell-sw.com ! src/hotspot/cpu/arm/templateTable_arm.cpp Changeset: c036b84c6bbf Author: sjohanss Date: 2018-05-09 11:24 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/c036b84c6bbf 8202662: JFR tests fails: Could not find leak with class Reviewed-by: pliden, kbarrett ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp Changeset: 758deedaae84 Author: tschatzl Date: 2018-05-09 13:37 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/758deedaae84 8202780: Remove EnqueueTask related code from ReferenceProcessor after JDK-8202017 Summary: Remove code obsoleted by JDK-8202017 Reviewed-by: kbarrett, sangheki ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.hpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1FullGCReferenceProcessorExecutor.cpp ! src/hotspot/share/gc/g1/g1FullGCReferenceProcessorExecutor.hpp ! src/hotspot/share/gc/parallel/pcTasks.cpp ! src/hotspot/share/gc/parallel/pcTasks.hpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/shared/referenceProcessor.hpp Changeset: 54eda3aad6dd Author: jlahoda Date: 2018-05-09 17:14 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/54eda3aad6dd 8202843: langtools ant build fails Summary: Using default -source/-target settings when building langtools using the developer ant build. Reviewed-by: mcimadamore ! make/langtools/build.properties ! make/langtools/build.xml Changeset: 35b22ca681d1 Author: erikj Date: 2018-05-09 19:50 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/35b22ca681d1 8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017 Reviewed-by: tbell ! make/CreateJmods.gmk ! make/autoconf/basics.m4 ! make/autoconf/spec.gmk.in ! make/autoconf/toolchain_windows.m4 ! make/copy/Copy-java.base.gmk ! make/devkit/createWindowsDevkit2017.sh Changeset: 26ac622a4cab Author: stuefe Date: 2018-05-10 07:26 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/26ac622a4cab 8202822: Add .git to .hgignore Reviewed-by: erikj ! .hgignore Changeset: bbcbfa18b0e8 Author: shade Date: 2018-05-10 17:19 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bbcbfa18b0e8 8202683: Minimal VM should build cleanly on 64-bit platforms Reviewed-by: erikj, dholmes ! make/copy/Copy-java.base.gmk Changeset: fff12b2f6795 Author: lmesnik Date: 2018-05-08 15:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/fff12b2f6795 8202748: jtreg :hotspot_misc group shouldn't include vmTestbase tests Reviewed-by: iignatyev, mseledtsov ! test/hotspot/jtreg/TEST.groups Changeset: e32abf6409af Author: kvn Date: 2018-05-10 09:27 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/e32abf6409af 8202773: Unhandled oop in JavaThread::collect_counters Summary: remove MutexLocker Reviewed-by: dcubed ! src/hotspot/share/runtime/thread.cpp Changeset: 5730ca794584 Author: erikj Date: 2018-05-10 10:00 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/5730ca794584 8202919: JDK-8202683 broke macosx build Reviewed-by: shade, tbell ! make/copy/Copy-java.base.gmk From maurizio.cimadamore at oracle.com Thu May 10 20:02:32 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:02:32 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102002.w4AK2WN9021926@aojmv0008.oracle.com> Changeset: cb0f6cc16a2a Author: mcimadamore Date: 2018-05-10 22:06 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/cb0f6cc16a2a Automatic merge with default - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From maurizio.cimadamore at oracle.com Thu May 10 20:02:54 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:02:54 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102002.w4AK2tXs022294@aojmv0008.oracle.com> Changeset: da7fef619391 Author: mcimadamore Date: 2018-05-10 22:07 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/da7fef619391 Automatic merge with default - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From maurizio.cimadamore at oracle.com Thu May 10 20:03:16 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:03:16 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102003.w4AK3H3u022590@aojmv0008.oracle.com> Changeset: 07e46dd1329a Author: mcimadamore Date: 2018-05-10 22:07 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/07e46dd1329a Automatic merge with default - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From maurizio.cimadamore at oracle.com Thu May 10 20:03:39 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:03:39 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102003.w4AK3dKp022963@aojmv0008.oracle.com> Changeset: 2f7effc41123 Author: mcimadamore Date: 2018-05-10 22:07 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2f7effc41123 Automatic merge with default - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/JavaCompiler.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From maurizio.cimadamore at oracle.com Thu May 10 20:04:03 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:04:03 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102004.w4AK44ET023490@aojmv0008.oracle.com> Changeset: 7f135cad741e Author: mcimadamore Date: 2018-05-10 22:08 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/7f135cad741e Automatic merge with default - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/java.base/share/classes/module-info.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From maurizio.cimadamore at oracle.com Thu May 10 20:04:26 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:04:26 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102004.w4AK4Q5Z023791@aojmv0008.oracle.com> Changeset: 5bf00c7559ea Author: mcimadamore Date: 2018-05-10 22:08 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/5bf00c7559ea Automatic merge with default ! make/autoconf/spec.gmk.in - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/java.base/share/classes/module-info.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/Utils.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From maurizio.cimadamore at oracle.com Thu May 10 20:04:48 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 10 May 2018 20:04:48 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805102004.w4AK4n2t024174@aojmv0008.oracle.com> Changeset: 053b995fd029 Author: mcimadamore Date: 2018-05-10 22:09 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/053b995fd029 Automatic merge with default - make/launcher/Launcher-java.desktop.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/java.base/share/classes/java/lang/String.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From vicente.romero at oracle.com Fri May 11 02:38:45 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 11 May 2018 02:38:45 +0000 Subject: hg: amber/amber: manual merge with default Message-ID: <201805110238.w4B2cj5G018729@aojmv0008.oracle.com> Changeset: 902051a97d9a Author: vromero Date: 2018-05-10 19:25 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/902051a97d9a manual merge with default ! .hgignore ! make/Bundles.gmk ! make/CreateJmods.gmk ! make/Images.gmk ! make/Main.gmk ! make/autoconf/basics.m4 ! make/autoconf/spec.gmk.in ! make/copy/Copy-java.base.gmk - make/launcher/Launcher-java.desktop.gmk ! make/test/JtregNativeHotspot.gmk - src/bsd/doc/man/appletviewer.1 - src/bsd/doc/man/ja/appletviewer.1 ! src/hotspot/cpu/x86/templateTable_x86.cpp - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/interpreter/linkResolver.cpp ! src/hotspot/share/jvmci/vmStructs_jvmci.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/prims/jvm.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/reflection.cpp - src/hotspot/share/services/metaspaceDCmd.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/module-info.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/JavaCompiler.java - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - src/linux/doc/man/appletviewer.1 - src/linux/doc/man/ja/appletviewer.1 - src/solaris/doc/sun/man/man1/appletviewer.1 - src/solaris/doc/sun/man/man1/ja/appletviewer.1 - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.java - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/IOExceptionIfEncodedURLTest.sh - test/jdk/java/awt/appletviewer/IOExceptionIfEncodedURLTest/test.html - test/jdk/java/lang/invoke/I4Special.jcod ! test/jdk/java/lang/invoke/condy/CondyRepeatFailedResolution.java ! test/jdk/java/lang/invoke/condy/CondyReturnPrimitiveTest.java ! test/jdk/java/lang/invoke/condy/CondyWrongType.java ! test/jdk/java/lang/invoke/condy/ConstantBootstrapsTest.java - test/jdk/javax/print/applet/AppletPrintLookup.html - test/jdk/javax/print/applet/AppletPrintLookup.sh - test/jdk/javax/print/applet/YesNo.java - test/jdk/javax/print/applet/applet0/Applet0.java - test/jdk/javax/print/applet/applet1/Applet1.java - test/jdk/javax/print/applet/applet1/Applet1PrintService.java - test/jdk/javax/print/applet/applet1/Applet1PrintServiceLookup.java - test/jdk/javax/print/applet/applet1/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet2/Applet2.java - test/jdk/javax/print/applet/applet2/Applet2PrintService.java - test/jdk/javax/print/applet/applet2/Applet2PrintServiceLookup.java - test/jdk/javax/print/applet/applet2/META-INF/services/javax.print.PrintServiceLookup - test/jdk/javax/print/applet/applet3/Applet3.java - test/jdk/javax/print/applet/applet3/Applet3PrintService.java - test/jdk/javax/print/applet/applet4/Applet4.java - test/jdk/javax/print/applet/applet4/Applet4PrintService.java - test/jdk/javax/print/applet/applet4/Applet4PrintServiceLookup.java From vicente.romero at oracle.com Fri May 11 15:04:55 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 11 May 2018 15:04:55 +0000 Subject: hg: amber/amber: relocating and renaming interfaces (Type | Method | Field) Descriptor Message-ID: <201805111504.w4BF4uC5004691@aojmv0008.oracle.com> Changeset: de1b9c4ce173 Author: vromero Date: 2018-05-11 07:45 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/de1b9c4ce173 relocating and renaming interfaces (Type | Method | Field) Descriptor ! src/java.base/share/classes/java/lang/Class.java + src/java.base/share/classes/java/lang/invoke/FieldTypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java + src/java.base/share/classes/java/lang/invoke/MethodTypeDescriptor.java + src/java.base/share/classes/java/lang/invoke/TypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java - src/java.base/share/classes/java/lang/invoke/constant/FieldDescriptor.java - src/java.base/share/classes/java/lang/invoke/constant/MethodDescriptor.java ! src/java.base/share/classes/java/lang/invoke/constant/MethodTypeDesc.java - src/java.base/share/classes/java/lang/invoke/constant/TypeDescriptor.java From vicente.romero at oracle.com Fri May 11 17:32:55 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 11 May 2018 17:32:55 +0000 Subject: hg: amber/amber: fix for regression test NonDenotableTest Message-ID: <201805111732.w4BHWtUj000376@aojmv0008.oracle.com> Changeset: 10d2bee4357d Author: vromero Date: 2018-05-11 10:19 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/10d2bee4357d fix for regression test NonDenotableTest ! test/langtools/tools/javac/lvti/harness/NonDenotableTest.java From vicente.romero at oracle.com Fri May 11 22:08:47 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 11 May 2018 22:08:47 +0000 Subject: hg: amber/amber: removing regular expressions from the constants api Message-ID: <201805112208.w4BM8m8s015156@aojmv0008.oracle.com> Changeset: 528fce34226e Author: vromero Date: 2018-05-11 14:46 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/528fce34226e removing regular expressions from the constants api ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! test/jdk/java/lang/invoke/constant/ClassRefTest.java ! test/jdk/java/lang/invoke/constant/CondyRefTest.java ! test/jdk/java/lang/invoke/constant/IntrinsifiedRefTest.java ! test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java ! test/jdk/java/lang/invoke/constant/MethodTypeRefTest.java ! test/jdk/java/lang/invoke/constant/SymbolicRefTest.java From vicente.romero at oracle.com Sat May 12 21:23:03 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Sat, 12 May 2018 21:23:03 +0000 Subject: hg: amber/amber: updating langtools regression tests after changes to the API Message-ID: <201805122123.w4CLN44N013131@aojmv0008.oracle.com> Changeset: 89750f4b2b25 Author: vromero Date: 2018-05-12 14:06 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/89750f4b2b25 updating langtools regression tests after changes to the API ! test/langtools/tools/javac/specialConstantFolding/ReflectiveErrorTest.out ! test/langtools/tools/javac/specialConstantFolding/harness/tests/InstanceTrackableMethodsTest.java From jan.lahoda at oracle.com Tue May 15 09:12:03 2018 From: jan.lahoda at oracle.com (jan.lahoda at oracle.com) Date: Tue, 15 May 2018 09:12:03 +0000 Subject: hg: amber/amber: Removing support for case null and additional switch types as suggested. Message-ID: <201805150912.w4F9C39v019060@aojmv0008.oracle.com> Changeset: 2934689eff44 Author: jlahoda Date: 2018-05-15 10:50 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2934689eff44 Removing support for case null and additional switch types as suggested. SwitchBootstraps removed for now as well, as these are not strictly necessary. ! make/CompileJavaModules.gmk - src/java.base/share/classes/java/lang/runtime/SwitchBootstraps.java ! src/java.base/share/classes/module-info.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Source.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Lower.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties - test/jdk/java/lang/runtime/TestSwitchBootstrap.java ! test/langtools/tools/javac/modules/JavaBaseTest.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitch-old.out ! test/langtools/tools/javac/switchexpr/ExpressionSwitch.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBugs.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchFallThrough1.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchInfer.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchInfer.out ! test/langtools/tools/javac/switchextra/MultipleLabelsExpression-old.out ! test/langtools/tools/javac/switchextra/MultipleLabelsExpression.java ! test/langtools/tools/javac/switchextra/MultipleLabelsStatement-old.out ! test/langtools/tools/javac/switchextra/MultipleLabelsStatement.java - test/langtools/tools/javac/switchextra/SwitchBooleanExhaustivness.java - test/langtools/tools/javac/switchextra/SwitchBooleanExhaustivness.out - test/langtools/tools/javac/switchextra/SwitchExtra-old.out - test/langtools/tools/javac/switchextra/SwitchExtra.java + test/langtools/tools/javac/switchextra/SwitchNoExtraTypes.java + test/langtools/tools/javac/switchextra/SwitchNoExtraTypes.out ! test/langtools/tools/javac/switchextra/SwitchObject.out ! test/langtools/tools/javac/switchextra/SwitchStatementArrow.java - test/langtools/tools/javac/switchnull/SwitchNull-old.out - test/langtools/tools/javac/switchnull/SwitchNull.java - test/langtools/tools/javac/switchnull/SwitchNull.out + test/langtools/tools/javac/switchnull/SwitchNullDisabled.java + test/langtools/tools/javac/switchnull/SwitchNullDisabled.out - test/langtools/tools/javac/switchnull/SwitchNullNegative.java - test/langtools/tools/javac/switchnull/SwitchNullNegative.out From vicente.romero at oracle.com Tue May 15 21:36:08 2018 From: vicente.romero at oracle.com (Vicente Romero) Date: Tue, 15 May 2018 17:36:08 -0400 Subject: RFR of constants API In-Reply-To: <17655735-7f4e-3f24-8802-3416eed0f76d@oracle.com> References: <17655735-7f4e-3f24-8802-3416eed0f76d@oracle.com> Message-ID: <5f4fc180-b9d4-29b4-cb09-e9c2d8467090@oracle.com> *note: *forwarding to amber-dev, also I forgot adding that this work was done under JEP 303 but will be put back under its own JEP earlier than 303. Hi all, I've run javadoc [1] for the three following packages: java.lang, java.lang.invoke, and the new java.lang.invoke.constant. The highlights: - java.lang.invoke.constant: The ConstantDesc hierarchy, which models "descriptors" for constant values. (Interfaces in the ConstantDesc hierarchy correspond to the various kinds of constant pool entry in JVMS 4.4. Just as the JVM resolves a constant pool entry in order to yield a value, you can ask a ConstantDesc object to resolve itself in order to yield the value "described" by the object.) Also, the factory interface Constable, which an ordinary class can implement in order to map its constant values to descriptors. - java.lang.invoke: MethodHandle, MethodType, and VarHandle implement Constable. Also, new types that model type descriptors, field descriptors, and method descriptors from JVMS 4.3. Also, the Intrinsics class with methods to instruct the compiler to generate `ldc` and `invokedynamic` bytecodes. - java.lang: Class, String, Integer, etc implement Constable. Also, Class implements j.l.i.FieldTypeDescriptor. Also, String, Integer, etc implement ConstantDesc. Also as a reference [2] is the last webrev. Thanks, Vicente [1] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.03/java.base-summary.html [2] http://cr.openjdk.java.net/~vromero/constant.api/webrev.03/constants.api.patch On 04/27/2018 01:31 PM, Vicente Romero wrote: > Hi all, > > Please review the current proposal of the constants API, which are > nominal descriptor types defined in pkg java.lang.invoke.constant. The > code can be found at [1]. This API is being developed in the context > of JEP 303: Intrinsics for the LDC and INVOKEDYNAMIC Instructions [2] > > Thanks in advance for your comments, > Vicente > > [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.00 > [2] http://openjdk.java.net/jeps/303 From jeremy.a.barrow at gmail.com Mon May 14 20:31:31 2018 From: jeremy.a.barrow at gmail.com (Jeremy Barrow) Date: Mon, 14 May 2018 22:31:31 +0200 Subject: Expression switch exception naming Message-ID: I'll just chime in here with regard to un/sealed enums and exhaustive switches. I think Kevin was on the right track when he pointed out the connection between exhaustive switches and interfaces. The thing I think was overlooked was the default method analogy. Once you try translating that into an exhaustive switch context, it seemingly makes no sense on the surface. But we have annotations. The author of the enum could annotate the enum as exhaustive/sealed, and it would act like a completely sealed class. Every possibility must be handled. But, as has been pointed out, not all enums have the luxury of guaranteeing they'll have nothing added. So, introduce a second level. Annotate a subset of the enum for the completeness check. This covers non-invasive enum additions. It gives you more leverage over the compiler, and the ability to tell it which enums to check, and more specifically, which enum variants to ignore. I don't know how that would play with a default case though. Side-note: I also see a bit of overlap with this and a "please use this return value" check. You're telling the compiler, "hey, make sure the programmer deals with this". Which might make this more interesting if we go down the route of forcing the caller to handle return values in the future. From anna.kozlova at jetbrains.com Wed May 16 11:22:32 2018 From: anna.kozlova at jetbrains.com (Anna Kozlova) Date: Wed, 16 May 2018 13:22:32 +0200 Subject: ANN: Java 11 in IntelliJ Message-ID: Hi guys, we just opened the EAP of 2018.2 with java 11 initial support (vars in lambda parameters, preview and RSL). The download link: https://www.jetbrains.com/idea/nextversion/ Your feedback is very welcome. Thanks, Anna From brian.goetz at oracle.com Wed May 16 12:39:05 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Wed, 16 May 2018 08:39:05 -0400 Subject: RFR of constants API In-Reply-To: <5f4fc180-b9d4-29b4-cb09-e9c2d8467090@oracle.com> References: <17655735-7f4e-3f24-8802-3416eed0f76d@oracle.com> <5f4fc180-b9d4-29b4-cb09-e9c2d8467090@oracle.com> Message-ID: <61866666-B8FB-46C7-8019-F9F79257A218@oracle.com> I?ve split this work off from JEP 303: https://bugs.openjdk.java.net/browse/JDK-8203252 > On May 15, 2018, at 5:36 PM, Vicente Romero wrote: > > note: forwarding to amber-dev, also I forgot adding that this work was done under JEP 303 but will be put back under its own JEP earlier than 303. > > Hi all, > I've run javadoc [1] for the three following packages: java.lang, > java.lang.invoke, and the new java.lang.invoke.constant. The highlights: > > - java.lang.invoke.constant: The ConstantDesc hierarchy, which models > "descriptors" for constant values. (Interfaces in the ConstantDesc > hierarchy correspond to the various kinds of constant pool entry in JVMS > 4.4. Just as the JVM resolves a constant pool entry in order to yield a > value, you can ask a ConstantDesc object to resolve itself in order to > yield the value "described" by the object.) Also, the factory interface > Constable, which an ordinary class can implement in order to map its > constant values to descriptors. > > - java.lang.invoke: MethodHandle, MethodType, and VarHandle implement > Constable. Also, new types that model type descriptors, field > descriptors, and method descriptors from JVMS 4.3. Also, the Intrinsics > class with methods to instruct the compiler to generate `ldc` and > `invokedynamic` bytecodes. > > - java.lang: Class, String, Integer, etc implement Constable. Also, > Class implements j.l.i.FieldTypeDescriptor. Also, String, Integer, etc > implement ConstantDesc. > > Also as a reference [2] is the last webrev. > > Thanks, > Vicente > > > [1] > http://cr.openjdk.java.net/~vromero/constant.api/javadoc.03/java.base-summary.html > [2] > http://cr.openjdk.java.net/~vromero/constant.api/webrev.03/constants.api.patch > > On 04/27/2018 01:31 PM, Vicente Romero wrote: > > Hi all, > > > > Please review the current proposal of the constants API, which are > > nominal descriptor types defined in pkg java.lang.invoke.constant. The > > code can be found at [1]. This API is being developed in the context > > of JEP 303: Intrinsics for the LDC and INVOKEDYNAMIC Instructions [2] > > > > Thanks in advance for your comments, > > Vicente > > > > [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.00 > > [2] http://openjdk.java.net/jeps/303 > From vicente.romero at oracle.com Wed May 16 13:45:11 2018 From: vicente.romero at oracle.com (Vicente Romero) Date: Wed, 16 May 2018 09:45:11 -0400 Subject: RFR of constants API In-Reply-To: <61866666-B8FB-46C7-8019-F9F79257A218@oracle.com> References: <17655735-7f4e-3f24-8802-3416eed0f76d@oracle.com> <5f4fc180-b9d4-29b4-cb09-e9c2d8467090@oracle.com> <61866666-B8FB-46C7-8019-F9F79257A218@oracle.com> Message-ID: I have uploaded an updated version of the webrev for the API [1] along with an updated version of the javadoc [2]. This is the change: class j.l.i.Intrinsics is not part of this API. Thanks, Vicente [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.04/ [2] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.04 On 05/16/2018 08:39 AM, Brian Goetz wrote: > I?ve split this work off from JEP 303: > https://bugs.openjdk.java.net/browse/JDK-8203252 > > >> On May 15, 2018, at 5:36 PM, Vicente Romero >> > wrote: >> >> *note: *forwarding to amber-dev, also I forgot adding that this work >> was done under JEP 303 but will be put back under its own JEP earlier >> than 303. >> >> Hi all, >> I've run javadoc [1] for the three following packages: java.lang, >> java.lang.invoke, and the new java.lang.invoke.constant. The >> highlights: - java.lang.invoke.constant: The ConstantDesc hierarchy, >> which models "descriptors" for constant values. (Interfaces in the >> ConstantDesc hierarchy correspond to the various kinds of constant >> pool entry in JVMS 4.4. Just as the JVM resolves a constant pool >> entry in order to yield a value, you can ask a ConstantDesc object to >> resolve itself in order to yield the value "described" by the >> object.) Also, the factory interface Constable, which an ordinary >> class can implement in order to map its constant values to >> descriptors. - java.lang.invoke: MethodHandle, MethodType, and >> VarHandle implement Constable. Also, new types that model type >> descriptors, field descriptors, and method descriptors from JVMS 4.3. >> Also, the Intrinsics class with methods to instruct the compiler to >> generate `ldc` and `invokedynamic` bytecodes. - java.lang: Class, >> String, Integer, etc implement Constable. Also, Class implements >> j.l.i.FieldTypeDescriptor. Also, String, Integer, etc implement >> ConstantDesc. Also as a reference [2] is the last webrev. Thanks, >> Vicente >> >> [1] >> http://cr.openjdk.java.net/~vromero/constant.api/javadoc.03/java.base-summary.html >> [2] >> http://cr.openjdk.java.net/~vromero/constant.api/webrev.03/constants.api.patch >> >> On 04/27/2018 01:31 PM, Vicente Romero wrote: >> > Hi all, >> > >> > Please review the current proposal of the constants API, which are >> > nominal descriptor types defined in pkg java.lang.invoke.constant. The >> > code can be found at [1]. This API is being developed in the context >> > of JEP 303: Intrinsics for the LDC and INVOKEDYNAMIC Instructions [2] >> > >> > Thanks in advance for your comments, >> > Vicente >> > >> > [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.00 >> > [2] http://openjdk.java.net/jeps/303 >> > From brian.goetz at oracle.com Thu May 17 15:43:11 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Thu, 17 May 2018 11:43:11 -0400 Subject: RFR of constants API In-Reply-To: References: <17655735-7f4e-3f24-8802-3416eed0f76d@oracle.com> <5f4fc180-b9d4-29b4-cb09-e9c2d8467090@oracle.com> <61866666-B8FB-46C7-8019-F9F79257A218@oracle.com> Message-ID: <8B8E80CC-6261-4416-A799-51AAFB25C0C4@oracle.com> At this stage we are also happy to take Code review comments as well as API review. Sent from my MacBook Wheel > On May 16, 2018, at 9:45 AM, Vicente Romero wrote: > > I have uploaded an updated version of the webrev for the API [1] along with an updated version of the javadoc [2]. This is the change: class j.l.i.Intrinsics is not part of this API. > > Thanks, > Vicente > > [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.04/ > [2] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.04 > >> On 05/16/2018 08:39 AM, Brian Goetz wrote: >> I?ve split this work off from JEP 303: >> https://bugs.openjdk.java.net/browse/JDK-8203252 >> >> >>> On May 15, 2018, at 5:36 PM, Vicente Romero wrote: >>> >>> note: forwarding to amber-dev, also I forgot adding that this work was done under JEP 303 but will be put back under its own JEP earlier than 303. >>> >>> Hi all, >>> I've run javadoc [1] for the three following packages: java.lang, >>> java.lang.invoke, and the new java.lang.invoke.constant. The highlights: >>> >>> - java.lang.invoke.constant: The ConstantDesc hierarchy, which models >>> "descriptors" for constant values. (Interfaces in the ConstantDesc >>> hierarchy correspond to the various kinds of constant pool entry in JVMS >>> 4.4. Just as the JVM resolves a constant pool entry in order to yield a >>> value, you can ask a ConstantDesc object to resolve itself in order to >>> yield the value "described" by the object.) Also, the factory interface >>> Constable, which an ordinary class can implement in order to map its >>> constant values to descriptors. >>> >>> - java.lang.invoke: MethodHandle, MethodType, and VarHandle implement >>> Constable. Also, new types that model type descriptors, field >>> descriptors, and method descriptors from JVMS 4.3. Also, the Intrinsics >>> class with methods to instruct the compiler to generate `ldc` and >>> `invokedynamic` bytecodes. >>> >>> - java.lang: Class, String, Integer, etc implement Constable. Also, >>> Class implements j.l.i.FieldTypeDescriptor. Also, String, Integer, etc >>> implement ConstantDesc. >>> >>> Also as a reference [2] is the last webrev. >>> >>> Thanks, >>> Vicente >>> >>> >>> [1] >>> http://cr.openjdk.java.net/~vromero/constant.api/javadoc.03/java.base-summary.html >>> [2] >>> http://cr.openjdk.java.net/~vromero/constant.api/webrev.03/constants.api.patch >>> >>> On 04/27/2018 01:31 PM, Vicente Romero wrote: >>> > Hi all, >>> > >>> > Please review the current proposal of the constants API, which are >>> > nominal descriptor types defined in pkg java.lang.invoke.constant. The >>> > code can be found at [1]. This API is being developed in the context >>> > of JEP 303: Intrinsics for the LDC and INVOKEDYNAMIC Instructions [2] >>> > >>> > Thanks in advance for your comments, >>> > Vicente >>> > >>> > [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.00 >>> > [2] http://openjdk.java.net/jeps/303 >>> >> > From maurizio.cimadamore at oracle.com Thu May 17 20:00:04 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:00:04 +0000 Subject: hg: amber/amber: 88 new changesets Message-ID: <201805172000.w4HK0Ai9010801@aojmv0008.oracle.com> Changeset: 5830a17d9fc8 Author: ccheung Date: 2018-05-10 16:39 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/5830a17d9fc8 8202289: Non-empty directory in module path is not handled properly at CDS/AppCDS dump time 8202519: Crash during large AppCDS dump Summary: Convert the source of a class into canonical form before comparing witha shared path table entry. Reviewed-by: jiangli, iklam ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! test/hotspot/jtreg/runtime/appcds/jigsaw/modulepath/MainModuleOnly.java Changeset: 6fd9fbefd2b4 Author: ysuenaga Date: 2018-05-11 09:40 +0900 URL: http://hg.openjdk.java.net/amber/amber/rev/6fd9fbefd2b4 8202889: Remove trailing LF from perf log Reviewed-by: stuefe, clanger ! src/hotspot/os/aix/perfMemory_aix.cpp ! src/hotspot/os/bsd/perfMemory_bsd.cpp ! src/hotspot/os/linux/perfMemory_linux.cpp ! src/hotspot/os/solaris/perfMemory_solaris.cpp ! src/hotspot/os/windows/perfMemory_windows.cpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfMemory.cpp Changeset: 0611aa1568ef Author: lana Date: 2018-05-11 04:57 +0000 URL: http://hg.openjdk.java.net/amber/amber/rev/0611aa1568ef Added tag jdk-11+13 for changeset 758deedaae84 ! .hgtags Changeset: 0fbe52a4c3f3 Author: mli Date: 2018-05-11 17:50 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/0fbe52a4c3f3 8202756: move FilterUSRTest.java to openJDK Reviewed-by: rriggs + test/jdk/java/rmi/server/UnicastServerRef/serialFilter/FilterUSRTest.java Changeset: 07015dd8157f Author: dcubed Date: 2018-05-11 11:08 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/07015dd8157f 8132287: obsolete the "InlineNotify" flag option Reviewed-by: kvn, dlong, dholmes ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/runtime/objectMonitor.hpp ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigVersioned.java Changeset: 44b64fc0baa3 Author: shade Date: 2018-05-11 17:37 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/44b64fc0baa3 8202974: Backout JDK-8202683 Reviewed-by: stuefe, erikj ! make/copy/Copy-java.base.gmk Changeset: f001977641fb Author: naoto Date: 2018-05-11 10:07 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/f001977641fb 8202764: api/java_text/SimpleDateFormat/index.html#Format testcases started to fail with JDK11 b12 Reviewed-by: sherman ! make/jdk/src/classes/build/tools/cldrconverter/CLDRConverter.java + test/jdk/sun/util/resources/cldr/Bug8202764.java Changeset: 66b0f0134aad Author: vromero Date: 2018-05-11 10:39 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/66b0f0134aad 8194998: broken error message for subclass of interface with private method Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties + test/langtools/tools/javac/T8194998/BrokenErrorMessageTest.java + test/langtools/tools/javac/T8194998/BrokenErrorMessageTest.out + test/langtools/tools/javac/diags/examples/BadReference.java Changeset: cd4bf3b1ee77 Author: bulasevich Date: 2018-05-11 21:19 +0300 URL: http://hg.openjdk.java.net/amber/amber/rev/cd4bf3b1ee77 8201604: ARM64 - Build failure after JDK-8193260 Reviewed-by: aph ! src/hotspot/cpu/arm/compiledIC_arm.cpp ! src/hotspot/cpu/arm/jvmciCodeInstaller_arm.cpp Changeset: a2322c683d17 Author: dpochepk Date: 2018-05-11 21:22 +0300 URL: http://hg.openjdk.java.net/amber/amber/rev/a2322c683d17 8202395: AARCH64: wrong encoding for SIMD instructions zip, trn, uzp Reviewed-by: aph ! src/hotspot/cpu/aarch64/assembler_aarch64.hpp Changeset: b0ed185e8f94 Author: ctornqvi Date: 2018-05-11 14:43 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/b0ed185e8f94 8202997: Split test/jdk/:tier1 to enable better parallel execution Reviewed-by: erikj ! test/jdk/TEST.groups Changeset: 94e11b6edcdd Author: kcr Date: 2018-05-10 13:34 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/94e11b6edcdd 8202553: Update FXLauncherTest as part of removing JavaFX from JDK Reviewed-by: ksrini, mchung ! test/jdk/ProblemList.txt ! test/jdk/tools/launcher/FXLauncherTest.java + test/jdk/tools/launcher/mockfx/src/javafx.graphics/com/sun/javafx/application/LauncherImpl.java + test/jdk/tools/launcher/mockfx/src/javafx.graphics/javafx/application/Application.java + test/jdk/tools/launcher/mockfx/src/javafx.graphics/javafx/stage/Stage.java + test/jdk/tools/launcher/mockfx/src/javafx.graphics/module-info.java Changeset: 05979f6ba560 Author: mchung Date: 2018-05-11 14:21 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/05979f6ba560 8202113: Reflection API is causing caller classes to leak Reviewed-by: alanb, plevart ! src/java.base/share/classes/java/lang/reflect/AccessibleObject.java ! src/java.base/share/classes/java/lang/reflect/Constructor.java ! src/java.base/share/classes/java/lang/reflect/Executable.java ! src/java.base/share/classes/java/lang/reflect/Field.java ! src/java.base/share/classes/java/lang/reflect/Method.java ! src/java.base/share/classes/java/lang/reflect/ReflectAccess.java ! src/java.base/share/classes/jdk/internal/reflect/LangReflectAccess.java ! src/java.base/share/classes/jdk/internal/reflect/ReflectionFactory.java + test/jdk/java/lang/reflect/callerCache/AccessTest.java + test/jdk/java/lang/reflect/callerCache/Members.java + test/jdk/java/lang/reflect/callerCache/ReflectionCallerCacheTest.java Changeset: 0e42d3120e51 Author: clanger Date: 2018-05-12 10:26 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/0e42d3120e51 8202915: [JAXP] Performance enhancements and cleanups in com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator Reviewed-by: joehw ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidator.java Changeset: 55153a374d18 Author: jgeorge Date: 2018-05-12 17:22 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/55153a374d18 8174995: SA: clhsdb 'where -a' throws Assertion Failure with illegal code 236 when CDS is used Summary: Make SA aware of the new _nofast* (rewritten during CDS dump time) bytecodes. Reviewed-by: iklam, cjplummer ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/Bytecodes.java ! test/hotspot/jtreg/serviceability/sa/ClhsdbCDSCore.java ! test/hotspot/jtreg/serviceability/sa/ClhsdbCDSJstackPrintAll.java Changeset: 2f79462aab9b Author: goetz Date: 2018-05-07 09:11 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException. Reviewed-by: dholmes, mdoerr, smonteith, shade, rriggs ! src/hotspot/cpu/aarch64/c1_CodeStubs_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateTable_aarch64.cpp ! src/hotspot/cpu/arm/c1_CodeStubs_arm.cpp ! src/hotspot/cpu/arm/c1_Runtime1_arm.cpp ! src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp ! src/hotspot/cpu/arm/templateTable_arm.cpp ! src/hotspot/cpu/ppc/c1_CodeStubs_ppc.cpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/s390/c1_CodeStubs_s390.cpp ! src/hotspot/cpu/s390/sharedRuntime_s390.cpp ! src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp ! src/hotspot/cpu/s390/templateTable_s390.cpp ! src/hotspot/cpu/sparc/c1_CodeStubs_sparc.cpp ! src/hotspot/cpu/sparc/c1_Runtime1_sparc.cpp ! src/hotspot/cpu/sparc/interp_masm_sparc.cpp ! src/hotspot/cpu/sparc/templateInterpreterGenerator_sparc.cpp ! src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp ! src/hotspot/cpu/x86/c1_Runtime1_x86.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp ! src/hotspot/share/c1/c1_CodeStubs.hpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/c1/c1_Runtime1.hpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/interpreter/interpreterRuntime.hpp ! src/hotspot/share/interpreter/templateInterpreterGenerator.cpp ! src/hotspot/share/interpreter/templateInterpreterGenerator.hpp ! src/hotspot/share/oops/objArrayKlass.cpp ! src/hotspot/share/oops/typeArrayKlass.cpp + test/hotspot/jtreg/runtime/exceptionMsgs/ArrayIndexOutOfBoundsException/ArrayIndexOutOfBoundsExceptionTest.java Changeset: bf2f27b92064 Author: goetz Date: 2018-05-07 23:07 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bf2f27b92064 8202745: Remove hyphens from "out-of-bounds". Reviewed-by: rriggs, dholmes ! src/hotspot/cpu/ppc/ppc.ad ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/g1/g1Allocator.inline.hpp ! src/hotspot/share/gc/parallel/psMarkSweep.cpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/java.base/share/classes/java/util/Objects.java ! src/java.base/share/classes/jdk/internal/util/Preconditions.java ! src/java.desktop/share/classes/javax/imageio/ImageWriteParam.java ! src/java.net.http/share/classes/java/net/http/HttpRequest.java ! test/hotspot/jtreg/runtime/7116786/Test7116786.java Changeset: 4502902f343d Author: tschatzl Date: 2018-05-14 11:47 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/4502902f343d 8202829: Implement CollectedHeap::get_safepoint_workers() for G1 Summary: Use the parallel STW worker gang to do safepoint work. Reviewed-by: rkennke, eosterlund, pliden ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp Changeset: ed8a43d83fcc Author: tschatzl Date: 2018-05-14 11:47 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ed8a43d83fcc 8201491: G1 support for java.lang.ref.Reference precleaning Summary: Implement single-threaded concurrent reference precleaning for G1. Reviewed-by: sangheki, kbarrett ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp ! src/hotspot/share/gc/g1/g1_globals.hpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/referenceProcessor.hpp ! src/hotspot/share/memory/iterator.hpp ! test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1.java ! test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1Basics.java Changeset: 92560438d306 Author: jlaskey Date: 2018-05-14 09:40 -0300 URL: http://hg.openjdk.java.net/amber/amber/rev/92560438d306 8200377: String::strip, String::stripLeading, String::stripTrailing Reviewed-by: sundar, rriggs ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java + test/jdk/java/lang/String/Strip.java Changeset: b3e97e932e05 Author: neliasso Date: 2018-05-14 14:10 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/b3e97e932e05 8201532: Update idom to get correct dom depth calculation Summary: Assert due to dom depth calculation on old idom Reviewed-by: roland ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/loopnode.hpp Changeset: 78d93a34b81d Author: neliasso Date: 2018-05-14 14:10 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/78d93a34b81d 8193935: Illegal countedLoops transformation Summary: Truncation can sometimes not be removed Reviewed-by: kvn ! src/hotspot/share/opto/loopnode.cpp Changeset: 1560c3a7fbbf Author: pliden Date: 2018-05-14 15:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/1560c3a7fbbf 8202994: Add support for undoing last TLAB allocation Reviewed-by: shade, stefank ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp Changeset: 454fa295105c Author: pliden Date: 2018-05-14 15:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/454fa295105c 8202976: Add C1 lea patching support for x86 Reviewed-by: kvn, neliasso ! src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp ! src/hotspot/cpu/arm/c1_LIRAssembler_arm.cpp ! src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp ! src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp ! src/hotspot/cpu/sparc/c1_LIRAssembler_sparc.cpp ! src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp ! src/hotspot/cpu/x86/nativeInst_x86.cpp ! src/hotspot/cpu/x86/nativeInst_x86.hpp ! src/hotspot/share/c1/c1_LIR.hpp ! src/hotspot/share/c1/c1_LIRAssembler.cpp ! src/hotspot/share/c1/c1_LIRAssembler.hpp Changeset: b99e90f885bf Author: pliden Date: 2018-05-14 15:43 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/b99e90f885bf 8202993: Add support for x86 testptr/testq with register and address Reviewed-by: kvn, neliasso ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.hpp ! src/hotspot/cpu/x86/macroAssembler_x86.hpp Changeset: 4ea7917929b9 Author: aph Date: 2018-05-14 12:03 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/4ea7917929b9 8185505: AArch64: Port AOT to AArch64 Reviewed-by: kvn ! make/autoconf/hotspot.m4 ! make/hotspot/lib/JvmFeatures.gmk ! make/launcher/Launcher-jdk.aot.gmk ! src/hotspot/cpu/aarch64/compiledIC_aarch64.cpp + src/hotspot/cpu/aarch64/compiledIC_aot_aarch64.cpp ! src/hotspot/cpu/aarch64/jvmciCodeInstaller_aarch64.cpp ! src/hotspot/cpu/aarch64/nativeInst_aarch64.cpp ! src/hotspot/cpu/aarch64/nativeInst_aarch64.hpp ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp ! src/hotspot/share/asm/codeBuffer.hpp ! src/hotspot/share/jvmci/jvmciCodeInstaller.cpp ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/BinaryContainer.java + src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/AArch64JELFRelocObject.java + src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/AMD64JELFRelocObject.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/Elf.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfTargetInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/JELFRelocObject.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CodeSectionProcessor.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CompiledMethodInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ELFMacroAssembler.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/InstructionDecoder.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/JavaCallSiteRelocationSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/Linker.java + src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/aarch64/AArch64ELFMacroAssembler.java + src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/aarch64/AArch64InstructionDecoder.java ! src/jdk.internal.vm.compiler/share/classes/module-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64/src/org/graalvm/compiler/asm/aarch64/AArch64Assembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64/src/org/graalvm/compiler/asm/aarch64/AArch64MacroAssembler.java Changeset: 6f6e8c1b4208 Author: xiaofeya Date: 2018-05-14 11:17 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/6f6e8c1b4208 8202708: Add a check of opening stream for not-existing UNC url Reviewed-by: rriggs ! test/jdk/java/net/URL/OpenStream.java Changeset: 24151f48582b Author: rkennke Date: 2018-05-14 21:56 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/24151f48582b 8202016: Use obj+offset in interpreter array access Reviewed-by: adinn ! src/hotspot/cpu/x86/interp_masm_x86.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp Changeset: 300e4a88c400 Author: jgeorge Date: 2018-05-15 02:47 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/300e4a88c400 8195613: [SA] HotSpotTypeDataBase.readVMLongConstants truncates values to int Summary: Avoid truncation to int while reading in long constants from vmStructs. Modify ClhsdbLongConstant.java for truncation testing. Reviewed-by: dholmes, sspitsyn, cjplummer ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/HotSpotTypeDataBase.java ! test/hotspot/jtreg/serviceability/sa/ClhsdbLongConstant.java Changeset: 2e9dc3f896c8 Author: amlu Date: 2018-05-15 14:39 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/2e9dc3f896c8 8202763: failure_handler: list open files for macOS Reviewed-by: alanb ! test/failure_handler/src/share/conf/mac.properties Changeset: ea54197f4fe4 Author: alanb Date: 2018-05-15 09:33 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/ea54197f4fe4 8203059: (so) Closing a socket channel registered with Selector and with SO_LINGER set to 0 does not reset connection Reviewed-by: chegar ! src/java.base/share/classes/sun/nio/ch/SocketChannelImpl.java + test/jdk/java/nio/channels/SocketChannel/LingerOnClose.java Changeset: 3d98842c8677 Author: rkennke Date: 2018-05-15 05:33 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/3d98842c8677 8202714: Create a MacroAssembler::access_load/store_at wrapper for AArch64 Reviewed-by: adinn, smonteith ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/cardTableBarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/interp_masm_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp ! src/hotspot/cpu/aarch64/methodHandles_aarch64.cpp ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateTable_aarch64.cpp Changeset: 1dc98fa30b14 Author: stuefe Date: 2018-05-15 14:35 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/1dc98fa30b14 8203032: PrintMetaspaceDcmd fails: Non-Class: missing from stdout/stderr Reviewed-by: asiebenborn, zgu ! test/hotspot/jtreg/runtime/Metaspace/PrintMetaspaceDcmd.java Changeset: 7a2a740815b7 Author: iignatyev Date: 2018-05-15 11:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7a2a740815b7 8202392: [TESTBUG] open source vm testbase heapdump tests Reviewed-by: sspitsyn, mseledtsov ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/heapdump/JMapHeap/TEST.properties + test/hotspot/jtreg/vmTestbase/heapdump/JMapHeap/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/JMapHeap/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/JMapHeapCore/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/JMapHeapCore/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/JMapMetaspace/TEST.properties + test/hotspot/jtreg/vmTestbase/heapdump/JMapMetaspace/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/JMapMetaspace/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/JMapMetaspaceCore/TEST.properties + test/hotspot/jtreg/vmTestbase/heapdump/JMapMetaspaceCore/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/JMapMetaspaceCore/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToFile/TEST.properties + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToFile/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToFile/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToFileMetaspace/TEST.properties + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToFileMetaspace/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToFileMetaspace/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToPath/TEST.properties + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToPath/TestDescription.java + test/hotspot/jtreg/vmTestbase/heapdump/OnOOMToPath/run.sh + test/hotspot/jtreg/vmTestbase/heapdump/README + test/hotspot/jtreg/vmTestbase/heapdump/share/EatMemory.java + test/hotspot/jtreg/vmTestbase/heapdump/share/common.sh Changeset: caf115bb98ad Author: egahlin Date: 2018-05-15 20:24 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/caf115bb98ad 8199712: Flight Recorder Reviewed-by: coleenp, ihse, erikj, dsamersoff, mseledtsov, egahlin, mgronlun Contributed-by: erik.gahlin at oracle.com, markus.gronlund at oracle.com ! make/CompileJavaModules.gmk ! make/autoconf/hotspot.m4 ! make/autoconf/libraries.m4 ! make/common/Modules.gmk + make/copy/Copy-jdk.jfr.gmk ! make/hotspot/gensrc/GenerateSources.gmk + make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/src/classes/build/tools/projectcreator/BuildConfig.java ! make/jprt.properties ! make/nashorn/project.properties ! make/nb_native/nbproject/configurations.xml + src/hotspot/cpu/aarch64/vm_version_ext_aarch64.cpp + src/hotspot/cpu/aarch64/vm_version_ext_aarch64.hpp + src/hotspot/cpu/arm/vm_version_ext_arm.cpp + src/hotspot/cpu/arm/vm_version_ext_arm.hpp + src/hotspot/cpu/sparc/vm_version_ext_sparc.cpp + src/hotspot/cpu/sparc/vm_version_ext_sparc.hpp + src/hotspot/cpu/x86/rdtsc_x86.cpp + src/hotspot/cpu/x86/rdtsc_x86.hpp + src/hotspot/cpu/x86/vm_version_ext_x86.cpp + src/hotspot/cpu/x86/vm_version_ext_x86.hpp + src/hotspot/os/bsd/os_perf_bsd.cpp + src/hotspot/os/linux/os_perf_linux.cpp + src/hotspot/os/solaris/os_perf_solaris.cpp + src/hotspot/os/windows/os_perf_windows.cpp + src/hotspot/os/windows/pdh_interface.cpp + src/hotspot/os/windows/pdh_interface.hpp ! src/hotspot/os_cpu/solaris_x86/os_solaris_x86.inline.hpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_GraphBuilder.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/ci/ciEnv.cpp ! src/hotspot/share/ci/ciMethod.cpp ! src/hotspot/share/ci/ciMethod.hpp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/classLoaderData.cpp ! src/hotspot/share/classfile/classLoaderData.hpp ! src/hotspot/share/classfile/klassFactory.cpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/moduleEntry.hpp ! src/hotspot/share/classfile/packageEntry.cpp ! src/hotspot/share/classfile/packageEntry.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileBroker.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1EvacStats.cpp ! src/hotspot/share/gc/g1/g1FullGCAdjustTask.cpp ! src/hotspot/share/gc/g1/g1FullGCCompactTask.cpp ! src/hotspot/share/gc/g1/g1FullGCCompactTask.hpp ! src/hotspot/share/gc/g1/g1FullGCPrepareTask.cpp ! src/hotspot/share/gc/g1/g1FullGCPrepareTask.hpp ! src/hotspot/share/gc/g1/g1FullGCTask.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp + src/hotspot/share/gc/g1/g1HeapRegionEventSender.cpp + src/hotspot/share/gc/g1/g1HeapRegionEventSender.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.inline.hpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/heapRegionTracer.cpp ! src/hotspot/share/gc/shared/ageTableTracer.cpp ! src/hotspot/share/gc/shared/allocTracer.cpp ! src/hotspot/share/gc/shared/copyFailedInfo.hpp + src/hotspot/share/gc/shared/gcConfiguration.cpp + src/hotspot/share/gc/shared/gcConfiguration.hpp ! src/hotspot/share/gc/shared/gcTimer.cpp ! src/hotspot/share/gc/shared/gcTrace.cpp ! src/hotspot/share/gc/shared/gcTraceSend.cpp ! src/hotspot/share/gc/shared/objectCountEventSender.cpp ! src/hotspot/share/gc/shared/objectCountEventSender.hpp ! src/hotspot/share/gc/shared/weakProcessor.cpp + src/hotspot/share/jfr/dcmd/jfrDcmds.cpp + src/hotspot/share/jfr/dcmd/jfrDcmds.hpp + src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp + src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.hpp + src/hotspot/share/jfr/instrumentation/jfrJvmtiAgent.cpp + src/hotspot/share/jfr/instrumentation/jfrJvmtiAgent.hpp + src/hotspot/share/jfr/jfr.cpp + src/hotspot/share/jfr/jfr.hpp + src/hotspot/share/jfr/jfrEvents.hpp + src/hotspot/share/jfr/jni/jfrGetAllEventClasses.cpp + src/hotspot/share/jfr/jni/jfrGetAllEventClasses.hpp + src/hotspot/share/jfr/jni/jfrJavaCall.cpp + src/hotspot/share/jfr/jni/jfrJavaCall.hpp + src/hotspot/share/jfr/jni/jfrJavaSupport.cpp + src/hotspot/share/jfr/jni/jfrJavaSupport.hpp + src/hotspot/share/jfr/jni/jfrJniMethod.cpp + src/hotspot/share/jfr/jni/jfrJniMethod.hpp + src/hotspot/share/jfr/jni/jfrJniMethodRegistration.cpp + src/hotspot/share/jfr/jni/jfrJniMethodRegistration.hpp + src/hotspot/share/jfr/jni/jfrUpcalls.cpp + src/hotspot/share/jfr/jni/jfrUpcalls.hpp + src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp + src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.hpp + src/hotspot/share/jfr/leakprofiler/chains/bitset.cpp + src/hotspot/share/jfr/leakprofiler/chains/bitset.hpp + src/hotspot/share/jfr/leakprofiler/chains/dfsClosure.cpp + src/hotspot/share/jfr/leakprofiler/chains/dfsClosure.hpp + src/hotspot/share/jfr/leakprofiler/chains/edge.cpp + src/hotspot/share/jfr/leakprofiler/chains/edge.hpp + src/hotspot/share/jfr/leakprofiler/chains/edgeQueue.cpp + src/hotspot/share/jfr/leakprofiler/chains/edgeQueue.hpp + src/hotspot/share/jfr/leakprofiler/chains/edgeStore.cpp + src/hotspot/share/jfr/leakprofiler/chains/edgeStore.hpp + src/hotspot/share/jfr/leakprofiler/chains/edgeUtils.cpp + src/hotspot/share/jfr/leakprofiler/chains/edgeUtils.hpp + src/hotspot/share/jfr/leakprofiler/chains/objectSampleMarker.hpp + src/hotspot/share/jfr/leakprofiler/chains/rootSetClosure.cpp + src/hotspot/share/jfr/leakprofiler/chains/rootSetClosure.hpp + src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleCheckpoint.cpp + src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleCheckpoint.hpp + src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleDescription.cpp + src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleDescription.hpp + src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.cpp + src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.hpp + src/hotspot/share/jfr/leakprofiler/checkpoint/rootResolver.cpp + src/hotspot/share/jfr/leakprofiler/checkpoint/rootResolver.hpp + src/hotspot/share/jfr/leakprofiler/emitEventOperation.cpp + src/hotspot/share/jfr/leakprofiler/emitEventOperation.hpp + src/hotspot/share/jfr/leakprofiler/leakProfiler.cpp + src/hotspot/share/jfr/leakprofiler/leakProfiler.hpp + src/hotspot/share/jfr/leakprofiler/sampling/objectSample.hpp + src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.cpp + src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.hpp + src/hotspot/share/jfr/leakprofiler/sampling/sampleList.cpp + src/hotspot/share/jfr/leakprofiler/sampling/sampleList.hpp + src/hotspot/share/jfr/leakprofiler/sampling/samplePriorityQueue.cpp + src/hotspot/share/jfr/leakprofiler/sampling/samplePriorityQueue.hpp + src/hotspot/share/jfr/leakprofiler/startOperation.hpp + src/hotspot/share/jfr/leakprofiler/stopOperation.hpp + src/hotspot/share/jfr/leakprofiler/utilities/granularTimer.cpp + src/hotspot/share/jfr/leakprofiler/utilities/granularTimer.hpp + src/hotspot/share/jfr/leakprofiler/utilities/rootType.hpp + src/hotspot/share/jfr/leakprofiler/utilities/saveRestore.cpp + src/hotspot/share/jfr/leakprofiler/utilities/saveRestore.hpp + src/hotspot/share/jfr/leakprofiler/utilities/unifiedOop.hpp + src/hotspot/share/jfr/metadata/GenerateJfrFiles.java + src/hotspot/share/jfr/metadata/jfrSerializer.hpp + src/hotspot/share/jfr/metadata/metadata.xml + src/hotspot/share/jfr/metadata/metadata.xsd + src/hotspot/share/jfr/periodic/jfrModuleEvent.cpp + src/hotspot/share/jfr/periodic/jfrModuleEvent.hpp + src/hotspot/share/jfr/periodic/jfrOSInterface.cpp + src/hotspot/share/jfr/periodic/jfrOSInterface.hpp + src/hotspot/share/jfr/periodic/jfrPeriodic.cpp + src/hotspot/share/jfr/periodic/jfrThreadCPULoadEvent.cpp + src/hotspot/share/jfr/periodic/jfrThreadCPULoadEvent.hpp + src/hotspot/share/jfr/periodic/jfrThreadDumpEvent.cpp + src/hotspot/share/jfr/periodic/jfrThreadDumpEvent.hpp + src/hotspot/share/jfr/periodic/sampling/jfrCallTrace.cpp + src/hotspot/share/jfr/periodic/sampling/jfrCallTrace.hpp + src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.cpp + src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.hpp + src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointBlob.cpp + src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointBlob.hpp + src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.cpp + src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.hpp + src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointWriter.cpp + src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointWriter.hpp + src/hotspot/share/jfr/recorder/checkpoint/jfrMetadataEvent.cpp + src/hotspot/share/jfr/recorder/checkpoint/jfrMetadataEvent.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadGroup.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadGroup.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadState.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadState.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeManager.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeManager.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSet.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSet.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetUtils.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetUtils.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetWriter.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.inline.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdBits.inline.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdEpoch.cpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdEpoch.hpp + src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdMacros.hpp + src/hotspot/share/jfr/recorder/jfrEventSetting.cpp + src/hotspot/share/jfr/recorder/jfrEventSetting.hpp + src/hotspot/share/jfr/recorder/jfrEventSetting.inline.hpp + src/hotspot/share/jfr/recorder/jfrRecorder.cpp + src/hotspot/share/jfr/recorder/jfrRecorder.hpp + src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.cpp + src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.hpp + src/hotspot/share/jfr/recorder/repository/jfrChunkState.cpp + src/hotspot/share/jfr/recorder/repository/jfrChunkState.hpp + src/hotspot/share/jfr/recorder/repository/jfrChunkWriter.cpp + src/hotspot/share/jfr/recorder/repository/jfrChunkWriter.hpp + src/hotspot/share/jfr/recorder/repository/jfrEmergencyDump.cpp + src/hotspot/share/jfr/recorder/repository/jfrEmergencyDump.hpp + src/hotspot/share/jfr/recorder/repository/jfrRepository.cpp + src/hotspot/share/jfr/recorder/repository/jfrRepository.hpp + src/hotspot/share/jfr/recorder/service/jfrEvent.cpp + src/hotspot/share/jfr/recorder/service/jfrEvent.hpp + src/hotspot/share/jfr/recorder/service/jfrMemorySizer.cpp + src/hotspot/share/jfr/recorder/service/jfrMemorySizer.hpp + src/hotspot/share/jfr/recorder/service/jfrOptionSet.cpp + src/hotspot/share/jfr/recorder/service/jfrOptionSet.hpp + src/hotspot/share/jfr/recorder/service/jfrPostBox.cpp + src/hotspot/share/jfr/recorder/service/jfrPostBox.hpp + src/hotspot/share/jfr/recorder/service/jfrRecorderService.cpp + src/hotspot/share/jfr/recorder/service/jfrRecorderService.hpp + src/hotspot/share/jfr/recorder/service/jfrRecorderThread.cpp + src/hotspot/share/jfr/recorder/service/jfrRecorderThread.hpp + src/hotspot/share/jfr/recorder/service/jfrRecorderThreadLoop.cpp + src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.cpp + src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.hpp + src/hotspot/share/jfr/recorder/storage/jfrBuffer.cpp + src/hotspot/share/jfr/recorder/storage/jfrBuffer.hpp + src/hotspot/share/jfr/recorder/storage/jfrMemorySpace.hpp + src/hotspot/share/jfr/recorder/storage/jfrMemorySpace.inline.hpp + src/hotspot/share/jfr/recorder/storage/jfrMemorySpaceRetrieval.hpp + src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp + src/hotspot/share/jfr/recorder/storage/jfrStorage.hpp + src/hotspot/share/jfr/recorder/storage/jfrStorageControl.cpp + src/hotspot/share/jfr/recorder/storage/jfrStorageControl.hpp + src/hotspot/share/jfr/recorder/storage/jfrStorageUtils.hpp + src/hotspot/share/jfr/recorder/storage/jfrStorageUtils.inline.hpp + src/hotspot/share/jfr/recorder/storage/jfrVirtualMemory.cpp + src/hotspot/share/jfr/recorder/storage/jfrVirtualMemory.hpp + src/hotspot/share/jfr/recorder/stringpool/jfrStringPool.cpp + src/hotspot/share/jfr/recorder/stringpool/jfrStringPool.hpp + src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolBuffer.cpp + src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolBuffer.hpp + src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolWriter.cpp + src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolWriter.hpp + src/hotspot/share/jfr/support/jfrAllocationTracer.cpp + src/hotspot/share/jfr/support/jfrAllocationTracer.hpp + src/hotspot/share/jfr/support/jfrEventClass.cpp + src/hotspot/share/jfr/support/jfrEventClass.hpp + src/hotspot/share/jfr/support/jfrFlush.cpp + src/hotspot/share/jfr/support/jfrFlush.hpp + src/hotspot/share/jfr/support/jfrIntrinsics.hpp + src/hotspot/share/jfr/support/jfrKlassExtension.hpp + src/hotspot/share/jfr/support/jfrStackTraceMark.cpp + src/hotspot/share/jfr/support/jfrStackTraceMark.hpp + src/hotspot/share/jfr/support/jfrThreadExtension.hpp + src/hotspot/share/jfr/support/jfrThreadId.hpp + src/hotspot/share/jfr/support/jfrThreadLocal.cpp + src/hotspot/share/jfr/support/jfrThreadLocal.hpp + src/hotspot/share/jfr/support/jfrTraceIdExtension.hpp + src/hotspot/share/jfr/utilities/jfrAllocation.cpp + src/hotspot/share/jfr/utilities/jfrAllocation.hpp + src/hotspot/share/jfr/utilities/jfrBigEndian.hpp + src/hotspot/share/jfr/utilities/jfrDoublyLinkedList.hpp + src/hotspot/share/jfr/utilities/jfrHashtable.hpp + src/hotspot/share/jfr/utilities/jfrIterator.hpp + src/hotspot/share/jfr/utilities/jfrJavaLog.cpp + src/hotspot/share/jfr/utilities/jfrJavaLog.hpp + src/hotspot/share/jfr/utilities/jfrLogTagSets.hpp + src/hotspot/share/jfr/utilities/jfrRefCountPointer.hpp + src/hotspot/share/jfr/utilities/jfrResourceManager.hpp + src/hotspot/share/jfr/utilities/jfrSpinlockHelper.hpp + src/hotspot/share/jfr/utilities/jfrTime.cpp + src/hotspot/share/jfr/utilities/jfrTime.hpp + src/hotspot/share/jfr/utilities/jfrTimeConverter.cpp + src/hotspot/share/jfr/utilities/jfrTimeConverter.hpp + src/hotspot/share/jfr/utilities/jfrTryLock.hpp + src/hotspot/share/jfr/utilities/jfrTypes.hpp + src/hotspot/share/jfr/writers/jfrBigEndianWriter.hpp + src/hotspot/share/jfr/writers/jfrEncoders.hpp + src/hotspot/share/jfr/writers/jfrEncoding.hpp + src/hotspot/share/jfr/writers/jfrEventWriterHost.hpp + src/hotspot/share/jfr/writers/jfrEventWriterHost.inline.hpp + src/hotspot/share/jfr/writers/jfrJavaEventWriter.cpp + src/hotspot/share/jfr/writers/jfrJavaEventWriter.hpp + src/hotspot/share/jfr/writers/jfrMemoryWriterHost.hpp + src/hotspot/share/jfr/writers/jfrMemoryWriterHost.inline.hpp + src/hotspot/share/jfr/writers/jfrNativeEventWriter.hpp + src/hotspot/share/jfr/writers/jfrPosition.hpp + src/hotspot/share/jfr/writers/jfrPosition.inline.hpp + src/hotspot/share/jfr/writers/jfrStorageAdapter.hpp + src/hotspot/share/jfr/writers/jfrStorageHost.hpp + src/hotspot/share/jfr/writers/jfrStorageHost.inline.hpp + src/hotspot/share/jfr/writers/jfrStreamWriterHost.hpp + src/hotspot/share/jfr/writers/jfrStreamWriterHost.inline.hpp + src/hotspot/share/jfr/writers/jfrWriterHost.hpp + src/hotspot/share/jfr/writers/jfrWriterHost.inline.hpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/memory/metaspaceTracer.cpp ! src/hotspot/share/oops/arrayKlass.cpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/opto/bytecodeInfo.cpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/nativeLookup.cpp ! src/hotspot/share/prims/unsafe.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/biasedLocking.cpp ! src/hotspot/share/runtime/flags/jvmFlag.cpp ! src/hotspot/share/runtime/globals.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/jniHandles.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/runtime/objectMonitor.hpp + src/hotspot/share/runtime/os_perf.hpp ! src/hotspot/share/runtime/safepoint.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/sweeper.cpp ! src/hotspot/share/runtime/synchronizer.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp ! src/hotspot/share/runtime/vmStructs.cpp - src/hotspot/share/runtime/vmStructs_trace.hpp ! src/hotspot/share/runtime/vmThread.cpp ! src/hotspot/share/runtime/vm_operations.cpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl ! src/hotspot/share/utilities/hashtable.cpp ! src/hotspot/share/utilities/macros.hpp ! src/hotspot/share/utilities/spinYield.cpp ! src/hotspot/share/utilities/ticks.cpp ! src/hotspot/share/utilities/ticks.hpp - src/hotspot/share/utilities/ticks.inline.hpp ! src/hotspot/share/utilities/vmError.cpp ! src/java.base/share/classes/module-info.java ! src/java.management/share/classes/module-info.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/VMOps.java + src/jdk.jfr/share/classes/jdk/jfr/AnnotationElement.java + src/jdk.jfr/share/classes/jdk/jfr/BooleanFlag.java + src/jdk.jfr/share/classes/jdk/jfr/Category.java + src/jdk.jfr/share/classes/jdk/jfr/Configuration.java + src/jdk.jfr/share/classes/jdk/jfr/ContentType.java + src/jdk.jfr/share/classes/jdk/jfr/DataAmount.java + src/jdk.jfr/share/classes/jdk/jfr/Description.java + src/jdk.jfr/share/classes/jdk/jfr/Enabled.java + src/jdk.jfr/share/classes/jdk/jfr/Event.java + src/jdk.jfr/share/classes/jdk/jfr/EventFactory.java + src/jdk.jfr/share/classes/jdk/jfr/EventSettings.java + src/jdk.jfr/share/classes/jdk/jfr/EventType.java + src/jdk.jfr/share/classes/jdk/jfr/Experimental.java + src/jdk.jfr/share/classes/jdk/jfr/FlightRecorder.java + src/jdk.jfr/share/classes/jdk/jfr/FlightRecorderListener.java + src/jdk.jfr/share/classes/jdk/jfr/FlightRecorderPermission.java + src/jdk.jfr/share/classes/jdk/jfr/Frequency.java + src/jdk.jfr/share/classes/jdk/jfr/Label.java + src/jdk.jfr/share/classes/jdk/jfr/MemoryAddress.java + src/jdk.jfr/share/classes/jdk/jfr/MetadataDefinition.java + src/jdk.jfr/share/classes/jdk/jfr/Name.java + src/jdk.jfr/share/classes/jdk/jfr/Percentage.java + src/jdk.jfr/share/classes/jdk/jfr/Period.java + src/jdk.jfr/share/classes/jdk/jfr/Recording.java + src/jdk.jfr/share/classes/jdk/jfr/RecordingState.java + src/jdk.jfr/share/classes/jdk/jfr/Registered.java + src/jdk.jfr/share/classes/jdk/jfr/Relational.java + src/jdk.jfr/share/classes/jdk/jfr/SettingControl.java + src/jdk.jfr/share/classes/jdk/jfr/SettingDefinition.java + src/jdk.jfr/share/classes/jdk/jfr/SettingDescriptor.java + src/jdk.jfr/share/classes/jdk/jfr/StackTrace.java + src/jdk.jfr/share/classes/jdk/jfr/Threshold.java + src/jdk.jfr/share/classes/jdk/jfr/Timespan.java + src/jdk.jfr/share/classes/jdk/jfr/Timestamp.java + src/jdk.jfr/share/classes/jdk/jfr/TransitionFrom.java + src/jdk.jfr/share/classes/jdk/jfr/TransitionTo.java + src/jdk.jfr/share/classes/jdk/jfr/Unsigned.java + src/jdk.jfr/share/classes/jdk/jfr/ValueDescriptor.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/ChunkParser.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/ConstantMap.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/EventParser.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/LongMap.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/ObjectFactory.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/Parser.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/ParserFactory.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedClass.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedClassLoader.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedEvent.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedFrame.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedMethod.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedObject.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedStackTrace.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedThread.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedThreadGroup.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordingFile.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/TimeConverter.java + src/jdk.jfr/share/classes/jdk/jfr/consumer/package-info.java + src/jdk.jfr/share/classes/jdk/jfr/events/AbstractJDKEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/ActiveRecordingEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/ActiveSettingEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/ErrorThrownEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/ExceptionStatisticsEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/ExceptionThrownEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/FileForceEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/FileReadEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/FileWriteEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/SocketReadEvent.java + src/jdk.jfr/share/classes/jdk/jfr/events/SocketWriteEvent.java + src/jdk.jfr/share/classes/jdk/jfr/internal/ASMToolkit.java + src/jdk.jfr/share/classes/jdk/jfr/internal/AnnotationConstruct.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Bits.java + src/jdk.jfr/share/classes/jdk/jfr/internal/ChunkInputStream.java + src/jdk.jfr/share/classes/jdk/jfr/internal/ChunksChannel.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Control.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Cutoff.java + src/jdk.jfr/share/classes/jdk/jfr/internal/EventClassBuilder.java + src/jdk.jfr/share/classes/jdk/jfr/internal/EventControl.java + src/jdk.jfr/share/classes/jdk/jfr/internal/EventHandlerCreator.java + src/jdk.jfr/share/classes/jdk/jfr/internal/EventInstrumentation.java + src/jdk.jfr/share/classes/jdk/jfr/internal/EventWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/EventWriterMethod.java + src/jdk.jfr/share/classes/jdk/jfr/internal/JVM.java + src/jdk.jfr/share/classes/jdk/jfr/internal/JVMSupport.java + src/jdk.jfr/share/classes/jdk/jfr/internal/JVMUpcalls.java + src/jdk.jfr/share/classes/jdk/jfr/internal/LogLevel.java + src/jdk.jfr/share/classes/jdk/jfr/internal/LogTag.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Logger.java + src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataDescriptor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataHandler.java + src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataReader.java + src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataRepository.java + src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Options.java + src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformEventType.java + src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecorder.java + src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecording.java + src/jdk.jfr/share/classes/jdk/jfr/internal/PrivateAccess.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Repository.java + src/jdk.jfr/share/classes/jdk/jfr/internal/RepositoryChunk.java + src/jdk.jfr/share/classes/jdk/jfr/internal/RequestEngine.java + src/jdk.jfr/share/classes/jdk/jfr/internal/SecuritySupport.java + src/jdk.jfr/share/classes/jdk/jfr/internal/SettingsManager.java + src/jdk.jfr/share/classes/jdk/jfr/internal/ShutdownHook.java + src/jdk.jfr/share/classes/jdk/jfr/internal/StringPool.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Type.java + src/jdk.jfr/share/classes/jdk/jfr/internal/TypeLibrary.java + src/jdk.jfr/share/classes/jdk/jfr/internal/Utils.java + src/jdk.jfr/share/classes/jdk/jfr/internal/WriteableUserPath.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Command.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Execute.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/HelpCommand.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/JSONWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrettyWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrintCommand.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/ReconstructCommand.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SplitCommand.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/StructuredWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SummaryCommand.java + src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/XMLWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/ChunkHeader.java + src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/RecordingInput.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/AbstractDCmd.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdCheck.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdConfigure.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdDump.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdException.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdStart.java + src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdStop.java + src/jdk.jfr/share/classes/jdk/jfr/internal/handlers/EventHandler.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/ConstructorTracerWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/ConstructorWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/FileChannelImplInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/FileInputStreamInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/FileOutputStreamInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JDKEvents.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIClassInstrumentation.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIInliner.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIInstrumentationMethod.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIInstrumentationTarget.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIMethodCallInliner.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIMethodInliningAdapter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JIMethodMergeAdapter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JITypeMapping.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/RandomAccessFileInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/SocketChannelImplInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/SocketInputStreamInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/SocketOutputStreamInstrumentor.java + src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/ThrowableTracer.java + src/jdk.jfr/share/classes/jdk/jfr/internal/jfc/JFC.java + src/jdk.jfr/share/classes/jdk/jfr/internal/jfc/JFCParser.java + src/jdk.jfr/share/classes/jdk/jfr/internal/jfc/JFCParserHandler.java + src/jdk.jfr/share/classes/jdk/jfr/internal/jfc/jfc.xsd + src/jdk.jfr/share/classes/jdk/jfr/internal/jfc/package-info.java + src/jdk.jfr/share/classes/jdk/jfr/internal/management/ManagementSupport.java + src/jdk.jfr/share/classes/jdk/jfr/internal/settings/BooleanValue.java + src/jdk.jfr/share/classes/jdk/jfr/internal/settings/CutoffSetting.java + src/jdk.jfr/share/classes/jdk/jfr/internal/settings/EnabledSetting.java + src/jdk.jfr/share/classes/jdk/jfr/internal/settings/PeriodSetting.java + src/jdk.jfr/share/classes/jdk/jfr/internal/settings/StackTraceSetting.java + src/jdk.jfr/share/classes/jdk/jfr/internal/settings/ThresholdSetting.java + src/jdk.jfr/share/classes/jdk/jfr/internal/test/WhiteBox.java + src/jdk.jfr/share/classes/jdk/jfr/package-info.java + src/jdk.jfr/share/classes/module-info.java + src/jdk.jfr/share/conf/jfr/default.jfc + src/jdk.jfr/share/conf/jfr/profile.jfc + src/jdk.management.jfr/share/classes/jdk/management/jfr/ConfigurationInfo.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/EventTypeInfo.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/FlightRecorderMXBean.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/FlightRecorderMXBeanImpl.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/MBeanUtils.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/RecordingInfo.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/SettingDescriptorInfo.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/Stream.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/StreamCleanupTask.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/StreamManager.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/Stringifier.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/internal/FlightRecorderMXBeanProvider.java + src/jdk.management.jfr/share/classes/jdk/management/jfr/package-info.java + src/jdk.management.jfr/share/classes/module-info.java ! test/hotspot/gtest/gc/shared/test_oopStorage_parperf.cpp + test/hotspot/gtest/jfr/precompiled.hpp + test/hotspot/gtest/jfr/test_threadCpuLoad.cpp + test/hotspot/jtreg/runtime/appcds/CDSandJFR.java + test/hotspot/jtreg/runtime/appcds/TestWithProfiler.java + test/hotspot/jtreg/runtime/appcds/test-classes/GetFlightRecorder.java + test/hotspot/jtreg/runtime/appcds/test-classes/MyThread.java + test/hotspot/jtreg/runtime/appcds/test-classes/TestWithProfilerHelper.java ! test/jdk/ProblemList.txt ! test/jdk/TEST.ROOT ! test/jdk/TEST.groups + test/jdk/jdk/jfr/TEST.properties + test/jdk/jdk/jfr/api/consumer/TEST.properties + test/jdk/jdk/jfr/api/consumer/TestFieldAccess.java + test/jdk/jdk/jfr/api/consumer/TestGetStackTrace.java + test/jdk/jdk/jfr/api/consumer/TestHiddenMethod.java + test/jdk/jdk/jfr/api/consumer/TestMethodGetModifiers.java + test/jdk/jdk/jfr/api/consumer/TestReadTwice.java + test/jdk/jdk/jfr/api/consumer/TestRecordedClassLoader.java + test/jdk/jdk/jfr/api/consumer/TestRecordedEvent.java + test/jdk/jdk/jfr/api/consumer/TestRecordedEventGetThread.java + test/jdk/jdk/jfr/api/consumer/TestRecordedEventGetThreadOther.java + test/jdk/jdk/jfr/api/consumer/TestRecordedFrame.java + test/jdk/jdk/jfr/api/consumer/TestRecordedFullStackTrace.java + test/jdk/jdk/jfr/api/consumer/TestRecordedInstantEventTimestamp.java + test/jdk/jdk/jfr/api/consumer/TestRecordedMethodDescriptor.java + test/jdk/jdk/jfr/api/consumer/TestRecordedObject.java + test/jdk/jdk/jfr/api/consumer/TestRecordedThreadGroupParent.java + test/jdk/jdk/jfr/api/consumer/TestRecordingFile.java + test/jdk/jdk/jfr/api/consumer/TestRecordingFileReadEventEof.java + test/jdk/jdk/jfr/api/consumer/TestRecordingInternals.java + test/jdk/jdk/jfr/api/consumer/TestSingleRecordedEvent.java + test/jdk/jdk/jfr/api/consumer/TestToString.java + test/jdk/jdk/jfr/api/consumer/TestValueDescriptorRecorded.java + test/jdk/jdk/jfr/api/event/TEST.properties + test/jdk/jdk/jfr/api/event/TestAbstractEvent.java + test/jdk/jdk/jfr/api/event/TestBeginEnd.java + test/jdk/jdk/jfr/api/event/TestClinitRegistration.java + test/jdk/jdk/jfr/api/event/TestClonedEvent.java + test/jdk/jdk/jfr/api/event/TestEnableDisable.java + test/jdk/jdk/jfr/api/event/TestEventFactory.java + test/jdk/jdk/jfr/api/event/TestEventFactoryRegisterTwice.java + test/jdk/jdk/jfr/api/event/TestEventFactoryRegistration.java + test/jdk/jdk/jfr/api/event/TestExtends.java + test/jdk/jdk/jfr/api/event/TestGetDuration.java + test/jdk/jdk/jfr/api/event/TestIsEnabled.java + test/jdk/jdk/jfr/api/event/TestIsEnabledMultiple.java + test/jdk/jdk/jfr/api/event/TestOwnCommit.java + test/jdk/jdk/jfr/api/event/TestShouldCommit.java + test/jdk/jdk/jfr/api/event/TestStaticEnable.java + test/jdk/jdk/jfr/api/event/dynamic/TestDynamicAnnotations.java + test/jdk/jdk/jfr/api/event/dynamic/TestEventFactory.java + test/jdk/jdk/jfr/api/flightrecorder/MyListener.java + test/jdk/jdk/jfr/api/flightrecorder/TestAddListenerTwice.java + test/jdk/jdk/jfr/api/flightrecorder/TestAddPeriodicEvent.java + test/jdk/jdk/jfr/api/flightrecorder/TestFlightRecorderListenerRecorderInitialized.java + test/jdk/jdk/jfr/api/flightrecorder/TestGetEventTypes.java + test/jdk/jdk/jfr/api/flightrecorder/TestGetPlatformRecorder.java + test/jdk/jdk/jfr/api/flightrecorder/TestGetRecordings.java + test/jdk/jdk/jfr/api/flightrecorder/TestGetSettings.java + test/jdk/jdk/jfr/api/flightrecorder/TestIsAvailable.java + test/jdk/jdk/jfr/api/flightrecorder/TestIsInitialized.java + test/jdk/jdk/jfr/api/flightrecorder/TestListener.java + test/jdk/jdk/jfr/api/flightrecorder/TestListenerNull.java + test/jdk/jdk/jfr/api/flightrecorder/TestPeriodicEventsSameHook.java + test/jdk/jdk/jfr/api/flightrecorder/TestRecorderInitializationCallback.java + test/jdk/jdk/jfr/api/flightrecorder/TestRegisterUnregisterEvent.java + test/jdk/jdk/jfr/api/flightrecorder/TestSettingsControl.java + test/jdk/jdk/jfr/api/flightrecorder/TestSnapshot.java + test/jdk/jdk/jfr/api/metadata/annotations/TestCategory.java + test/jdk/jdk/jfr/api/metadata/annotations/TestContentType.java + test/jdk/jdk/jfr/api/metadata/annotations/TestDescription.java + test/jdk/jdk/jfr/api/metadata/annotations/TestDynamicAnnotation.java + test/jdk/jdk/jfr/api/metadata/annotations/TestEnabled.java + test/jdk/jdk/jfr/api/metadata/annotations/TestExperimental.java + test/jdk/jdk/jfr/api/metadata/annotations/TestFieldAnnotations.java + test/jdk/jdk/jfr/api/metadata/annotations/TestHasValue.java + test/jdk/jdk/jfr/api/metadata/annotations/TestInheritedAnnotations.java + test/jdk/jdk/jfr/api/metadata/annotations/TestLabel.java + test/jdk/jdk/jfr/api/metadata/annotations/TestMetadata.java + test/jdk/jdk/jfr/api/metadata/annotations/TestName.java + test/jdk/jdk/jfr/api/metadata/annotations/TestPeriod.java + test/jdk/jdk/jfr/api/metadata/annotations/TestRegistered.java + test/jdk/jdk/jfr/api/metadata/annotations/TestRegisteredFalseAndRunning.java + test/jdk/jdk/jfr/api/metadata/annotations/TestRelational.java + test/jdk/jdk/jfr/api/metadata/annotations/TestSimpleMetadataEvent.java + test/jdk/jdk/jfr/api/metadata/annotations/TestStackTrace.java + test/jdk/jdk/jfr/api/metadata/annotations/TestThreshold.java + test/jdk/jdk/jfr/api/metadata/annotations/TestTypesIdentical.java + test/jdk/jdk/jfr/api/metadata/eventtype/EventWithCustomSettings.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetAnnotation.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetAnnotationElements.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetAnnotations.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetCategory.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetDefaultValues.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetDescription.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetEventType.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetField.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetFields.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestGetSettings.java + test/jdk/jdk/jfr/api/metadata/eventtype/TestUnloadingEventClass.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/AnnotatedSetting.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/BaseEvent.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/CustomEvent.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/PlainSetting.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestDefaultValue.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetAnnotation.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetAnnotationElement.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetContentType.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetDescription.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetLabel.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetName.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetTypeId.java + test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetTypeName.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestClasses.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestConstructor.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestGetAnnotations.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestGetFields.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestIsArray.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestSimpleTypes.java + test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestValueDescriptorContentType.java + test/jdk/jdk/jfr/api/modules/TestModularizedEvent.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.annotation/module-info.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.annotation/test/jfr/annotation/ModularizedAnnotation.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.event/module-info.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.event/test/jfr/event/ModularizedOrdinaryEvent.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.event/test/jfr/event/ModularizedPeriodicEvent.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.main/module-info.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.main/test/jfr/main/MainTest.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.setting/module-info.java + test/jdk/jdk/jfr/api/modules/src_mods/test.jfr.setting/test/jfr/setting/ModularizedSetting.java + test/jdk/jdk/jfr/api/recorder/TestRecorderInitialized.java + test/jdk/jdk/jfr/api/recorder/TestRecorderListener.java + test/jdk/jdk/jfr/api/recorder/TestStartStopRecording.java + test/jdk/jdk/jfr/api/recording/destination/TestDestFileExist.java + test/jdk/jdk/jfr/api/recording/destination/TestDestFileReadOnly.java + test/jdk/jdk/jfr/api/recording/destination/TestDestInvalid.java + test/jdk/jdk/jfr/api/recording/destination/TestDestLongPath.java + test/jdk/jdk/jfr/api/recording/destination/TestDestMultiple.java + test/jdk/jdk/jfr/api/recording/destination/TestDestReadOnly.java + test/jdk/jdk/jfr/api/recording/destination/TestDestState.java + test/jdk/jdk/jfr/api/recording/destination/TestDestToDiskFalse.java + test/jdk/jdk/jfr/api/recording/destination/TestDestToDiskTrue.java + test/jdk/jdk/jfr/api/recording/destination/TestDestWithDuration.java + test/jdk/jdk/jfr/api/recording/dump/TestDump.java + test/jdk/jdk/jfr/api/recording/dump/TestDumpInvalid.java + test/jdk/jdk/jfr/api/recording/dump/TestDumpLongPath.java + test/jdk/jdk/jfr/api/recording/dump/TestDumpMultiple.java + test/jdk/jdk/jfr/api/recording/dump/TestDumpReadOnly.java + test/jdk/jdk/jfr/api/recording/dump/TestDumpState.java + test/jdk/jdk/jfr/api/recording/event/TEST.properties + test/jdk/jdk/jfr/api/recording/event/TestChunkPeriod.java + test/jdk/jdk/jfr/api/recording/event/TestEnableClass.java + test/jdk/jdk/jfr/api/recording/event/TestEnableName.java + test/jdk/jdk/jfr/api/recording/event/TestEventTime.java + test/jdk/jdk/jfr/api/recording/event/TestLoadEventAfterStart.java + test/jdk/jdk/jfr/api/recording/event/TestPeriod.java + test/jdk/jdk/jfr/api/recording/event/TestReEnableClass.java + test/jdk/jdk/jfr/api/recording/event/TestReEnableMultiple.java + test/jdk/jdk/jfr/api/recording/event/TestReEnableName.java + test/jdk/jdk/jfr/api/recording/event/TestRecordingEnableDisable.java + test/jdk/jdk/jfr/api/recording/event/TestThreshold.java + test/jdk/jdk/jfr/api/recording/misc/TestGetId.java + test/jdk/jdk/jfr/api/recording/misc/TestGetSize.java + test/jdk/jdk/jfr/api/recording/misc/TestGetSizeToMem.java + test/jdk/jdk/jfr/api/recording/misc/TestGetStream.java + test/jdk/jdk/jfr/api/recording/misc/TestRecordingBase.java + test/jdk/jdk/jfr/api/recording/misc/TestRecordingCopy.java + test/jdk/jdk/jfr/api/recording/options/TestDuration.java + test/jdk/jdk/jfr/api/recording/options/TestName.java + test/jdk/jdk/jfr/api/recording/settings/TestConfigurationGetContents.java + test/jdk/jdk/jfr/api/recording/settings/TestCreateConfigFromPath.java + test/jdk/jdk/jfr/api/recording/settings/TestCreateConfigFromReader.java + test/jdk/jdk/jfr/api/recording/settings/TestGetConfigurations.java + test/jdk/jdk/jfr/api/recording/settings/TestSettingsAvailability.java + test/jdk/jdk/jfr/api/recording/settings/settings.jfc + test/jdk/jdk/jfr/api/recording/state/TestOptionState.java + test/jdk/jdk/jfr/api/recording/state/TestState.java + test/jdk/jdk/jfr/api/recording/state/TestStateDuration.java + test/jdk/jdk/jfr/api/recording/state/TestStateIdenticalListeners.java + test/jdk/jdk/jfr/api/recording/state/TestStateInvalid.java + test/jdk/jdk/jfr/api/recording/state/TestStateMultiple.java + test/jdk/jdk/jfr/api/recording/state/TestStateScheduleStart.java + test/jdk/jdk/jfr/api/recording/time/TestTime.java + test/jdk/jdk/jfr/api/recording/time/TestTimeDuration.java + test/jdk/jdk/jfr/api/recording/time/TestTimeMultiple.java + test/jdk/jdk/jfr/api/recording/time/TestTimeScheduleStart.java + test/jdk/jdk/jfr/api/settings/RegExpControl.java + test/jdk/jdk/jfr/api/settings/StringListSetting.java + test/jdk/jdk/jfr/api/settings/TestFilterEvents.java + test/jdk/jdk/jfr/cmd/ExecuteHelper.java + test/jdk/jdk/jfr/cmd/TestHelp.java + test/jdk/jdk/jfr/cmd/TestPrint.java + test/jdk/jdk/jfr/cmd/TestPrintDefault.java + test/jdk/jdk/jfr/cmd/TestPrintJSON.java + test/jdk/jdk/jfr/cmd/TestPrintXML.java + test/jdk/jdk/jfr/cmd/TestReconstruct.java + test/jdk/jdk/jfr/cmd/TestSplit.java + test/jdk/jdk/jfr/cmd/TestSummary.java + test/jdk/jdk/jfr/event/TEST.properties + test/jdk/jdk/jfr/event/compiler/TestAllocInNewTLAB.java + test/jdk/jdk/jfr/event/compiler/TestAllocOutsideTLAB.java + test/jdk/jdk/jfr/event/compiler/TestCodeCacheConfig.java + test/jdk/jdk/jfr/event/compiler/TestCodeCacheFull.java + test/jdk/jdk/jfr/event/compiler/TestCodeCacheStats.java + test/jdk/jdk/jfr/event/compiler/TestCodeSweeper.java + test/jdk/jdk/jfr/event/compiler/TestCodeSweeperConfig.java + test/jdk/jdk/jfr/event/compiler/TestCodeSweeperStats.java + test/jdk/jdk/jfr/event/compiler/TestCompilerCompile.java + test/jdk/jdk/jfr/event/compiler/TestCompilerConfig.java + test/jdk/jdk/jfr/event/compiler/TestCompilerInlining.java + test/jdk/jdk/jfr/event/compiler/TestCompilerPhase.java + test/jdk/jdk/jfr/event/compiler/TestCompilerStats.java + test/jdk/jdk/jfr/event/gc/collection/AppGCProvoker.java + test/jdk/jdk/jfr/event/gc/collection/GCEventAll.java + test/jdk/jdk/jfr/event/gc/collection/GCGarbageCollectionUtil.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithCMSConcurrent.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithCMSMarkSweep.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithG1ConcurrentMark.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithG1FullCollection.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithPSMarkSweep.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithParallelOld.java + test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithSerial.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithCMSConcurrent.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithCMSMarkSweep.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithG1ConcurrentMark.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithG1FullCollection.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithPSMarkSweep.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithParNew.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithParallelOld.java + test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithSerial.java + test/jdk/jdk/jfr/event/gc/collection/TestGCGarbageCollectionEvent.java + test/jdk/jdk/jfr/event/gc/collection/TestGCWithFasttime.java + test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithDefNew.java + test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithG1New.java + test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithParNew.java + test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithParallelScavenge.java + test/jdk/jdk/jfr/event/gc/collection/YoungGarbageCollectionEvent.java + test/jdk/jdk/jfr/event/gc/collection/gc-testsettings.jfc + test/jdk/jdk/jfr/event/gc/configuration/GCHeapConfigurationEventTester.java + test/jdk/jdk/jfr/event/gc/configuration/GCHeapConfigurationEventVerifier.java + test/jdk/jdk/jfr/event/gc/configuration/GCYoungGenerationConfigurationEventTester.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCConfigurationEvent.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCConfigurationEventWithDefaultPauseTarget.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWith32BitOops.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWith32BitOops.sh + test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWithHeapBasedOops.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWithHeapBasedOops.sh + test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWithZeroBasedOops.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWithZeroBasedOops.sh + test/jdk/jdk/jfr/event/gc/configuration/TestGCSurvivorConfigurationEvent.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCTLABConfigurationEvent.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCYoungGenerationConfigurationEventWithMinAndMaxSize.java + test/jdk/jdk/jfr/event/gc/configuration/TestGCYoungGenerationConfigurationEventWithNewRatio.java + test/jdk/jdk/jfr/event/gc/detailed/ExecuteOOMApp.java + test/jdk/jdk/jfr/event/gc/detailed/OOMApp.java + test/jdk/jdk/jfr/event/gc/detailed/PromotionEvent.java + test/jdk/jdk/jfr/event/gc/detailed/PromotionFailedEvent.java + test/jdk/jdk/jfr/event/gc/detailed/StressAllocationGCEvents.java + test/jdk/jdk/jfr/event/gc/detailed/TestCMSConcurrentModeFailureEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestEvacuationFailedEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestEvacuationInfoEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1AIHOPEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1ConcurrentModeFailureEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1EvacMemoryStatsEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1HeapRegionInformationEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1HeapRegionTypeChangeEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1IHOPEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestG1MMUEvent.java + test/jdk/jdk/jfr/event/gc/detailed/TestPromotionEventWithG1.java + test/jdk/jdk/jfr/event/gc/detailed/TestPromotionEventWithParallelScavenge.java + test/jdk/jdk/jfr/event/gc/detailed/TestPromotionFailedEventWithDefNew.java + test/jdk/jdk/jfr/event/gc/detailed/TestPromotionFailedEventWithParNew.java + test/jdk/jdk/jfr/event/gc/detailed/TestPromotionFailedEventWithParallelScavenge.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressAllocationGCEventsWithCMS.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressAllocationGCEventsWithDefNew.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressAllocationGCEventsWithG1.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressAllocationGCEventsWithParNew.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressAllocationGCEventsWithParallel.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressBigAllocationGCEventsWithCMS.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressBigAllocationGCEventsWithDefNew.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressBigAllocationGCEventsWithG1.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressBigAllocationGCEventsWithParNew.java + test/jdk/jdk/jfr/event/gc/detailed/TestStressBigAllocationGCEventsWithParallel.java + test/jdk/jdk/jfr/event/gc/detailed/TestTenuringDistributionEvent.java + test/jdk/jdk/jfr/event/gc/detailed/concurrentmodefailure-testsettings.jfc + test/jdk/jdk/jfr/event/gc/detailed/evacuationfailed-testsettings.jfc + test/jdk/jdk/jfr/event/gc/detailed/promotionfailed-testsettings.jfc + test/jdk/jdk/jfr/event/gc/heapsummary/HeapSummaryEventAllGcs.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryCommittedSize.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventConcurrentCMS.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventDefNewSerial.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventG1.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventPSParOld.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventPSSerial.java + test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventParNewCMS.java + test/jdk/jdk/jfr/event/gc/objectcount/ObjectCountAfterGCEvent.java + test/jdk/jdk/jfr/event/gc/objectcount/ObjectCountEventVerifier.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithCMSConcurrent.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithCMSMarkSweep.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1ConcurrentMark.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1FullCollection.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithPSMarkSweep.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithParallelOld.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithSerial.java + test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountEvent.java + test/jdk/jdk/jfr/event/gc/refstat/RefStatEvent.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithCMSConcurrent.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithCMSMarkSweep.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithDefNew.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithG1ConcurrentMark.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithG1FullCollection.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithG1New.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithPSMarkSweep.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithParallelOld.java + test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithParallelScavenge.java + test/jdk/jdk/jfr/event/gc/stacktrace/AllocationStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TEST.properties + test/jdk/jdk/jfr/event/gc/stacktrace/TestConcMarkSweepAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestDefNewAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestG1HumongousAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestG1OldAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestG1YoungAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestMarkSweepCompactAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceConcMarkSweepGCAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceG1GCAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceParallelGCAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceSerialGCAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestParNewAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestParallelMarkSweepAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/gc/stacktrace/TestParallelScavengeAllocationPendingStackTrace.java + test/jdk/jdk/jfr/event/io/EvilInstrument.java + test/jdk/jdk/jfr/event/io/IOEvent.java + test/jdk/jdk/jfr/event/io/IOHelper.java + test/jdk/jdk/jfr/event/io/InstrumentationCallback.java + test/jdk/jdk/jfr/event/io/MakeJAR.sh + test/jdk/jdk/jfr/event/io/TestDisabledEvents.java + test/jdk/jdk/jfr/event/io/TestFileChannelEvents.java + test/jdk/jdk/jfr/event/io/TestFileReadOnly.java + test/jdk/jdk/jfr/event/io/TestFileStreamEvents.java + test/jdk/jdk/jfr/event/io/TestInstrumentation.java + test/jdk/jdk/jfr/event/io/TestInstrumentation.mf + test/jdk/jdk/jfr/event/io/TestRandomAccessFileEvents.java + test/jdk/jdk/jfr/event/io/TestRandomAccessFileThread.java + test/jdk/jdk/jfr/event/io/TestSocketChannelEvents.java + test/jdk/jdk/jfr/event/io/TestSocketEvents.java + test/jdk/jdk/jfr/event/metadata/TestDefaultConfigurations.java + test/jdk/jdk/jfr/event/metadata/TestEventMetadata.java + test/jdk/jdk/jfr/event/oldobject/OldObjects.java + test/jdk/jdk/jfr/event/oldobject/TestAllocationTime.java + test/jdk/jdk/jfr/event/oldobject/TestArrayInformation.java + test/jdk/jdk/jfr/event/oldobject/TestCMS.java + test/jdk/jdk/jfr/event/oldobject/TestCircularReference.java + test/jdk/jdk/jfr/event/oldobject/TestClassLoader.java + test/jdk/jdk/jfr/event/oldobject/TestClassLoaderLeak.java + test/jdk/jdk/jfr/event/oldobject/TestFieldInformation.java + test/jdk/jdk/jfr/event/oldobject/TestG1.java + test/jdk/jdk/jfr/event/oldobject/TestHeapDeep.java + test/jdk/jdk/jfr/event/oldobject/TestHeapShallow.java + test/jdk/jdk/jfr/event/oldobject/TestLargeRootSet.java + test/jdk/jdk/jfr/event/oldobject/TestListenerLeak.java + test/jdk/jdk/jfr/event/oldobject/TestMetadataObject.java + test/jdk/jdk/jfr/event/oldobject/TestMetadataRetention.java + test/jdk/jdk/jfr/event/oldobject/TestObjectDescription.java + test/jdk/jdk/jfr/event/oldobject/TestParallel.java + test/jdk/jdk/jfr/event/oldobject/TestParallelOld.java + test/jdk/jdk/jfr/event/oldobject/TestReferenceChainLimit.java + test/jdk/jdk/jfr/event/oldobject/TestSanityDefault.java + test/jdk/jdk/jfr/event/oldobject/TestSerial.java + test/jdk/jdk/jfr/event/oldobject/TestThreadLocalLeak.java + test/jdk/jdk/jfr/event/os/TestCPUInformation.java + test/jdk/jdk/jfr/event/os/TestCPULoad.java + test/jdk/jdk/jfr/event/os/TestCPUTimeStampCounter.java + test/jdk/jdk/jfr/event/os/TestInitialEnvironmentVariable.java + test/jdk/jdk/jfr/event/os/TestInitialEnvironmentVariable.sh + test/jdk/jdk/jfr/event/os/TestOSInfo.java + test/jdk/jdk/jfr/event/os/TestPhysicalMemoryEvent.java + test/jdk/jdk/jfr/event/os/TestSystemProcess.java + test/jdk/jdk/jfr/event/os/TestThreadContextSwitches.java + test/jdk/jdk/jfr/event/profiling/TestFullStackTrace.java + test/jdk/jdk/jfr/event/runtime/TestActiveRecordingEvent.java + test/jdk/jdk/jfr/event/runtime/TestActiveSettingEvent.java + test/jdk/jdk/jfr/event/runtime/TestBiasedLockRevocationEvents.java + test/jdk/jdk/jfr/event/runtime/TestClassDefineEvent.java + test/jdk/jdk/jfr/event/runtime/TestClassLoadEvent.java + test/jdk/jdk/jfr/event/runtime/TestClassLoaderStatsEvent.java + test/jdk/jdk/jfr/event/runtime/TestClassLoadingStatisticsEvent.java + test/jdk/jdk/jfr/event/runtime/TestClassUnloadEvent.java + test/jdk/jdk/jfr/event/runtime/TestClasses.java + test/jdk/jdk/jfr/event/runtime/TestExceptionEvents.java + test/jdk/jdk/jfr/event/runtime/TestExceptionSubclass.java + test/jdk/jdk/jfr/event/runtime/TestJavaBlockedEvent.java + test/jdk/jdk/jfr/event/runtime/TestJavaMonitorInflateEvent.java + test/jdk/jdk/jfr/event/runtime/TestJavaMonitorWaitEvent.java + test/jdk/jdk/jfr/event/runtime/TestJavaMonitorWaitTimeOut.java + test/jdk/jdk/jfr/event/runtime/TestJavaThreadStatisticsEvent.java + test/jdk/jdk/jfr/event/runtime/TestJavaThreadStatisticsEventBean.java + test/jdk/jdk/jfr/event/runtime/TestModuleEvents.java + test/jdk/jdk/jfr/event/runtime/TestNativeLibrariesEvent.java + test/jdk/jdk/jfr/event/runtime/TestSafepointEvents.java + test/jdk/jdk/jfr/event/runtime/TestSizeTFlags.java + test/jdk/jdk/jfr/event/runtime/TestSystemPropertyEvent.java + test/jdk/jdk/jfr/event/runtime/TestThreadAllocationEvent.java + test/jdk/jdk/jfr/event/runtime/TestThreadCpuTimeEvent.java + test/jdk/jdk/jfr/event/runtime/TestThreadDumpEvent.java + test/jdk/jdk/jfr/event/runtime/TestThreadParkEvent.java + test/jdk/jdk/jfr/event/runtime/TestThreadSleepEvent.java + test/jdk/jdk/jfr/event/runtime/TestThreadStartEndEvents.java + test/jdk/jdk/jfr/event/runtime/TestThrowableInstrumentation.java + test/jdk/jdk/jfr/event/runtime/TestVMInfoEvent.flags + test/jdk/jdk/jfr/event/runtime/TestVMInfoEvent.java + test/jdk/jdk/jfr/event/runtime/TestVMInfoEvent.sh + test/jdk/jdk/jfr/event/runtime/TestVMOperation.java + test/jdk/jdk/jfr/event/runtime/TestVmFlagChangedEvent.java + test/jdk/jdk/jfr/event/runtime/exception.security.policy + test/jdk/jdk/jfr/event/sampling/TestNative.java + test/jdk/jdk/jfr/event/sampling/libTestNative.c + test/jdk/jdk/jfr/jcmd/JcmdAsserts.java + test/jdk/jdk/jfr/jcmd/JcmdHelper.java + test/jdk/jdk/jfr/jcmd/TEST.properties + test/jdk/jdk/jfr/jcmd/TestJcmdChangeLogLevel.java + test/jdk/jdk/jfr/jcmd/TestJcmdConfigure.java + test/jdk/jdk/jfr/jcmd/TestJcmdDump.java + test/jdk/jdk/jfr/jcmd/TestJcmdDumpPathToGCRoots.java + test/jdk/jdk/jfr/jcmd/TestJcmdLegacy.java + test/jdk/jdk/jfr/jcmd/TestJcmdSaveToFile.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartDirNotExist.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartInvaldFile.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartPathToGCRoots.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartReadOnlyFile.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartStopDefault.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartWithOptions.java + test/jdk/jdk/jfr/jcmd/TestJcmdStartWithSettings.java + test/jdk/jdk/jfr/jcmd/TestJcmdStopInvalidFile.java + test/jdk/jdk/jfr/jcmd/TestJcmdStopReadOnlyFile.java + test/jdk/jdk/jfr/jcmd/jcmd-testsettings.2.jfc + test/jdk/jdk/jfr/jcmd/jcmd-testsettings.jfc + test/jdk/jdk/jfr/jcmd/jcmd-testsettings3.jfc + test/jdk/jdk/jfr/jcmd/legacy.jfc + test/jdk/jdk/jfr/jmx/JmxHelper.java + test/jdk/jdk/jfr/jmx/TEST.properties + test/jdk/jdk/jfr/jmx/TestClone.java + test/jdk/jdk/jfr/jmx/TestCloneRepeat.java + test/jdk/jdk/jfr/jmx/TestConfigurationInfo.java + test/jdk/jdk/jfr/jmx/TestCopyTo.java + test/jdk/jdk/jfr/jmx/TestCopyToInvalidPath.java + test/jdk/jdk/jfr/jmx/TestCopyToReadOnlyDir.java + test/jdk/jdk/jfr/jmx/TestCopyToRunning.java + test/jdk/jdk/jfr/jmx/TestEventTypes.java + test/jdk/jdk/jfr/jmx/TestGetRecordings.java + test/jdk/jdk/jfr/jmx/TestGetRecordingsMultiple.java + test/jdk/jdk/jfr/jmx/TestMultipleRecordings.java + test/jdk/jdk/jfr/jmx/TestNotificationListener.java + test/jdk/jdk/jfr/jmx/TestPredefinedConfiguration.java + test/jdk/jdk/jfr/jmx/TestPredefinedConfigurationInvalid.java + test/jdk/jdk/jfr/jmx/TestRecordingOptions.java + test/jdk/jdk/jfr/jmx/TestRecordingSettings.java + test/jdk/jdk/jfr/jmx/TestRecordingSettingsInvalid.java + test/jdk/jdk/jfr/jmx/TestRecordingSettingsMultiple.java + test/jdk/jdk/jfr/jmx/TestRecordingState.java + test/jdk/jdk/jfr/jmx/TestRecordingStateInvalid.java + test/jdk/jdk/jfr/jmx/TestSetConfiguration.java + test/jdk/jdk/jfr/jmx/TestSetConfigurationInvalid.java + test/jdk/jdk/jfr/jmx/TestSnapshot.java + test/jdk/jdk/jfr/jmx/TestStartRecording.java + test/jdk/jdk/jfr/jmx/TestStream.java + test/jdk/jdk/jfr/jmx/TestStreamClosed.java + test/jdk/jdk/jfr/jmx/TestStreamMultiple.java + test/jdk/jdk/jfr/jmx/TestWrongId.java + test/jdk/jdk/jfr/jmx/info/TestConfigurationInfo.java + test/jdk/jdk/jfr/jmx/info/TestEventTypeInfo.java + test/jdk/jdk/jfr/jmx/info/TestRecordingInfo.java + test/jdk/jdk/jfr/jmx/info/TestSettingDescriptorInfo.java + test/jdk/jdk/jfr/jmx/security/TestEnoughPermission.java + test/jdk/jdk/jfr/jmx/security/TestNoControlPermission.java + test/jdk/jdk/jfr/jmx/security/TestNoMonitorPermission.java + test/jdk/jdk/jfr/jmx/security/TestNotificationListenerPermission.java + test/jdk/jdk/jfr/jmx/security/enough.policy + test/jdk/jdk/jfr/jmx/security/listener.policy + test/jdk/jdk/jfr/jmx/security/nocontrol.policy + test/jdk/jdk/jfr/jmx/security/nomonitor.policy + test/jdk/jdk/jfr/jvm/HelloWorldEvent1.java + test/jdk/jdk/jfr/jvm/HelloWorldEvent2.java + test/jdk/jdk/jfr/jvm/TestBeginAndEnd.java + test/jdk/jdk/jfr/jvm/TestClassId.java + test/jdk/jdk/jfr/jvm/TestCounterTime.java + test/jdk/jdk/jfr/jvm/TestCreateNative.java + test/jdk/jdk/jfr/jvm/TestDumpOnCrash.java + test/jdk/jdk/jfr/jvm/TestGetAllEventClasses.java + test/jdk/jdk/jfr/jvm/TestGetEventWriter.java + test/jdk/jdk/jfr/jvm/TestGetStackTraceId.java + test/jdk/jdk/jfr/jvm/TestJFRIntrinsic.java + test/jdk/jdk/jfr/jvm/TestJavaEvent.java + test/jdk/jdk/jfr/jvm/TestJfrJavaBase.java + test/jdk/jdk/jfr/jvm/TestLargeJavaEvent512k.java + test/jdk/jdk/jfr/jvm/TestLargeJavaEvent64k.java + test/jdk/jdk/jfr/jvm/TestLogImplementation.java + test/jdk/jdk/jfr/jvm/TestLogOutput.java + test/jdk/jdk/jfr/jvm/TestPid.java + test/jdk/jdk/jfr/jvm/TestUnloadEventClassCount.java + test/jdk/jdk/jfr/jvm/TestUnsupportedVM.java + test/jdk/jdk/jfr/startupargs/StartupHelper.java + test/jdk/jdk/jfr/startupargs/TestBadOptionValues.java + test/jdk/jdk/jfr/startupargs/TestDumpOnExit.java + test/jdk/jdk/jfr/startupargs/TestMemoryOptions.java + test/jdk/jdk/jfr/startupargs/TestOldObjectQueueSize.java + test/jdk/jdk/jfr/startupargs/TestRepositoryPath.java + test/jdk/jdk/jfr/startupargs/TestRepositoryPathLong.java + test/jdk/jdk/jfr/startupargs/TestRetransform.java + test/jdk/jdk/jfr/startupargs/TestRetransformUsingLog.java + test/jdk/jdk/jfr/startupargs/TestStartDelay.java + test/jdk/jdk/jfr/startupargs/TestStartDelayRunning.java + test/jdk/jdk/jfr/startupargs/TestStartDuration.java + test/jdk/jdk/jfr/startupargs/TestStartMaxAgeSize.java + test/jdk/jdk/jfr/startupargs/TestStartName.java + test/jdk/jdk/jfr/startupargs/TestStartRecording.java + test/lib/jdk/test/lib/jfr/AppExecutorHelper.java + test/lib/jdk/test/lib/jfr/CommonHelper.java + test/lib/jdk/test/lib/jfr/EventField.java + test/lib/jdk/test/lib/jfr/EventNames.java + test/lib/jdk/test/lib/jfr/EventTypePrototype.java + test/lib/jdk/test/lib/jfr/EventVerifier.java + test/lib/jdk/test/lib/jfr/Events.java + test/lib/jdk/test/lib/jfr/FileHelper.java + test/lib/jdk/test/lib/jfr/GCHelper.java + test/lib/jdk/test/lib/jfr/RecurseThread.java + test/lib/jdk/test/lib/jfr/SimpleEvent.java + test/lib/jdk/test/lib/jfr/SimpleEventHelper.java + test/lib/jdk/test/lib/jfr/SimpleSetting.java + test/lib/jdk/test/lib/jfr/Stressor.java + test/lib/jdk/test/lib/jfr/TestClassLoader.java + test/lib/jdk/test/lib/jfr/VoidFunction.java + test/lib/jdk/test/lib/thread/TestThread.java + test/lib/jdk/test/lib/thread/XRun.java Changeset: d2cfda6a00de Author: joehw Date: 2018-05-15 13:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/d2cfda6a00de 8202426: NPE thrown by Transformer when XMLStreamReader reports no xml attribute type Reviewed-by: lancea ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/SAX2DOM.java + test/jaxp/javax/xml/jaxp/libs/jaxp/library/JAXPTestPolicy.java + test/jaxp/javax/xml/jaxp/unittest/transform/MyXMLInputFactoryImpl.java + test/jaxp/javax/xml/jaxp/unittest/transform/MyXMLStreamReader.java ! test/jaxp/javax/xml/jaxp/unittest/transform/StAXSourceTest.java Changeset: 94a048a97de4 Author: iignatyev Date: 2018-05-15 13:58 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/94a048a97de4 8203250: runtime/LoadClass/test-classes/Hello.java has wrong legal notice Reviewed-by: ccheung ! test/hotspot/jtreg/runtime/LoadClass/test-classes/Hello.java Changeset: cebd0673feeb Author: jjg Date: 2018-05-15 14:15 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/cebd0673feeb 8203176: javadoc handles non-ASCII characters incorrectly. Reviewed-by: ksrini ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDocletWriter.java + test/langtools/jdk/javadoc/doclet/testUnicode/TestUnicode.java Changeset: fb66b2959eaf Author: shade Date: 2018-05-15 23:37 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/fb66b2959eaf 8203251: Non-PCH build failed after JDK-8199712 (Flight Recorder) Reviewed-by: mgronlun ! src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.cpp ! src/hotspot/share/jfr/recorder/repository/jfrChunkWriter.cpp ! src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.cpp ! src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp Changeset: 919c36db208c Author: jjg Date: 2018-05-15 14:41 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/919c36db208c 8202614: Add ability to validate links in JavadocTester Reviewed-by: ksrini ! test/langtools/jdk/javadoc/doclet/5093723/T5093723.java ! test/langtools/jdk/javadoc/doclet/DocRootSlash/DocRootSlash.java ! test/langtools/jdk/javadoc/doclet/lib/JavadocTester.java ! test/langtools/jdk/javadoc/doclet/testAnchorNames/TestAnchorNames.java ! test/langtools/jdk/javadoc/doclet/testHrefInDocComment/pkg/I1.java ! test/langtools/jdk/javadoc/doclet/testHtmlTag/TestHtmlTag.java ! test/langtools/jdk/javadoc/doclet/testHtmlTag/pkg3/A.java ! test/langtools/jdk/javadoc/doclet/testHtmlVersion/TestHtmlVersion.java ! test/langtools/jdk/javadoc/doclet/testModules/TestModules.java ! test/langtools/jdk/javadoc/doclet/testPackageDeprecation/TestPackageDeprecation.java ! test/langtools/jdk/javadoc/doclet/testSearch/TestSearch.java ! test/langtools/jdk/javadoc/doclet/testUseOption/TestUseOption.java Changeset: bf9177eac58d Author: aharlap Date: 2018-05-15 19:26 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/bf9177eac58d 8189271: Metaspace::_capacity_until_GC should be size_t Summary: Change of member and some related local variables. Reviewed-by: tschatzl, stuefe ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/metaspace.hpp Changeset: 9da00197ff72 Author: pliden Date: 2018-05-16 10:24 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/9da00197ff72 8203220: Introduce ATTRIBUTE_ALIGNED macro Reviewed-by: tschatzl, kbarrett ! src/hotspot/cpu/aarch64/stubRoutines_aarch64.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_cos.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_exp.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_log.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_log10.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_pow.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_sin.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_tan.cpp ! src/hotspot/cpu/x86/stubRoutines_x86.cpp ! src/hotspot/share/utilities/globalDefinitions.hpp ! src/hotspot/share/utilities/globalDefinitions_gcc.hpp ! src/hotspot/share/utilities/globalDefinitions_sparcWorks.hpp ! src/hotspot/share/utilities/globalDefinitions_visCPP.hpp Changeset: 63f8bc358cca Author: sjohanss Date: 2018-05-16 10:44 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/63f8bc358cca 8183910: gc/arguments/TestAggressiveHeap.java fails intermittently Reviewed-by: tschatzl, kbarrett ! test/hotspot/jtreg/gc/arguments/TestAggressiveHeap.java Changeset: d2bcbcf0d3d9 Author: shade Date: 2018-05-16 12:38 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/d2bcbcf0d3d9 8203278: AArch64/PPC64 build failures after JDK-8199712 (Flight Recorder) Reviewed-by: mgronlun ! src/hotspot/share/jfr/leakprofiler/leakProfiler.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.inline.hpp Changeset: f222eba39694 Author: shade Date: 2018-05-16 12:38 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f222eba39694 8203274: 32-bit build failures after JDK-8199712 (Flight Recorder) Reviewed-by: mgronlun ! src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp ! src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolBuffer.cpp ! src/hotspot/share/jfr/utilities/jfrAllocation.cpp Changeset: 781f36c0831e Author: shade Date: 2018-05-16 13:14 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/781f36c0831e 8203285: Minimal VM fails to build after JDK-8199712 (Flight Recorder) Reviewed-by: mgronlun ! src/hotspot/share/jfr/metadata/GenerateJfrFiles.java ! src/hotspot/share/jfr/support/jfrThreadId.hpp ! src/hotspot/share/runtime/java.cpp Changeset: 2d9dd2b876a0 Author: sgehwolf Date: 2018-05-15 15:36 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2d9dd2b876a0 8203223: Signed integer overflow in ImageStrings::hash_code (libjimage.so) Summary: Perform hash operation on local unsigned type. Reviewed-by: shade, dholmes, alanb ! src/java.base/share/native/libjimage/imageFile.cpp Changeset: 98f57dff16f3 Author: mbaesken Date: 2018-04-26 13:55 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1 Reviewed-by: erikj, clanger ! make/launcher/Launcher-jdk.pack.gmk ! make/launcher/LauncherCommon.gmk ! make/lib/LibCommon.gmk Changeset: 4bf83d5c3a63 Author: redestad Date: 2018-05-16 18:03 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/4bf83d5c3a63 8196340: (coll) Examine overriding inherited methods in ArrayList and ArrayList.SubList Reviewed-by: martin, forax, igerasim ! src/java.base/share/classes/java/util/ArrayList.java Changeset: ea4e6d3dbf60 Author: erikj Date: 2018-05-16 09:37 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/ea4e6d3dbf60 8202738: vm_version Abstract_VM_Version::internal_vm_info_string() returns same string for different incremental builds Reviewed-by: ihse, jiangli ! make/common/NativeCompilation.gmk ! make/hotspot/lib/CompileJvm.gmk Changeset: 7db531b83661 Author: erikj Date: 2018-05-16 09:40 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7db531b83661 8202920: jvm.cfg generation incorrect Reviewed-by: ihse, shade, dholmes, ksrini ! make/copy/Copy-java.base.gmk - src/java.base/macosx/conf/x86_64/jvm.cfg - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg Changeset: aefd3c7f5373 Author: sherman Date: 2018-05-16 10:12 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/aefd3c7f5373 8191533: jar --describe-module prints service provider class names in lower case Reviewed-by: alanb ! src/jdk.jartool/share/classes/sun/tools/jar/Main.java ! src/jdk.jlink/share/classes/jdk/tools/jmod/JmodTask.java ! test/jdk/tools/jar/modularJar/Basic.java Changeset: 8e08d5a2614d Author: aivanov Date: 2018-05-04 19:23 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/8e08d5a2614d 8202476: ImageLib is broken in 32 bit Windows Reviewed-by: prr, ihse, mbaesken ! src/java.desktop/share/native/common/awt/medialib/mlib_ImageCreate.c ! src/java.desktop/share/native/libmlib_image/mlib_ImageAffine.c ! src/java.desktop/share/native/libmlib_image/mlib_ImageConvKernelConvert.c ! src/java.desktop/share/native/libmlib_image/mlib_ImageConvMxN.c ! src/java.desktop/share/native/libmlib_image/mlib_c_ImageLookUp.c ! src/java.desktop/share/native/libmlib_image/mlib_image_proto.h Changeset: a9398d77ea79 Author: prr Date: 2018-05-05 12:17 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a9398d77ea79 8202679: Updates on windows failures in the problem list Reviewed-by: serb ! test/jdk/ProblemList.txt Changeset: c4789b6dbbb9 Author: psadhukhan Date: 2018-05-07 16:51 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/c4789b6dbbb9 8202064: Jemmy JInternalFrameOperator: Add wait for close(), activate(), resize() and move() operations Reviewed-by: serb Contributed-by: abdul.kolarkunnu at oracle.com ! test/jdk/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/JInternalFrameOperator.java ! test/jdk/sanity/client/lib/jemmy/src/org/netbeans/jemmy/version_info Changeset: 6064cd8725fa Author: prr Date: 2018-05-07 13:36 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/6064cd8725fa 8176510: java/awt/font/GlyphVector/TestLayoutFlags.java fails with OpenJDK Reviewed-by: serb ! test/jdk/ProblemList.txt ! test/jdk/java/awt/font/GlyphVector/TestLayoutFlags.java Changeset: 793e481c7641 Author: lbourges Date: 2018-05-08 10:13 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/793e481c7641 8202580: Dashed BasicStroke randomly painted incorrectly, may freeze application Summary: fixed Dasher.init() to use the correct part [0; dashLen[ Reviewed-by: prr, serb ! src/java.desktop/share/classes/sun/java2d/marlin/DDasher.java ! src/java.desktop/share/classes/sun/java2d/marlin/Dasher.java + test/jdk/sun/java2d/marlin/DashedRectTest.java Changeset: 2bdb78c5a858 Author: psadhukhan Date: 2018-05-08 15:30 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/2bdb78c5a858 8202718: Jemmy JInternalFrameOperator: Dependency with orders of Minimize, Maximize and Close buttons Reviewed-by: serb Contributed-by: abdul.kolarkunnu at oracle.com ! test/jdk/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/JInternalFrameOperator.java Changeset: 941d432aee8b Author: prr Date: 2018-05-08 10:55 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/941d432aee8b 8202767: java/awt/font/GlyphVector/TestLayoutFlags.java is missing null check Reviewed-by: serb ! test/jdk/java/awt/font/GlyphVector/TestLayoutFlags.java Changeset: df06fe86f536 Author: prr Date: 2018-05-08 12:13 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/df06fe86f536 Merge - src/hotspot/share/classfile/sharedClassUtil.cpp - src/hotspot/share/classfile/sharedClassUtil.hpp - src/hotspot/share/classfile/systemDictionary_ext.hpp - src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ClassForNamePlugin.java - test/jdk/com/sun/crypto/provider/KeyAgreement/DHGenSecretKey.java - test/jdk/java/lang/invoke/I4Special.jcod Changeset: 6e7126d9e99f Author: psadhukhan Date: 2018-05-09 16:03 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/6e7126d9e99f 8197948: Create test for SwingSet2 main window Reviewed-by: prr Contributed-by: abdul.kolarkunnu at oracle.com + test/jdk/sanity/client/SwingSet/src/SwingSet2DemoTest.java + test/jdk/sanity/client/lib/SwingSet2/README + test/jdk/sanity/client/lib/SwingSet2/src/AquaTheme.java + test/jdk/sanity/client/lib/SwingSet2/src/CharcoalTheme.java + test/jdk/sanity/client/lib/SwingSet2/src/ContrastTheme.java + test/jdk/sanity/client/lib/SwingSet2/src/DemoModule.java + test/jdk/sanity/client/lib/SwingSet2/src/EmeraldTheme.java + test/jdk/sanity/client/lib/SwingSet2/src/OptionPaneDemo.java + test/jdk/sanity/client/lib/SwingSet2/src/RubyTheme.java + test/jdk/sanity/client/lib/SwingSet2/src/SwingSet2.java + test/jdk/sanity/client/lib/SwingSet2/src/TextAndMnemonicUtils.java + test/jdk/sanity/client/lib/SwingSet2/src/resources/images/toolbar/JOptionPane.gif + test/jdk/sanity/client/lib/SwingSet2/src/resources/swingset.properties Changeset: 1a0960ba9735 Author: pkbalakr Date: 2018-05-11 21:03 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/1a0960ba9735 8196360: java/awt/Dialog/SiblingChildOrder/SiblingChildOrderTest.java fails Reviewed-by: serb, sveerabhadra, jdv ! test/jdk/ProblemList.txt ! test/jdk/java/awt/Dialog/SiblingChildOrder/SiblingChildOrderTest.java Changeset: 8a7d677ad039 Author: aivanov Date: 2018-05-11 15:07 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/8a7d677ad039 8202544: Hide unused exports in libzip Reviewed-by: clanger, ihse ! src/java.base/share/native/libzip/zip_util.c ! src/java.base/share/native/libzip/zip_util.h Changeset: f348e5d4769b Author: erikj Date: 2018-05-11 08:39 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/f348e5d4769b 8202914: Let custom makefile override jmod intput dir locations Reviewed-by: tbell ! make/CreateJmods.gmk Changeset: 8afb040fd242 Author: prr Date: 2018-05-11 14:12 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/8afb040fd242 8202811: Problem List some tests that leave windows open on the desktop Reviewed-by: serb ! test/jdk/ProblemList.txt ! test/jdk/TEST.ROOT Changeset: 2a85d59e7f8b Author: serb Date: 2018-05-11 15:27 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/2a85d59e7f8b 8202878: com/apple/laf/ScreenMenu/ScreenMenuMemoryLeakTest.java fails Reviewed-by: prr ! test/jdk/ProblemList.txt ! test/jdk/com/apple/laf/ScreenMenu/ScreenMenuMemoryLeakTest.java Changeset: 752645a158ff Author: prr Date: 2018-05-11 20:59 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/752645a158ff 8198412: MonospacedGlyphWidthTest.java may fail on Solaris Reviewed-by: serb ! test/jdk/ProblemList.txt ! test/jdk/java/awt/font/MonospacedGlyphWidth/MonospacedGlyphWidthTest.java Changeset: 0bb0e464ee76 Author: prr Date: 2018-05-14 08:58 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/0bb0e464ee76 8198991: Move Java2D demo to the open repository Reviewed-by: serb, jeff ! make/CompileDemos.gmk + src/demo/share/jfc/J2Ddemo/README.txt + src/demo/share/jfc/J2Ddemo/fonts/A.ttf + src/demo/share/jfc/J2Ddemo/images/bld.jpg + src/demo/share/jfc/J2Ddemo/images/bld at 2x.jpg + src/demo/share/jfc/J2Ddemo/images/boat.png + src/demo/share/jfc/J2Ddemo/images/boat at 2x.png + src/demo/share/jfc/J2Ddemo/images/box.gif + src/demo/share/jfc/J2Ddemo/images/box.png + src/demo/share/jfc/J2Ddemo/images/box at 2x.png + src/demo/share/jfc/J2Ddemo/images/boxwave.gif + src/demo/share/jfc/J2Ddemo/images/boxwave.png + src/demo/share/jfc/J2Ddemo/images/boxwave at 2x.png + src/demo/share/jfc/J2Ddemo/images/clone.gif + src/demo/share/jfc/J2Ddemo/images/clone at 2x.gif + src/demo/share/jfc/J2Ddemo/images/clouds.jpg + src/demo/share/jfc/J2Ddemo/images/clouds at 2x.jpg + src/demo/share/jfc/J2Ddemo/images/duke.gif + src/demo/share/jfc/J2Ddemo/images/duke.png + src/demo/share/jfc/J2Ddemo/images/duke.running.gif + src/demo/share/jfc/J2Ddemo/images/duke at 2x.gif + src/demo/share/jfc/J2Ddemo/images/duke at 2x.png + src/demo/share/jfc/J2Ddemo/images/dukeplug.gif + src/demo/share/jfc/J2Ddemo/images/dukeplug.png + src/demo/share/jfc/J2Ddemo/images/dukeplug at 2x.png + src/demo/share/jfc/J2Ddemo/images/fight.gif + src/demo/share/jfc/J2Ddemo/images/fight.png + src/demo/share/jfc/J2Ddemo/images/fight at 2x.png + src/demo/share/jfc/J2Ddemo/images/globe.gif + src/demo/share/jfc/J2Ddemo/images/globe.png + src/demo/share/jfc/J2Ddemo/images/globe at 2x.png + src/demo/share/jfc/J2Ddemo/images/jumptojavastrip.png + src/demo/share/jfc/J2Ddemo/images/loop.gif + src/demo/share/jfc/J2Ddemo/images/loop at 2x.gif + src/demo/share/jfc/J2Ddemo/images/looping.gif + src/demo/share/jfc/J2Ddemo/images/looping at 2x.gif + src/demo/share/jfc/J2Ddemo/images/magnify.gif + src/demo/share/jfc/J2Ddemo/images/magnify.png + src/demo/share/jfc/J2Ddemo/images/magnify at 2x.png + src/demo/share/jfc/J2Ddemo/images/painting.gif + src/demo/share/jfc/J2Ddemo/images/painting.png + src/demo/share/jfc/J2Ddemo/images/painting at 2x.png + src/demo/share/jfc/J2Ddemo/images/print.gif + src/demo/share/jfc/J2Ddemo/images/print at 2x.gif + src/demo/share/jfc/J2Ddemo/images/remove.gif + src/demo/share/jfc/J2Ddemo/images/remove at 2x.gif + src/demo/share/jfc/J2Ddemo/images/snooze.gif + src/demo/share/jfc/J2Ddemo/images/snooze.png + src/demo/share/jfc/J2Ddemo/images/snooze at 2x.png + src/demo/share/jfc/J2Ddemo/images/star7.gif + src/demo/share/jfc/J2Ddemo/images/star7.png + src/demo/share/jfc/J2Ddemo/images/star7 at 2x.png + src/demo/share/jfc/J2Ddemo/images/start.gif + src/demo/share/jfc/J2Ddemo/images/start2.gif + src/demo/share/jfc/J2Ddemo/images/start2 at 2x.gif + src/demo/share/jfc/J2Ddemo/images/start at 2x.gif + src/demo/share/jfc/J2Ddemo/images/stop.gif + src/demo/share/jfc/J2Ddemo/images/stop2.gif + src/demo/share/jfc/J2Ddemo/images/stop2 at 2x.gif + src/demo/share/jfc/J2Ddemo/images/stop at 2x.gif + src/demo/share/jfc/J2Ddemo/images/surfing.gif + src/demo/share/jfc/J2Ddemo/images/surfing.png + src/demo/share/jfc/J2Ddemo/images/surfing at 2x.png + src/demo/share/jfc/J2Ddemo/images/thumbsup.gif + src/demo/share/jfc/J2Ddemo/images/thumbsup.png + src/demo/share/jfc/J2Ddemo/images/thumbsup at 2x.png + src/demo/share/jfc/J2Ddemo/images/tip.gif + src/demo/share/jfc/J2Ddemo/images/tip.png + src/demo/share/jfc/J2Ddemo/images/tip at 2x.png + src/demo/share/jfc/J2Ddemo/java2d/AnimatingContext.java + src/demo/share/jfc/J2Ddemo/java2d/AnimatingControlsSurface.java + src/demo/share/jfc/J2Ddemo/java2d/AnimatingSurface.java + src/demo/share/jfc/J2Ddemo/java2d/CloningFeature.java + src/demo/share/jfc/J2Ddemo/java2d/ControlsSurface.java + src/demo/share/jfc/J2Ddemo/java2d/CustomControls.java + src/demo/share/jfc/J2Ddemo/java2d/CustomControlsContext.java + src/demo/share/jfc/J2Ddemo/java2d/DemoFonts.java + src/demo/share/jfc/J2Ddemo/java2d/DemoGroup.java + src/demo/share/jfc/J2Ddemo/java2d/DemoImages.java + src/demo/share/jfc/J2Ddemo/java2d/DemoInstVarsAccessor.java + src/demo/share/jfc/J2Ddemo/java2d/DemoInstVarsAccessorImplBase.java + src/demo/share/jfc/J2Ddemo/java2d/DemoPanel.java + src/demo/share/jfc/J2Ddemo/java2d/GlobalControls.java + src/demo/share/jfc/J2Ddemo/java2d/GlobalPanel.java + src/demo/share/jfc/J2Ddemo/java2d/Intro.java + src/demo/share/jfc/J2Ddemo/java2d/J2Ddemo.java + src/demo/share/jfc/J2Ddemo/java2d/MemoryMonitor.java + src/demo/share/jfc/J2Ddemo/java2d/PerformanceMonitor.java + src/demo/share/jfc/J2Ddemo/java2d/RunWindow.java + src/demo/share/jfc/J2Ddemo/java2d/Surface.java + src/demo/share/jfc/J2Ddemo/java2d/TextureChooser.java + src/demo/share/jfc/J2Ddemo/java2d/Tools.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Arcs.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/BezierAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Curves.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Ellipses.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Areas.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/ClipAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Intersection.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Text.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/BullsEye.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/ColorConvert.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/Rotator3D.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACimages.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACrules.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/FadeAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AllFonts.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AttributedStr.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Highlighting.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Outline.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Tree.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Images/DukeAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Images/ImageOps.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Images/JPEGFlip.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Images/WarpImage.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Caps.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Dash.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Joins.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/LineAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Balls.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/BezierScroller.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Stars3D.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/GradAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Gradient.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Texture.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/TextureAnim.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/Append.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/CurveQuadTo.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/FillStroke.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/WindingRule.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/Rotate.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/SelectTx.java + src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/TransformAnim.java ! test/jdk/TEST.ROOT ! test/jdk/TEST.groups + test/jdk/demo/jfc/J2Ddemo/J2DdemoTest.java + test/jdk/demo/jfc/TEST.properties Changeset: 23a8ccafa7ba Author: jdv Date: 2018-05-15 11:34 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/23a8ccafa7ba 8202824: Cleanup discrepancies in ProblemList for java_awt jtreg tests Reviewed-by: serb ! test/jdk/ProblemList.txt Changeset: 9822dd521c15 Author: pbansal Date: 2018-05-15 18:03 +0530 URL: http://hg.openjdk.java.net/amber/amber/rev/9822dd521c15 8196616: ava/awt/GraphicsDevice/DisplayModes/CompareToXrandrTest.java fails Reviewed-by: prr, mhalder ! test/jdk/java/awt/GraphicsDevice/DisplayModes/CompareToXrandrTest.java Changeset: d93ae85b18c1 Author: prr Date: 2018-05-15 10:13 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/d93ae85b18c1 Merge ! make/CreateJmods.gmk - src/hotspot/share/runtime/advancedThresholdPolicy.cpp - src/hotspot/share/runtime/advancedThresholdPolicy.hpp - test/hotspot/jtreg/compiler/tiered/TransitionsTestExecutor.java ! test/jdk/ProblemList.txt ! test/jdk/TEST.groups Changeset: 1ff7fb9125f8 Author: prr Date: 2018-05-16 09:45 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/1ff7fb9125f8 Merge - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! test/jdk/ProblemList.txt ! test/jdk/TEST.ROOT ! test/jdk/TEST.groups Changeset: e2eff4dcebbd Author: prr Date: 2018-05-16 10:27 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/e2eff4dcebbd Merge Changeset: b5023063346d Author: iklam Date: 2018-05-15 14:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful Summary: Removed this function, added JavaCalls::construct_new_instance and moved SharedDictionary_lock Reviewed-by: jiangli, ccheung, dholmes, coleenp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/runtime/javaCalls.cpp ! src/hotspot/share/runtime/javaCalls.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp Changeset: 9010b580d8a9 Author: iveresov Date: 2018-05-16 15:19 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/9010b580d8a9 8201447: C1 does backedge profiling incorrectly Summary: Increment backedge counter only for backward arms of conditional branches. Reviewed-by: never, kvn ! src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp ! src/hotspot/cpu/sparc/c1_LIRGenerator_sparc.cpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp Changeset: d2d6bc39ea88 Author: mseledtsov Date: 2018-05-16 16:43 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/d2d6bc39ea88 8199252: [TESTBUG] Open source VM testbase system dictionary tests Summary: Opensourced the tests Reviewed-by: iignatyev, gziemski ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/nsk/sysdict/share/BTreeGen.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/share/BTreeTest.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/share/ChainGen.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/share/ChainTest.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/share/GenClassesBuilder.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/share/SysDictTest.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree001/btree001.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree002/btree002.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree003/btree003.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree004/btree004.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree005/btree005.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree006/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree006/btree006.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree007/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree007/btree007.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree008/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree008/btree008.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree009/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree009/btree009.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree010/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree010/btree010.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree011/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree011/btree011.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree012/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/btree/btree012/btree012.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain001/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain001/chain001.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain002/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain002/chain002.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain003/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain003/chain003.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain004/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain004/chain004.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain005/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain005/chain005.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain006/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain006/chain006.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain007/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain007/chain007.java + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain008/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/sysdict/vm/stress/chain/chain008/chain008.java Changeset: 3595bd343b65 Author: mseledtsov Date: 2018-05-16 16:43 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3595bd343b65 Merge Changeset: 6d6fe9416864 Author: iignatyev Date: 2018-05-17 00:23 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/6d6fe9416864 8199384: [TESTBUG] Open source VM testbase MLVM tests Reviewed-by: erikj, mseledtsov, vlivanov ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/ProblemList-graal.txt ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/Injector.c + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/Injector.h + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/JVMTITools.c + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/JVMTITools.h + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/agent_common/agent_common.c + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/agent_common/agent_common.h + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/agent_tools.c + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/jvmti_FollowRefObjects.c + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/jvmti_FollowRefObjects.h + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/jvmti_tools.c + test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/jvmti_tools.h + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/castToGrandparent/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/castToParent/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/classNameInStackTrace/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/finalSuperclass/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/findByName/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/invalidSuperclass/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/isGarbageCollected/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/func/uniqueClassAndObject/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/share/AnonkTestee01.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/share/AnonkTestee02.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/share/ReplaceClassParentTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/share/StressClassLoadingTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/byteMutation/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/byteMutation/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/oome/heap/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/oome/heap/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/oome/metaspace/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/oome/metaspace/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/parallelLoad/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/parallelLoad/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/randomBytecodes/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/anonloader/stress/randomBytecodes/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/GenCPFullOfMH.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/GenCPFullOfMT.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/GenFullCP.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/GenManyIndyCorrectBootstrap.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/GenManyIndyIncorrectBootstrap.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/GenManyIndyOneCPX.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/share/HandleType.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/correctBootstrap/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/incorrectBootstrap/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/manyIndyOneCPX/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/manyIndyOneCPX/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/mh/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/mh/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/mt/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/cp/stress/classfmt/mt/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/rawRetypes/INDIFY_Test6998541.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/rawRetypes/INDIFY_Test6998541.jmpp + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/rawRetypes/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/thisAsArgument/INDIFY_Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/thisAsArgument/Test.java.jdk8 + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/verifyStackTrace/INDIFY_Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/java/verifyStackTrace/Test.java.jdk8 + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jdi/breakpoint/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jdi/breakpoint/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jdi/breakpointOtherStratum/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jdi/breakpointOtherStratum/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_a/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_a/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_a/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_a/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_a/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_a/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_a/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_a/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_b/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_b/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_b/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_b/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_b/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_b/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_b/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_b/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_a/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_a/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_a/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_a/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_b/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_b/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_b/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_b/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_a/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_a/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_a/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_a/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_b/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_b/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_b/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_b/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInTarget/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInTarget/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInTarget/newclass/INDIFY_Dummy0.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/share/IndyRedefineClass.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/share/IndyRedefineClass.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/share/IndyRedefineTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/share/libIndyRedefineClass.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/stepBreakPopReturn/INDIFY_Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/stepBreakPopReturn/libstepBreakPopReturn.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jvmti/stepBreakPopReturn/stepBreakPopReturn.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/share/CallSiteDekkerActor.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/share/INDIFY_RelinkCallSiteFreqTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/share/INDIFY_RelinkCallSiteTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/gc/lotsOfCallSites/INDIFY_Testee.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/gc/lotsOfCallSites/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/gc/lotsOfCallSites/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/loopsAndThreads/INDIFY_Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/loopsAndThreads/INDIFY_Test.jmpp + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/loopsAndThreads/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/loopsAndThreads/Test.java.jdk8 + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/loopsAndThreads/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/mutableCallSiteDekker/Actor.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/mutableCallSiteDekker/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/mutableCallSiteDekker/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkMutableCallSite/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkMutableCallSite/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkMutableCallSiteFreq/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkMutableCallSiteFreq/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkVolatileCallSite/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkVolatileCallSite/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkVolatileCallSiteFreq/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/relinkVolatileCallSiteFreq/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/volatileCallSiteDekker/Actor.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/volatileCallSiteDekker/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/java/volatileCallSiteDekker/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/jdi/breakpointInCompiledCode/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/jdi/breakpointInCompiledCode/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/java/throwException/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/jdi/breakpoint/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/jdi/breakpoint/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7087658/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7087658/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7087658/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7127687/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7127687/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7127687/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7129034/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7129034/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/regression/b7129034/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/Argument.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/Arguments.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/MHTransformationGen.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/MHUtils.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/MethodParameterValueProvider.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/PrimitiveTypeConverter.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/PrimitiveTypeConverter.jmpp + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/RandomArgumentGen.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/RandomArgumentsGen.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/RandomMTGen.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/RandomTypeGen.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/RandomValueGen.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/SimpleOpMethodHandles.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/SimpleUnitTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/TestTypes.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHArrayEnvelopeTFPair.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHArrayGetElemTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHArraySetElemTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHBasicUnaryTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHBindTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHCall.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHCastTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHCollectSpreadBaseTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHCollectSpreadTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHConstantTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHConvertTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHDropTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHDropTF2.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHEnvelopeArgTFPair.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHExplicitCastTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHFilterRetValTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHFilterTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHFoldTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHIdentityTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHInsertOrDropTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHInsertTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHMacroTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHNaryTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHNullaryTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHOutboundCallTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHOutboundVirtualCallTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHPermuteTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHPrimitiveTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHSamTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHTFPair.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHThrowCatchTFPair.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHUnaryTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/share/transform/v2/MHVarargsCollectSpreadTF.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/inlineMHTarget/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/inlineMHTarget/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/sequences/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/sequences/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/gc/createLotsOfMH/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/gc/createLotsOfMH/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/gc/createLotsOfMHConsts/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/gc/createLotsOfMHConsts/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/java/sequences/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/java/sequences/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/libnativeAndMH.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/nativeAndMH.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/INDIFY_Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/INDIFY_Test.jmpp + test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/INDIFY_Test.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/mlvm/patches/java.base/java/lang/invoke/NewInvokeSpecialCallSite.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/patches/java.base/jdk/internal/org/objectweb/asm/ClassWriterExt.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/ClassfileGenerator.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/ClassfileGeneratorTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/CustomClassLoaders.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/DekkerTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/Env.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/ExceptionsOptionObjectFactory.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/IgnoreUnknownArgumentParser.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/IndifiedClassesBuilder.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/MlvmOOMTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/MlvmTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/MlvmTestExecutor.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/MultiThreadedTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/Stratum.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/StratumClassesBuilder.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/TestSequence.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/WhiteBoxHelper.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jdi/ArgumentHandler.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jdi/BreakpointInfo.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jdi/IndyDebuggee.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jdi/JDIBreakpointTest.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jdi/MHDebuggee.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jpda/Debuggee.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jpda/INDIFY_SDE_DebuggeeBase.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jpda/SDE_MHDebuggeeBase.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jpda/StratumInfo.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/jpda/StratumUtils.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/mlvmJvmtiUtils.c + test/hotspot/jtreg/vmTestbase/vm/mlvm/share/mlvmJvmtiUtils.h + test/hotspot/jtreg/vmTestbase/vm/mlvm/tools/Indify.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/tools/LoadClass.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/tools/StratumAP.java + test/hotspot/jtreg/vmTestbase/vm/mlvm/tools/StratumAPTreeVisitor.java Changeset: bd198a98f3c5 Author: pliden Date: 2018-05-17 09:35 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/bd198a98f3c5 8202978: Incorrect tmp register passed to MacroAssembler::load_mirror() Reviewed-by: kvn, coleenp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp Changeset: 8e4fcfb4cfe4 Author: rehn Date: 2018-05-17 10:32 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/8e4fcfb4cfe4 8195098: Low latency hashtable for read-mostly scenarios Summary: This implement a concurrent hashtable using chaining and the GlobalCounter for ABA problems. Reviewed-by: acorn, coleenp, dcubed, eosterlund, gziemski, mlarsson + src/hotspot/share/utilities/concurrentHashTable.hpp + src/hotspot/share/utilities/concurrentHashTable.inline.hpp + src/hotspot/share/utilities/concurrentHashTableTasks.inline.hpp + test/hotspot/gtest/utilities/test_concurrentHashtable.cpp Changeset: 062fcc6d183b Author: asaha Date: 2018-05-17 11:03 +0000 URL: http://hg.openjdk.java.net/amber/amber/rev/062fcc6d183b Added tag jdk-11+14 for changeset 3595bd343b65 ! .hgtags Changeset: dc18db671651 Author: mdoerr Date: 2018-05-17 14:16 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/dc18db671651 8203288: PPC64 and s390 fail to build after JDK-8199712 (Flight Recorder) Reviewed-by: shade + src/hotspot/cpu/ppc/vm_version_ext_ppc.cpp + src/hotspot/cpu/ppc/vm_version_ext_ppc.hpp + src/hotspot/cpu/s390/vm_version_ext_s390.cpp + src/hotspot/cpu/s390/vm_version_ext_s390.hpp ! src/hotspot/os/aix/os_aix.cpp + src/hotspot/os/aix/os_perf_aix.cpp ! src/hotspot/os/linux/os_perf_linux.cpp ! src/hotspot/os_cpu/aix_ppc/thread_aix_ppc.cpp ! src/hotspot/os_cpu/aix_ppc/thread_aix_ppc.hpp ! src/hotspot/os_cpu/linux_ppc/thread_linux_ppc.cpp ! src/hotspot/os_cpu/linux_ppc/thread_linux_ppc.hpp ! src/hotspot/os_cpu/linux_s390/thread_linux_s390.cpp ! src/hotspot/os_cpu/linux_s390/thread_linux_s390.hpp ! src/hotspot/share/jfr/utilities/jfrBigEndian.hpp Changeset: e2d9b38630c3 Author: gromero Date: 2018-05-16 11:11 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/e2d9b38630c3 8203305: PPC64: Improve TM detection for enabling RTM on Linux / POWER9 Reviewed-by: mdoerr ! src/hotspot/cpu/ppc/vm_version_ppc.cpp ! src/hotspot/cpu/ppc/vm_version_ppc.hpp Changeset: f9fe56417050 Author: mdoerr Date: 2018-05-17 14:19 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f9fe56417050 8202713: Create a MacroAssembler::access_load/store_at wrapper for S390 and PPC Reviewed-by: eosterlund, goetz ! src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.hpp ! src/hotspot/cpu/ppc/gc/shared/barrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/barrierSetAssembler_ppc.hpp ! src/hotspot/cpu/ppc/interp_masm_ppc.hpp ! src/hotspot/cpu/ppc/interp_masm_ppc_64.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.hpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.inline.hpp ! src/hotspot/cpu/ppc/methodHandles_ppc.cpp ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/ppc/templateTable_ppc_64.cpp ! src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.hpp ! src/hotspot/cpu/s390/gc/shared/barrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/gc/shared/barrierSetAssembler_s390.hpp ! src/hotspot/cpu/s390/interp_masm_s390.cpp ! src/hotspot/cpu/s390/macroAssembler_s390.cpp ! src/hotspot/cpu/s390/macroAssembler_s390.hpp ! src/hotspot/cpu/s390/methodHandles_s390.cpp ! src/hotspot/cpu/s390/s390.ad ! src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp ! src/hotspot/cpu/s390/templateTable_s390.cpp Changeset: 268ea94772da Author: mgronlun Date: 2018-05-17 14:31 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/268ea94772da 8203346: JFR: Inconsistent signature of jfr_add_string_constant Reviewed-by: shade ! src/hotspot/share/jfr/jni/jfrJniMethod.cpp ! src/hotspot/share/jfr/jni/jfrJniMethod.hpp Changeset: 88bf53770be5 Author: eosterlund Date: 2018-05-17 11:56 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/88bf53770be5 8202479: Add missing try_resolve_jobject_in_native calls Reviewed-by: coleenp, pliden ! src/hotspot/cpu/sparc/jniFastGetField_sparc.cpp ! src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp Changeset: 86f038c25410 Author: neliasso Date: 2018-05-17 12:08 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/86f038c25410 8203215: IdealLoopTree::split_outer_loop leaves phi-nodes with only one input Summary: Make sure the phis are transformed Reviewed-by: roland, kvn, rbackman ! src/hotspot/share/opto/loopnode.cpp Changeset: 1d683e243d8d Author: ccheung Date: 2018-05-17 08:41 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/1d683e243d8d 8196619: [TESTBUG] restore current version check in runtime/appcds/MultiReleaseJars.java Reviewed-by: dholmes ! test/hotspot/jtreg/runtime/appcds/MultiReleaseJars.java From maurizio.cimadamore at oracle.com Thu May 17 20:07:05 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:07:05 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172007.w4HK76Pi013729@aojmv0008.oracle.com> Changeset: ac6a0a20e39c Author: mcimadamore Date: 2018-05-17 22:11 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ac6a0a20e39c Automatic merge with default - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From maurizio.cimadamore at oracle.com Thu May 17 20:07:27 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:07:27 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172007.w4HK7Rve014097@aojmv0008.oracle.com> Changeset: 1823bd355ed9 Author: mcimadamore Date: 2018-05-17 22:11 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/1823bd355ed9 Automatic merge with default - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From maurizio.cimadamore at oracle.com Thu May 17 20:07:47 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:07:47 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172007.w4HK7mDo014372@aojmv0008.oracle.com> Changeset: b91a27ae0b23 Author: mcimadamore Date: 2018-05-17 22:11 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/b91a27ae0b23 Automatic merge with default - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java From maurizio.cimadamore at oracle.com Thu May 17 20:08:08 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:08:08 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172008.w4HK887s014668@aojmv0008.oracle.com> Changeset: 141d32c770b1 Author: mcimadamore Date: 2018-05-17 22:12 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/141d32c770b1 Automatic merge with default - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From maurizio.cimadamore at oracle.com Thu May 17 20:08:29 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:08:29 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172008.w4HK8TPQ015060@aojmv0008.oracle.com> Changeset: d4ae115b6f51 Author: mcimadamore Date: 2018-05-17 22:12 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/d4ae115b6f51 Automatic merge with default - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg ! src/java.base/share/classes/module-info.java - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From maurizio.cimadamore at oracle.com Thu May 17 20:08:54 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:08:54 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172008.w4HK8s1l015443@aojmv0008.oracle.com> Changeset: f9f4afd36064 Author: mcimadamore Date: 2018-05-17 22:13 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f9f4afd36064 Automatic merge with default ! make/CompileJavaModules.gmk ! make/CreateJmods.gmk ! make/common/NativeCompilation.gmk ! make/copy/Copy-java.base.gmk ! make/test/JtregNativeHotspot.gmk ! src/hotspot/cpu/x86/interp_masm_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp ! src/hotspot/share/c1/c1_GraphBuilder.cpp ! src/hotspot/share/ci/ciEnv.cpp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/vmStructs.cpp - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl ! src/hotspot/share/utilities/globalDefinitions.hpp - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/module-info.java - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From maurizio.cimadamore at oracle.com Thu May 17 20:09:14 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 17 May 2018 20:09:14 +0000 Subject: hg: amber/amber: Automatic merge with default Message-ID: <201805172009.w4HK9FEq015767@aojmv0008.oracle.com> Changeset: 849e15e87fd9 Author: mcimadamore Date: 2018-05-17 22:13 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/849e15e87fd9 Automatic merge with default ! make/CompileJavaModules.gmk - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg ! src/java.base/share/classes/module-info.java - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From vicente.romero at oracle.com Fri May 18 17:09:41 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 18 May 2018 17:09:41 +0000 Subject: hg: amber/amber: manual merge with default Message-ID: <201805181709.w4IH9gPa029495@aojmv0008.oracle.com> Changeset: 709b759c1546 Author: vromero Date: 2018-05-18 09:56 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/709b759c1546 manual merge with default - src/hotspot/share/runtime/vmStructs_trace.hpp - src/hotspot/share/trace/noTraceBackend.hpp - src/hotspot/share/trace/trace.dtd - src/hotspot/share/trace/trace.xml - src/hotspot/share/trace/traceBackend.cpp - src/hotspot/share/trace/traceBackend.hpp - src/hotspot/share/trace/traceDataTypes.hpp - src/hotspot/share/trace/traceEvent.hpp - src/hotspot/share/trace/traceEventClasses.xsl - src/hotspot/share/trace/traceEventIds.xsl - src/hotspot/share/trace/traceMacros.hpp - src/hotspot/share/trace/traceStream.cpp - src/hotspot/share/trace/traceStream.hpp - src/hotspot/share/trace/traceTime.hpp - src/hotspot/share/trace/traceTypes.xsl - src/hotspot/share/trace/traceevents.xml - src/hotspot/share/trace/tracerelationdecls.xml - src/hotspot/share/trace/tracetypes.xml - src/hotspot/share/trace/tracing.hpp - src/hotspot/share/trace/tracingExport.cpp - src/hotspot/share/trace/tracingExport.hpp - src/hotspot/share/trace/xinclude.mod - src/hotspot/share/trace/xsl_util.xsl - src/hotspot/share/utilities/ticks.inline.hpp - src/java.base/macosx/conf/x86_64/jvm.cfg ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java - src/java.base/unix/conf/aarch64/jvm.cfg - src/java.base/unix/conf/amd64/jvm.cfg - src/java.base/unix/conf/arm/jvm.cfg - src/java.base/unix/conf/i586/jvm.cfg - src/java.base/unix/conf/ia64/jvm.cfg - src/java.base/unix/conf/ppc64/jvm.cfg - src/java.base/unix/conf/ppc64le/jvm.cfg - src/java.base/unix/conf/s390x/jvm.cfg - src/java.base/unix/conf/sparc/jvm.cfg - src/java.base/unix/conf/sparcv9/jvm.cfg - src/java.base/unix/conf/zero/jvm.cfg - src/java.base/windows/conf/amd64/jvm.cfg - src/java.base/windows/conf/i586/jvm.cfg - src/java.base/windows/conf/ia64/jvm.cfg ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties From martijnverburg at gmail.com Tue May 22 16:02:36 2018 From: martijnverburg at gmail.com (Martijn Verburg) Date: Tue, 22 May 2018 17:02:36 +0100 Subject: ANN: Java 11 in IntelliJ In-Reply-To: References: Message-ID: Thanks Anna! Most helpful :-) Cheers, Martijn On 16 May 2018 at 12:22, Anna Kozlova wrote: > Hi guys, > > we just opened the EAP of 2018.2 with java 11 initial support (vars in > lambda parameters, preview and RSL). The download link: > https://www.jetbrains.com/idea/nextversion/ > > Your feedback is very welcome. > > Thanks, > Anna > From mark.reinhold at oracle.com Tue May 22 21:01:04 2018 From: mark.reinhold at oracle.com (mark.reinhold at oracle.com) Date: Tue, 22 May 2018 14:01:04 -0700 (PDT) Subject: JEP 334: JVM Constants API Message-ID: <20180522210104.A768E1DA94E@eggemoggin.niobe.net> New JEP Candidate: http://openjdk.java.net/jeps/334 - Mark From vicente.romero at oracle.com Wed May 23 14:24:27 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 23 May 2018 14:24:27 +0000 Subject: hg: amber/amber: initial push jep-334 branch Message-ID: <201805231424.w4NEOSMG005061@aojmv0008.oracle.com> Changeset: 7bfa4fd866e7 Author: vromero Date: 2018-05-23 07:10 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7bfa4fd866e7 initial push jep-334 branch From vicente.romero at oracle.com Wed May 23 14:31:20 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 23 May 2018 14:31:20 +0000 Subject: hg: amber/amber: initial implementation for 8203252: JEP 334: JVM Constants API Message-ID: <201805231431.w4NEVLjd008387@aojmv0008.oracle.com> Changeset: c97d728ea327 Author: vromero Date: 2018-05-23 07:17 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/c97d728ea327 initial implementation for 8203252: JEP 334: JVM Constants API ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java + src/java.base/share/classes/java/lang/invoke/FieldTypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/MethodHandle.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java + src/java.base/share/classes/java/lang/invoke/MethodTypeDescriptor.java + src/java.base/share/classes/java/lang/invoke/TypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/VarHandles.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/X-VarHandleByteArrayView.java.template + src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java + src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java + src/java.base/share/classes/java/lang/invoke/constant/Constable.java + src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java + src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java + src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java + src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java + src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodTypeDesc.java + src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java + src/java.base/share/classes/java/lang/invoke/constant/DynamicCallSiteDesc.java + src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java + src/java.base/share/classes/java/lang/invoke/constant/EnumDesc.java + src/java.base/share/classes/java/lang/invoke/constant/MethodHandleDesc.java + src/java.base/share/classes/java/lang/invoke/constant/MethodTypeDesc.java + src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java + src/java.base/share/classes/java/lang/invoke/constant/VarHandleDesc.java + src/java.base/share/classes/java/lang/invoke/constant/package-info.java ! src/java.base/share/classes/module-info.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleBaseByteArrayTest.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessBoolean.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessByte.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessChar.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessDouble.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessFloat.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessInt.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessLong.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessShort.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessString.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsChar.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsDouble.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsFloat.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsInt.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsLong.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsShort.java ! test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestAccess.java.template ! test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestByteArrayView.java.template + test/jdk/java/lang/invoke/constant/ClassRefTest.java + test/jdk/java/lang/invoke/constant/CondyRefTest.java + test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java + test/jdk/java/lang/invoke/constant/MethodTypeRefTest.java + test/jdk/java/lang/invoke/constant/SymbolicRefTest.java From vicente.romero at oracle.com Wed May 23 15:04:28 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 23 May 2018 15:04:28 +0000 Subject: hg: amber/amber: adding a dependency on branch jep-334 Message-ID: <201805231504.w4NF4SQh022160@aojmv0008.oracle.com> Changeset: 145a09d60b39 Author: vromero Date: 2018-05-23 07:50 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/145a09d60b39 adding a dependency on branch jep-334 + deps.txt From vicente.romero at oracle.com Wed May 23 16:27:22 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 23 May 2018 16:27:22 +0000 Subject: hg: amber/amber: manual merge with jep-334 Message-ID: <201805231627.w4NGRNdJ023816@aojmv0008.oracle.com> Changeset: d72fb500b553 Author: vromero Date: 2018-05-23 09:13 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/d72fb500b553 manual merge with jep-334 ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/invoke/MethodHandle.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/X-VarHandleByteArrayView.java.template ! src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicCallSiteDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/EnumDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/MethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/MethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/VarHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/package-info.java ! src/java.base/share/classes/module-info.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessBoolean.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessByte.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessChar.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessDouble.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessFloat.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessInt.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessLong.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessShort.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessString.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsChar.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsDouble.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsFloat.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsInt.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsLong.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsShort.java ! test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestAccess.java.template ! test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestByteArrayView.java.template ! test/jdk/java/lang/invoke/constant/ClassRefTest.java ! test/jdk/java/lang/invoke/constant/CondyRefTest.java ! test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java ! test/jdk/java/lang/invoke/constant/MethodTypeRefTest.java ! test/jdk/java/lang/invoke/constant/SymbolicRefTest.java From brian.goetz at oracle.com Wed May 23 17:26:22 2018 From: brian.goetz at oracle.com (brian.goetz at oracle.com) Date: Wed, 23 May 2018 17:26:22 +0000 Subject: hg: amber/amber: Minor updates based on CSR and spec review; add tests for FieldTypeDescriptor methods Message-ID: <201805231726.w4NHQNjM016043@aojmv0008.oracle.com> Changeset: a064652a444f Author: briangoetz Date: 2018-05-23 13:24 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/a064652a444f Minor updates based on CSR and spec review; add tests for FieldTypeDescriptor methods ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/invoke/FieldTypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/VarHandles.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicCallSiteDesc.java ! test/jdk/java/lang/invoke/constant/ClassRefTest.java + test/jdk/java/lang/invoke/constant/TypeDescriptorTest.java From paul.sandoz at oracle.com Wed May 23 17:51:05 2018 From: paul.sandoz at oracle.com (paul.sandoz at oracle.com) Date: Wed, 23 May 2018 17:51:05 +0000 Subject: hg: amber/amber: Tidy up VarHandle equals/hashcode impls. Message-ID: <201805231751.w4NHp62t026152@aojmv0008.oracle.com> Changeset: d8ea829882ad Author: psandoz Date: 2018-05-23 10:50 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/d8ea829882ad Tidy up VarHandle equals/hashcode impls. ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template From brian.goetz at oracle.com Wed May 23 17:57:00 2018 From: brian.goetz at oracle.com (brian.goetz at oracle.com) Date: Wed, 23 May 2018 17:57:00 +0000 Subject: hg: amber/amber: Minor spec and API touch-ups Message-ID: <201805231757.w4NHv197028151@aojmv0008.oracle.com> Changeset: f44721e1c901 Author: briangoetz Date: 2018-05-23 13:56 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/f44721e1c901 Minor spec and API touch-ups ! src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicCallSiteDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java From vicente.romero at oracle.com Wed May 23 18:23:25 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 23 May 2018 18:23:25 +0000 Subject: hg: amber/amber: missing semicolons at java.base module-info.java Message-ID: <201805231823.w4NINP0c006980@aojmv0008.oracle.com> Changeset: 38d5f419e20c Author: vromero Date: 2018-05-23 11:09 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/38d5f419e20c missing semicolons at java.base module-info.java ! src/java.base/share/classes/module-info.java From vicente.romero at oracle.com Wed May 23 18:41:11 2018 From: vicente.romero at oracle.com (Vicente Romero) Date: Wed, 23 May 2018 14:41:11 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> Hi all, Please review the proposed implementation for JEP 334 [1]. The webrev can be found at [2] and the javadoc at [3]. Thanks, Vicente [1] https://bugs.openjdk.java.net/browse/JDK-8203252 [2] http://cr.openjdk.java.net/~vromero/constant.api/webrev.07/constants.api.patch [3] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/overview-summary.html PS. We are offering a MacBook Wheel to the authors of the first 5 comments :) From jbvernee at xs4all.nl Wed May 23 19:10:46 2018 From: jbvernee at xs4all.nl (jbvernee) Date: Wed, 23 May 2018 21:10:46 +0200 Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: Hello, (I hope this email comes out alright, since I'm using raw text formatting) There seems to be an error in the generated javadoc. If you go to the javadoc of, for instance, `ConstantClassDesc` [1] you'll see that it lists `Constable>` as one of the implemented interfaces. Looking at the source code, this seems to be pulled down from the `ClassDesc` interface [2], which does extend `Constable`. The problem is, it does not extends `Constable>`, but `Constable>>`, so this `Constable>` super interface of `ConstantClassDesc` seems to be an error and it should list `Constable>` instead. A similar problem exists with the javadoc for this `ConstantMethodHandleDesc` and `ConstantMethodTypeDesc` classes. (Reading this for the first time confused me for quite a while, actually) Some other nitty remarks/questions are: - Why is the package name `java.lang.invoke.constant` and not `java.lang.constant`? The constants API is not just an extension/sub-component of the `invoke` API, is it? - Shouldn't the abbreviation `Desc`, by changed to the full name `Descriptor`? Using full names seems more proper + abbreviations can be ambiguous. Cheers, Jorn Vernee [1] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/java/lang/invoke/constant/ConstantClassDesc.html [2] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/java/lang/invoke/constant/ClassDesc.html From vicente.romero at oracle.com Wed May 23 19:37:11 2018 From: vicente.romero at oracle.com (Vicente Romero) Date: Wed, 23 May 2018 15:37:11 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: References: Message-ID: <51b23525-81f9-caa3-bb6d-fd27a0b0191a@oracle.com> On 05/23/2018 03:10 PM, jbvernee wrote: > Hello, > > (I hope this email comes out alright, since I'm using raw text > formatting) > > There seems to be an error in the generated javadoc. > If you go to the javadoc of, for instance, `ConstantClassDesc` [1] > you'll see that it lists `Constable>` as one of the > implemented interfaces. > Looking at the source code, this seems to be pulled down from the > `ClassDesc` interface [2], > which does extend `Constable`. The problem is, it does not extends > `Constable>`, > but `Constable>>`, so this `Constable>` > super interface of > `ConstantClassDesc` seems to be an error and it should list > `Constable>` instead. I will check this, thanks! > > A similar problem exists with the javadoc for this > `ConstantMethodHandleDesc` and `ConstantMethodTypeDesc` classes. > (Reading this for the first time confused me for quite a while, actually) > > Some other nitty remarks/questions are: > - Why is the package name `java.lang.invoke.constant` and not > `java.lang.constant`? package java.lang.invoke is the space used for the classes that define the interaction between the JDK and the JVM and the new constants are a JVM thing > ? The constants API is not just an extension/sub-component of the > `invoke` API, is it? > - Shouldn't the abbreviation `Desc`, by changed to the full name > `Descriptor`? yep, could be, I guess it's a matter of choosing between very descriptive names and shorter ones, mostly a matter of style > ? Using full names seems more proper + abbreviations can be ambiguous. > > Cheers, > Jorn Vernee Thanks, Vicente > > [1] > http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/java/lang/invoke/constant/ConstantClassDesc.html > [2] > http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/java/lang/invoke/constant/ClassDesc.html From vicente.romero at oracle.com Wed May 23 20:47:24 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 23 May 2018 20:47:24 +0000 Subject: hg: amber/amber: additional unit tests for ClassDesc Message-ID: <201805232047.w4NKlOqV023986@aojmv0008.oracle.com> Changeset: f7d2d1cc9d8c Author: vromero Date: 2018-05-23 13:33 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/f7d2d1cc9d8c additional unit tests for ClassDesc ! test/jdk/java/lang/invoke/constant/ClassRefTest.java From ali.ebrahimi1781 at gmail.com Thu May 24 05:32:07 2018 From: ali.ebrahimi1781 at gmail.com (Ali Ebrahimi) Date: Thu, 24 May 2018 10:02:07 +0430 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> Message-ID: I think using FieldTypeDescriptor is misleading. since that is used for param types and return types. I propose SimpleTypeDescriptor or VariableTypeDescriptor. On Wed, May 23, 2018 at 11:11 PM, Vicente Romero wrote: > Hi all, > > Please review the proposed implementation for JEP 334 [1]. The webrev can > be found at [2] and the javadoc at [3]. > > Thanks, > Vicente > > [1] https://bugs.openjdk.java.net/browse/JDK-8203252 > [2] http://cr.openjdk.java.net/~vromero/constant.api/webrev.07/ > constants.api.patch > [3] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/ > overview-summary.html > > PS. We are offering a MacBook Wheel to the authors of the first 5 comments > :) > -- Best Regards, Ali Ebrahimi From forax at univ-mlv.fr Thu May 24 07:29:03 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Thu, 24 May 2018 09:29:03 +0200 (CEST) Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> Message-ID: <696133579.1054310.1527146943549.JavaMail.zimbra@u-pem.fr> Hi all, I've not taken a look to the code, so this is just my comments based on the javadoc. This version is far better than the previous one, given that all my other comments are "you should change that too ..., i don't like ..., etc", i want to first say that i'm very please by this new version. MethodHandleDesc.Kind: The JVMS defines names for these constants, why using different names here ? ClassDesc.isClassOrInterface() seems very specific, does it includes annotation or enums, how will it works when value types will be included ? it seems to be defined as !isPrimitive() and !isArray(), in that case, i think it can be removed. EnumDesc and VarHandleDesc, those should be static inner classes of respectively Enum and VarHandle, they are not part of the main API but nice addons. DynamicCallSiteDesc is not a Desc (a ConstantDesc), so the name is very confusing. ConstantDescs is a bag of constants, so if you want to use one, all of them need to be initialized, here we should own our own dog food and initialize these constants only when needed, so instead of being static final, they should be exposed as methods and implemented as a ldc on a ConstandDynamic. DynamicConstantDesc, it's not clear to me why this is not an interface like ClassDesc or MethodHandleDesc For ConstantClassDesc, ConstantMethodTypeDesc, ConstantMethodHandleDesc, do we really need to make these classes public, in theory they should not have a proper name because they have the same API as there interface counter parts and it will be easier to retrofit them as value type if there are not part of the public APIs. By doing that, i believe that FieldDescriptor and TypeDescriptor will not need to be generics anymore. It seems that java.lang.invoke.Intrinsics has disappear (at least from the javadoc). Constable.describeConstable() is weirdly named, does asConstantDesc better ? Some implementation of Constable do not have the return type of describeConstable being tidy up (i.e. the return type uses the Optional instead of a more specific one). I really dislike the fact that there is a method describeConstable in java.lang.Enum. Given the number of people that are interested by describeConstable(), i think this interface should be removed and static methods should be used instead. And fundamentally, i do not like the fact that you can go from a live object to its ConstantDesc representation, people will abuse of that like currently we use a java.lang.Class instead of a ClassDesc. This API, for me, goes in the wrong direction and pollute too many classes. For javadoc for java.lang shows too many classes, not only the one that are impacted by the JEP 334. regards, R?mi ----- Mail original ----- > De: "Vicente Romero" > ?: "amber-dev" , "core-libs-dev" > Envoy?: Mercredi 23 Mai 2018 20:41:11 > Objet: RFR: implementation for JEP 334: JVM Constants API > Hi all, > > Please review the proposed implementation for JEP 334 [1]. The webrev > can be found at [2] and the javadoc at [3]. > > Thanks, > Vicente > > [1] https://bugs.openjdk.java.net/browse/JDK-8203252 > [2] > http://cr.openjdk.java.net/~vromero/constant.api/webrev.07/constants.api.patch > [3] > http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/overview-summary.html > > PS. We are offering a MacBook Wheel to the authors of the first 5 > comments :) From vicente.romero at oracle.com Thu May 24 14:28:52 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 14:28:52 +0000 Subject: hg: amber/amber: manual merge with jep-334 branch Message-ID: <201805241428.w4OESqtK004478@aojmv0008.oracle.com> Changeset: acd4969ec1f8 Author: vromero Date: 2018-05-24 07:15 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/acd4969ec1f8 manual merge with jep-334 branch ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/invoke/FieldTypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/VarHandles.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicCallSiteDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java ! src/java.base/share/classes/module-info.java ! test/jdk/java/lang/invoke/constant/ClassRefTest.java From brian.goetz at oracle.com Thu May 24 14:43:28 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Thu, 24 May 2018 10:43:28 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> Message-ID: This is the terminology used by the JVMS (JVMS 4.3.2).? Since these things model classfile entities, we adopted the JVMS terminology. On 5/24/2018 1:32 AM, Ali Ebrahimi wrote: > I think using FieldTypeDescriptor is misleading. since that is used for > param types and return types. > I propose SimpleTypeDescriptor or VariableTypeDescriptor. > > On Wed, May 23, 2018 at 11:11 PM, Vicente Romero > wrote: > >> Hi all, >> >> Please review the proposed implementation for JEP 334 [1]. The webrev can >> be found at [2] and the javadoc at [3]. >> >> Thanks, >> Vicente >> >> [1] https://bugs.openjdk.java.net/browse/JDK-8203252 >> [2] http://cr.openjdk.java.net/~vromero/constant.api/webrev.07/ >> constants.api.patch >> [3] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/ >> overview-summary.html >> >> PS. We are offering a MacBook Wheel to the authors of the first 5 comments >> :) >> > > From vicente.romero at oracle.com Thu May 24 14:49:05 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 14:49:05 +0000 Subject: hg: amber/amber: adding IndyRefTest Message-ID: <201805241449.w4OEn6Wt012261@aojmv0008.oracle.com> Changeset: affc14961831 Author: vromero Date: 2018-05-24 07:35 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/affc14961831 adding IndyRefTest + test/jdk/java/lang/invoke/constant/IndyRefTest.java From brian.goetz at oracle.com Thu May 24 15:05:54 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Thu, 24 May 2018 11:05:54 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <696133579.1054310.1527146943549.JavaMail.zimbra@u-pem.fr> References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> <696133579.1054310.1527146943549.JavaMail.zimbra@u-pem.fr> Message-ID: Thanks for the review and the great comments! > This version is far better than the previous one, ... or the previous seven :) > MethodHandleDesc.Kind: The JVMS defines names for these constants, why using different names here ? Mostly for readability of client code.? Happy to consider alternatives. > ClassDesc.isClassOrInterface() seems very specific, does it includes annotation or enums, how will it works when value types will be included ? Hah, this was added based on a previous review, where someone said "you have isArray() and isPrimitive(), but there are methods that only work on non-array, non-primitive (e.g., packageName()), so you should have a corresponding method for this, and then the isXxx methods partition the space."? After some bikeshed painting, So isClassOrInterface(), which means "not array, not primitive", seemed the best choice. ? (The VM sees enums as classes and annotations as interfaces, and this is essentially a VM interop API.)? For value types, value types will be classes ("codes like a class!") so they will be included by this method. We could have call this isClassWhoseDescriptorStartsWithL() but that seemed a bit less friendly, though that's basically the intent. > it seems to be defined as !isPrimitive() and !isArray(), in that case, i think it can be removed. Tried that, see above :) > EnumDesc and VarHandleDesc, those should be static inner classes of respectively Enum and VarHandle, > they are not part of the main API but nice addons. Good thought!? Will consider this (need to work through some of the other specializations we intend to add, to make sure this scales properly.) > DynamicCallSiteDesc is not a Desc (a ConstantDesc), so the name is very confusing. It's not a ConstantDesc, but it _is_ a nominal descriptor.? Just not a nominal descriptor for a (loadable) constant.? The confusing bit is that its the only one of its kind, for now; later, I think this will become more common.? (If we had descriptors for the non-loadable constants in the CP (e.g., NameAndType), they'd be in this boat too.) > DynamicConstantDesc, it's not clear to me why this is not an interface like ClassDesc or MethodHandleDesc Fair question; we went back and forth on this a few times.? It could be shredded into a pair like ClassDesc/ConstantClassDesc.? However, in reality, we expect that all implementations of DCD would want to extend the base implementation anyway, since it provides useful functionality for which there's no point in reinventing.? Which means really DCD/ConstantDCD/AbstractDCD.? Which is starting to seem a little silly??? But I agree that things are a bit all over the map here.? (This is in part due to trying to cover the seam between primitive and reference class mirrors with a single abstraction, because the alternative is far worse.) > For ConstantClassDesc, ConstantMethodTypeDesc, ConstantMethodHandleDesc, do we really need to make these classes public, in theory they should not have a proper name because they have the same API as there interface counter parts and it will be easier to retrofit them as value type if there are not part of the public APIs. By doing that, i believe that FieldDescriptor and TypeDescriptor will not need to be generics anymore. The reason these were made public is that we expect bytecode APIs to case over them.? If you're writing out an LDC based on a ConstantDesc, you can case over: String, Integer (and friends), Constant{Class,MT,MH}Desc, DynamicConstantDesc -- which are the concrete types that correspond exactly to the loadable CP types defined in JVMS -- and you're done.? If we made ConstantMHDesc private, the API gets more complicated, because now there are a bunch of methods that only work on direct method handles. > It seems that java.lang.invoke.Intrinsics has disappear (at least from the javadoc). We split JEP 334 off from 303; Intrinsics remains in 303, and will come later.? This is the foundation. > Constable.describeConstable() is weirdly named, does asConstantDesc better ? Yeah, we had quite a loooooong discussion on this...suffice it to say we considered every possible option, and then some.? The basic challenge is that ConstantDesc implements Constable, and code like ??? constantDesc.asConstantDesc() would totally look like a no-op -- but it's not!? It's asking the constantDesc to _describe itself_ as a constantDesc.? So calling it ??? constantDesc.describeConstable() is more clearly asking a Constable to describe itself. > Some implementation of Constable do not have the return type of describeConstable being tidy up (i.e. the return type uses the Optional instead of a more specific one). I'll take a look at these.? Some are trickier than they look. > I really dislike the fact that there is a method describeConstable in java.lang.Enum. Given the number of people that are interested by describeConstable(), i think this interface should be removed and static methods should be used instead. And fundamentally, i do not like the fact that you can go from a live object to its ConstantDesc representation, people will abuse of that like currently we use a java.lang.Class instead of a ClassDesc. This API, for me, goes in the wrong direction and pollute too many classes. Yeah, this is a sharp edge.? But there's also a reason for it; it enables the compiler to much more aggressively constant-fold things into condy. The problem is not the method, or the mechanism -- the mechanism is awesome.? The problem is that this is a very low-level method bleeding into the Javadoc of some high-level things, which is sure to confuse users.? (We have the same problem with the two new methods on String -- describeConstable and resolveConstantDesc. Both are kind of silly on String, since they are basically identities.? In fact, the reason these methods are named so oddly is because they are going to show up in the API of some very general classes, like String.) From vicente.romero at oracle.com Thu May 24 15:23:32 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 15:23:32 +0000 Subject: hg: amber/amber: add test for MethodHandleDesc::ofConstructor in MethodHandleRefTest Message-ID: <201805241523.w4OFNXZH024655@aojmv0008.oracle.com> Changeset: fc28ca68554e Author: vromero Date: 2018-05-24 08:09 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/fc28ca68554e add test for MethodHandleDesc::ofConstructor in MethodHandleRefTest ! test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java From vicente.romero at oracle.com Thu May 24 17:10:13 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 17:10:13 +0000 Subject: hg: amber/amber: adding tests to MethodTypeRefTest Message-ID: <201805241710.w4OHAEZ2004108@aojmv0008.oracle.com> Changeset: ed6fdf96e5fa Author: vromero Date: 2018-05-24 09:56 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/ed6fdf96e5fa adding tests to MethodTypeRefTest ! test/jdk/java/lang/invoke/constant/MethodTypeRefTest.java From vicente.romero at oracle.com Thu May 24 17:28:48 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 17:28:48 +0000 Subject: hg: amber/amber: checking for constructor with non void return type Message-ID: <201805241728.w4OHSneE010465@aojmv0008.oracle.com> Changeset: cd7f4c80a4db Author: vromero Date: 2018-05-24 10:15 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/cd7f4c80a4db checking for constructor with non void return type ! test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java From vicente.romero at oracle.com Thu May 24 17:37:47 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 17:37:47 +0000 Subject: hg: amber/amber: yet another manual merge :( Message-ID: <201805241737.w4OHbm6H014609@aojmv0008.oracle.com> Changeset: 3248898657dc Author: vromero Date: 2018-05-24 10:24 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/3248898657dc yet another manual merge :( ! test/jdk/java/lang/invoke/constant/IndyRefTest.java ! test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java ! test/jdk/java/lang/invoke/constant/MethodTypeRefTest.java From vicente.romero at oracle.com Thu May 24 18:49:15 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 18:49:15 +0000 Subject: hg: amber/amber: dont print all the classes implementing Constable in the javadoc, too looong Message-ID: <201805241849.w4OInFo7011305@aojmv0008.oracle.com> Changeset: 201b586b8f7a Author: vromero Date: 2018-05-24 11:35 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/201b586b8f7a dont print all the classes implementing Constable in the javadoc, too looong ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ClassWriterImpl.java From vicente.romero at oracle.com Thu May 24 18:58:27 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 18:58:27 +0000 Subject: hg: amber/amber: remove changes to ClassWriteImpl, will get them from the jep branch Message-ID: <201805241858.w4OIwSSv015505@aojmv0008.oracle.com> Changeset: 7811a4252913 Author: vromero Date: 2018-05-24 11:43 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7811a4252913 remove changes to ClassWriteImpl, will get them from the jep branch ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ClassWriterImpl.java From vicente.romero at oracle.com Thu May 24 19:01:34 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Thu, 24 May 2018 19:01:34 +0000 Subject: hg: amber/amber: manual merge with jep branch Message-ID: <201805241901.w4OJ1ZBr017419@aojmv0008.oracle.com> Changeset: 6c94272f961d Author: vromero Date: 2018-05-24 11:47 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/6c94272f961d manual merge with jep branch ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ClassWriterImpl.java From andrej.golovnin at gmail.com Thu May 24 07:46:55 2018 From: andrej.golovnin at gmail.com (Andrej Golovnin) Date: Thu, 24 May 2018 09:46:55 +0200 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> Message-ID: Hi Vincente, the following files do not have the copyright header: src/java.base/share/classes/java/lang/invoke/FieldTypeDescriptor.java src/java.base/share/classes/java/lang/invoke/MethodTypeDescriptor.java src/java.base/share/classes/java/lang/invoke/TypeDescriptor.java In the following files the year in the copyright should be updated: test/jdk/java/lang/invoke/constant/ClassRefTest.java test/jdk/java/lang/invoke/constant/CondyRefTest.java test/jdk/java/lang/invoke/constant/MethodHandleRefTest.java test/jdk/java/lang/invoke/constant/MethodTypeRefTest.java test/jdk/java/lang/invoke/constant/SymbolicRefTest.java test/jdk/java/lang/invoke/constant/TypeDescriptorTest.java And I also think that Constable.describeConstable() is weirdly named. What about: #describe() #getDescriptor() #getConstantDescriptor() #toConstantDescriptor() Best regards, Andrej Golovnin On Wed, May 23, 2018 at 8:41 PM, Vicente Romero wrote: > Hi all, > > Please review the proposed implementation for JEP 334 [1]. The webrev can be > found at [2] and the javadoc at [3]. > > Thanks, > Vicente > > [1] https://bugs.openjdk.java.net/browse/JDK-8203252 > [2] > http://cr.openjdk.java.net/~vromero/constant.api/webrev.07/constants.api.patch > [3] > http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/overview-summary.html > > PS. We are offering a MacBook Wheel to the authors of the first 5 comments > :) From brian.goetz at oracle.com Thu May 24 20:48:23 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Thu, 24 May 2018 16:48:23 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <696133579.1054310.1527146943549.JavaMail.zimbra@u-pem.fr> References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> <696133579.1054310.1527146943549.JavaMail.zimbra@u-pem.fr> Message-ID: > EnumDesc and VarHandleDesc, those should be static inner classes of respectively Enum and VarHandle, > they are not part of the main API but nice addons. After some thought, I am inclined to agree.? Here's the rationale. There are some built in constant types; they have Desc counterparts in JLIC.? Then there are types that are Constable, that need a companion subtype of DynamicConstantDesc.? These classes should bring their own. What to call them?? Well, we could leave the names the same, which is wordy: Enum.EnumDesc, but plays nicely with static imports.? We could call them something like Descriptor, but then if static imported, they'd like conflict.? Or, cleverly, we could call them ConstantDesc, which if people static-imported them, would shoot their own feet, and therefore learn not to do that :)? I like the latter for its corrective behavior but I think the first is probably best. From vicente.romero at oracle.com Fri May 25 00:08:46 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 25 May 2018 00:08:46 +0000 Subject: hg: amber/amber: moving EnumDesc and VarHandleDesc under Enum and VarHandle, respectively Message-ID: <201805250008.w4P08lRd025011@aojmv0008.oracle.com> Changeset: 78a7dddaf6a4 Author: vromero Date: 2018-05-24 16:51 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/78a7dddaf6a4 moving EnumDesc and VarHandleDesc under Enum and VarHandle, respectively ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java - src/java.base/share/classes/java/lang/invoke/constant/EnumDesc.java - src/java.base/share/classes/java/lang/invoke/constant/VarHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/package-info.java ! test/jdk/java/lang/invoke/constant/ClassRefTest.java ! test/jdk/java/lang/invoke/constant/CondyRefTest.java From vicente.romero at oracle.com Fri May 25 00:46:06 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 25 May 2018 00:46:06 +0000 Subject: hg: amber/amber: reusing existing class descriptors Message-ID: <201805250046.w4P0k732006458@aojmv0008.oracle.com> Changeset: 1c2029a5ebe4 Author: vromero Date: 2018-05-24 17:28 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/1c2029a5ebe4 reusing existing class descriptors ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java From vicente.romero at oracle.com Fri May 25 01:09:45 2018 From: vicente.romero at oracle.com (Vicente Romero) Date: Thu, 24 May 2018 21:09:45 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> References: <799c736f-ad0b-6373-f7e4-6acafe2a8486@oracle.com> Message-ID: <21d1eab3-51e2-b647-5c4f-e686c2e573e4@oracle.com> Thanks for the comments so far, I have uploaded another iteration of the implementation + javadoc Vicente [1] http://cr.openjdk.java.net/~vromero/constant.api/webrev.08 [2] http://cr.openjdk.java.net/~vromero/constant.api/javadoc.08 On 05/23/2018 02:41 PM, Vicente Romero wrote: > Hi all, > > Please review the proposed implementation for JEP 334 [1]. The webrev > can be found at [2] and the javadoc at [3]. > > Thanks, > Vicente > > [1] https://bugs.openjdk.java.net/browse/JDK-8203252 > [2] > http://cr.openjdk.java.net/~vromero/constant.api/webrev.07/constants.api.patch > [3] > http://cr.openjdk.java.net/~vromero/constant.api/javadoc.07/overview-summary.html > > PS. We are offering a MacBook Wheel to the authors of the first 5 > comments :) From vicente.romero at oracle.com Fri May 25 13:53:48 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 25 May 2018 13:53:48 +0000 Subject: hg: amber/amber: manual merge with jep branch Message-ID: <201805251353.w4PDrnvi026300@aojmv0008.oracle.com> Changeset: 0c64fc0636bf Author: vromero Date: 2018-05-25 06:40 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/0c64fc0636bf manual merge with jep branch ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java - src/java.base/share/classes/java/lang/invoke/constant/EnumDesc.java - src/java.base/share/classes/java/lang/invoke/constant/VarHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/package-info.java ! test/jdk/java/lang/invoke/constant/ClassRefTest.java ! test/jdk/java/lang/invoke/constant/CondyRefTest.java From vicente.romero at oracle.com Fri May 25 14:22:58 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Fri, 25 May 2018 14:22:58 +0000 Subject: hg: amber/amber: fixing merge issue Message-ID: <201805251422.w4PEMxYJ007332@aojmv0008.oracle.com> Changeset: 2df2582d6ad0 Author: vromero Date: 2018-05-25 07:08 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/2df2582d6ad0 fixing merge issue ! src/java.base/share/classes/java/lang/invoke/constant/ConstantDescs.java From jbvernee at xs4all.nl Sun May 27 09:57:46 2018 From: jbvernee at xs4all.nl (jbvernee) Date: Sun, 27 May 2018 11:57:46 +0200 Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: <40a48e8f3b9efa0650d17a3284bf66da@xs4all.nl> Hello, 1. After looking around some more, I also noticed that you can make the return type of `FieldTypeDescriptor::arrayType` in `Class` more specific: ``` @Override @SuppressWarnings("unchecked") public Class arrayType() { return (Class) Array.newInstance(this, 0).getClass(); } ``` I don't think I'm wrong in assuming that this always returns `Class`? I imagine that could be very useful. --- 2. It's unfortunate that the return type of `describeConstable` in `EnumDesc` and `VarhandleDesc` can't be simplified any more currently. The cause seems to be that `DynamicConstantDesc` implements `Constable` on it's own, and does so with a less specific type parameter than is needed for the simplification. I can think of 2 ways to work around this. The first is to not let `DynamicConstantDesc` inherit from `Constantable` itself, but leave that up to the subclass, so it can use a more specific type parameter. For `EnumDesc` for instance that would be `Constable>`, then the return type of `describeConstable` could be `Optional>>`. I'm not sure how important it is for `DynamicConstantcDesc` to be a sub type of `Constable` though. The other solution, which does keep it as a sub type, would be to add an additional type parameter to `DynamicConstantDesc` for the type with which to implement `Constable` i.e.: ``` public abstract class DynamicConstantDesc> implements ConstantDesc, Constable { ``` Then `EnumDesc` would extend `DynamicConstantDesc>`, and return `Optional>>` (similarly for `VarhandleDesc`). Basically `C` is the type implementing `DynamicConstantDesc` here. The default implementation of `describeConstable` in `DynamicConstantDesc` would have to be removed (making it abstract), or change it's implementation to return `Optional.empty()`, since there is no easy way (afaik) to return something that satisfies the new return type. So that pretty much forces subclasses to implement `describeConstable` themselves. Right now, both subclasses of `DynamicConstantDesc` override it any ways, and with the help of the factory methods `DynamicConstantDesc::of` an implementation looks trivial, so that shouldn't be too much of a problem for future subclasses (?). It's the question if doing this is worth it for the sake of simpler return types for the subclasses. I think it is, since the abstract base is just a template to build classes on top of, but the subclasses and interfaces are what you end up using mostly (how often do you see `AbstractList` in code?) and you want their types to be specific and not some erased version. (I hope I didn't make any mistakes, I can't build the JDK right now, so it's mostly been copy-and-pasting code into my own IDE) Best regards, Jorn Vernee From jbvernee at xs4all.nl Sun May 27 19:04:11 2018 From: jbvernee at xs4all.nl (jbvernee) Date: Sun, 27 May 2018 21:04:11 +0200 Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: <48b986f608525a5e7164f326f88d04da@xs4all.nl> > It's unfortunate that the return type of `describeConstable` in > `EnumDesc` and `VarhandleDesc` can't be simplified any more currently. I might have gotten lost in my own train of thought a little bit there. I missed the fact that you can also change the return types to `Optional>>` for `EnumDesc` and `Optional>>` for `VarHandleDesc`, without changing anything else. Those are at least a little bit simpler. From benjamin_komen at hotmail.com Mon May 28 17:46:40 2018 From: benjamin_komen at hotmail.com (Benjamin Komen) Date: Mon, 28 May 2018 17:46:40 +0000 Subject: amber-dev Digest, Vol 15, Issue 24 In-Reply-To: References: Message-ID: Outlook voor Android downloaden ________________________________ From: amber-dev on behalf of amber-dev-request at openjdk.java.net Sent: Monday, May 28, 2018 12:00:00 PM To: amber-dev at openjdk.java.net Subject: amber-dev Digest, Vol 15, Issue 24 Send amber-dev mailing list submissions to amber-dev at openjdk.java.net To subscribe or unsubscribe via the World Wide Web, visit https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmail.openjdk.java.net%2Fmailman%2Flistinfo%2Famber-dev&data=02%7C01%7C%7C44bd4971bb5c4daedf0d08d5c4929890%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636631056260142330&sdata=qrId4UFbrP9HbFolh%2FGk9pVjm6fHFvZ8%2BkviAxRyW8s%3D&reserved=0 or, via email, send a message with subject or body 'help' to amber-dev-request at openjdk.java.net You can reach the person managing the list at amber-dev-owner at openjdk.java.net When replying, please edit your Subject line so it is more specific than "Re: Contents of amber-dev digest..." Today's Topics: 1. RFR: implementation for JEP 334: JVM Constants API (jbvernee) 2. RFR: implementation for JEP 334: JVM Constants API (jbvernee) ---------------------------------------------------------------------- Message: 1 Date: Sun, 27 May 2018 11:57:46 +0200 From: jbvernee To: amber-dev at openjdk.java.net Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: <40a48e8f3b9efa0650d17a3284bf66da at xs4all.nl> Content-Type: text/plain; charset=US-ASCII; format=flowed Hello, 1. After looking around some more, I also noticed that you can make the return type of `FieldTypeDescriptor::arrayType` in `Class` more specific: ``` @Override @SuppressWarnings("unchecked") public Class arrayType() { return (Class) Array.newInstance(this, 0).getClass(); } ``` I don't think I'm wrong in assuming that this always returns `Class`? I imagine that could be very useful. --- 2. It's unfortunate that the return type of `describeConstable` in `EnumDesc` and `VarhandleDesc` can't be simplified any more currently. The cause seems to be that `DynamicConstantDesc` implements `Constable` on it's own, and does so with a less specific type parameter than is needed for the simplification. I can think of 2 ways to work around this. The first is to not let `DynamicConstantDesc` inherit from `Constantable` itself, but leave that up to the subclass, so it can use a more specific type parameter. For `EnumDesc` for instance that would be `Constable>`, then the return type of `describeConstable` could be `Optional>>`. I'm not sure how important it is for `DynamicConstantcDesc` to be a sub type of `Constable` though. The other solution, which does keep it as a sub type, would be to add an additional type parameter to `DynamicConstantDesc` for the type with which to implement `Constable` i.e.: ``` public abstract class DynamicConstantDesc> implements ConstantDesc, Constable { ``` Then `EnumDesc` would extend `DynamicConstantDesc>`, and return `Optional>>` (similarly for `VarhandleDesc`). Basically `C` is the type implementing `DynamicConstantDesc` here. The default implementation of `describeConstable` in `DynamicConstantDesc` would have to be removed (making it abstract), or change it's implementation to return `Optional.empty()`, since there is no easy way (afaik) to return something that satisfies the new return type. So that pretty much forces subclasses to implement `describeConstable` themselves. Right now, both subclasses of `DynamicConstantDesc` override it any ways, and with the help of the factory methods `DynamicConstantDesc::of` an implementation looks trivial, so that shouldn't be too much of a problem for future subclasses (?). It's the question if doing this is worth it for the sake of simpler return types for the subclasses. I think it is, since the abstract base is just a template to build classes on top of, but the subclasses and interfaces are what you end up using mostly (how often do you see `AbstractList` in code?) and you want their types to be specific and not some erased version. (I hope I didn't make any mistakes, I can't build the JDK right now, so it's mostly been copy-and-pasting code into my own IDE) Best regards, Jorn Vernee ------------------------------ Message: 2 Date: Sun, 27 May 2018 21:04:11 +0200 From: jbvernee To: amber-dev at openjdk.java.net Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: <48b986f608525a5e7164f326f88d04da at xs4all.nl> Content-Type: text/plain; charset=US-ASCII; format=flowed > It's unfortunate that the return type of `describeConstable` in > `EnumDesc` and `VarhandleDesc` can't be simplified any more currently. I might have gotten lost in my own train of thought a little bit there. I missed the fact that you can also change the return types to `Optional>>` for `EnumDesc` and `Optional>>` for `VarHandleDesc`, without changing anything else. Those are at least a little bit simpler. End of amber-dev Digest, Vol 15, Issue 24 ***************************************** From jbvernee at xs4all.nl Mon May 28 00:52:25 2018 From: jbvernee at xs4all.nl (jbvernee) Date: Mon, 28 May 2018 02:52:25 +0200 Subject: RFR: implementation for JEP 334: JVM Constants API Message-ID: <65a32b0bbd79cd9c7ee0e28fa20e1b22@xs4all.nl> Hello (again), Sorry for keeping this going, but I keep thinking of new things a few hours later (there goes my Sunday :/). I'm wondering if the return type of `Constable::describeConstable` is actually correct. Right now it's `Optional>`, but why are you using `ConstantDesc`? Since `ConstantDesc` is a _producer_ of `T` PECS dictates that it should use co-variance, i.e.: `ConstantDesc`, so that would make `Optional>` the return type. (a ConstantDesc that resolves to a String can also be viewed as a ConstantDesc that resolves to an Object) That way you don't even have the problem I was trying to solve before, and the return type of `EnumDesc::describeConstable` (and similarly for `VarHandleDesc`) can be `Optional>>` which is the exact type that is being returned, which is what is wanted right? On that note, you could also change the return type of `describeConstable` for the box types and String to return an optional of the type itself (since they're their own descriptor, each implements `ConstantDesc` of itself). For instance, for `Double` this would change from `Optional>` to `Optional`. Best regards, Jorn Vernee From brian.goetz at oracle.com Tue May 29 20:06:46 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Tue, 29 May 2018 16:06:46 -0400 Subject: RFR: implementation for JEP 334: JVM Constants API In-Reply-To: <65a32b0bbd79cd9c7ee0e28fa20e1b22@xs4all.nl> References: <65a32b0bbd79cd9c7ee0e28fa20e1b22@xs4all.nl> Message-ID: I understand why you're hammering on this issue; it seems like something that is unnecessarily complex.? So, if it can be simplified without oversimplifying, that's great.? That said, the signature is the tail, and we shouldn't let the tail wag the dog. Ideas like "let's not have DCD extend Constable" are tail wagging dog, so let's not go there. The reason all the concrete subclasses of ConstantDesc implement Constable is that we want the nominal descriptors to _themselves_ be constants, which can further be embedded in the constant pool (this means they can often be reconstituted more efficiently than by generating the obvious bytecode; this is groundwork for the enhanced constant folding work to come.)? This is subtle; while ConstantDesc and Constable are in some ways mirrors of each other, in some ways they are not.? That is, when you do: ??? Class aClass = ClassRef.of("java.lang.String"); ??? ConstantDesc cd = aClass.describeConstable()? // gonna be a ClassDesc ??? ConstantDesc cdd = cd.describeConstable() // Definitely not ClassDesc! Here, `cd` describes a constant for a Class; `cdd` describes one for a ClassDesc, which is a dynamic constant which, when resolved, resolves to a ClassDesc. In turn, this is conditioned by a lot of historical baggage, such as: there is a live object type, Class, which can represent both reference class literals (String.class) and primitive class literals (int.class).? Both (as of 11) have a constant pool representation.? However, their CP representation is different; reference types are represented with Constant_Class_info, whereas primitive types are represented with condy.? Therefore, they will use different kinds of ConstantDesc to describe them.? But just as we have a single Class type that describes all runtime types, we want a single ClassDesc type that describes them all nominally, so other APIs (like MethodTypeDesc) don't have to propagate this unfortunate representational bifurcation.? Papering over this rift contributed to the signature complexity. The first `? extends` is needed because we don't want to force APIs to return _exactly_ a `ConstantDesc`; we want to allow them to return a more decriptive subtype, if desired, as `EnumDesc` does.? So we have ??? Optional> describeConstable() and we have to fill in the X. But its good you pressed on this, because the super-constraint actually came from someplace else, which was totally accidental: ??? Class extends Constable> which was inconsistent with ??? ClassDesc extends ConstantDesc> This turned out to be the constraint that was killing us, for which the `super` was the only way out (and one that was not really correct).? By fixing this, I was able to drop the super (along with some other changes elsewhere along the line.)? So it looks like your Sunday was well-spent (assuming all goes well downstream.) On 5/27/2018 8:52 PM, jbvernee wrote: > Hello (again), > > Sorry for keeping this going, but I keep thinking of new things a few > hours later (there goes my Sunday :/). > > I'm wondering if the return type of `Constable::describeConstable` is > actually correct. Right now it's `Optional super T>>`, but why are you using `ConstantDesc`? Since > `ConstantDesc` is a _producer_ of `T` PECS dictates that it should use > co-variance, i.e.: `ConstantDesc`, so that would make > `Optional>` the return type. (a > ConstantDesc that resolves to a String can also be viewed as a > ConstantDesc that resolves to an Object) > > That way you don't even have the problem I was trying to solve before, > and the return type of `EnumDesc::describeConstable` (and similarly > for `VarHandleDesc`) can be > `Optional>>` which is the exact type > that is being returned, which is what is wanted right? > > On that note, you could also change the return type of > `describeConstable` for the box types and String to return an optional > of the type itself (since they're their own descriptor, each > implements `ConstantDesc` of itself). For instance, for `Double` this > would change from `Optional>` to `Optional`. > > Best regards, > Jorn Vernee From scolebourne at joda.org Tue May 29 22:18:06 2018 From: scolebourne at joda.org (Stephen Colebourne) Date: Tue, 29 May 2018 23:18:06 +0100 Subject: Small feedback from LJC talk Message-ID: I spoke at the LJC to about 20 attendees on various project Amber features. Here are the slides and some small points of feedback: https://www.slideshare.net/scolebourne/amber-and-beyond-java-language-changes Raw String Literals -------------------------- I presented the puzzler to do with empty strings. 2 out of 20 guessed the right answer (multiple choice) but everyone (even those 2 people) groaned at the multi-line raw string hidden by apparent empty string literals. (see the presentation if you want to understand the exact code sample). The same happened at the last conference. No one has seen past the "empty strings". At least I've shown its a good puzzler for conferences... Expression Switch ------------------------- It was commented that I ended up taking half the talk on this - it seemed to drag for me too. the problem is that there are now 4 different types of switch, and expressing the inherent complexity to gain understanding is not simple. The audience started with no great love for switch (tested by show of hands). The 2x2 grid concept did not get everyone nodding their heads (perhaps that works better in a book?). There was positive feedback that the enhanced form expression switch discourages blocks (and thus encourages methods) because of the need to write `break` in a block. When shown the enhanced (arrow) form where the expressions on the RHS are lambdas the attendees understood the trickiness but did not fall for the trap, eg: var action = switch (trafficLight) { case RED -> YELLOW -> stop(junction); case GREEN -> car -> go(junction); } I then gave three choices as a potential solution - no change, different separator such as := (but not limited to that), and swap "switch" to "match" (or another keyword). var option1 = switch (trafficLight) { case RED -> car -> stop(car, junction); } var option2 = switch (trafficLight) { case RED:= car -> stop(car, junction); } var option3 = match (trafficLight) { case RED: car -> stop(car, junction); } The audience split roughly 2/2/15 - a clear result for "match and colon" instead of "switch". In addition, the faces of some audience members clearly showed passion for the last option and happiness that others had also chosen it. (Clearly, this was a choice made against the worst that the proposed syntax can do, but its still worth recording). Pattern matching ----------------------- Questions after indicated that while the goal is understood, there was doubt as to whether it should be the key thing being worked towards. Summary ------------ I make no strong claims based on this feedback, the numbers involved are too small to be scientific. I found the results interesting though. thanks Stephen From brian.goetz at oracle.com Tue May 29 22:38:34 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Tue, 29 May 2018 18:38:34 -0400 Subject: Small feedback from LJC talk In-Reply-To: References: Message-ID: <09f38481-0a1d-ea7a-7799-49413b39b2b0@oracle.com> Thanks for these thoughts.? Some counter-thoughts: > Expression Switch > ------------------------- > It was commented that I ended up taking half the talk on this - it > seemed to drag for me too. the problem is that there are now 4 > different types of switch, and expressing the inherent complexity to > gain understanding is not simple. Yeah, I think its probably overkill to try and explain all the details at this level all at once to an audience that has never seen any of it before.? I could imagine it being hard to keep track of the cases when presented this way. The takeaway I'd be after with this audience is: ?- Does your switch effectively calculate a value?? Then use the expression form, you don't have to break, and you automatically get exhaustiveness checking (which is even better for enums!) ?- Does your switch need fallthrough?? No?? Then use the arrow form, its simpler and its what you want to say anyway. ?- Want both?? Use both! ?- Want something else?? There's a rational story there, consult your language manual for the details. This is 95% of what users need to know.? The rest, they'll be in a better position to absorb when they've gotten a little more experience, and started to think through the corner cases themselves.? The 2x2 grid may be the right perspective when explaining the language feature _in the context of a language design discussion_, but I don't think its necessarily the right pedagogical technique for a "what's coming" talk.? FWIW. > Pattern matching > ----------------------- > Questions after indicated that while the goal is understood, there was > doubt as to whether it should be the key thing being worked towards. Yeah, I don't find this too surprising; Java developers are unfamiliar with pattern matching, so its obviously not something they perceive a burning need for, hence the "product manager" reaction ("Is this the most important thing we could be working on? Couldn't you be doing properties instead?")? But, remember that many people said the _exact same thing_ about lambdas -- "is adding some alpha-geek functional programming thingie really such a great idea / the most important thing we could be doing?"? But no one says that now. From vicente.romero at oracle.com Wed May 30 17:18:05 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 30 May 2018 17:18:05 +0000 Subject: hg: amber/amber: cleaning up the Constable::describeConstable signature Message-ID: <201805301718.w4UHI6uC005031@aojmv0008.oracle.com> Changeset: 1cc4bc0f03e9 Author: briangoetz Date: 2018-05-30 10:04 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/1cc4bc0f03e9 cleaning up the Constable::describeConstable signature ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/invoke/MethodHandle.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java From maurizio.cimadamore at oracle.com Wed May 30 17:21:29 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Wed, 30 May 2018 17:21:29 +0000 Subject: hg: amber/amber: Automatic merge with jep-334 Message-ID: <201805301721.w4UHLUgF007149@aojmv0008.oracle.com> Changeset: a4c04fa88c1a Author: mcimadamore Date: 2018-05-30 19:25 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/a4c04fa88c1a Automatic merge with jep-334 ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/invoke/MethodHandle.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/constant/AsTypeMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/Constable.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodHandleDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/ConstantMethodTypeDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/DynamicConstantDesc.java ! src/java.base/share/classes/java/lang/invoke/constant/PrimitiveClassDesc.java From vicente.romero at oracle.com Wed May 30 17:53:05 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 30 May 2018 17:53:05 +0000 Subject: hg: amber/amber: use Lookup.findClass instead of Class.forName Message-ID: <201805301753.w4UHr56G023124@aojmv0008.oracle.com> Changeset: 246b7535f8e9 Author: vromero Date: 2018-05-30 10:39 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/246b7535f8e9 use Lookup.findClass instead of Class.forName ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java From maurizio.cimadamore at oracle.com Wed May 30 17:56:24 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Wed, 30 May 2018 17:56:24 +0000 Subject: hg: amber/amber: Automatic merge with jep-334 Message-ID: <201805301756.w4UHuPjo025524@aojmv0008.oracle.com> Changeset: ad2dac9ef560 Author: mcimadamore Date: 2018-05-30 20:00 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ad2dac9ef560 Automatic merge with jep-334 ! src/java.base/share/classes/java/lang/invoke/constant/ConstantClassDesc.java From vicente.romero at oracle.com Wed May 30 22:01:08 2018 From: vicente.romero at oracle.com (vicente.romero at oracle.com) Date: Wed, 30 May 2018 22:01:08 +0000 Subject: hg: amber/amber: fixing regression tests Message-ID: <201805302201.w4UM18Ge014114@aojmv0008.oracle.com> Changeset: a33890943673 Author: vromero Date: 2018-05-30 14:46 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a33890943673 fixing regression tests ! test/langtools/jdk/javadoc/doclet/lib/JavadocTester.java ! test/langtools/jdk/javadoc/doclet/testClassTree/TestClassTree.java ! test/langtools/jdk/jshell/TypeNameTest.java ! test/langtools/tools/javac/T8187978/FilterOutCandidatesForDiagnosticsTest.out ! test/langtools/tools/javac/generics/inference/8176534/TestUncheckedCalls.java ! test/langtools/tools/javac/generics/inference/EagerReturnTypeResolution/EagerReturnTypeResolutionTestb.out ! test/langtools/tools/javac/lvti/harness/NonDenotableTest.java ! test/langtools/tools/javac/varargs/6806876/T6806876.out From maurizio.cimadamore at oracle.com Thu May 31 03:17:12 2018 From: maurizio.cimadamore at oracle.com (maurizio.cimadamore at oracle.com) Date: Thu, 31 May 2018 03:17:12 +0000 Subject: hg: amber/amber: 149 new changesets Message-ID: <201805310317.w4V3HNDo024264@aojmv0008.oracle.com> Changeset: cc705c956798 Author: bpatel Date: 2018-05-17 12:59 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/cc705c956798 8196201: Generate pages to list all classes and all packages in javadoc output Reviewed-by: jjg ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AbstractIndexWriter.java + src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AllClassesIndexWriter.java + src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AllPackagesIndexWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDoclet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/MethodWriterImpl.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModuleIndexWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModuleWriterImpl.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PackageIndexWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PackageWriterImpl.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SearchIndexItem.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SingleIndexWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SplitIndexWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/HtmlStyle.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/Navigation.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/Table.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/search.js ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/Resources.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/script.js ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/stylesheet.css ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/DocPaths.java ! test/langtools/jdk/javadoc/doclet/testGroupName/TestGroupName.java ! test/langtools/jdk/javadoc/doclet/testMethodTypes/TestMethodTypes.java ! test/langtools/jdk/javadoc/doclet/testModules/TestModulePackages.java ! test/langtools/jdk/javadoc/doclet/testModules/TestModules.java ! test/langtools/jdk/javadoc/doclet/testPackagePage/TestPackagePage.java ! test/langtools/jdk/javadoc/doclet/testSearch/TestSearch.java ! test/langtools/jdk/javadoc/doclet/testStylesheet/TestStylesheet.java ! test/langtools/jdk/javadoc/doclet/testUnnamedPackage/TestUnnamedPackage.java ! test/langtools/jdk/javadoc/tool/api/basic/APITest.java ! test/langtools/tools/javadoc/api/basic/APITest.java Changeset: 2f59dc95847d Author: iignatyev Date: 2018-05-17 14:52 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/2f59dc95847d 8199370: [TESTBUG] Open source vm testbase GC tests Reviewed-by: erikj, ihse, ehelin ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle01/Juggle01.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle05/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle05/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle06/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle06/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle07/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle07/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle08/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle08/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle09/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle09/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle10/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle10/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle11/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle11/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle12/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle12/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle13/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle13/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle14/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle14/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle15/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle15/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle16/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle16/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle17/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle17/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle18/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle18/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle19/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle19/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle20/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle20/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle21/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle21/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle22/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle22/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle23/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle23/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle24/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle24/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle25/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle25/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle26/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle26/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle27/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle27/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle28/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle28/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle29/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle29/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle30/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle30/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle31/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle31/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle32/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle32/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle33/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle33/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle34/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/ArrayJuggle/Juggle34/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/ClassNNN.java.template + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/ExecutionTask.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/GenClassPoolJar.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/GenClassesBuilder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/README + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/UnloadingTest.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/Bytecode.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/BytecodeFactory.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/BytecodeGeneratorFactory.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/BytecodeMutatorFactory.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/BytecodePatcher.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/DefaultTemplateClass.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/GenClassesBuilder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/HumongousTemplateClassGen.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/SourceGenerator.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/TemplateClassWithStaticField.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/bytecode/ThreadTemplateClass.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/Assertion.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/AssertionContainer.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/ClassAssertion.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/FinalizedAssertion.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/PhantomizationServiceThread.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/PhantomizedAssertion.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/cleanup/CleanupAction.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/check/cleanup/UnusedThreadKiller.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/classloaders/DoItYourselfClassLoader.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/classloaders/FinalizableClassloader.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/classloaders/JNIClassloader.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/classloaders/ReflectionClassloader.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/configuration/ClassloadingMethod.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/configuration/KeepRefMode.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/configuration/ReleaseRefMode.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/configuration/TestConfiguration.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/configuration/WhatToKeep.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/InStackLocalHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/InStaticFieldHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/InThreadFieldHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/JNIGlobalRefHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/JNILocalRefHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/NullClassloaderHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/keepref/RefHolder.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/libdefine.c + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/loading/ClassLoadingHelper.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/loading/LibLoader.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_anonclassloader_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level1_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level2_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level3_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_compilation_level4_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_humongous_class_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_jni_classloading_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_global_ref_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_jni_local_ref_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_rootClass_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_stackLocal_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_staticField_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_strongRef_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_keepRef_threadItself_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_phantom_ref_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_prot_domains_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_redefinition_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_reflection_classloading_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_inMemoryCompilation_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_inMemoryCompilation_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_inMemoryCompilation_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_inMemoryCompilation_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_inMemoryCompilation_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_inMemoryCompilation_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_keep_cl/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_keep_cl/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_keep_class/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_keep_class/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_keep_obj/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/g1/unloading/tests/unloading_weak_ref_keep_obj/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/AllocateWithoutOomTest/AllocateWithoutOomTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/AllocateWithoutOomTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/BigChains/BigChains.java + test/hotspot/jtreg/vmTestbase/gc/gctests/BigChains/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/CallGC/CallGC01/CallGC01.java + test/hotspot/jtreg/vmTestbase/gc/gctests/CallGC/CallGC01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/CallGC/CallGC02/CallGC02.java + test/hotspot/jtreg/vmTestbase/gc/gctests/CallGC/CallGC02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/ClassDeallocGC/ClassDeallocGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest01/FinalizeTest01.java + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest04/FinalizeTest04.java + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest05/FinalizeTest05.java + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizeTest05/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizerGC01/FinalizerGC01.java + test/hotspot/jtreg/vmTestbase/gc/gctests/FinalizerGC02/FinalizerGC02.java + test/hotspot/jtreg/vmTestbase/gc/gctests/GcPointerCheckTest/GcPointerCheckTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/GcPointerCheckTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/HeapUsageTest/HeapUsageTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/HeapUsageTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/InterruptGC/InterruptGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/InterruptGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/JumbleGC/JumbleGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/JumbleGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/JumbleGC/Tree.java + test/hotspot/jtreg/vmTestbase/gc/gctests/JumbleGC002/JumbleGC002.java + test/hotspot/jtreg/vmTestbase/gc/gctests/JumbleGC002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large001/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large001/large001.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large002/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large003/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large003/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large004/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large004/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large005/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LargeObjects/large005/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LoadUnloadGC/LoadUnloadGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LoadUnloadGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/LoadUnloadGC2/LoadUnloadGC2.java + test/hotspot/jtreg/vmTestbase/gc/gctests/LoadUnloadGC2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/MTLinkedListGC/MTLinkedListGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MTLinkedListGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/MTLinkedListGC/node.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MTasyncGC/MTasyncGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MTsyncGC/MTsyncGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MatrixJuggleGC/MatrixJuggleGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MatrixJuggleGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/MemoryEater/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/MemoryEater/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MemoryEaterMT/MemoryEaterMT.java + test/hotspot/jtreg/vmTestbase/gc/gctests/MemoryEaterMT/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/ObjectMonitorCleanup/MonitorThread.java + test/hotspot/jtreg/vmTestbase/gc/gctests/ObjectMonitorCleanup/ObjectMonitorCleanup.java + test/hotspot/jtreg/vmTestbase/gc/gctests/ObjectMonitorCleanup/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/OneeFinalizerTest/OneeFinalizerTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/OneeFinalizerTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/PRHelper.java + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/PhantomHelper.java + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/PhantomReferenceEvilTest/PhantomReferenceEvilTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/PhantomReferenceEvilTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/PhantomReferenceTest/PhantomReferenceTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/PhantomReferenceTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/phantom001/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/phantom001/phantom001.java + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/phantom002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/PhantomReference/phantom002/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/ReferencesGC/CircularLinkedList.java + test/hotspot/jtreg/vmTestbase/gc/gctests/ReferencesGC/ReferencesGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/ReferencesGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/RememberedSet/RememberedSet.java + test/hotspot/jtreg/vmTestbase/gc/gctests/RememberedSet/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/SoftReferenceTest/SoftReferenceTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/SoftReferenceTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft001/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft001/soft001.java + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft002/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft003/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft003/soft003.java + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft004/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft004/soft004.java + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft005/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/SoftReference/soft005/soft005.java + test/hotspot/jtreg/vmTestbase/gc/gctests/Steal/steal001/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/Steal/steal001/steal001.java + test/hotspot/jtreg/vmTestbase/gc/gctests/Steal/steal002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/Steal/steal002/steal002.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringGC/StringGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringIntern/StringIntern.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringIntern/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternGC/StringInternGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSync/StringInternSync.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSync/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSync2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSync2/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC/StringGenerator.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC/StringInternSyncWithGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC2/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC3/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC3/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC4/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/StringInternSyncWithGC4/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/ThreadGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/ThreadGC/ThreadGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/WeakReferenceEvilTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/WeakReferenceEvilTest/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/WeakReferenceEvilTest/WeakReferenceEvilTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/WeakReferenceTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/WeakReferenceTest/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/WeakReferenceTest/WeakReferenceTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak001/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak001/weak001.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak002/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak003/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak003/weak003.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak004/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak004/weak004.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak005/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak005/weak005.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak006/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak006/weak006.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak007/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReference/weak007/weak007.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReferenceGC/CircularLinkedList.java + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReferenceGC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/WeakReferenceGC/WeakReferenceGC.java + test/hotspot/jtreg/vmTestbase/gc/gctests/fileTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/gctests/fileTest/fileTest.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest01/gctest01.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest02/gctest02.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest03/Tree.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest03/appthread.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest03/gctest03.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest04/gctest04.java + test/hotspot/jtreg/vmTestbase/gc/gctests/gctest04/reqgen.java + test/hotspot/jtreg/vmTestbase/gc/gctests/mallocWithGC1/libmallocWithGC1.c + test/hotspot/jtreg/vmTestbase/gc/gctests/mallocWithGC1/mallocWithGC1.java + test/hotspot/jtreg/vmTestbase/gc/gctests/mallocWithGC2/libmallocWithGC2.c + test/hotspot/jtreg/vmTestbase/gc/gctests/mallocWithGC2/mallocWithGC2.java + test/hotspot/jtreg/vmTestbase/gc/gctests/mallocWithGC3/libmallocWithGC3.c + test/hotspot/jtreg/vmTestbase/gc/gctests/mallocWithGC3/mallocWithGC3.java + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC01/libnativeGC01.c + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC01/nativeGC01.java + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC02/libnativeGC02.c + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC02/nativeGC02.java + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC03/libnativeGC03.c + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC03/nativeGC03.java + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC05/libnativeGC05.c + test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC05/nativeGC05.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/ExternalHashingTest/ExternalHashingTest.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/ExternalHashingTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/hashcode/HCHelper.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeSimpleTest/HashCodeSimpleTest.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeSimpleTest/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestC/HashCodeTestC.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestCC/HashCodeTestCC.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestCC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestP/HashCodeTestP.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestP/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestPC/HashCodeTestPC.java + test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestPC/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/huge/quicklook/largeheap/Access/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/huge/quicklook/largeheap/Access/access.java + test/hotspot/jtreg/vmTestbase/gc/huge/quicklook/largeheap/MemOptions/MemOptions.sh + test/hotspot/jtreg/vmTestbase/gc/huge/quicklook/largeheap/MemOptions/MemStat.java + test/hotspot/jtreg/vmTestbase/gc/huge/quicklook/largeheap/MemOptions/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/huge/quicklook/largeheap/MemOptions/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/LockerTest.java + test/hotspot/jtreg/vmTestbase/gc/lock/README + test/hotspot/jtreg/vmTestbase/gc/lock/jni/jnilock001/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jni/jnilock001/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jni/jnilock002/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jni/jnilock002/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jni/jnilock003/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jni/jnilock003/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock01/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniglobalreflock04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock01/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnilocalreflock04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock01/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jnireflock04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock01/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jniref/jniweakglobalreflock04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock01/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/jvmti/alloc/jvmtialloclock04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock01/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock01/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock02/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock02/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock03/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock03/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock04/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/lock/malloc/malloclock04/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/ArrayJuggle.README + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle1/Juggle1.java + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle1/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle1_gc/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle1_gc/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle2/Juggle2.java + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle2_gc/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Array/ArrayJuggle/Juggle2_gc/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/memory/Array/SampleMe/SampleClass.java + test/hotspot/jtreg/vmTestbase/gc/memory/Array/SampleMe/SampleMe.java + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn.README + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn1/Churn1.java + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn1/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn2/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn3/Churn3.java + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn3/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn3a/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn3a/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn4/Churn4.java + test/hotspot/jtreg/vmTestbase/gc/memory/Churn/Churn4/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/FillingStation/FillingStation.java + test/hotspot/jtreg/vmTestbase/gc/memory/FillingStation/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/LargePagesTest/LargePagesTest.java + test/hotspot/jtreg/vmTestbase/gc/memory/Nio/Nio.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular.README + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular1/Circular1.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular1/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular2/Circular2.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular3/Circular3.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular3/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular4/Circular4.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Circular4/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear.README + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear1/Linear1.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear1/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear2/Linear2.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear2/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear3/Linear3.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear3/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear4/Linear4.java + test/hotspot/jtreg/vmTestbase/gc/memory/UniThread/Linear4/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/CircularListHigh/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/CircularListHigh/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/CircularListLow/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/CircularListLow/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/DoubleArrayHigh/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/DoubleArrayHigh/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/DoubleArrayLow/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/DoubleArrayLow/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/FloatArrayHigh/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/FloatArrayHigh/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/FloatArrayLow/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/FloatArrayLow/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/LinearListHigh/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/LinearListHigh/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/LinearListLow/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/LinearListLow/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/NonbranchyTreeHigh/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/NonbranchyTreeHigh/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/NonbranchyTreeLow/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/NonbranchyTreeLow/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/ObjectArrayHigh/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/ObjectArrayHigh/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/ObjectArrayLow/TEST.properties + test/hotspot/jtreg/vmTestbase/gc/vector/ObjectArrayLow/TestDescription.java + test/hotspot/jtreg/vmTestbase/gc/vector/Simple.README + test/hotspot/jtreg/vmTestbase/gc/vector/SimpleGC/SimpleGC.java + test/hotspot/jtreg/vmTestbase/gc/vector/SimpleGC/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/share/gc/GenClassesBuilder.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/Generator.java + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libBooleanArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libByteArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libCharArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libDoubleArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libFloatArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libIntArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libLongArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libShortArrayCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jni/libStringCriticalLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/libJNIGlobalRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/libJNILocalRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/libJNIRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jniref/libJNIWeakGlobalRefLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/jvmti/libJVMTIAllocLocker.c + test/hotspot/jtreg/vmTestbase/nsk/share/gc/lock/malloc/libMallocLocker.c + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_ArrayOf/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_ArrayOf/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_ArrayOf1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_ArrayOf1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_TwoFields/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_TwoFields/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_TwoFields1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Arrays_TwoFields1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings_NonbranchyTree/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings_NonbranchyTree/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings_Strings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_InternedStrings_Strings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_ArrayOf/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_ArrayOf/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_ArrayOf1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_ArrayOf1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_TwoFields/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_TwoFields/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_TwoFields1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_NonbranchyTree_TwoFields1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_ArrayOf/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_ArrayOf/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_ArrayOf1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_ArrayOf1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_InternedStrings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_InternedStrings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_TwoFields/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_TwoFields/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_TwoFields1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_Strings_TwoFields1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_TwoFields_InternedStrings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Compact_TwoFields_InternedStrings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Arrays1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Arrays1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Arrays5M/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Arrays5M/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_InternedStrings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_InternedStrings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_InternedStrings1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_InternedStrings1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_NonbranchyTree/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_NonbranchyTree/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_NonbranchyTree1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_NonbranchyTree1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_NonbranchyTree5M/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_NonbranchyTree5M/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Strings/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Strings/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Strings1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/compact/Humongous_Strings1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/compact/README + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/Concurrent.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp0mr30st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp0mr30st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp0mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp0mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr0st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr0st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr30st0t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr30st0t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr70st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr70st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp30mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp70mr30st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp70mr30st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp70mr30st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp0rp70mr30st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp0mr30st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp0mr30st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp0mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp0mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr0st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr0st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr30st0t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr30st0t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr70st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr70st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp30mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp70mr30st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp70mr30st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp70mr30st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp10rp70mr30st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp0mr30st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp0mr30st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp0mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp0mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr0st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr0st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr30st0t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr30st0t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr70st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr70st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp30mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp70mr30st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp70mr30st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp70mr30st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp30yp25rp70mr30st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp0mr30st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp0mr30st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp0mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp0mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr0st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr0st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr30st0t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr30st0t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr70st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr70st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp30mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp70mr30st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp70mr30st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp70mr30st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp0rp70mr30st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp0mr30st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp0mr30st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp0mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp0mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr0st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr0st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr30st0t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr30st0t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr70st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr70st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr70st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp30mr70st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp70mr30st0/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp70mr30st0/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp70mr30st300t1/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp50yp10rp70mr30st300t1/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp60yp0rp30mr0st300/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/concurrent/lp60yp0rp30mr0st300/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/CollectionContainer.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination01/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination01/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination02/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination02/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination03/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination03/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination04/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination04/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination05/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Combination05/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/ConcurrentHashMap_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/ConcurrentHashMap_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Container.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/ContainerDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/ContainersTest.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/DequeueContainer.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/HashMap_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/HashMap_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/LinkedBlockingDeque_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/LinkedBlockingDeque_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/LinkedHashMap_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/LinkedHashMap_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/LinkedList_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/LinkedList_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/MapContainer.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/Speed.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/TreeMap_Arrays/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/TreeMap_Arrays/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/TreeSet_String/TEST.properties + test/hotspot/jtreg/vmTestbase/vm/gc/containers/TreeSet_String/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/containers/readme + test/hotspot/jtreg/vmTestbase/vm/gc/kind/parOld/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/gc/kind/parOld/test.sh Changeset: dd501973095c Author: lmesnik Date: 2018-05-17 16:21 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/dd501973095c 8199271: [TESTBUG] open source VM testbase stress tests Reviewed-by: mseledtsov, sspitsyn, erikj ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/nsk/stress/except/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except003.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except004.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except007.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except008.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except009.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except010.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except011.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except011oops.java + test/hotspot/jtreg/vmTestbase/nsk/stress/except/except012.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/GarbageGenerator.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/Interrupter.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/Synchronizer.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/gclocker/gcl001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/gclocker/libgcl001.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnihelper.h + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress003.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress004.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/jnistress007.java + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress001.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress002.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress003.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress004.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress005.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress006.c + test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress007.c + test/hotspot/jtreg/vmTestbase/nsk/stress/network/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/stress/network/network001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/network/network002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/network/network003.java + test/hotspot/jtreg/vmTestbase/nsk/stress/network/network004.java + test/hotspot/jtreg/vmTestbase/nsk/stress/network/network005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/network/network006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric003.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric004.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric007.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric008.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric009.java + test/hotspot/jtreg/vmTestbase/nsk/stress/numeric/numeric010.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack003.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack004.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack007.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack008.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack009.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack010.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack011.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack012.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack013.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack014.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack015.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack016.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack017.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack018.java + test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack019.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace003.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace004.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace005.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace006.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace008.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace009.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace011.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace012.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace014.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/libstrace015.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/nsk_strace.h + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace003.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace003.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace004.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace004.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace005.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace006.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace007.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace008.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace008.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace009.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace009.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace010.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace011.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace011.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace012.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace012.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace013.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace014.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace014.java + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace015.c + test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace015.java + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/TEST.properties + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/thread001.java + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/thread002.java + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/thread005.java + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/thread006.java + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/thread007.java + test/hotspot/jtreg/vmTestbase/nsk/stress/thread/thread008.java Changeset: 12fc7bf488ec Author: epavlova Date: 2018-05-17 21:04 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/12fc7bf488ec 8203318: compiler/stable/TestStableShort.java is broken Reviewed-by: shade ! test/hotspot/jtreg/compiler/stable/TestStableByte.java ! test/hotspot/jtreg/compiler/stable/TestStableChar.java ! test/hotspot/jtreg/compiler/stable/TestStableDouble.java ! test/hotspot/jtreg/compiler/stable/TestStableFloat.java ! test/hotspot/jtreg/compiler/stable/TestStableInt.java ! test/hotspot/jtreg/compiler/stable/TestStableLong.java ! test/hotspot/jtreg/compiler/stable/TestStableObject.java Changeset: 40c98f9b69fa Author: weijun Date: 2018-05-18 16:27 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/40c98f9b69fa 8201867: Kerberos keytabs with holes in certain places are parsed incorrectly Reviewed-by: valeriep ! src/java.security.jgss/share/classes/sun/security/krb5/internal/ktab/KeyTabInputStream.java + test/jdk/sun/security/krb5/ktab/BufferBoundary.java Changeset: 9925e9fd56ad Author: bulasevich Date: 2018-05-18 13:23 +0300 URL: http://hg.openjdk.java.net/amber/amber/rev/9925e9fd56ad 8202710: AARCH64: sporadic jtreg test fail Reviewed-by: aph, dsamersoff ! src/hotspot/cpu/aarch64/aarch64.ad ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp + test/hotspot/jtreg/compiler/runtime/TestFloatsOnStackDeopt.java Changeset: 5593cab7fb96 Author: bsrbnd Date: 2018-05-18 12:48 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/5593cab7fb96 8203398: Test test/langtools/tools/javac/options/release/ReleaseOptionCurrent.java writes into the source directory Reviewed-by: jjg, jlahoda ! test/langtools/tools/javac/options/release/ReleaseOptionCurrent.java Changeset: 78d9ffb8146f Author: sgehwolf Date: 2018-05-16 15:25 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/78d9ffb8146f 8203287: Zero fails to build after JDK-8199712 (Flight Recorder) Reviewed-by: shade, mdoerr + src/hotspot/cpu/zero/vm_version_ext_zero.cpp + src/hotspot/cpu/zero/vm_version_ext_zero.hpp ! src/hotspot/os_cpu/linux_zero/thread_linux_zero.hpp ! src/hotspot/share/jfr/utilities/jfrTime.cpp ! src/hotspot/share/utilities/ticks.cpp Changeset: 589ed2770141 Author: jlaskey Date: 2018-05-18 08:43 -0300 URL: http://hg.openjdk.java.net/amber/amber/rev/589ed2770141 8200436: String::isBlank Reviewed-by: sundar ! src/java.base/share/classes/java/lang/String.java + test/jdk/java/lang/String/IsBlank.java Changeset: 0cc29ebee3f9 Author: goetz Date: 2018-05-18 10:59 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/0cc29ebee3f9 8203400: Fix issue with "8199852: Print more information about class loaders in LinkageErrors." Reviewed-by: dholmes, lfoltan ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/systemDictionary.cpp Changeset: 9806f23d5e5e Author: coleenp Date: 2018-05-18 08:47 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/9806f23d5e5e 8134537: Much nearly duplicated code for sun.misc.Signal support Summary: merged jvm_.cpp into jvm_posix.cpp Reviewed-by: dholmes, stuefe - src/hotspot/os/aix/jvm_aix.cpp ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/aix/os_aix.hpp - src/hotspot/os/bsd/jvm_bsd.cpp ! src/hotspot/os/bsd/os_bsd.cpp ! src/hotspot/os/bsd/os_bsd.hpp - src/hotspot/os/linux/jvm_linux.cpp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/linux/os_linux.hpp + src/hotspot/os/posix/jvm_posix.cpp ! src/hotspot/os/posix/os_posix.cpp ! src/hotspot/os/posix/os_posix.hpp - src/hotspot/os/solaris/jvm_solaris.cpp ! src/hotspot/os/solaris/os_solaris.cpp ! src/hotspot/os/solaris/os_solaris.hpp Changeset: 7b0291382aff Author: pliden Date: 2018-05-18 15:21 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/7b0291382aff 8203227: Introduce os::processor_id() for Linux and Solaris Reviewed-by: dholmes, rehn ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/solaris/os_solaris.cpp ! src/hotspot/share/runtime/os.hpp Changeset: d9bc8557ae16 Author: pliden Date: 2018-05-18 15:21 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/d9bc8557ae16 8202989: Add missing decorators in calls to to arraycopy_prologue/epilogue Reviewed-by: stefank, eosterlund ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/arm/stubGenerator_arm.cpp ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/sparc/stubGenerator_sparc.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_32.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp Changeset: ffa644980dff Author: eosterlund Date: 2018-05-18 14:51 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ffa644980dff 8202377: Modularize C2 GC barriers Reviewed-by: neliasso, roland + src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp + src/hotspot/share/gc/g1/c2/g1BarrierSetC2.hpp ! src/hotspot/share/gc/g1/g1BarrierSet.cpp ! src/hotspot/share/gc/shared/barrierSet.hpp + src/hotspot/share/gc/shared/c2/barrierSetC2.cpp + src/hotspot/share/gc/shared/c2/barrierSetC2.hpp + src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.cpp + src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.hpp + src/hotspot/share/gc/shared/c2/modRefBarrierSetC2.cpp + src/hotspot/share/gc/shared/c2/modRefBarrierSetC2.hpp ! src/hotspot/share/gc/shared/cardTableBarrierSet.cpp ! src/hotspot/share/gc/shared/cardTableBarrierSet.hpp ! src/hotspot/share/gc/shared/modRefBarrierSet.hpp ! src/hotspot/share/opto/arraycopynode.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/escape.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/graphKit.hpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/loopopts.cpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/macro.hpp ! src/hotspot/share/opto/macroArrayCopy.cpp ! src/hotspot/share/opto/node.cpp ! src/hotspot/share/opto/parse2.cpp ! src/hotspot/share/opto/parse3.cpp ! src/hotspot/share/opto/phaseX.cpp ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/opto/runtime.hpp Changeset: f854b76b6a0c Author: vromero Date: 2018-05-18 09:22 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/f854b76b6a0c 8148354: Errors targeting functional interface intersection types Reviewed-by: mcimadamore, dlsmith ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TransTypes.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java + test/langtools/tools/javac/T8148354/IntersectionFunctionalButComponentsNotTest.java + test/langtools/tools/javac/T8148354/IntersectionTypeBugTest.java ! test/langtools/tools/javac/diags/examples.not-yet.txt ! test/langtools/tools/javac/diags/examples/NotAnInterfaceComponent.java Changeset: 28cd297a1086 Author: dlong Date: 2018-05-18 12:32 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/28cd297a1086 8202305: [Graal] org.graalvm.compiler.core.test.GraphResetDebugTest fails with java.util.ServiceConfigurationError Reviewed-by: iveresov, epavlova ! src/jdk.internal.vm.compiler/share/classes/module-info.java Changeset: 4befb3c9c758 Author: iignatyev Date: 2018-05-18 12:45 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/4befb3c9c758 8203437: 8199370 broke build on linux-ppc64le (w/ GCC 4.8.5.) Reviewed-by: shade ! test/hotspot/jtreg/vmTestbase/gc/gctests/nativeGC05/libnativeGC05.c Changeset: 1a4101ebec92 Author: coleenp Date: 2018-05-18 15:56 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/1a4101ebec92 8202014: Possible to receive signal before signal semaphore created Summary: initialize jdk.internal.misc.Signal in os_init2 and rename initialization functions. Reviewed-by: dholmes, stuefe ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/aix/os_share_aix.hpp ! src/hotspot/os/bsd/os_bsd.cpp ! src/hotspot/os/bsd/os_share_bsd.hpp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/linux/os_share_linux.hpp ! src/hotspot/os/solaris/os_solaris.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/os.hpp ! src/hotspot/share/runtime/thread.cpp Changeset: 97be261ebcdd Author: cjplummer Date: 2018-05-18 14:21 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/97be261ebcdd 8185803: JdbExprTest.sh fails in JDK10-hs nightly due to "Name unknown: java.lang.Long.MAX_VALUE " Summary: Initialize java.lang.Long before referencing it Reviewed-by: dholmes, dcubed ! test/jdk/ProblemList.txt ! test/jdk/com/sun/jdi/JdbExprTest.sh Changeset: 5ec7380f671d Author: joehw Date: 2018-05-18 18:31 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/5ec7380f671d 8198548: Initialization race in com.sun.org.apache.xerces.internal.impl.xpath.regex.Token.getRange() on Token.categories Reviewed-by: lancea ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/Token.java Changeset: 261d0ac3b09d Author: weijun Date: 2018-05-19 22:06 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/261d0ac3b09d 8201627: Kerberos sequence number issues Reviewed-by: valeriep ! src/java.security.jgss/share/classes/sun/security/jgss/krb5/InitSecContextToken.java ! src/java.security.jgss/share/classes/sun/security/jgss/krb5/MessageToken_v2.java ! test/jdk/sun/security/krb5/auto/Basic.java ! test/jdk/sun/security/krb5/auto/BasicKrb5Test.java ! test/jdk/sun/security/krb5/auto/BasicProc.java ! test/jdk/sun/security/krb5/auto/Context.java Changeset: 531b4069637e Author: shade Date: 2018-05-19 18:01 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/531b4069637e 8203454: Minimal, Zero builds fail after JDK-8202377 (Modularize C2 barriers) Reviewed-by: stuefe, eosterlund ! make/hotspot/lib/JvmFeatures.gmk Changeset: b8ed2c98202a Author: cjplummer Date: 2018-05-19 13:13 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/b8ed2c98202a 8203391: Update com/sun/jdi/JdbMethodExitTest.sh to pass valid URL[] Summary: use a valid URL[] Reviewed-by: sspitsyn, amenkov, dtitov ! test/jdk/ProblemList.txt ! test/jdk/com/sun/jdi/JdbMethodExitTest.sh Changeset: 6f548c41a4fc Author: ysuenaga Date: 2018-05-20 20:25 +0900 URL: http://hg.openjdk.java.net/amber/amber/rev/6f548c41a4fc 8202466: Test serviceability/tmtools/jstat/GcTest01.java fails: Number of concurrent GC events is 1, but CGCT is 0 Reviewed-by: cjplummer, sspitsyn ! test/hotspot/jtreg/serviceability/tmtools/jstat/utils/JstatGcCauseResults.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/utils/JstatGcNewResults.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/utils/JstatGcResults.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/utils/JstatResults.java Changeset: c87fba18f2b9 Author: stefank Date: 2018-05-20 22:08 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/c87fba18f2b9 8203339: Add oopDesc::field_offset() Reviewed-by: rkennke, eosterlund ! src/hotspot/share/oops/oop.hpp ! src/hotspot/share/oops/oop.inline.hpp + test/hotspot/gtest/oops/test_oop.cpp Changeset: 8bc79d2d1568 Author: stefank Date: 2018-05-20 22:10 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/8bc79d2d1568 8203341: Add a safepoint-aware Semaphore Reviewed-by: pliden, eosterlund ! src/hotspot/share/runtime/handshake.cpp ! src/hotspot/share/runtime/semaphore.hpp + src/hotspot/share/runtime/semaphore.inline.hpp Changeset: 49c3e91c424f Author: stuefe Date: 2018-05-21 11:33 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/49c3e91c424f 8176808: Split up metaspace.cpp Reviewed-by: asiebenborn, coleenp ! src/hotspot/share/gc/cms/vmStructs_cms.hpp ! src/hotspot/share/memory/binaryTreeDictionary.hpp ! src/hotspot/share/memory/binaryTreeDictionary.inline.hpp ! src/hotspot/share/memory/freeList.inline.hpp - src/hotspot/share/memory/metachunk.cpp - src/hotspot/share/memory/metachunk.hpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/metaspace.hpp + src/hotspot/share/memory/metaspace/blockFreelist.cpp + src/hotspot/share/memory/metaspace/blockFreelist.hpp + src/hotspot/share/memory/metaspace/chunkManager.cpp + src/hotspot/share/memory/metaspace/chunkManager.hpp + src/hotspot/share/memory/metaspace/metaDebug.cpp + src/hotspot/share/memory/metaspace/metaDebug.hpp + src/hotspot/share/memory/metaspace/metabase.hpp + src/hotspot/share/memory/metaspace/metablock.hpp + src/hotspot/share/memory/metaspace/metachunk.cpp + src/hotspot/share/memory/metaspace/metachunk.hpp ! src/hotspot/share/memory/metaspace/metaspaceCommon.cpp ! src/hotspot/share/memory/metaspace/metaspaceCommon.hpp ! src/hotspot/share/memory/metaspace/metaspaceDCmd.hpp ! src/hotspot/share/memory/metaspace/metaspaceStatistics.cpp ! src/hotspot/share/memory/metaspace/metaspaceStatistics.hpp + src/hotspot/share/memory/metaspace/occupancyMap.cpp + src/hotspot/share/memory/metaspace/occupancyMap.hpp + src/hotspot/share/memory/metaspace/printCLDMetaspaceInfoClosure.cpp + src/hotspot/share/memory/metaspace/printCLDMetaspaceInfoClosure.hpp + src/hotspot/share/memory/metaspace/smallBlocks.cpp + src/hotspot/share/memory/metaspace/smallBlocks.hpp + src/hotspot/share/memory/metaspace/spaceManager.cpp + src/hotspot/share/memory/metaspace/spaceManager.hpp + src/hotspot/share/memory/metaspace/virtualSpaceList.cpp + src/hotspot/share/memory/metaspace/virtualSpaceList.hpp + src/hotspot/share/memory/metaspace/virtualSpaceNode.cpp + src/hotspot/share/memory/metaspace/virtualSpaceNode.hpp ! src/hotspot/share/runtime/vmStructs.cpp ! test/hotspot/gtest/memory/test_chunkManager.cpp ! test/hotspot/gtest/memory/test_metachunk.cpp ! test/hotspot/gtest/memory/test_spaceManager.cpp Changeset: 2ae4cd9d809d Author: egahlin Date: 2018-05-21 14:46 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2ae4cd9d809d 8198337: -XX:StartFlightRecording=dumponexit=true,disk=false doesn't work Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecorder.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecording.java ! test/jdk/jdk/jfr/startupargs/TestDumpOnExit.java Changeset: ec881a19d294 Author: egahlin Date: 2018-05-21 17:38 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/ec881a19d294 8195817: JFR.stop should require name of recording Reviewed-by: mgronlun ! src/hotspot/share/jfr/dcmd/jfrDcmds.cpp Changeset: 85e3ac4fa57b Author: simonis Date: 2018-05-21 11:09 -0500 URL: http://hg.openjdk.java.net/amber/amber/rev/85e3ac4fa57b 8203292: Print complete set of flags in the hs_err file Summary: Prints non-default flags to hs_err file Reviewed-by: gziemski, dholmes ! src/hotspot/share/runtime/flags/jvmFlag.cpp ! src/hotspot/share/runtime/flags/jvmFlag.hpp ! src/hotspot/share/utilities/vmError.cpp Changeset: f4735ff8d17d Author: egahlin Date: 2018-05-21 18:19 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f4735ff8d17d 8195818: JFR.start should increase autogenerated name by one Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecorder.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecording.java Changeset: db3c6bb7f856 Author: bpb Date: 2018-05-21 11:43 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/db3c6bb7f856 8203487: Typo in ICUBinary.java: s/Magin/Magic/ Reviewed-by: igerasim, naoto Contributed-by: Adam Farley ! src/java.base/share/classes/sun/text/normalizer/ICUBinary.java Changeset: 83d8b3a25f25 Author: jiangli Date: 2018-05-21 15:15 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check. 8203377: Cleanup the usage of os::file_name_strcmp() in SharedPathsMiscInfo::check(). Summary: Relax CDS/AppCDS path check for modules image. Reviewed-by: iklam, ccheung ! src/hotspot/os/aix/os_aix.inline.hpp ! src/hotspot/os/bsd/os_bsd.inline.hpp ! src/hotspot/os/linux/os_linux.inline.hpp ! src/hotspot/os/solaris/os_solaris.inline.hpp ! src/hotspot/os/windows/os_windows.inline.hpp ! src/hotspot/share/classfile/sharedPathsMiscInfo.cpp ! src/hotspot/share/memory/filemap.cpp ! src/hotspot/share/memory/filemap.hpp ! src/hotspot/share/runtime/os.hpp ! test/hotspot/jtreg/runtime/appcds/BootClassPathMismatch.java + test/hotspot/jtreg/runtime/appcds/MoveJDKTest.java ! test/hotspot/jtreg/runtime/appcds/jigsaw/modulepath/MainModuleOnly.java Changeset: 9ce050c4711b Author: vromero Date: 2018-05-21 12:27 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/9ce050c4711b 8203486: skip type inference for non functional interface components of intersection types Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java + test/langtools/tools/javac/T8203486/SkipInferenceForNonFunctionalInterfTest.java Changeset: a2c92332c6ba Author: igerasim Date: 2018-05-21 12:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a2c92332c6ba 8203279: Faster rounding up to nearest power of two Reviewed-by: martin, redestad ! src/java.base/share/classes/java/util/ComparableTimSort.java ! src/java.base/share/classes/java/util/HashMap.java ! src/java.base/share/classes/java/util/TimSort.java Changeset: 63c65528b1fe Author: egahlin Date: 2018-05-21 22:59 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/63c65528b1fe 8027760: JFC schema condition should not have defaults Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/internal/jfc/jfc.xsd Changeset: 39d88709b138 Author: coleenp Date: 2018-05-21 17:17 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/39d88709b138 8202853: NotifyCount is not initialized Summary: remove NotifyCount Reviewed-by: jiangli ! src/hotspot/share/runtime/mutex.cpp ! src/hotspot/share/runtime/mutex.hpp Changeset: 3195a713e24d Author: valeriep Date: 2018-05-21 23:40 +0000 URL: http://hg.openjdk.java.net/amber/amber/rev/3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm Summary: add RSASSA-PSS key and signature support to SunRsaSign provider Reviewed-by: wetmore ! src/java.base/share/classes/com/sun/crypto/provider/OAEPParameters.java ! src/java.base/share/classes/com/sun/crypto/provider/RSACipher.java ! src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java ! src/java.base/share/classes/java/security/Signature.java ! src/java.base/share/classes/java/security/cert/X509CRL.java ! src/java.base/share/classes/java/security/cert/X509Certificate.java ! src/java.base/share/classes/java/security/interfaces/RSAKey.java ! src/java.base/share/classes/java/security/interfaces/RSAMultiPrimePrivateCrtKey.java ! src/java.base/share/classes/java/security/interfaces/RSAPrivateCrtKey.java ! src/java.base/share/classes/java/security/interfaces/package-info.java ! src/java.base/share/classes/java/security/spec/MGF1ParameterSpec.java ! src/java.base/share/classes/java/security/spec/PSSParameterSpec.java ! src/java.base/share/classes/java/security/spec/RSAKeyGenParameterSpec.java ! src/java.base/share/classes/java/security/spec/RSAMultiPrimePrivateCrtKeySpec.java ! src/java.base/share/classes/java/security/spec/RSAOtherPrimeInfo.java ! src/java.base/share/classes/java/security/spec/RSAPrivateCrtKeySpec.java ! src/java.base/share/classes/java/security/spec/RSAPrivateKeySpec.java ! src/java.base/share/classes/java/security/spec/RSAPublicKeySpec.java ! src/java.base/share/classes/java/security/spec/package-info.java ! src/java.base/share/classes/javax/crypto/Cipher.java ! src/java.base/share/classes/javax/crypto/spec/OAEPParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/PSource.java ! src/java.base/share/classes/javax/crypto/spec/package-info.java ! src/java.base/share/classes/sun/security/pkcs/SignerInfo.java ! src/java.base/share/classes/sun/security/pkcs10/PKCS10.java ! src/java.base/share/classes/sun/security/provider/DSA.java + src/java.base/share/classes/sun/security/rsa/MGF1.java + src/java.base/share/classes/sun/security/rsa/PSSParameters.java ! src/java.base/share/classes/sun/security/rsa/RSAKeyFactory.java ! src/java.base/share/classes/sun/security/rsa/RSAKeyPairGenerator.java + src/java.base/share/classes/sun/security/rsa/RSAPSSSignature.java ! src/java.base/share/classes/sun/security/rsa/RSAPadding.java ! src/java.base/share/classes/sun/security/rsa/RSAPrivateCrtKeyImpl.java ! src/java.base/share/classes/sun/security/rsa/RSAPrivateKeyImpl.java ! src/java.base/share/classes/sun/security/rsa/RSAPublicKeyImpl.java ! src/java.base/share/classes/sun/security/rsa/RSASignature.java + src/java.base/share/classes/sun/security/rsa/RSAUtil.java ! src/java.base/share/classes/sun/security/rsa/SunRsaSignEntries.java ! src/java.base/share/classes/sun/security/ssl/RSASignature.java ! src/java.base/share/classes/sun/security/ssl/SunJSSE.java ! src/java.base/share/classes/sun/security/util/SecurityProviderConstants.java + src/java.base/share/classes/sun/security/util/SignatureUtil.java ! src/java.base/share/classes/sun/security/x509/AlgorithmId.java ! src/java.base/share/classes/sun/security/x509/X509CRLImpl.java ! src/java.base/share/classes/sun/security/x509/X509CertImpl.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Key.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11RSAKeyFactory.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Signature.java ! src/jdk.crypto.ec/share/classes/sun/security/ec/ECDSASignature.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPublicKey.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSASignature.java ! src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/NativeRSASignature.java ! test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEP.java ! test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPPadding.java ! test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPParameterSpec.java ! test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPWithParams.java ! test/jdk/java/security/Signature/Offsets.java ! test/jdk/java/security/SignedObject/Chain.java ! test/jdk/sun/security/ec/SignedObjectChain.java ! test/jdk/sun/security/mscapi/SignedObjectChain.java + test/jdk/sun/security/rsa/SigGen15_186-3.txt + test/jdk/sun/security/rsa/SigGen15_186-3_TruncatedSHAs.txt + test/jdk/sun/security/rsa/SigRecord.java ! test/jdk/sun/security/rsa/SignatureOffsets.java ! test/jdk/sun/security/rsa/SignatureTest.java ! test/jdk/sun/security/rsa/SignedObjectChain.java ! test/jdk/sun/security/rsa/TestKeyPairGenerator.java + test/jdk/sun/security/rsa/TestSigGen15.java ! test/jdk/sun/security/rsa/TestSignatures.java + test/jdk/sun/security/rsa/pss/PSSParametersTest.java + test/jdk/sun/security/rsa/pss/SigGenPSS_186-3.txt + test/jdk/sun/security/rsa/pss/SigGenPSS_186-3_TruncatedSHAs.txt + test/jdk/sun/security/rsa/pss/SigRecord.java + test/jdk/sun/security/rsa/pss/SignatureTest2.java + test/jdk/sun/security/rsa/pss/SignatureTestPSS.java + test/jdk/sun/security/rsa/pss/TestPSSKeySupport.java + test/jdk/sun/security/rsa/pss/TestSigGenPSS.java ! test/jdk/sun/security/ssl/rsa/SignedObjectChain.java + test/lib/jdk/test/lib/SigTestUtil.java Changeset: 95ba3a1dc2b2 Author: iris Date: 2018-05-21 18:44 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/95ba3a1dc2b2 8203500: Fix broken links to Specification in "specs" directory Reviewed-by: jjg, lancea, mchung ! src/java.se/share/classes/module-info.java ! src/jdk.compiler/share/classes/com/sun/source/doctree/package-info.java ! src/jdk.javadoc/share/classes/jdk/javadoc/doclet/StandardDoclet.java ! src/jdk.javadoc/share/classes/module-info.java ! src/jdk.jdwp.agent/share/classes/module-info.java Changeset: adec398d9051 Author: iklam Date: 2018-05-21 21:27 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/adec398d9051 8193332: MetaspaceShared::check_shared_class_loader_type is not used during archive creation Reviewed-by: lfoltan, jiangli ! src/hotspot/share/classfile/classListParser.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/memory/metaspaceShared.cpp ! src/hotspot/share/memory/metaspaceShared.hpp ! src/hotspot/share/oops/instanceKlass.hpp ! test/hotspot/jtreg/runtime/SharedArchiveFile/BootAppendTests.java Changeset: 24b5f2e635f6 Author: thartmann Date: 2018-05-22 09:04 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/24b5f2e635f6 8203196: C1 emits incorrect code due to integer overflow in _tableswitch keys Summary: Avoid integer overflow in TableSwitch(). Reviewed-by: goetz, mdoerr, vlivanov ! src/hotspot/share/c1/c1_Instruction.hpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp Changeset: a20f2b3c321f Author: thartmann Date: 2018-05-22 09:10 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/a20f2b3c321f 8202848: -XX:+ExecuteInternalVMTests asserts with "assert(cd.valid() == true) failed: failed on a valid DirectivesParser string" Summary: Use "C" locale for correct parsing of decimals in VM internal compiler directive tests. Reviewed-by: dholmes, coleenp, stuefe, dcubed ! src/hotspot/share/utilities/internalVMTests.cpp Changeset: 2fdce199fcb9 Author: kbarrett Date: 2018-05-22 03:46 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/2fdce199fcb9 8202863: Rename OopStorage inner collection classes Summary: rename BlockArray, BlockList, BlockEntry Reviewed-by: coleenp ! src/hotspot/share/gc/shared/oopStorage.cpp ! src/hotspot/share/gc/shared/oopStorage.hpp ! src/hotspot/share/gc/shared/oopStorage.inline.hpp ! src/hotspot/share/gc/shared/oopStorageParState.hpp ! test/hotspot/gtest/gc/shared/test_oopStorage.cpp Changeset: afb9bc5328a3 Author: dholmes Date: 2018-05-22 05:20 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/afb9bc5328a3 8203626: ProblemList compiler/runtime/TestFloatsOnStackDeopt.java Reviewed-by: thartmann ! test/hotspot/jtreg/ProblemList.txt Changeset: 5afedc9e4662 Author: redestad Date: 2018-05-22 14:44 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/5afedc9e4662 8203352: Improve java implementation of Integer/Long.numberOfLeadingZeros Reviewed-by: martin, igerasim Contributed-by: ivan.gerasimov at oracle.com, claes.redestad at oracle.com ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! test/jdk/java/lang/Integer/BitTwiddle.java ! test/jdk/java/lang/Long/BitTwiddle.java Changeset: c4800cdd45c7 Author: bulasevich Date: 2018-05-22 14:54 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/c4800cdd45c7 8203431: TestFloatsOnStackDeopt.java throws java.lang.LinkageError: loader attempted duplicate class definition for java.lang.invoke.BoundMethodHandle$Species_LLL Reviewed-by: redestad ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/compiler/runtime/TestFloatsOnStackDeopt.java Changeset: 3085969bdf91 Author: mcimadamore Date: 2018-05-22 13:37 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes Summary: check that signature attributes do not contain non-denotable types Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Lower.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassWriter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties ! test/langtools/tools/javac/6521805/T6521805d.out ! test/langtools/tools/javac/6521805/T6521805e.out + test/langtools/tools/javac/8203436/T8203436a.java + test/langtools/tools/javac/8203436/T8203436a.out + test/langtools/tools/javac/8203436/T8203436b.java + test/langtools/tools/javac/8203436/T8203436b.out ! test/langtools/tools/javac/SynthName2.out ! test/langtools/tools/javac/diags/examples/ErrSyntheticNameConflict.java + test/langtools/tools/javac/diags/examples/IllegalSignature.java Changeset: 9bdd233f270d Author: jlahoda Date: 2018-05-22 12:26 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/9bdd233f270d 8198315: Incomplete classpath causes NPE in TransTypes Summary: Avoid symbol completion while constructing error message. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/RichDiagnosticFormatter.java + test/langtools/tools/javac/diags/CompletionFailureInDiags.java Changeset: 2fb27c352cae Author: jlaskey Date: 2018-05-22 12:04 -0300 URL: http://hg.openjdk.java.net/amber/amber/rev/2fb27c352cae 8200380: String::lines Reviewed-by: sundar, sherman, rriggs, psandoz ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java + test/jdk/java/lang/String/Lines.java Changeset: f4fd580dd7d1 Author: sgehwolf Date: 2018-05-18 15:35 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/f4fd580dd7d1 8203410: Zero: Disable jfr feature by default Reviewed-by: erikj ! make/autoconf/hotspot.m4 Changeset: 843fc56f4686 Author: iklam Date: 2018-05-18 09:15 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/843fc56f4686 8203381: Replace InstanceKlass::allocate_instance_handle with JavaCalls::construct_new_instance Reviewed-by: lfoltan, dholmes, coleenp, minqi ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/serviceThread.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/services/attachListener.cpp ! src/hotspot/share/services/gcNotifier.cpp ! src/hotspot/share/services/management.cpp ! src/hotspot/share/services/memoryService.cpp ! src/hotspot/share/utilities/exceptions.cpp Changeset: 0df902a00215 Author: vromero Date: 2018-05-22 09:01 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/0df902a00215 8196048: thrown type variables should be roots in the minimum inference graph Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Infer.java + test/langtools/tools/javac/T8196048/ThrownTypeVarsAsRootsTest.java Changeset: 4ab066d71956 Author: coleenp Date: 2018-05-22 13:10 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/4ab066d71956 8202669: Intermittent crash in ClassLoadingService::compute_class_size() Summary: Don't report classes that failed to load when reporting class unloading. Remove the classes first. Reviewed-by: dholmes, lfoltan, ccheung ! src/hotspot/share/classfile/classLoaderData.cpp ! src/hotspot/share/services/classLoadingService.cpp + test/hotspot/jtreg/runtime/BadObjectClass/TestUnloadClassError.java Changeset: 31361382634b Author: iignatyev Date: 2018-05-22 10:08 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/31361382634b 8199379: [TESTBUG] Open source vm testbase JDB tests Reviewed-by: mseledtsov, sspitsyn ! test/hotspot/jtreg/ProblemList-graal.txt ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/nsk/jdb/caught_exception/caught_exception002/caught_exception002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/caught_exception/caught_exception002/caught_exception002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/classes/classes001/classes001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/classes/classes001/classes001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/classpath/classpath001/classpath001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/classpath/classpath001/classpath001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear002/clear002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear002/clear002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear003/clear003.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear003/clear003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear004/clear004.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear004/clear004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/down/down002/down002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/down/down002/down002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/dump/dump002/dump002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/dump/dump002/dump002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/eval/eval001/eval001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/eval/eval001/eval001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/exclude/exclude001/exclude001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/exclude/exclude001/exclude001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/fields/fields001/fields001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/fields/fields001/fields001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/ignore/ignore001/ignore001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/ignore/ignore001/ignore001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill001/kill001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill001/kill001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill002/kill002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill002/kill002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/klass/class001/class001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/klass/class001/class001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/list/list002/list002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/list/list002/list002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/locals/locals002/locals002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/locals/locals002/locals002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/methods/methods002/methods002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/methods/methods002/methods002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor001/monitor001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor001/monitor001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/next/next001/next001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/next/next001/next001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect001/connect001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect001/connect001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect002/connect002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect002/connect002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect003/connect003.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect003/connect003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect004/connect004.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect004/connect004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect005/connect005.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect005/connect005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/options/listconnectors/listconnectors001/listconnectors001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/pop/pop001/pop001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/pop/pop001/pop001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/print/print002/print002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/print/print002/print002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/jdb.scenario + test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/read001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/read001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/RedefinedClass.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/newclass_g/RedefinedClass.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/redefine001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/redefine001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/reenter/reenter001/reenter001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/reenter/reenter001/reenter001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/b4689395.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/b4689395a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/newclass/b4689395a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/resume/resume002/resume002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/resume/resume002/resume002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/run/run002/run002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/run/run002/run002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set001/set001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set001/set001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set002/set002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set002/set002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/step/step002/step002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/step/step002/step002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/step_up/step_up001/step_up001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/step_up/step_up001/step_up001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at002/stop_at002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at002/stop_at002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at003/stop_at003.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at003/stop_at003a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_in/stop_in002/stop_in002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_in/stop_in002/stop_in002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/suspend/suspend001/suspend001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/suspend/suspend001/suspend001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/thread/thread002/thread002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/thread/thread002/thread002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroup/threadgroup002/threadgroup002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroup/threadgroup002/threadgroup002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroups/threadgroups002/threadgroups002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroups/threadgroups002/threadgroups002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/threads/threads002/threads002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/threads/threads002/threads002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/trace/trace001/trace001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/trace/trace001/trace001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/uncaught_exception/uncaught_exception002/uncaught_exception002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/uncaught_exception/uncaught_exception002/uncaught_exception002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/unmonitor/unmonitor001/unmonitor001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/unmonitor/unmonitor001/unmonitor001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/untrace/untrace001/untrace001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/untrace/untrace001/untrace001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch001/unwatch001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch001/unwatch001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch002/unwatch002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch002/unwatch002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/up/up002/up002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/up/up002/up002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/use/use001/use001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/use/use001/use001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch001/watch001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch001/watch001a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch002/watch002.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch002/watch002a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where004/where004.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where004/where004a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where005/where005.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where005/where005a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where006/where006.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where006/where006a.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/wherei/wherei001/wherei001.java + test/hotspot/jtreg/vmTestbase/nsk/jdb/wherei/wherei001/wherei001a.java + test/hotspot/jtreg/vmTestbase/nsk/share/classload/ClassLoadUtils.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/Debuggee.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/DebuggeeUncaughtException.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/Jdb.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/JdbArgumentHandler.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/JdbCommand.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/JdbTest.java + test/hotspot/jtreg/vmTestbase/nsk/share/jdb/Launcher.java Changeset: 28f2e09a0ae0 Author: sherman Date: 2018-05-22 11:04 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/28f2e09a0ae0 8196987: Resolve disabled warnings for libzip Reviewed-by: erikj, alanb ! make/lib/CoreLibraries.gmk Changeset: 911b913022ef Author: zgu Date: 2018-05-22 14:49 -0400 URL: http://hg.openjdk.java.net/amber/amber/rev/911b913022ef 8203635: JFR sampler thread does not record stack info Summary: Added call to record_stack_base_and_size() from sampler thread Reviewed-by: shade, coleenp, stuefe ! src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.cpp Changeset: 28a33a0dbf04 Author: mseledtsov Date: 2018-05-22 13:05 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/28a33a0dbf04 8199257: [TESTBUG] Open source VM testbase metaspace tests Summary: Open sourced VM metaspace tests Reviewed-by: coleenp, stuefe ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/metaspace/flags/maxMetaspaceSize/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/flags/maxMetaspaceSize/maxMetaspaceSize.java + test/hotspot/jtreg/vmTestbase/metaspace/flags/maxMetaspaceSize/maxMetaspaceSize.sh + test/hotspot/jtreg/vmTestbase/metaspace/gc/Fault.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/FirstGCTest.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/HighWaterMarkTest.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/MemoryUsageTest.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/MetaspaceBaseGC.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_10m/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_10m/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_50m/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_50m/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_99m/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_99m/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_default/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/firstGC_default/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageLargeComp/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageLargeComp/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageLargeMeta/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageLargeMeta/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageSmallComp/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageSmallComp/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageSmallMeta/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/memoryUsageSmallMeta/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/readme.txt + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_0_1/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_0_1/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_10_20/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_10_20/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_70_80/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_70_80/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_99_100/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/gc/watermark_99_100/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/shrink_grow/CompressedClassSpaceSize/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/shrink_grow/ShrinkGrowMultiJVM/ShrinkGrowMultiJVM.java + test/hotspot/jtreg/vmTestbase/metaspace/shrink_grow/ShrinkGrowMultiJVM/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/shrink_grow/ShrinkGrowTest/ShrinkGrowTest.java + test/hotspot/jtreg/vmTestbase/metaspace/staticReferences/OneUsageClassloader.java + test/hotspot/jtreg/vmTestbase/metaspace/staticReferences/StaticReferences.java + test/hotspot/jtreg/vmTestbase/metaspace/staticReferences/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressDictionary/ClassloaderUnderTest.java + test/hotspot/jtreg/vmTestbase/metaspace/stressDictionary/StressDictionary.java + test/hotspot/jtreg/vmTestbase/metaspace/stressDictionary/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/GenClassesBuilder.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/HumongousClassGen.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/PerformChecksHelper.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchy1.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchy2.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchy3.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchyBaseClass.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/classloader/StressClassloader.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/classloader/tree/Node.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/classloader/tree/Tree.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/exceptions/ClassNotUnloadedException.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/exceptions/GotWrongOOMEException.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/exceptions/TimeIsOverException.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/generateHierarchy/GenerateHierarchyHelper.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/generateHierarchy/NodeDescriptor.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/generateHierarchy/TreeDescriptor.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy001/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy001/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy002/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy002/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy003/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy003/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy004/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy004/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy005/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy005/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy006/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy006/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy007/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy007/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy008/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy008/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy009/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy009/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy010/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy010/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy011/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy011/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy012/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy012/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy013/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy013/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy014/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy014/TestDescription.java + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy015/TEST.properties + test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/stressHierarchy015/TestDescription.java Changeset: 67066e7971e1 Author: lmesnik Date: 2018-05-22 10:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/67066e7971e1 8199064: Test applications/jcstress/other/Test.java#id1108 fails on Sparc Reviewed-by: psandoz, mseledtsov ! test/hotspot/jtreg/applications/jcstress/TestGenerator.java ! test/hotspot/jtreg/applications/jcstress/acqrel/Test.java ! test/hotspot/jtreg/applications/jcstress/atomicity/Test.java ! test/hotspot/jtreg/applications/jcstress/copy/Test.java ! test/hotspot/jtreg/applications/jcstress/fences/Test.java ! test/hotspot/jtreg/applications/jcstress/memeffects/Test.java ! test/hotspot/jtreg/applications/jcstress/other/Test.java ! test/hotspot/jtreg/applications/jcstress/seqcst.sync/Test.java ! test/hotspot/jtreg/applications/jcstress/seqcst.volatiles/Test.java Changeset: 2942ae532175 Author: egahlin Date: 2018-05-22 23:27 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/2942ae532175 8201331: Better test cleanup for jdk/jfr/api/consumer/TestRecordingFile.java Reviewed-by: tbell, mgronlun ! test/jdk/jdk/jfr/api/consumer/TestReadTwice.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedEventGetThreadOther.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedFullStackTrace.java ! test/jdk/jdk/jfr/api/consumer/TestRecordingFile.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestInheritedAnnotations.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestUnloadingEventClass.java ! test/jdk/jdk/jfr/api/recorder/TestStartStopRecording.java ! test/jdk/jdk/jfr/cmd/ExecuteHelper.java ! test/jdk/jdk/jfr/cmd/TestPrint.java ! test/jdk/jdk/jfr/jcmd/TestJcmdLegacy.java ! test/jdk/jdk/jfr/jvm/TestUnsupportedVM.java ! test/lib/jdk/test/lib/Utils.java ! test/lib/jdk/test/lib/jfr/CommonHelper.java Changeset: 408021edf22f Author: egahlin Date: 2018-05-23 00:21 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/408021edf22f 8195819: Remove recording=x from jcmd JFR.check output Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/AbstractDCmd.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdCheck.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdStart.java ! test/jdk/jdk/jfr/jcmd/JcmdAsserts.java ! test/jdk/jdk/jfr/jcmd/JcmdHelper.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartStopDefault.java Changeset: 7b259287cdd2 Author: bpb Date: 2018-05-22 16:19 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/7b259287cdd2 8202076: test/jdk/java/io/File/WinSpecialFiles.java on windows with VS2017 Summary: If all other means to obtain the file length fail, fall back to FindFirstFile Reviewed-by: igerasim, alanb ! src/java.base/windows/native/libjava/WinNTFileSystem_md.c ! test/jdk/java/io/File/WinSpecialFiles.java Changeset: 45093fb73c6d Author: dl Date: 2018-05-22 21:46 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/45093fb73c6d 8202685: Optimize ArrayList subList replaceAll Reviewed-by: martin, psandoz, igerasim, redestad, dholmes, smarks, jrose, plevart ! src/java.base/share/classes/java/util/ArrayList.java ! test/jdk/java/util/concurrent/tck/Collection8Test.java Changeset: 6b29ef846c5c Author: dl Date: 2018-05-22 21:50 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05 Reviewed-by: martin, psandoz ! src/java.base/share/classes/java/util/PriorityQueue.java ! src/java.base/share/classes/java/util/concurrent/PriorityBlockingQueue.java ! test/jdk/java/util/ArrayList/IteratorMicroBenchmark.java ! test/jdk/java/util/Collection/IteratorMicroBenchmark.java ! test/jdk/java/util/Collection/RemoveMicroBenchmark.java ! test/jdk/java/util/WeakHashMap/GCDuringIteration.java ! test/jdk/java/util/concurrent/ArrayBlockingQueue/WhiteBox.java ! test/jdk/java/util/concurrent/ConcurrentQueues/GCRetention.java + test/jdk/java/util/concurrent/PriorityBlockingQueue/WhiteBox.java ! test/jdk/java/util/concurrent/forkjoin/FJExceptionTableLeak.java ! test/jdk/java/util/concurrent/locks/Lock/TimedAcquireLeak.java ! test/jdk/java/util/concurrent/tck/CopyOnWriteArraySetTest.java ! test/jdk/java/util/concurrent/tck/PriorityBlockingQueueTest.java ! test/jdk/java/util/concurrent/tck/PriorityQueueTest.java ! test/jdk/java/util/concurrent/tck/VectorTest.java Changeset: cae567ae015d Author: mli Date: 2018-05-23 14:21 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/cae567ae015d 8202771: Migrate Unicode character tests to JDK Repo Reviewed-by: naoto Contributed-by: dan.z.zhou at oracle.com - test/jdk/java/lang/Character/Blocks.txt + test/jdk/java/lang/Character/CharPropTest.java - test/jdk/java/lang/Character/CheckBlocks.java - test/jdk/java/lang/Character/TestISOControls.java + test/jdk/java/lang/Character/UnicodeBlock/Blocks.txt + test/jdk/java/lang/Character/UnicodeBlock/CheckBlocks.java Changeset: 10b14c9ee78d Author: mbaesken Date: 2018-05-17 18:09 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/10b14c9ee78d 8203355: MITSHM define guarding missing Reviewed-by: prr, stuefe ! src/java.desktop/unix/native/common/java2d/x11/X11SurfaceData.c Changeset: 3c6dc4b291cd Author: stefank Date: 2018-05-23 09:42 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/3c6dc4b291cd 8203694: Add a safepoint-aware Semaphore - part 2 Reviewed-by: dholmes, pliden ! src/hotspot/share/runtime/semaphore.hpp ! src/hotspot/share/runtime/semaphore.inline.hpp Changeset: 48d4abe945f1 Author: stefank Date: 2018-05-23 09:43 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/48d4abe945f1 8203490: StringTable::dump lacks a load barrier Reviewed-by: coleenp, pliden ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/utilities/hashtable.cpp ! src/hotspot/share/utilities/hashtable.hpp Changeset: 6ba3e32a9882 Author: mgronlun Date: 2018-05-23 15:21 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/6ba3e32a9882 8203457: Add back missing full buffer notification Reviewed-by: redestad, sjohanss ! src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp ! src/hotspot/share/jfr/recorder/storage/jfrStorageControl.cpp Changeset: ff5d0ea58d9b Author: neliasso Date: 2018-03-21 16:03 +0100 URL: http://hg.openjdk.java.net/amber/amber/rev/ff5d0ea58d9b 8192992: Test8007294.java failed: attempted to spill a non-spillable item Summary: Fix bugs in schedule_late that forces load to early Reviewed-by: kvn, thartmann ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/gcm.cpp ! src/hotspot/share/opto/phasetype.hpp ! test/hotspot/jtreg/compiler/c2/Test6843752.java Changeset: a11c1cb542bb Author: mbaesken Date: 2018-05-23 16:26 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/a11c1cb542bb 8202427: Enhance os::print_memory_info on Windows Reviewed-by: goetz, stuefe ! src/hotspot/os/windows/os_windows.cpp Changeset: ec52b4d094c0 Author: sherman Date: 2018-05-23 08:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/ec52b4d094c0 8200172: String.split non-positive term incorrect use Reviewed-by: darcy, lancea ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/util/regex/Pattern.java Changeset: a9307f400f5a Author: martin Date: 2018-05-23 10:34 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a9307f400f5a 8203328: Rename EFS in java.util.zip internals to something meaningful Reviewed-by: sherman ! src/java.base/share/classes/java/util/zip/Deflater.java ! src/java.base/share/classes/java/util/zip/DeflaterOutputStream.java ! src/java.base/share/classes/java/util/zip/Inflater.java ! src/java.base/share/classes/java/util/zip/ZipConstants64.java ! src/java.base/share/classes/java/util/zip/ZipEntry.java ! src/java.base/share/classes/java/util/zip/ZipFile.java ! src/java.base/share/classes/java/util/zip/ZipInputStream.java ! src/java.base/share/classes/java/util/zip/ZipOutputStream.java ! src/java.base/share/classes/java/util/zip/ZipUtils.java ! src/java.base/share/classes/java/util/zip/package-info.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipConstants.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystem.java ! test/jdk/java/util/zip/ZipCoding.java Changeset: a28085b5830e Author: erikj Date: 2018-05-23 11:29 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/a28085b5830e 8203497: Bump Jib format version to 1.2 Reviewed-by: tbell ! make/conf/jib-profiles.js Changeset: b9c483223a91 Author: jjg Date: 2018-05-23 11:49 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/b9c483223a91 8202947: Fix minor issues with taglets Reviewed-by: ksrini ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlConfiguration.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDocletWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlSerialFieldWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/BaseConfiguration.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/doclets.properties - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/BaseExecutableMemberTaglet.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/BaseInlineTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/BasePropertyTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/BaseTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/CodeTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/DeprecatedTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/DocRootTaglet.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/HiddenTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/IndexTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/InheritDocTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/InheritableTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/LiteralTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ParamTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/PropertyGetterTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/PropertySetterTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ReturnTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/SeeTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/SimpleTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/SummaryTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/TagletManager.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/TagletWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ThrowsTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/ValueTaglet.java + test/langtools/jdk/javadoc/doclet/testAuthor/TestAuthor.java + test/langtools/jdk/javadoc/doclet/testTaglets/TestTaglets.java + test/langtools/jdk/javadoc/doclet/testTaglets/TestTaglets.out + test/langtools/jdk/javadoc/doclet/testVersionTag/TestVersionTag.java ! test/langtools/jdk/javadoc/tool/CheckResourceKeys.java ! test/langtools/tools/lib/toolbox/ToolBox.java Changeset: b4bfc263cdc6 Author: jwilhelm Date: 2018-05-23 21:08 +0200 URL: http://hg.openjdk.java.net/amber/amber/rev/b4bfc263cdc6 Added tag jdk-11+15 for changeset a11c1cb542bb ! .hgtags Changeset: 9a87afc49148 Author: fyang Date: 2018-05-24 07:20 +0800 URL: http://hg.openjdk.java.net/amber/amber/rev/9a87afc49148 8203041: AArch64: fix overflow in immediate cmp/cmn instruction Summary: fix overflow in immediate cmp/cmn instruction for AArch64 Reviewed-by: aph, dpochepk, drwhite Contributed-by: joshua.zhu at arm.com ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp Changeset: 4fac3c99487d Author: mseledtsov Date: 2018-05-23 17:09 -0700 URL: http://hg.openjdk.java.net/amber/amber/rev/4fac3c99487d 8199255: [TESTBUG] Open source VM testbase default methods tests Summary: Open sourced default method tests Reviewed-by: ccheung, iignatyev, erikj ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/AccessibilityFlagsTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/BasicTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/ConflictingDefaultsTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/DefaultVsAbstractTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/MethodResolutionTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/ObjectMethodOverridesTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/PrivateMethodsTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/README + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/RedefineTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/StaticMethodsTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/StressTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/SuperCallTest.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/AccessibilityFlags_v52_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v49_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v50_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v51_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/Basic_v52_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v49_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v50_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v51_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ConflictingDefaults_v52_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v49_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v50_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v51_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/DefaultVsAbstract_v52_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v49_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v50_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v51_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/MethodResolution_v52_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ObjectMethodOverrides_v52_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ObjectMethodOverrides_v52_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ObjectMethodOverrides_v52_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ObjectMethodOverrides_v52_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ObjectMethodOverrides_v52_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/ObjectMethodOverrides_v52_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_none_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_none_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_none_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_strict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_strict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_strict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_strict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_strict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_strict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_sync_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_sync_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_sync_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_sync_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_sync_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_sync_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_syncstrict_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_syncstrict_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_syncstrict_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_syncstrict_invoke_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_syncstrict_reflect_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v49_syncstrict_reflect_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v50_none_direct_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v50_none_direct_redefine/TestDescription.java + test/hotspot/jtreg/vmTestbase/vm/runtime/defmeth/scenarios/PrivateMethods_v50_none_invoke_noredefine/TestDescription.java + test/hotspot/jtreg/vmTestb